· 6 years ago · Dec 19, 2019, 02:34 PM
1-- MySQL dump 10.16 Distrib 10.1.31-MariaDB, for debian-linux-gnu (x86_64)
2--
3-- Host: mysql-mariadb14-104.zap-hosting.com Database: zap468512-1
4-- ------------------------------------------------------
5-- Server version 10.4.8-MariaDB-1:10.4.8+maria~stretch
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `phone_app_chat`
20--
21
22DROP TABLE IF EXISTS `phone_app_chat`;
23/*!40101 SET @saved_cs_client = @@character_set_client */;
24/*!40101 SET character_set_client = utf8 */;
25CREATE TABLE `phone_app_chat` (
26 `id` int(11) NOT NULL AUTO_INCREMENT,
27 `channel` varchar(20) NOT NULL,
28 `message` varchar(255) NOT NULL,
29 `time` timestamp NOT NULL DEFAULT current_timestamp(),
30 PRIMARY KEY (`id`)
31) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
32/*!40101 SET character_set_client = @saved_cs_client */;
33
34--
35-- Dumping data for table `phone_app_chat`
36--
37
38LOCK TABLES `phone_app_chat` WRITE;
39/*!40000 ALTER TABLE `phone_app_chat` DISABLE KEYS */;
40/*!40000 ALTER TABLE `phone_app_chat` ENABLE KEYS */;
41UNLOCK TABLES;
42
43--
44-- Table structure for table `phone_calls`
45--
46
47DROP TABLE IF EXISTS `phone_calls`;
48/*!40101 SET @saved_cs_client = @@character_set_client */;
49/*!40101 SET character_set_client = utf8 */;
50CREATE TABLE `phone_calls` (
51 `id` int(11) NOT NULL AUTO_INCREMENT,
52 `owner` varchar(10) NOT NULL COMMENT 'Num tel proprio',
53 `num` varchar(10) NOT NULL COMMENT 'Num reférence du contact',
54 `incoming` int(11) NOT NULL COMMENT 'Défini si on est à l''origine de l''appels',
55 `time` timestamp NOT NULL DEFAULT current_timestamp(),
56 `accepts` int(11) NOT NULL COMMENT 'Appels accepter ou pas',
57 PRIMARY KEY (`id`)
58) ENGINE=InnoDB AUTO_INCREMENT=126 DEFAULT CHARSET=utf8;
59/*!40101 SET character_set_client = @saved_cs_client */;
60
61--
62-- Dumping data for table `phone_calls`
63--
64
65LOCK TABLES `phone_calls` WRITE;
66/*!40000 ALTER TABLE `phone_calls` DISABLE KEYS */;
67INSERT INTO `phone_calls` VALUES (122,'106-3698','708-9143',1,'2019-12-15 13:29:05',1),(123,'708-9143','106-3698',0,'2019-12-15 13:29:05',1),(124,'708-9143','106-3698',0,'2019-12-15 14:43:16',0),(125,'106-3698','708-9143',1,'2019-12-15 14:43:16',0);
68/*!40000 ALTER TABLE `phone_calls` ENABLE KEYS */;
69UNLOCK TABLES;
70
71--
72-- Table structure for table `phone_messages`
73--
74
75DROP TABLE IF EXISTS `phone_messages`;
76/*!40101 SET @saved_cs_client = @@character_set_client */;
77/*!40101 SET character_set_client = utf8 */;
78CREATE TABLE `phone_messages` (
79 `id` int(11) NOT NULL AUTO_INCREMENT,
80 `transmitter` varchar(10) NOT NULL,
81 `receiver` varchar(10) NOT NULL,
82 `message` varchar(255) NOT NULL DEFAULT '0',
83 `time` timestamp NOT NULL DEFAULT current_timestamp(),
84 `isRead` int(11) NOT NULL DEFAULT 0,
85 `owner` int(11) NOT NULL DEFAULT 0,
86 PRIMARY KEY (`id`)
87) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8;
88/*!40101 SET character_set_client = @saved_cs_client */;
89
90--
91-- Dumping data for table `phone_messages`
92--
93
94LOCK TABLES `phone_messages` WRITE;
95/*!40000 ALTER TABLE `phone_messages` DISABLE KEYS */;
96INSERT INTO `phone_messages` VALUES (106,'106-3698','708-9143','ola','2019-12-15 13:29:57',0,0),(107,'708-9143','106-3698','ola','2019-12-15 13:29:57',1,1),(108,'106-3698','708-9143','vamos as putas','2019-12-15 13:30:09',0,0),(109,'708-9143','106-3698','vamos as putas','2019-12-15 13:30:09',1,1);
97/*!40000 ALTER TABLE `phone_messages` ENABLE KEYS */;
98UNLOCK TABLES;
99
100--
101-- Table structure for table `phone_users_contacts`
102--
103
104DROP TABLE IF EXISTS `phone_users_contacts`;
105/*!40101 SET @saved_cs_client = @@character_set_client */;
106/*!40101 SET character_set_client = utf8 */;
107CREATE TABLE `phone_users_contacts` (
108 `id` int(11) NOT NULL AUTO_INCREMENT,
109 `identifier` varchar(60) CHARACTER SET utf8mb4 DEFAULT NULL,
110 `number` varchar(10) CHARACTER SET utf8mb4 DEFAULT NULL,
111 `display` varchar(64) CHARACTER SET utf8mb4 NOT NULL DEFAULT '-1',
112 PRIMARY KEY (`id`)
113) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
114/*!40101 SET character_set_client = @saved_cs_client */;
115
116--
117-- Dumping data for table `phone_users_contacts`
118--
119
120LOCK TABLES `phone_users_contacts` WRITE;
121/*!40000 ALTER TABLE `phone_users_contacts` DISABLE KEYS */;
122INSERT INTO `phone_users_contacts` VALUES (7,'14','708-9143','chefe the lost');
123/*!40000 ALTER TABLE `phone_users_contacts` ENABLE KEYS */;
124UNLOCK TABLES;
125
126--
127-- Table structure for table `vrp_srv_data`
128--
129
130DROP TABLE IF EXISTS `vrp_srv_data`;
131/*!40101 SET @saved_cs_client = @@character_set_client */;
132/*!40101 SET character_set_client = utf8 */;
133CREATE TABLE `vrp_srv_data` (
134 `dkey` varchar(100) NOT NULL,
135 `dvalue` text DEFAULT NULL,
136 PRIMARY KEY (`dkey`)
137) ENGINE=InnoDB DEFAULT CHARSET=latin1;
138/*!40101 SET character_set_client = @saved_cs_client */;
139
140--
141-- Dumping data for table `vrp_srv_data`
142--
143
144LOCK TABLES `vrp_srv_data` WRITE;
145/*!40000 ALTER TABLE `vrp_srv_data` DISABLE KEYS */;
146INSERT INTO `vrp_srv_data` VALUES ('chest:static:gnr.bau:Bau GNR','{\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":1},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wammo|WEAPON_SMG\":{\"amount\":227},\"wammo|WEAPON_BZGAS\":{\"amount\":25},\"wbody|WEAPON_HEAVYSNIPER\":{\"amount\":1},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_ASSAULTRIFLE\":{\"amount\":112},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"wbody|WEAPON_STUNGUN\":{\"amount\":2},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":112},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"wbody|WEAPON_ASSAULTRIFLE\":{\"amount\":1},\"wammo|WEAPON_HEAVYSNIPER\":{\"amount\":231},\"wammo|WEAPON_STUNGUN\":{\"amount\":251},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":225},\"wbody|WEAPON_APPISTOL\":{\"amount\":1},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wammo|WEAPON_APPISTOL\":{\"amount\":250},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_CROWBAR\":{\"amount\":1},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":250}}'),('chest:static:mafia.bau:Bau Mafia D´ ouro','{}'),('chest:static:moto.bau:Bau Do MotoClub','{\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":250},\"hamgurger\":{\"amount\":9},\"kebab\":{\"amount\":5},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":5},\"medkit\":{\"amount\":95},\"pizza\":{\"amount\":18},\"bread\":{\"amount\":7},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":20},\"dirty_money\":{\"amount\":1700},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"wbody|WEAPON_RPG\":{\"amount\":1},\"wammo|WEAPON_RPG\":{\"amount\":17},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":2}}'),('chest:static:moto.bau:Bau Dos Sons Of Anarchy','[]'),('chest:static:psp.bau:Bau PSP','{\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":1},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":249},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":10},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":238},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":1}}'),('chest:u103home','{\"folhademaconha\":{\"amount\":405}}'),('chest:u103veh_b5s4','{\"folhademaconha\":{\"amount\":78}}'),('chest:u103veh_hcbr17','{}'),('chest:u103veh_l37','[]'),('chest:u103veh_m5','{\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":100}}'),('chest:u103veh_rubi3d','{}'),('chest:u111veh_180sx','{}'),('chest:u111veh_renault4l','{\"medkit\":{\"amount\":25},\"wammo|WEAPON_SMG\":{\"amount\":154},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":51},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_SMG\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":48},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":200},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":50}}'),('chest:u118veh_rm3e36','{\"explosivo_c4\":{\"amount\":1}}'),('chest:u119home','[]'),('chest:u11home','{\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_APPISTOL\":{\"amount\":1},\"wbody|WEAPON_MICROSMG\":{\"amount\":1},\"wbody|WEAPON_SMG\":{\"amount\":1},\"wammo|WEAPON_ASSAULTRIFLE\":{\"amount\":410},\"wammo|WEAPON_HEAVYSNIPER\":{\"amount\":249},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"wbody|WEAPON_HEAVYSNIPER\":{\"amount\":1},\"wammo|WEAPON_MICROSMG\":{\"amount\":250},\"wbody|WEAPON_ASSAULTRIFLE\":{\"amount\":2}}'),('chest:u124veh_kx250f','[]'),('chest:u12home','[]'),('chest:u12veh_bmws','[]'),('chest:u14veh_evo9','{\"wbody|WEAPON_FLARE\":{\"amount\":1},\"wammo|WEAPON_FLAREGUN\":{\"amount\":20},\"wammo|WEAPON_SNOWBALL\":{\"amount\":1},\"wammo|WEAPON_GRENADELAUNCHER_SMOKE\":{\"amount\":20},\"wbody|WEAPON_ASSAULTSMG\":{\"amount\":1},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":700},\"wammo|WEAPON_STUNGUN\":{\"amount\":250},\"wammo|WEAPON_FLARE\":{\"amount\":25},\"wammo|WEAPON_FIREWORK\":{\"amount\":20}}'),('chest:u15veh_kangoo','{\"wbody|WEAPON_CARBINERIFLE\":{\"amount\":1},\"folhademaconha\":{\"amount\":157},\"wbody|WEAPON_MICROSMG\":{\"amount\":1}}'),('chest:u181veh_b5s4','{\"wammo|WEAPON_SMG\":{\"amount\":176},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":200},\"folhademaconha\":{\"amount\":235},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"wbody|WEAPON_SMG\":{\"amount\":1}}'),('chest:u181veh_dubsta3','[]'),('chest:u18veh_alpha','{\"folhademaconha\":{\"amount\":71}}'),('chest:u1home','[]'),('chest:u1veh_bmws','[]'),('chest:u2home','{\"wbody|WEAPON_SMG\":{\"amount\":1},\"wbody|WEAPON_HEAVYSNIPER\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":51},\"wammo|WEAPON_ASSAULTRIFLE\":{\"amount\":199},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_ASSAULTRIFLE\":{\"amount\":1},\"wammo|WEAPON_SMG\":{\"amount\":153},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wammo|WEAPON_HEAVYSNIPER\":{\"amount\":200}}'),('chest:u2veh_r8ppi','{\"wbody|WEAPON_SMG\":{\"amount\":1}}'),('chest:u30home','{\"medkit\":{\"amount\":36}}'),('chest:u30veh_aperta','[]'),('chest:u31home','[]'),('chest:u36veh_m2f22','{\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wammo|WEAPON_BZGAS\":{\"amount\":5},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":229},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":1},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wammo|WEAPON_SMG\":{\"amount\":150},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":250},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":11}}'),('chest:u3home','{\"wbody|WEAPON_BZGAS\":{\"amount\":2}}'),('chest:u43home','{\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":498},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":447},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"wbody|WEAPON_SMG\":{\"amount\":3},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":2},\"wammo|WEAPON_SMG\":{\"amount\":504},\"vodka\":{\"amount\":1},\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":2},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":3},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":235},\"wammo|WEAPON_BZGAS\":{\"amount\":5},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":2}}'),('chest:u43veh_m2f22','{\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":250},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":250},\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":250},\"wbody|WEAPON_STUNGUN\":{\"amount\":1},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":250},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wammo|WEAPON_BZGAS\":{\"amount\":25},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":250},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1}}'),('chest:u43veh_riot','[]'),('chest:u43veh_zl12017','{\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"wbody|WEAPON_STUNGUN\":{\"amount\":1},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":1}}'),('chest:u44veh_blazer','{\"wbody|WEAPON_APPISTOL\":{\"amount\":1}}'),('chest:u5home','{\"wammo|WEAPON_ASSAULTRIFLE\":{\"amount\":137},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":250},\"wbody|WEAPON_APPISTOL\":{\"amount\":1},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":2},\"wbody|WEAPON_ASSAULTRIFLE\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":247},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":224},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":35}}'),('chest:u5veh_bmws','[]'),('chest:u5veh_chiron17','{}'),('chest:u5veh_dm1200','{\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_BZGAS\":{\"amount\":10}}'),('chest:u5veh_fxxk16','{\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":201},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1}}'),('chest:u5veh_nissantitan17','[]'),('chest:u5veh_r8ppi','{}'),('chest:u61veh_nissantitan17','[]'),('chest:u69home','[]'),('chest:u69veh_crafter17','{}'),('chest:u69veh_m4f82','{}'),('chest:u69veh_mv720','[]'),('chest:u6veh_f4rr','[]'),('chest:u73home','[]'),('chest:u73veh_b5s4','{}'),('chest:u73veh_m5','{\"bilheteguia\":{\"amount\":1},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":250},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":2},\"hamgurger\":{\"amount\":3},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"cocacola\":{\"amount\":12},\"wammo|WEAPON_BZGAS\":{\"amount\":3},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":3},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"kebab\":{\"amount\":2},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"medkit\":{\"amount\":47},\"wammo|WEAPON_PETROLCAN\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":2},\"donut\":{\"amount\":5},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"pizza\":{\"amount\":26}}'),('chest:u73veh_pturismo','{\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":17},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":247}}'),('chest:u76veh_c7','{}'),('chest:u76veh_pista','[]'),('chest:u77veh_nh2r','{\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":91},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":14},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":246}}'),('chest:u80home','{\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":174},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250}}'),('chest:u80veh_c7','{\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":227},\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":1}}'),('chest:u9home','{\"maconha\":{\"amount\":148},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":3},\"wbody|WEAPON_ASSAULTRIFLE\":{\"amount\":2},\"wbody|WEAPON_HEAVYSNIPER\":{\"amount\":2},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":61},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":966},\"wammo|WEAPON_SMG\":{\"amount\":306},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":8},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":10},\"wammo|WEAPON_ASSAULTRIFLE\":{\"amount\":286},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":1},\"folhademaconha\":{\"amount\":94},\"medkit\":{\"amount\":205},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"wammo|WEAPON_MICROSMG\":{\"amount\":223},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":1067},\"wbody|WEAPON_SMG\":{\"amount\":3},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"wbody|WEAPON_MICROSMG\":{\"amount\":1},\"wammo|WEAPON_HEAVYSNIPER\":{\"amount\":242},\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":5},\"wbody|WEAPON_APPISTOL\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":1143},\"wbody|WEAPON_PETROLCAN\":{\"amount\":1},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":359},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":403},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":6},\"wbody|WEAPON_KNIFE\":{\"amount\":1},\"wammo|WEAPON_PETROLCAN\":{\"amount\":10},\"wammo|WEAPON_BZGAS\":{\"amount\":25},\"pizza\":{\"amount\":30}}'),('vRP:hidden_trs','{\"lsd bar\":{\"timestamp\":1576757742,\"position\":[1992.5993652344,3044.1806640625,47.215068817138]},\"ems\":{\"timestamp\":1576757742,\"position\":[465.04064941406,3569.1174316406,33.238555908204]},\"cocaine dealer\":{\"timestamp\":1576757742,\"position\":[-631.0054321289,-229.42568969726,38.057052612304]},\"weed field\":{\"timestamp\":1576757742,\"position\":[2208.0104980468,5577.6987304688,53.739212036132]},\"police3\":{\"timestamp\":1576757742,\"position\":[-449.43395996094,6010.796875,31.7163772583]},\"police2\":{\"timestamp\":1576757742,\"position\":[1851.660522461,3690.6713867188,34.267044067382]},\"police1\":{\"timestamp\":1576757742,\"position\":[439.57083129882,-995.072265625,30.689596176148]}}');
147/*!40000 ALTER TABLE `vrp_srv_data` ENABLE KEYS */;
148UNLOCK TABLES;
149
150--
151-- Table structure for table `vrp_user_business`
152--
153
154DROP TABLE IF EXISTS `vrp_user_business`;
155/*!40101 SET @saved_cs_client = @@character_set_client */;
156/*!40101 SET character_set_client = utf8 */;
157CREATE TABLE `vrp_user_business` (
158 `user_id` int(11) NOT NULL,
159 `name` varchar(30) DEFAULT NULL,
160 `description` text DEFAULT NULL,
161 `capital` int(11) DEFAULT NULL,
162 `laundered` int(11) DEFAULT NULL,
163 `reset_timestamp` int(11) DEFAULT NULL,
164 PRIMARY KEY (`user_id`),
165 CONSTRAINT `fk_user_business_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
166) ENGINE=InnoDB DEFAULT CHARSET=latin1;
167/*!40101 SET character_set_client = @saved_cs_client */;
168
169--
170-- Dumping data for table `vrp_user_business`
171--
172
173LOCK TABLES `vrp_user_business` WRITE;
174/*!40000 ALTER TABLE `vrp_user_business` DISABLE KEYS */;
175/*!40000 ALTER TABLE `vrp_user_business` ENABLE KEYS */;
176UNLOCK TABLES;
177
178--
179-- Table structure for table `vrp_user_data`
180--
181
182DROP TABLE IF EXISTS `vrp_user_data`;
183/*!40101 SET @saved_cs_client = @@character_set_client */;
184/*!40101 SET character_set_client = utf8 */;
185CREATE TABLE `vrp_user_data` (
186 `user_id` int(11) NOT NULL,
187 `dkey` varchar(100) NOT NULL,
188 `dvalue` text DEFAULT NULL,
189 PRIMARY KEY (`user_id`,`dkey`),
190 CONSTRAINT `fk_user_data_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
191) ENGINE=InnoDB DEFAULT CHARSET=latin1;
192/*!40101 SET character_set_client = @saved_cs_client */;
193
194--
195-- Dumping data for table `vrp_user_data`
196--
197
198LOCK TABLES `vrp_user_data` WRITE;
199/*!40000 ALTER TABLE `vrp_user_data` DISABLE KEYS */;
200INSERT INTO `vrp_user_data` VALUES (1,'vRP:admin:jail:time','-1'),(1,'vRP:datatable','{\"thirst\":10.51732436501,\"hunger\":10.008662182504,\"inventory\":{\"tacos\":{\"amount\":12},\"orangejuice\":{\"amount\":16},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"cocacola\":{\"amount\":3},\"donut\":{\"amount\":23},\"weapon_bzgas\":{\"amount\":10},\"water\":{\"amount\":5},\"lemonade\":{\"amount\":4},\"hamgurger\":{\"amount\":20},\"coffee\":{\"amount\":13},\"radio\":{\"amount\":3},\"medkit\":{\"amount\":46},\"dirty_money\":{\"amount\":2400000},\"pizza\":{\"amount\":4}},\"weapons\":{\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_ASSAULTSHOTGUN\":{\"ammo\":0},\"WEAPON_GRENADELAUNCHER_SMOKE\":{\"ammo\":0},\"WEAPON_CROWBAR\":{\"ammo\":0},\"WEAPON_BZGAS\":{\"ammo\":18},\"WEAPON_SAWNOFFSHOTGUN\":{\"ammo\":0},\"WEAPON_GOLFCLUB\":{\"ammo\":0},\"WEAPON_MG\":{\"ammo\":64},\"WEAPON_HATCHET\":{\"ammo\":0},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":239},\"WEAPON_SNIPERRIFLE\":{\"ammo\":216},\"WEAPON_SMG\":{\"ammo\":179},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_APPISTOL\":{\"ammo\":0},\"WEAPON_PISTOL\":{\"ammo\":249},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_HEAVYSNIPER\":{\"ammo\":0},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":347},\"WEAPON_COMBATPISTOL\":{\"ammo\":0}},\"health\":200,\"position\":{\"x\":29.893615722656,\"z\":178.90130615234,\"y\":566.38452148438},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"customization\":{\"1\":[76,0,1],\"2\":[3,4,2],\"3\":[14,0,2],\"4\":[25,0,2],\"5\":[0,0,2],\"6\":[7,2,2],\"7\":[0,0,2],\"8\":[76,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[24,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[131072,2,2],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,0],\"0\":[0,0,0],\"p10\":[-1,0],\"p9\":[-1,0],\"p2\":[0,0],\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0]},\"groups\":{\"superadmin\":true,\"admin\":true,\"user\":true,\"Mecanico\":true,\"vipdiamante\":true}}'),(1,'vRP:firstid','\"12/11/19\"'),(1,'vRP:tattoos','{\"MP_Buis_M_Chest_001\":\"mpbusiness_overlays\"}'),(2,'vRP:admin:jail:time','-1'),(2,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[21,3,2],\"3\":[4,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[36,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[2,0,2],\"11\":[29,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[196608,2,110],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"0\":[0,0,0],\"p9\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[3,0],\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[2,0]},\"gaptitudes\":{\"physical\":{\"strength\":275},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":[],\"weapons\":{\"WEAPON_SMG\":{\"ammo\":249}},\"thirst\":14.620231660134,\"health\":171,\"hunger\":10.810115830068,\"position\":{\"x\":22.047039031982,\"z\":29.260257720948,\"y\":-1118.5498046875},\"groups\":{\"user\":true,\"Ammunation\":true,\"admin\":true}}'),(2,'vRP:firstid','\"12/11/19\"'),(2,'vRP:home:wardrobe','{\"estilo 2\":{\"1\":[0,0,1],\"2\":[21,3,2],\"3\":[1,0,2],\"4\":[49,4,2],\"5\":[0,0,2],\"6\":[3,2,2],\"7\":[0,0,2],\"8\":[11,10,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[20,3,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[131076,2,6],\"17\":[50331914,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"0\":[0,0,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[2,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[3,0],\"p3\":[-1,0]}}'),(2,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />'),(3,'vRP:admin:jail:time','-1'),(3,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[21,4,2],\"3\":[6,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[1,15,2],\"7\":[0,0,2],\"8\":[71,5,2],\"9\":[0,1,2],\"10\":[6,0,2],\"11\":[102,2,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,110],\"16\":[983040,2,6],\"17\":[33554693,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,4],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[4,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":200,\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":197},\"WEAPON_SNIPERRIFLE\":{\"ammo\":133},\"WEAPON_SMG\":{\"ammo\":0}},\"thirst\":0,\"groups\":{\"cofundador\":true,\"Governo\":true,\"user\":true,\"vipdiamante\":true,\"superadmin\":true,\"admin\":true},\"phone_directory\":{\"lUIS\":\"031-9078\"},\"inventory\":{\"icetea\":{\"amount\":1},\"wammo|WEAPON_SMG\":{\"amount\":690},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":300},\"wbody|WEAPON_FIREEXTINGUISHER\":{\"amount\":2},\"repairkit\":{\"amount\":23},\"folhademaconha\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":1153},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":17},\"wbody|WEAPON_CROWBAR\":{\"amount\":1},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":3},\"water\":{\"amount\":8},\"radio\":{\"amount\":1},\"wbody|WEAPON_FLASHLIGHT\":{\"amount\":2},\"kebab\":{\"amount\":46},\"wammo|WEAPON_ASSAULTSHOTGUN\":{\"amount\":48},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"wammo|WEAPON_BZGAS\":{\"amount\":139},\"cocacola\":{\"amount\":12},\"wbody|WEAPON_ASSAULTSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_STUNGUN\":{\"amount\":7},\"hamgurger\":{\"amount\":15},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":2},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":2809},\"wbody|WEAPON_SMG\":{\"amount\":7},\"wbody|WEAPON_BZGAS\":{\"amount\":3},\"pizza\":{\"amount\":12},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":250},\"wbody|WEAPON_NIGHTSTICK\":{\"amount\":10},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":642},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":43},\"redbull\":{\"amount\":22},\"wbody|WEAPON_KNIFE\":{\"amount\":1},\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":1},\"Radio\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"medkit\":{\"amount\":53},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":318}},\"position\":{\"x\":239.12016296386,\"z\":47.815719604492,\"y\":-396.69790649414},\"hunger\":0}'),(3,'vRP:firstid','\"12/11/19\"'),(3,'vRP:home:wardrobe','{\"PUTO\":{\"1\":[0,0,0],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,0],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,2,255],\"15\":[0,2,117],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33685504,2,255],\"19\":[33686018,2,255],\"20\":[2,2,255],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"modelhash\":54445749,\"0\":[0,0,0],\"p10\":[-1,0]}}'),(3,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />'),(4,'vRP:admin:jail:time','4'),(4,'vRP:datatable','{\"hunger\":71.607228376634,\"weapons\":{\"WEAPON_VINTAGEPISTOL\":{\"ammo\":83},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":0}},\"thirst\":58.214456753268,\"position\":{\"x\":-2682.953125,\"y\":1740.1489257812,\"z\":82.199340820312},\"inventory\":{\"radio\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":1},\"medkit\":{\"amount\":45},\"water\":{\"amount\":23}},\"customization\":{\"1\":[51,0,1],\"2\":[14,0,1],\"3\":[0,0,2],\"4\":[31,0,2],\"5\":[0,0,2],\"6\":[9,2,2],\"7\":[0,0,2],\"8\":[111,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[81,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,110],\"16\":[131072,2,255],\"17\":[256,2,255],\"18\":[33620224,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"hacking\":0,\"lua\":0,\"c++\":0,\"logic\":0},\"laboratory\":{\"weed1\":0,\"lsd1\":0,\"cocaine1\":0}},\"groups\":{\"MotoClub - Boss\":true,\"user\":true},\"health\":120}'),(4,'vRP:firstid','\"12/11/19\"'),(4,'vRP:head:overlay','{\"9\":[1,0,1],\"8\":[1,2,1],\"7\":[255,0,0],\"6\":[255,0,0],\"11\":[255,0,0],\"10\":[255,1,1],\"1\":[6,1,3],\"0\":[0,0,0],\"5\":[0,2,0],\"-1\":[255,0,0],\"12\":[14,0,42],\"4\":[255,0,0],\"3\":[255,0,2],\"2\":[255,1,0]}'),(4,'vRP:jail:time','-1'),(4,'vRP:police_records','[Multa] 7000 € por Assasinato.<br />[Multa] 5000 € por Assalto a Civil<br />'),(4,'vRP:tattoos','{\"FM_Hip_M_Tat_000\":\"mphipster_overlays\",\"FM_Hip_M_Tat_011\":\"mphipster_overlays\"}'),(5,'vRP:admin:jail:time','-1'),(5,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[21,0,1],\"3\":[22,0,2],\"4\":[49,0,2],\"5\":[0,0,2],\"6\":[40,4,2],\"7\":[0,0,2],\"8\":[31,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[100,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[262144,2,255],\"17\":[256,2,255],\"18\":[33620224,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p2\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":275},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"kebab\":{\"amount\":20},\"icetea\":{\"amount\":25},\"dirty_money\":{\"amount\":400000},\"folhademaconha\":{\"amount\":19}},\"weapons\":{\"WEAPON_SMG\":{\"ammo\":144},\"WEAPON_VINTAGEPISTOL\":{\"ammo\":192}},\"thirst\":37.080755971782,\"groups\":{\"user\":true,\"estagiario\":true,\"Vanilla - Patrão\":true,\"admin\":true},\"health\":190,\"phone_directory\":[],\"position\":{\"x\":-1328.8314208984,\"z\":13.471425056458,\"y\":-2196.7858886718},\"hunger\":31.790377985892}'),(5,'vRP:firstid','\"12/11/19\"'),(5,'vRP:head:overlay','{\"0\":[1,0,0],\"11\":[255,0,0],\"10\":[0,1,0],\"9\":[7,0,7],\"-1\":[0,0,0],\"7\":[255,0,0],\"6\":[2,0,0],\"5\":[0,2,9],\"8\":[255,2,0],\"12\":[21,0,8],\"2\":[255,1,0],\"1\":[255,1,0],\"4\":[4,0,4],\"3\":[255,0,0]}'),(5,'vRP:police_records','[Multa] 500 € por Direção Perigosa<br />[Multa] 2000 € por Sem habilitação<br />[Multa] 1000 € por Ultrapassar sinal vermelho<br />[Multa] 500 € por Direção Perigosa<br />[Multa] 2000 € por Sem habilitação<br />'),(5,'vRP:tattoos','{\"MP_Buis_F_Neck_001\":\"mpbusiness_overlays\",\"MP_Buis_F_RArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_LArm_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_002\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_F_LLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_001\":\"mpbusiness_overlays\",\"MP_Buis_F_RLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_002\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_001\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_003\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_001\":\"mpbusiness_overlays\"}'),(6,'vRP:admin:jail:time','-1'),(6,'vRP:datatable','{\"thirst\":100,\"weapons\":[],\"hunger\":100,\"inventory\":{\"wbody|WEAPON_COMBATPISTOL\":{\"amount\":1},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":111},\"wbody|WEAPON_SMG\":{\"amount\":1},\"hamgurger\":{\"amount\":34},\"wbody|WEAPON_BZGAS\":{\"amount\":1},\"water\":{\"amount\":24},\"wammo|WEAPON_BZGAS\":{\"amount\":25},\"money\":{\"amount\":774},\"medkit\":{\"amount\":10},\"esmeralda\":{\"amount\":39},\"wammo|WEAPON_SMG\":{\"amount\":92},\"kebab\":{\"amount\":14},\"safira\":{\"amount\":35},\"diamante\":{\"amount\":3},\"rubi\":{\"amount\":21}},\"customization\":{\"1\":[0,0,1],\"2\":[4,2,2],\"3\":[1,0,2],\"4\":[3,0,2],\"5\":[0,0,2],\"6\":[9,8,2],\"7\":[0,0,2],\"8\":[12,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[12,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[131072,2,100],\"16\":[524288,2,6],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,1],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[16,1],\"p3\":[-1,0],\"p2\":[2,0],\"p6\":[1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0]},\"groups\":{\"user\":true,\"moderador\":true,\"Máfia d´Ouro - SubChefe\":true,\"estagiario\":true},\"health\":196,\"position\":{\"z\":72.09969329834,\"y\":214.9947052002,\"x\":-885.58386230468},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(6,'vRP:firstid','\"12/11/19\"'),(6,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />[Multa] 1000 € por Ultrapassar sinal vermelho<br />[Multa] 1000 € por Direção Perigosa<br />[Multa] 3000 € por Sem habilitação<br />'),(7,'vRP:datatable','{\"customization\":{\"p4\":[-1,0],\"14\":[0,2,255],\"18\":[33685760,2,255],\"16\":[0,2,255],\"1\":[51,0,1],\"0\":[0,0,0],\"3\":[31,0,2],\"2\":[21,1,2],\"5\":[0,0,2],\"4\":[13,0,2],\"7\":[0,0,2],\"6\":[24,0,2],\"10\":[7,0,2],\"20\":[33686018,2,255],\"12\":[0,0,0],\"p0\":[-1,0],\"15\":[65536,2,110],\"p5\":[-1,0],\"17\":[256,2,255],\"19\":[33686018,2,255],\"modelhash\":1885233650,\"p3\":[-1,0],\"11\":[49,0,2],\"p1\":[-1,0],\"13\":[0,1,0],\"p10\":[-1,0],\"p8\":[-1,0],\"9\":[0,1,2],\"8\":[15,0,2],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p2\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":72.204545567482,\"inventory\":{\"kebab\":{\"amount\":15},\"lemonade\":{\"amount\":20}},\"position\":{\"y\":-104.03115844726,\"x\":983.44818115234,\"z\":74.849563598632},\"groups\":{\"MotoClub - Motoqueiro\":true,\"user\":true},\"hunger\":71.322213785898,\"health\":165,\"weapons\":{\"WEAPON_ASSAULTRIFLE\":{\"ammo\":250},\"WEAPON_APPISTOL\":{\"ammo\":250}},\"phone_directory\":{\"Meca\":\"330-4467\"}}'),(7,'vRP:firstid','\"12/11/19\"'),(8,'vRP:datatable','{\"thirst\":18.903570740466,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p0\":[-1,0],\"modelhash\":1885233650,\"p3\":[-1,0],\"p5\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"0\":[0,0,0],\"p4\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":200,\"hunger\":11.951785370232,\"position\":{\"z\":32.807304382324,\"y\":-761.00262451172,\"x\":193.0108795166},\"groups\":{\"user\":true},\"inventory\":[]}'),(8,'vRP:firstid','\"12/11/19\"'),(9,'vRP:admin:jail:time','5'),(9,'vRP:datatable','{\"gaptitudes\":{\"hacker\":{\"lua\":0,\"hacking\":0,\"logic\":0,\"c++\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0}},\"hunger\":0,\"phone_directory\":[],\"groups\":{\"cofundador\":true,\"user\":true,\"Máfia d´Ouro - Chefe\":true,\"admin\":true,\"vipdiamante\":true},\"inventory\":{\"bzgas\":{\"amount\":10},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"water\":{\"amount\":8},\"cocacola\":{\"amount\":5},\"medkit\":{\"amount\":1},\"kebab\":{\"amount\":11},\"pizza\":{\"amount\":2},\"combatpistol body\":{\"amount\":1},\"hamgurger\":{\"amount\":25},\"Combatpistol body\":{\"amount\":1},\"donut\":{\"amount\":14},\"SMG ammo\":{\"amount\":100}},\"thirst\":0,\"customization\":{\"1\":[37,0,1],\"2\":[14,0,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[2,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[49,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,2],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,1],\"p10\":[-1,0],\"p6\":[0,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650,\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[1,0]},\"weapons\":{\"WEAPON_PUMPSHOTGUN\":{\"ammo\":249},\"WEAPON_SNIPERRIFLE\":{\"ammo\":250},\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_VINTAGEPISTOL\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":239},\"WEAPON_SMG\":{\"ammo\":216},\"WEAPON_STUNGUN\":{\"ammo\":0}},\"health\":200,\"position\":{\"z\":80.992286682128,\"y\":547.87579345704,\"x\":1251.2009277344}}'),(9,'vRP:firstid','\"12/11/19\"'),(9,'vRP:home:wardrobe','{\"Roupa Normal\":{\"20\":[33686018,2,1],\"p4\":[-1,0],\"14\":[0,2,255],\"p2\":[1,0],\"p8\":[-1,0],\"18\":[33686016,2,0],\"p6\":[-1,0],\"16\":[0,2,2],\"p0\":[-1,0],\"10\":[0,0,2],\"p3\":[-1,0],\"11\":[19,0,2],\"p1\":[-1,0],\"13\":[0,2,0],\"17\":[256,2,0],\"p7\":[-1,0],\"15\":[0,2,228],\"p5\":[-1,0],\"p10\":[-1,0],\"9\":[0,1,2],\"5\":[0,0,2],\"6\":[7,0,2],\"7\":[0,0,2],\"8\":[4,0,2],\"1\":[0,0,2],\"2\":[14,0,2],\"3\":[1,0,2],\"4\":[4,0,2],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"12\":[0,0,0],\"19\":[33686018,2,0]},\"Roupa Roubo\":{\"1\":[60,0,1],\"2\":[14,0,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[2,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[49,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,2],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,1],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[0,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"0\":[0,0,0]}}'),(10,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"health\":181,\"thirst\":16.476481882572,\"customization\":{\"p3\":[-1,0],\"11\":[0,0,2],\"p1\":[-1,0],\"13\":[0,2,0],\"19\":[33686018,2,255],\"p9\":[-1,0],\"15\":[0,2,100],\"p5\":[-1,0],\"17\":[256,2,255],\"p7\":[-1,0],\"p10\":[-1,0],\"10\":[0,0,2],\"20\":[33686018,2,255],\"12\":[0,0,0],\"modelhash\":1885233650,\"18\":[33686016,2,255],\"p8\":[-1,0],\"p4\":[-1,0],\"14\":[0,2,255],\"p6\":[-1,0],\"16\":[0,2,255],\"1\":[0,0,2],\"0\":[0,0,0],\"3\":[0,0,2],\"2\":[0,0,2],\"5\":[0,0,2],\"4\":[0,0,2],\"7\":[0,0,2],\"6\":[0,0,2],\"9\":[0,1,2],\"8\":[0,0,2],\"p0\":[-1,0],\"p2\":[-1,0]},\"position\":{\"y\":-801.08630371094,\"x\":194.27493286132,\"z\":32.335201263428},\"inventory\":[],\"hunger\":10.988240941286,\"groups\":{\"user\":true},\"weapons\":[]}'),(10,'vRP:firstid','\"12/11/19\"'),(11,'vRP:admin:jail:time','-1'),(11,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[51,0,1],\"2\":[14,4,2],\"3\":[17,0,2],\"4\":[7,0,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[130,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[50,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p10\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p8\":[-1,0]},\"thirst\":0,\"position\":{\"z\":29.266300201416,\"y\":-998.99090576172,\"x\":408.00045776368},\"health\":187,\"inventory\":{\"kebab\":{\"amount\":28},\"redbull\":{\"amount\":28}},\"hunger\":0,\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":246},\"WEAPON_ASSAULTRIFLE\":{\"ammo\":177}},\"groups\":{\"user\":true,\"vipdiamante\":true,\"admin\":true,\"MotoClub - Braço Direito\":true}}'),(11,'vRP:firstid','\"12/12/19\"'),(12,'vRP:admin:jail:time','-1'),(12,'vRP:datatable','{\"weapons\":{\"WEAPON_SMG\":{\"ammo\":196},\"WEAPON_COMBATPISTOL\":{\"ammo\":154},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_SNIPERRIFLE\":{\"ammo\":209}},\"position\":{\"y\":-2992.1711425782,\"x\":-1260.9985351562,\"z\":14.019150733948},\"groups\":{\"moderador\":true,\"user\":true,\"estagiario\":true,\"Governo\":true},\"inventory\":{\"redbull\":{\"amount\":15},\"kebab\":{\"amount\":17}},\"hunger\":22.161038397002,\"health\":196,\"customization\":{\"1\":[0,0,1],\"2\":[14,4,2],\"3\":[30,0,2],\"4\":[78,2,2],\"5\":[0,0,0],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[34,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[2,2,255],\"17\":[256,0,255],\"18\":[33685760,2,255],\"19\":[33685506,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"hacking\":0,\"c++\":0,\"logic\":0},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"physical\":{\"strength\":63.0}},\"thirst\":32.822076794004}'),(12,'vRP:firstid','\"12/12/19\"'),(12,'vRP:jail:time','-1'),(12,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />[Multa] 3000 € por Fuga<br />[Multa] 5000 € por Porte ilegal de arma<br />[Multa] 3000 € por Sem habilitação<br />[Multa] 1000 € por Desrespeito á autoridade.<br />[Multa] 5000 € por Porte ilegal de arma<br />[Multa] 2000 € por Sem habilitação<br />'),(13,'vRP:admin:jail:time','120'),(13,'vRP:datatable','{\"weapons\":[],\"gaptitudes\":{\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":18.319552194976,\"inventory\":[],\"customization\":{\"1\":[111,0,1],\"2\":[11,1,2],\"3\":[21,0,2],\"4\":[98,1,2],\"5\":[0,0,2],\"6\":[25,0,2],\"7\":[0,0,2],\"8\":[27,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[251,1,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[65536,2,100],\"16\":[1,2,255],\"17\":[16777472,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"user\":true,\"MotoClub - Braço Direito\":true},\"position\":{\"x\":669.18853759766,\"y\":301.82629394532,\"z\":106.01029968262},\"health\":120,\"hunger\":12.409776097488}'),(13,'vRP:firstid','\"12/12/19\"'),(13,'vRP:jail:time','-1'),(14,'vRP:datatable','{\"weapons\":[],\"gaptitudes\":{\"hacker\":{\"logic\":0,\"c++\":0,\"hacking\":0,\"lua\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":54.971856792588,\"inventory\":[],\"customization\":{\"1\":[54,0,1],\"2\":[2,4,2],\"3\":[16,0,2],\"4\":[97,1,2],\"5\":[0,0,2],\"6\":[60,0,2],\"7\":[0,0,2],\"8\":[90,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[251,1,2],\"12\":[65792,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[1,2,255],\"17\":[16777472,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"user\":true,\"MotoClub - Braço Direito\":true},\"position\":{\"x\":336.8032836914,\"y\":-717.29296875,\"z\":28.8272190094},\"health\":120,\"hunger\":44.870357883258}'),(14,'vRP:firstid','\"12/12/19\"'),(14,'vRP:jail:time','-1'),(15,'vRP:admin:jail:time','-1'),(15,'vRP:datatable','{\"inventory\":{\"wbody|WEAPON_SMG\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":2},\"water\":{\"amount\":12},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":161},\"wbody|WEAPON_WRENCH\":{\"amount\":1},\"bilheteguia\":{\"amount\":1},\"wammo|WEAPON_STUNGUN\":{\"amount\":602},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":377},\"hamgurger\":{\"amount\":11},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":244},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":101},\"phone\":{\"amount\":1}},\"groups\":{\"MotoClub - Braço Direito\":true,\"user\":true},\"phone_directory\":[],\"health\":200,\"customization\":{\"1\":[51,0,1],\"2\":[21,1,2],\"3\":[51,0,2],\"4\":[6,1,2],\"5\":[0,0,2],\"6\":[75,1,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[10,0,2],\"11\":[15,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[65536,2,110],\"16\":[65537,2,1],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,5],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[5,1],\"modelhash\":1885233650,\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[6,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":6.9937096787876,\"hunger\":13.337775996374,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"physical\":{\"strength\":30},\"hacker\":{\"c++\":0,\"lua\":0,\"logic\":0,\"hacking\":0}},\"weapons\":{\"WEAPON_SMG\":{\"ammo\":152},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_VINTAGEPISTOL\":{\"ammo\":0}},\"cloakroom_idle\":{\"p1\":[-1,0],\"modelhash\":1885233650,\"17\":[256,2,255],\"p9\":[-1,0],\"19\":[33686018,2,255],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"13\":[0,2,0],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"20\":[33686018,2,255],\"10\":[0,0,2],\"0\":[0,0,0],\"1\":[0,0,2],\"p0\":[-1,0],\"p8\":[-1,0],\"16\":[0,2,255],\"p6\":[-1,0],\"18\":[33686016,2,255],\"14\":[0,2,255],\"p4\":[-1,0],\"12\":[0,0,0],\"p2\":[-1,0],\"11\":[0,0,2],\"15\":[0,2,228]},\"position\":{\"z\":43.151767730712,\"x\":301.04516601562,\"y\":-490.97409057618}}'),(15,'vRP:firstid','\"12/12/19\"'),(15,'vRP:tattoos','[]'),(16,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"hunger\":1.5,\"inventory\":[],\"thirst\":1.5,\"groups\":[]}'),(17,'vRP:datatable','{\"hunger\":0.5,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"position\":{\"y\":2570.4819335938,\"z\":45.563930511474,\"x\":1641.5478515625},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[10,2,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[27,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[258,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p0\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0]},\"inventory\":{\"hamgurger\":{\"amount\":12},\"bilheteguia\":{\"amount\":1},\"water\":{\"amount\":10},\"medkit\":{\"amount\":38}},\"thirst\":0.5,\"health\":200,\"weapons\":[],\"groups\":{\"user\":true}}'),(17,'vRP:firstid','\"12/12/19\"'),(17,'vRP:jail:time','1'),(17,'vRP:police_records','[Multa] 3000 € por Sem habilitação<br />'),(18,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[21,4,2],\"3\":[1,0,2],\"4\":[22,0,2],\"5\":[0,0,2],\"6\":[3,0,2],\"7\":[0,0,2],\"8\":[31,10,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[99,4,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[67109130,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p2\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":179,\"weapons\":[],\"thirst\":6.9454951869478,\"hunger\":5.722746654429,\"inventory\":{\"water\":{\"amount\":6},\"donut\":{\"amount\":5}},\"position\":{\"x\":-211.83306884766,\"z\":30.391620635986,\"y\":-1324.456665039},\"groups\":{\"Vanilla - Membro\":true,\"user\":true}}'),(18,'vRP:firstid','\"12/12/19\"'),(19,'vRP:datatable','{\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,2],\"2\":[4,3,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[18,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[6,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[196608,2,110],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,29],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[2,0],\"p2\":[5,2],\"p0\":[6,0],\"p10\":[-1,0],\"p6\":[29,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650},\"position\":{\"z\":26.422344207764,\"y\":-1097.3819580078,\"x\":-46.563270568848},\"weapons\":[],\"thirst\":43.136239649226,\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"hunger\":30.818119824616,\"health\":169}'),(19,'vRP:firstid','\"12/12/19\"'),(20,'vRP:admin:jail:time','-1'),(20,'vRP:datatable','{\"inventory\":{\"potedecocaina\":{\"amount\":12},\"folhadeganza\":{\"amount\":75}},\"health\":200,\"position\":{\"z\":28.774271011352,\"x\":77.417854309082,\"y\":-1129.0538330078},\"groups\":{\"vipdiamante\":true,\"superadmin\":true,\"Ammunation\":true,\"user\":true},\"phone_directory\":[],\"thirst\":24.301358768546,\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":0},\"WEAPON_MICROSMG\":{\"ammo\":0},\"WEAPON_ASSAULTRIFLE\":{\"ammo\":100}},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"lua\":0,\"c++\":0,\"hacking\":0}},\"customization\":{\"1\":[51,0,1],\"2\":[11,0,2],\"3\":[12,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[4,0,2],\"7\":[0,0,2],\"8\":[16,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,2],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,4],\"0\":[0,0,0],\"p8\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"p2\":[4,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p6\":[6,0],\"p7\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650},\"hunger\":21.400679384272}'),(20,'vRP:firstid','\"12/12/19\"'),(20,'vRP:home:wardrobe','{\"grove\":{\"1\":[51,0,1],\"2\":[11,0,2],\"3\":[12,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[4,0,2],\"7\":[0,0,2],\"8\":[16,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,6],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[4,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[6,0]}}'),(20,'vRP:jail:time','-1'),(20,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />[Multa] 5000 € por Porte ilegal de arma<br />[Multa] 1000 € por Desrespeito á autoridade.<br />'),(21,'vRP:datatable','{\"inventory\":[],\"thirst\":1.5,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"groups\":[],\"hunger\":1.5}'),(22,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"hunger\":23.6081430737,\"thirst\":36.216286147402,\"position\":{\"y\":-1376.0029296875,\"x\":216.43397521972,\"z\":30.580514907836},\"inventory\":[],\"weapons\":[],\"groups\":{\"user\":true,\"Reporter TV\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"modelhash\":1885233650,\"p6\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0]},\"health\":188}'),(22,'vRP:firstid','\"12/12/19\"'),(23,'vRP:datatable','{\"inventory\":[],\"groups\":[],\"hunger\":1.0,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"thirst\":1.0}'),(24,'vRP:datatable','{\"health\":120,\"groups\":{\"PSP - Recruta\":true,\"user\":true},\"hunger\":13.706757515638,\"weapons\":[],\"inventory\":[],\"cloakroom_idle\":{\"p10\":[-1,0],\"9\":[0,1,2],\"7\":[0,0,2],\"8\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"11\":[0,0,2],\"15\":[0,2,100],\"p5\":[-1,0],\"13\":[0,2,0],\"17\":[256,2,255],\"p7\":[-1,0],\"19\":[33686018,2,255],\"p9\":[-1,0],\"1\":[0,0,2],\"2\":[0,0,2],\"0\":[0,0,0],\"20\":[33686018,2,255],\"modelhash\":1885233650,\"12\":[0,0,0],\"16\":[0,2,255],\"p0\":[-1,0],\"10\":[0,0,2],\"p2\":[-1,0],\"p4\":[-1,0],\"14\":[0,2,255],\"p6\":[-1,0],\"p8\":[-1,0],\"18\":[33686016,2,255],\"p1\":[-1,0],\"p3\":[-1,0]},\"position\":{\"y\":-672.54901123046,\"z\":29.704181671142,\"x\":68.980773925782},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[1,0,2],\"4\":[1,0,2],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,2],\"9\":[0,0,0],\"10\":[0,0,2],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,2,112],\"16\":[0,2,255],\"17\":[0,0,255],\"18\":[33554432,0,255],\"19\":[2,0,255],\"20\":[131074,2,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p2\":[-1,0],\"modelhash\":-1067576423,\"p0\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0]},\"thirst\":20.413515031274}'),(24,'vRP:firstid','\"12/13/19\"'),(25,'vRP:datatable','{\"thirst\":1.8209781723328,\"health\":132,\"position\":{\"x\":-64.622940063476,\"y\":-1089.6622314454,\"z\":26.191886901856},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"kebab\":{\"amount\":14},\"redbull\":{\"amount\":14}},\"groups\":{\"user\":true},\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[11,5,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[2,0,2],\"11\":[32,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[327680,2,238],\"16\":[0,2,0],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,16],\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p0\":[16,7],\"p10\":[-1,0],\"p9\":[-1,0],\"p1\":[-1,0]},\"hunger\":1.6604890861664}'),(25,'vRP:firstid','\"12/13/19\"'),(26,'vRP:datatable','{\"health\":200,\"customization\":{\"modelhash\":653289389,\"9\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,0],\"3\":[0,0,2],\"4\":[0,0,2],\"11\":[0,0,0],\"15\":[0,2,119],\"p5\":[-1,0],\"13\":[0,0,0],\"17\":[0,2,255],\"p7\":[-1,0],\"19\":[514,0,255],\"p9\":[-1,0],\"1\":[0,0,0],\"2\":[0,0,2],\"0\":[0,0,0],\"p10\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"20\":[131074,2,255],\"p6\":[-1,0],\"16\":[0,2,255],\"12\":[0,0,0],\"14\":[0,2,255],\"10\":[0,0,2],\"p8\":[-1,0],\"18\":[33685504,0,255],\"p1\":[-1,0],\"p0\":[-1,0]},\"cloakroom_idle\":{\"modelhash\":1885233650,\"9\":[0,1,2],\"7\":[0,0,2],\"8\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"11\":[0,0,2],\"p1\":[-1,0],\"p5\":[-1,0],\"13\":[0,2,0],\"17\":[256,2,255],\"p7\":[-1,0],\"19\":[33686018,2,255],\"p9\":[-1,0],\"1\":[0,0,2],\"2\":[0,0,2],\"0\":[0,0,0],\"p10\":[-1,0],\"p2\":[-1,0],\"14\":[0,2,255],\"p4\":[-1,0],\"20\":[33686018,2,255],\"p6\":[-1,0],\"16\":[0,2,255],\"12\":[0,0,0],\"p0\":[-1,0],\"10\":[0,0,2],\"p8\":[-1,0],\"18\":[33686016,2,255],\"15\":[0,2,100],\"p3\":[-1,0]},\"hunger\":5.9271202877936,\"groups\":{\"admin\":true,\"GNR - Chefe\":true,\"user\":true,\"superadmin\":true},\"inventory\":{\"medkit\":{\"amount\":9},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wammo|WEAPON_SMG\":{\"amount\":220},\"wammo|WEAPON_FIREEXTINGUISHER\":{\"amount\":225},\"hamgurger\":{\"amount\":13},\"wammo|WEAPON_SPECIALCARBINE\":{\"amount\":205},\"wbody|WEAPON_SMG\":{\"amount\":1},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":250},\"cocacola\":{\"amount\":11},\"wbody|WEAPON_SPECIALCARBINE\":{\"amount\":1}},\"phone_directory\":[],\"position\":{\"y\":-879.3900756836,\"z\":32.033416748046,\"x\":181.41326904296},\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":237},\"WEAPON_ASSAULTRIFLE\":{\"ammo\":122}},\"thirst\":6.8542405755888,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(26,'vRP:firstid','\"12/13/19\"'),(27,'vRP:datatable','{\"position\":{\"z\":29.219522476196,\"y\":-998.66467285156,\"x\":421.46398925782},\"groups\":{\"user\":true},\"thirst\":62.392637717994,\"health\":120,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"water\":{\"amount\":1}},\"weapons\":[],\"hunger\":78.446318858998,\"customization\":{\"1\":[0,0,2],\"2\":[15,0,1],\"3\":[7,0,2],\"4\":[7,0,2],\"5\":[0,0,2],\"6\":[6,0,2],\"7\":[0,0,2],\"8\":[20,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[65,3,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,102],\"16\":[0,2,255],\"17\":[50331904,2,255],\"18\":[33620480,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p10\":[-1,0],\"modelhash\":-1667301416,\"p3\":[-1,0],\"0\":[0,0,0],\"p8\":[-1,0],\"p9\":[-1,0]}}'),(27,'vRP:firstid','\"12/13/19\"'),(27,'vRP:head:overlay','{\"6\":[255,0,0],\"7\":[255,0,0],\"8\":[255,2,0],\"9\":[255,0,5],\"-1\":[29,0,0],\"12\":[15,0,0],\"10\":[255,1,0],\"11\":[255,0,0],\"0\":[255,0,0],\"1\":[255,1,0],\"2\":[1,1,0],\"3\":[255,0,0],\"4\":[0,0,0],\"5\":[255,2,0]}'),(28,'vRP:datatable','{\"position\":{\"z\":26.422344207764,\"y\":-1097.3819580078,\"x\":-46.563270568848},\"groups\":{\"user\":true},\"thirst\":31.355619493922,\"health\":200,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[73,0,1],\"3\":[17,0,2],\"4\":[97,13,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[3,0,2],\"11\":[54,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,110],\"16\":[13,2,0],\"17\":[256,2,0],\"18\":[33620480,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,6],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[6,1],\"p1\":[8,3],\"p2\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p3\":[-1,0],\"0\":[0,0,0],\"p8\":[-1,0],\"p9\":[-1,0]},\"weapons\":[],\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"hunger\":23.927809746964}'),(28,'vRP:firstid','\"12/13/19\"'),(28,'vRP:head:overlay','{\"6\":[255,0,0],\"7\":[255,0,0],\"8\":[255,2,0],\"9\":[255,0,0],\"10\":[255,1,0],\"12\":[73,0,0],\"1\":[16,1,5],\"11\":[255,0,0],\"0\":[255,0,0],\"-1\":[255,0,0],\"2\":[255,1,0],\"3\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0]}'),(29,'vRP:datatable','{\"weapons\":{\"WEAPON_BZGAS\":{\"ammo\":3},\"WEAPON_SMOKEGRENADE\":{\"ammo\":3},\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":250},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":250},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_SMG\":{\"ammo\":250},\"WEAPON_SNIPERRIFLE\":{\"ammo\":250}},\"position\":{\"y\":-1011.0219726562,\"x\":146.05807495118,\"z\":31.265588760376},\"groups\":{\"user\":true,\"PSP - Chefe\":true},\"inventory\":{\"hamgurger\":{\"amount\":10},\"water\":{\"amount\":20},\"medkit\":{\"amount\":30}},\"hunger\":43.190664298988,\"health\":175,\"cloakroom_idle\":{\"1\":[0,0,1],\"2\":[14,1,2],\"3\":[8,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[2,6,2],\"7\":[0,0,2],\"8\":[8,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[8,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[65536,2,110],\"16\":[393216,2,1],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,5],\"0\":[0,0,0],\"p1\":[5,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[0,0]},\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,0],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,0,118],\"16\":[0,0,255],\"17\":[256,0,255],\"18\":[0,0,255],\"19\":[0,0,255],\"20\":[131584,0,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":-905948951,\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"hacking\":0,\"logic\":0,\"c++\":0},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"physical\":{\"strength\":30}},\"phone_directory\":[],\"thirst\":82.88132859799}'),(29,'vRP:firstid','\"12/13/19\"'),(30,'vRP:datatable','{\"groups\":{\"estagiario\":true,\"Mecanico\":true,\"user\":true},\"hunger\":10.622512657378,\"health\":190,\"phone_directory\":[],\"customization\":{\"p7\":[-1,0],\"4\":[20,0,2],\"p5\":[-1,0],\"2\":[11,5,2],\"0\":[0,0,0],\"19\":[33686018,2,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"11\":[20,0,2],\"p1\":[-1,0],\"9\":[0,1,2],\"p3\":[-1,0],\"7\":[0,0,2],\"8\":[26,3,2],\"5\":[0,0,2],\"6\":[18,0,2],\"p8\":[-1,0],\"p6\":[-1,0],\"3\":[1,0,2],\"1\":[3,0,1],\"15\":[327680,2,100],\"p10\":[-1,0],\"16\":[0,2,2],\"p0\":[-1,0],\"18\":[33685760,2,0],\"p2\":[0,0],\"12\":[65536,0,0],\"p4\":[-1,0],\"14\":[0,2,255],\"10\":[0,0,2],\"20\":[33686018,2,0],\"13\":[0,1,0],\"17\":[259,2,0]},\"gaptitudes\":{\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"position\":{\"x\":-20.654108047486,\"y\":-1122.4129638672,\"z\":26.286933898926},\"inventory\":{\"water\":{\"amount\":6},\"medkit\":{\"amount\":10},\"hamgurger\":{\"amount\":5},\"repairkit\":{\"amount\":19}},\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":162},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":250},\"WEAPON_SMG\":{\"ammo\":216}},\"thirst\":36.323082221236}'),(30,'vRP:firstid','\"12/13/19\"'),(30,'vRP:police_records','[Multa] 500 € por Direção Perigosa<br />[Multa] 2000 € por Sem habilitação<br />[Multa] 1000 € por Ultrapassar sinal vermelho<br />[Multa] 500 € por Direção Perigosa<br />[Multa] 1000 € por Ultrapassar sinal vermelho<br />'),(31,'vRP:datatable','{\"health\":199,\"hunger\":27.543797408346,\"customization\":{\"1\":[0,0,1],\"2\":[5,0,1],\"3\":[0,0,2],\"4\":[4,1,2],\"5\":[0,0,2],\"6\":[25,0,2],\"7\":[0,0,2],\"8\":[58,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[55,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[1,2,2],\"17\":[256,2,0],\"18\":[33620224,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p6\":[10,1],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p0\":[13,3],\"p2\":[3,0],\"p9\":[-1,0]},\"inventory\":{\"water\":{\"amount\":11},\"wbody|WEAPON_SMOKEGRENADE\":{\"amount\":1},\"kebab\":{\"amount\":5},\"cocacola\":{\"amount\":4},\"hamgurger\":{\"amount\":12},\"wammo|WEAPON_PUMPSHOTGUN\":{\"amount\":245},\"wbody|WEAPON_PUMPSHOTGUN\":{\"amount\":1},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1},\"orangejuice\":{\"amount\":15},\"medkit\":{\"amount\":20},\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":238},\"icetea\":{\"amount\":10},\"donut\":{\"amount\":12},\"wammo|WEAPON_SMOKEGRENADE\":{\"amount\":25}},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":153.0},\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"groups\":{\"GNR - Chefe\":true,\"user\":true,\"estagiario\":true},\"position\":{\"x\":-206.19316101074,\"z\":31.363983154296,\"y\":-1305.7142333984},\"thirst\":25.156631215388,\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_BZGAS\":{\"ammo\":25},\"WEAPON_NIGHTSTICK\":{\"ammo\":0}}}'),(31,'vRP:firstid','\"12/13/19\"'),(31,'vRP:head:overlay','{\"9\":[255,0,0],\"8\":[6,2,0],\"7\":[5,0,0],\"6\":[255,0,0],\"11\":[255,0,0],\"10\":[7,1,0],\"3\":[255,0,0],\"2\":[1,1,0],\"1\":[22,1,0],\"0\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"-1\":[0,0,0],\"12\":[5,0,0]}'),(31,'vRP:tattoos','{\"FM_Hip_M_Tat_009\":\"mphipster_overlays\",\"FM_Hip_M_Tat_000\":\"mphipster_overlays\"}'),(32,'vRP:datatable','{\"position\":{\"z\":26.422344207764,\"y\":-1097.3819580078,\"x\":-46.563270568848},\"groups\":{\"user\":true},\"thirst\":36.545914598828,\"health\":122,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":[],\"weapons\":[],\"hunger\":27.522957299414,\"customization\":{\"1\":[0,0,1],\"2\":[14,0,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[3,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[31,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,108],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0]}}'),(32,'vRP:firstid','\"12/13/19\"'),(33,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[1,0,2],\"3\":[28,0,2],\"4\":[1,2,2],\"5\":[0,0,2],\"6\":[12,0,2],\"7\":[0,0,2],\"8\":[4,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[23,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,110],\"16\":[2,2,6],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,1],\"0\":[0,0,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p2\":[0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0]},\"groups\":{\"Elétricista\":true,\"user\":true},\"position\":{\"z\":31.002155303956,\"y\":-809.30297851562,\"x\":214.56425476074},\"health\":147,\"inventory\":{\"hamgurger\":{\"amount\":10},\"water\":{\"amount\":10},\"money\":{\"amount\":4735}},\"hunger\":25.166476853944,\"weapons\":{\"WEAPON_PETROLCAN\":{\"ammo\":1}},\"thirst\":38.832953707888}'),(33,'vRP:firstid','\"12/13/19\"'),(34,'vRP:datatable','{\"weapons\":[],\"position\":{\"y\":-1112.2843017578,\"z\":27.435914993286,\"x\":-58.57569885254},\"hunger\":16.995522655216,\"health\":199,\"thirst\":19.491045310434,\"inventory\":[],\"customization\":{\"p8\":[-1,0],\"18\":[33686016,2,255],\"11\":[0,0,2],\"p1\":[-1,0],\"15\":[0,2,100],\"p5\":[-1,0],\"13\":[0,2,0],\"p3\":[-1,0],\"5\":[0,0,2],\"6\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"1\":[0,0,2],\"2\":[0,0,2],\"0\":[0,0,0],\"p7\":[-1,0],\"19\":[33686018,2,255],\"p9\":[-1,0],\"8\":[0,0,2],\"10\":[0,0,2],\"20\":[33686018,2,255],\"12\":[0,0,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p6\":[-1,0],\"16\":[0,2,255],\"p4\":[-1,0],\"14\":[0,2,255],\"modelhash\":1885233650,\"17\":[256,2,255],\"p10\":[-1,0],\"9\":[0,1,2],\"7\":[0,0,2]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":{\"user\":true}}'),(34,'vRP:firstid','\"12/13/19\"'),(35,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[21,1,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[23,1,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[62,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[65536,2,100],\"16\":[0,2,0],\"17\":[257,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,15],\"0\":[0,0,0],\"p9\":[-1,0],\"p10\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p1\":[5,0],\"p2\":[0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p0\":[15,0],\"modelhash\":1885233650},\"groups\":{\"user\":true},\"position\":{\"z\":47.63882446289,\"y\":-296.72689819336,\"x\":42.55004119873},\"health\":143,\"inventory\":[],\"hunger\":16.522133849934,\"weapons\":[],\"thirst\":24.544267699866}'),(35,'vRP:firstid','\"12/13/19\"'),(36,'vRP:admin:jail:time','300'),(36,'vRP:datatable','{\"weapons\":{\"WEAPON_SMG\":{\"ammo\":42}},\"groups\":{\"Mecanico\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0}},\"health\":120,\"hunger\":88.14777160398,\"phone_directory\":[],\"customization\":{\"13\":[0,1,0],\"p3\":[-1,0],\"15\":[196608,2,100],\"p5\":[-1,0],\"p7\":[-1,0],\"19\":[33686018,2,0],\"p9\":[-1,0],\"17\":[256,2,0],\"11\":[132,0,2],\"p1\":[-1,0],\"modelhash\":1885233650,\"5\":[0,0,2],\"4\":[24,0,2],\"3\":[2,0,2],\"2\":[8,3,2],\"9\":[0,1,2],\"8\":[110,0,2],\"7\":[0,0,2],\"6\":[3,4,2],\"1\":[0,0,1],\"0\":[0,0,0],\"p2\":[-1,0],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[0,2,255],\"18\":[33685760,2,0],\"p6\":[8,0],\"16\":[262144,2,6],\"p8\":[-1,0],\"10\":[0,0,2],\"20\":[33686018,2,8],\"p0\":[-1,0],\"p10\":[-1,0]},\"position\":{\"y\":2570.3210449218,\"x\":1643.4522705078,\"z\":45.56485748291},\"thirst\":100,\"inventory\":{\"wammo|WEAPON_SMG\":{\"amount\":120},\"wammo|WEAPON_COMBATPISTOL\":{\"amount\":201},\"radio \":{\"amount\":1},\"kebab\":{\"amount\":12},\"repairkit\":{\"amount\":7},\"radio\":{\"amount\":1}}}'),(36,'vRP:firstid','\"12/13/19\"'),(36,'vRP:jail:time','-1'),(36,'vRP:police_records','[Multa] 1000 € por Ultrapassar sinal vermelho<br />[Multa] 2000 € por Alta Velocidade<br />'),(37,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p10\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"user\":true},\"position\":{\"z\":36.49225616455,\"y\":-858.80743408204,\"x\":16.75947380066},\"health\":179,\"inventory\":[],\"hunger\":12.551886607708,\"weapons\":[],\"thirst\":18.103773215414}'),(37,'vRP:firstid','\"12/13/19\"'),(38,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p9\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"hunger\":15.100952768072,\"weapons\":[],\"thirst\":23.701905536146,\"position\":{\"x\":-58.687236785888,\"z\":26.43560218811,\"y\":-1115.366821289},\"health\":200}'),(38,'vRP:firstid','\"12/13/19\"'),(39,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":1.5000807507858,\"inventory\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"health\":200,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0]},\"thirst\":1.5001615015718,\"position\":{\"z\":47.924312591552,\"x\":238.81219482422,\"y\":-404.93762207032}}'),(39,'vRP:firstid','\"12/13/19\"'),(40,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"groups\":[],\"hunger\":1.0,\"inventory\":[],\"thirst\":1.0}'),(41,'vRP:admin:jail:time','-1'),(41,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"weapons\":[],\"hunger\":38.777205507368,\"groups\":{\"user\":true,\"Reporter TV\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p10\":[-1,0],\"0\":[0,0,0]},\"position\":{\"x\":2382.8364257812,\"y\":2897.921875,\"z\":40.270442962646},\"health\":180,\"thirst\":60.554411014736,\"inventory\":[]}'),(41,'vRP:firstid','\"12/14/19\"'),(42,'vRP:datatable','{\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650},\"position\":{\"x\":403.95657348632,\"y\":-1024.9250488282,\"z\":29.256368637084},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"inventory\":[],\"thirst\":24.938477045074,\"hunger\":17.469238522536,\"health\":192}'),(42,'vRP:firstid','\"12/14/19\"'),(43,'vRP:admin:jail:time','-1'),(43,'vRP:datatable','{\"gaptitudes\":{\"hacker\":{\"lua\":0,\"hacking\":0,\"logic\":0,\"c++\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0}},\"cloakroom_idle\":{\"p10\":[-1,0],\"1\":[0,0,1],\"0\":[0,0,0],\"3\":[1,0,2],\"2\":[11,5,2],\"5\":[0,0,2],\"4\":[10,0,2],\"p0\":[-1,0],\"10\":[0,0,2],\"20\":[33686018,2,0],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[0,2,255],\"p2\":[0,0],\"p6\":[-1,0],\"16\":[589824,2,2],\"p8\":[-1,0],\"18\":[33685760,2,0],\"7\":[0,0,2],\"6\":[40,9,2],\"9\":[0,1,2],\"8\":[21,0,2],\"11\":[31,0,2],\"p1\":[-1,0],\"p5\":[-1,0],\"13\":[0,1,0],\"p3\":[-1,0],\"15\":[327680,2,100],\"17\":[256,2,0],\"p7\":[-1,0],\"19\":[33686018,2,0],\"p9\":[-1,0],\"modelhash\":1885233650},\"hunger\":11.849868423254,\"groups\":{\"user\":true,\"PSP - Tenente\":true},\"phone_directory\":[],\"inventory\":{\"orangejuice\":{\"amount\":7},\"medkit\":{\"amount\":24},\"tacos\":{\"amount\":7}},\"thirst\":25.576694314204,\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[1,0,2],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,2,118],\"16\":[0,0,255],\"17\":[256,0,255],\"18\":[33554432,0,255],\"19\":[0,0,255],\"20\":[131584,0,255],\"p10\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"0\":[0,0,0],\"modelhash\":-905948951,\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"weapons\":{\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":244}},\"health\":171,\"position\":{\"z\":28.496938705444,\"y\":-1016.4836425782,\"x\":450.97030639648}}'),(43,'vRP:firstid','\"12/14/19\"'),(43,'vRP:police_records','[Multa] 3500 € por Tentativa de homicídio.<br />[Multa] 5000 € por Porte ilegal de arma<br />'),(44,'vRP:datatable','{\"hunger\":23.48439679778,\"weapons\":[],\"thirst\":28.270723951968,\"position\":{\"x\":-6.5691986083984,\"y\":-1433.2434082032,\"z\":30.59260559082},\"inventory\":{\"donut\":{\"amount\":5},\"water\":{\"amount\":6}},\"customization\":{\"1\":[111,0,1],\"2\":[11,4,2],\"3\":[0,0,2],\"4\":[59,0,2],\"5\":[0,0,2],\"6\":[8,13,2],\"7\":[0,0,2],\"8\":[111,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[87,3,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,228],\"16\":[851968,2,255],\"17\":[50331904,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p8\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"hacking\":0,\"lua\":0,\"c++\":0,\"logic\":0},\"laboratory\":{\"weed1\":0,\"lsd1\":0,\"cocaine1\":0}},\"groups\":{\"Groove Street - Recruta\":true,\"user\":true},\"health\":128}'),(44,'vRP:firstid','\"12/14/19\"'),(45,'vRP:admin:jail:time','7'),(45,'vRP:datatable','{\"weapons\":[],\"hunger\":4.1630606474442,\"inventory\":{\"redbull\":{\"amount\":7},\"sandwich\":{\"amount\":7}},\"groups\":{\"Carteiro\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":48.0}},\"health\":200,\"position\":{\"x\":1644.0173339844,\"z\":45.564895629882,\"y\":2567.6044921875},\"customization\":{\"1\":[0,0,2],\"2\":[14,0,1],\"3\":[32,0,2],\"4\":[59,6,2],\"5\":[0,0,2],\"6\":[9,1,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[251,1,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[65542,2,255],\"17\":[16777472,2,255],\"18\":[33620480,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0]},\"thirst\":6.3261212948884}'),(45,'vRP:firstid','\"12/14/19\"'),(45,'vRP:head:overlay','{\"-1\":[3,0,0],\"0\":[255,0,0],\"1\":[3,1,0],\"2\":[7,1,0],\"11\":[255,0,0],\"12\":[14,0,1],\"10\":[255,1,0],\"7\":[0,0,0],\"8\":[255,2,0],\"9\":[255,0,0],\"3\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"6\":[255,0,0]}'),(46,'vRP:datatable','{\"health\":169,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"weapons\":{\"WEAPON_PETROLCAN\":{\"ammo\":52}},\"thirst\":69.40350548915,\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"position\":{\"z\":28.393421173096,\"y\":-1028.9525146484,\"x\":-72.72063446045},\"customization\":{\"1\":[0,0,2],\"2\":[14,3,2],\"3\":[0,0,2],\"4\":[16,1,2],\"5\":[0,0,2],\"6\":[5,2,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[22,1,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[131073,2,2],\"17\":[16777472,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,11],\"0\":[0,0,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p6\":[16,0],\"p0\":[45,1],\"p1\":[-1,0],\"p2\":[11,0]},\"hunger\":48.307601955792,\"groups\":{\"user\":true}}'),(46,'vRP:firstid','\"12/14/19\"'),(46,'vRP:police_records','[Multa] 2000 € por Alta Velocidade<br />'),(47,'vRP:datatable','{\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,2],\"2\":[3,5,2],\"3\":[0,0,2],\"4\":[1,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[12,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[7,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[327680,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650},\"position\":{\"z\":28.319133758544,\"y\":-1129.8188476562,\"x\":-11.460765838624},\"weapons\":{\"WEAPON_APPISTOL\":{\"ammo\":71}},\"thirst\":67.842697015586,\"inventory\":{\"water\":{\"amount\":3},\"hamgurger\":{\"amount\":4}},\"hunger\":40.089295319186,\"health\":120}'),(47,'vRP:firstid','\"12/14/19\"'),(48,'vRP:admin:jail:time','-1'),(48,'vRP:datatable','{\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,2],\"2\":[38,0,2],\"3\":[0,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[7,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,0],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,21],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[21,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650},\"position\":{\"z\":103.08764648438,\"y\":181.48681640625,\"x\":373.19161987304},\"weapons\":[],\"health\":165,\"inventory\":{\"wbody|WEAPON_APPISTOL\":{\"amount\":1},\"water\":{\"amount\":10},\"hamgurger\":{\"amount\":10},\"bilheteguia\":{\"amount\":1}},\"hunger\":24.549363934738,\"thirst\":38.598727869476}'),(48,'vRP:firstid','\"12/14/19\"'),(48,'vRP:jail:time','-1'),(48,'vRP:police_records','[Multa] 3000 € por Fuga<br />[Multa] 2000 € por Alta Velocidade<br />[Multa] 3500 € por Tentativa de homicídio.<br />'),(49,'vRP:datatable','{\"health\":200,\"hunger\":14.613294475,\"weapons\":[],\"thirst\":19.226588949998,\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[5,4,2],\"3\":[0,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[3,1,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[22,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[65536,2,2],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,0],\"p6\":[0,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p2\":[0,0],\"p10\":[-1,0],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[2,0],\"modelhash\":1885233650},\"position\":{\"z\":45.646854400634,\"y\":2773.6879882812,\"x\":1707.7485351562},\"groups\":{\"Carteiro\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(49,'vRP:firstid','\"12/14/19\"'),(50,'vRP:datatable','{\"groups\":{\"user\":true},\"weapons\":[],\"position\":{\"z\":31.913230895996,\"y\":-1349.6142578125,\"x\":322.06756591796},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"health\":200,\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"hunger\":2.1870637502554,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p10\":[-1,0],\"p0\":[-1,0]},\"thirst\":3.3741275005106}'),(50,'vRP:firstid','\"12/14/19\"'),(51,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"health\":120,\"thirst\":10.236684744224,\"position\":{\"x\":291.83053588868,\"z\":44.428020477294,\"y\":-410.26034545898},\"hunger\":7.1183423721116}'),(51,'vRP:firstid','\"12/14/19\"'),(52,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p9\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"0\":[0,0,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"health\":127,\"thirst\":5.4596117269676,\"position\":{\"x\":106.13939666748,\"z\":28.819875717164,\"y\":-976.17724609375},\"hunger\":3.9798058634838}'),(52,'vRP:firstid','\"12/14/19\"'),(53,'vRP:datatable','{\"inventory\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,2],\"2\":[2,4,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[4,1,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[257,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650},\"position\":{\"z\":25.339290618896,\"y\":-1111.4736328125,\"x\":-84.46824645996},\"weapons\":[],\"thirst\":19.738510741822,\"health\":190,\"hunger\":13.369255370912,\"groups\":{\"user\":true}}'),(53,'vRP:firstid','\"12/14/19\"'),(54,'vRP:datatable','{\"position\":{\"y\":-1106.1959228516,\"x\":-72.664009094238,\"z\":25.570667266846},\"thirst\":43.984503518648,\"hunger\":30.242251759324,\"health\":158,\"inventory\":[],\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"weapons\":{\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_SPECIALCARBINE\":{\"ammo\":250},\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":250},\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":250},\"WEAPON_SNIPERRIFLE\":{\"ammo\":250},\"WEAPON_SMG\":{\"ammo\":250},\"WEAPON_SMOKEGRENADE\":{\"ammo\":25},\"WEAPON_BZGAS\":{\"ammo\":25},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":250}},\"customization\":{\"1\":[0,0,2],\"2\":[21,1,2],\"3\":[0,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[10,0,2],\"7\":[0,0,2],\"8\":[10,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[76,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[65536,2,228],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,5],\"p0\":[16,3],\"p1\":[5,0],\"p5\":[-1,0],\"p4\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"0\":[0,0,0]},\"groups\":{\"user\":true,\"PJ - Chefe\":true}}'),(54,'vRP:firstid','\"12/14/19\"'),(55,'vRP:datatable','{\"position\":{\"y\":-1097.3819580078,\"x\":-46.563270568848,\"z\":26.422344207764},\"thirst\":35.191498581496,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,1],\"3\":[0,0,2],\"4\":[78,2,2],\"5\":[0,0,2],\"6\":[29,0,2],\"7\":[0,0,2],\"8\":[16,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[7,11,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[2,2,255],\"17\":[184549632,2,255],\"18\":[33620480,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650},\"hunger\":20.845749290748,\"weapons\":[],\"groups\":{\"user\":true},\"inventory\":{\"bilheteguia\":{\"amount\":1}}}'),(55,'vRP:firstid','\"12/14/19\"'),(55,'vRP:head:overlay','{\"10\":[255,1,0],\"11\":[255,0,0],\"5\":[255,2,0],\"4\":[255,0,0],\"7\":[255,0,0],\"6\":[255,0,0],\"9\":[255,0,0],\"8\":[255,2,0],\"2\":[255,1,0],\"12\":[255,0,0],\"3\":[255,0,0],\"-1\":[255,0,0],\"1\":[2,1,0],\"0\":[255,0,0]}'),(56,'vRP:datatable','{\"inventory\":[],\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,2],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,0,0],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,2,116],\"16\":[0,0,255],\"17\":[0,0,255],\"18\":[33554432,0,255],\"19\":[0,0,255],\"20\":[0,0,255],\"0\":[0,0,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"modelhash\":-1782092083,\"p0\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p4\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":41.624385973416,\"groups\":{\"user\":true,\"Prosegur\":true},\"position\":{\"x\":-8.8769264221192,\"y\":-682.72778320312,\"z\":31.941217422486},\"health\":200,\"hunger\":33.812192986706,\"cloakroom_idle\":{\"1\":[0,0,2],\"2\":[1,4,2],\"3\":[0,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[10,0,2],\"7\":[0,0,2],\"8\":[66,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[135,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,110],\"16\":[0,2,2],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,26],\"0\":[0,0,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p5\":[-1,0],\"p6\":[19,1],\"modelhash\":1885233650,\"p0\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p1\":[-1,0],\"p2\":[26,0],\"p4\":[-1,0]},\"weapons\":[]}'),(56,'vRP:firstid','\"12/14/19\"'),(57,'vRP:datatable','{\"weapons\":{\"WEAPON_VINTAGEPISTOL\":{\"ammo\":149}},\"position\":{\"y\":-1122.7103271484,\"x\":-230.16207885742,\"z\":23.03524017334},\"groups\":{\"Vanilla - Membro\":true,\"user\":true},\"inventory\":{\"water\":{\"amount\":2},\"donut\":{\"amount\":6}},\"hunger\":24.287952613868,\"health\":187,\"phone_directory\":[],\"customization\":{\"1\":[0,0,1],\"2\":[4,4,2],\"3\":[4,0,2],\"4\":[28,8,2],\"5\":[0,0,2],\"6\":[18,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[20,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[8,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0]},\"cloakroom_idle\":{\"11\":[50,0,2],\"p1\":[-1,0],\"p10\":[-1,0],\"15\":[262144,2,100],\"p5\":[-1,0],\"13\":[0,2,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"10\":[0,0,2],\"20\":[33686018,2,255],\"p0\":[-1,0],\"5\":[0,0,2],\"4\":[6,1,2],\"3\":[0,0,2],\"2\":[4,4,2],\"9\":[0,1,2],\"8\":[15,0,2],\"7\":[0,0,2],\"modelhash\":1885233650,\"6\":[1,0,2],\"1\":[0,0,2],\"0\":[0,0,0],\"17\":[256,2,255],\"p2\":[-1,0],\"p4\":[-1,0],\"14\":[0,2,255],\"18\":[33686016,2,255],\"12\":[0,0,0],\"19\":[33686018,2,255],\"p8\":[-1,0],\"16\":[1,2,255],\"p6\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"hacking\":0,\"c++\":0,\"logic\":0}},\"thirst\":20.58537527661}'),(57,'vRP:firstid','\"12/18/19\"'),(57,'vRP:jail:time','-1'),(57,'vRP:police_records','[Multa] 500 € por Direção Perigosa<br />[Multa] 2000 € por Fuga<br />'),(58,'vRP:datatable','{\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[4,4,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[10,0,2],\"7\":[0,0,2],\"8\":[3,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,0],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,7],\"0\":[0,0,0],\"p6\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p7\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[7,2],\"p1\":[5,0],\"p2\":[-1,0],\"p4\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":41.946287281488,\"groups\":{\"user\":true,\"Taxi\":true},\"position\":{\"x\":-62.628604888916,\"y\":-1109.998046875,\"z\":26.424411773682},\"health\":200,\"hunger\":28.223143640744,\"weapons\":[]}'),(58,'vRP:firstid','\"12/14/19\"'),(59,'vRP:datatable','{\"customization\":{\"4\":[0,0,2],\"p7\":[-1,0],\"2\":[0,0,2],\"p5\":[-1,0],\"0\":[0,0,0],\"p9\":[-1,0],\"19\":[33686018,2,255],\"modelhash\":1885233650,\"p1\":[-1,0],\"11\":[0,0,2],\"p3\":[-1,0],\"9\":[0,1,2],\"8\":[0,0,2],\"7\":[0,0,2],\"6\":[0,0,2],\"5\":[0,0,2],\"p8\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"3\":[0,0,2],\"1\":[0,0,2],\"18\":[33686016,2,255],\"16\":[0,2,255],\"p10\":[-1,0],\"20\":[33686018,2,255],\"12\":[0,0,0],\"p2\":[-1,0],\"14\":[0,2,255],\"p4\":[-1,0],\"15\":[0,2,100],\"10\":[0,0,2],\"17\":[256,2,255],\"13\":[0,2,0]},\"thirst\":40.071203348076,\"health\":200,\"weapons\":[],\"position\":{\"x\":240.1351776123,\"z\":47.918941497802,\"y\":-397.41320800782},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"hunger\":39.785601674038,\"groups\":{\"user\":true},\"inventory\":[]}'),(59,'vRP:firstid','\"12/14/19\"'),(60,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":35.321312186478,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"customization\":{\"1\":[28,0,1],\"2\":[8,4,2],\"3\":[17,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[10,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[27,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0]},\"health\":194,\"weapons\":[],\"thirst\":48.642624372956,\"position\":{\"x\":26.277389526368,\"y\":-954.28833007812,\"z\":29.521535873414}}'),(60,'vRP:firstid','\"12/14/19\"'),(61,'vRP:admin:jail:time','-1'),(61,'vRP:datatable','{\"phone_directory\":[],\"weapons\":[],\"gaptitudes\":{\"hacker\":{\"logic\":0,\"c++\":0,\"hacking\":0,\"lua\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":78.196188301338,\"inventory\":{\"wammo|WEAPON_SNIPERRIFLE\":{\"amount\":150},\"wbody|WEAPON_SNIPERRIFLE\":{\"amount\":1}},\"customization\":{\"1\":[54,0,1],\"2\":[8,0,1],\"3\":[51,0,2],\"4\":[15,3,2],\"5\":[0,0,2],\"6\":[31,2,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[15,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[131075,2,2],\"17\":[256,2,0],\"18\":[33620224,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,23],\"0\":[0,0,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[16,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p5\":[-1,0],\"p2\":[23,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"MotoClub - Boss\":true,\"user\":true},\"position\":{\"x\":665.74682617188,\"y\":300.4557800293,\"z\":105.94748687744},\"health\":200,\"hunger\":57.848094150662}'),(61,'vRP:firstid','\"12/14/19\"'),(61,'vRP:head:overlay','{\"4\":[255,0,0],\"1\":[12,1,1],\"0\":[255,0,0],\"10\":[255,1,0],\"2\":[19,1,0],\"12\":[8,0,0],\"-1\":[2,0,0],\"5\":[255,2,0],\"6\":[1,0,0],\"7\":[255,0,0],\"8\":[255,2,0],\"9\":[255,0,0],\"3\":[5,0,0],\"11\":[255,0,0]}'),(61,'vRP:tattoos','{\"MP_Buis_F_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_001\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_001\":\"mpbusiness_overlays\",\"MP_Buis_F_LLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_LArm_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Stomach_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_001\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_000\":\"mpbusiness_overlays\"}'),(62,'vRP:datatable','{\"groups\":[],\"hunger\":1.0,\"inventory\":[],\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(63,'vRP:datatable','{\"groups\":[],\"hunger\":1.0,\"inventory\":[],\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(64,'vRP:datatable','{\"groups\":[],\"hunger\":1.0,\"inventory\":[],\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(65,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":2.4849604872928,\"health\":200,\"thirst\":3.4699209745856,\"position\":{\"z\":44.973419189454,\"x\":275.03149414062,\"y\":-392.74908447266},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"modelhash\":1885233650,\"p3\":[-1,0]},\"inventory\":[],\"weapons\":[],\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(65,'vRP:firstid','\"12/15/19\"'),(66,'vRP:admin:jail:time','7'),(66,'vRP:datatable','{\"health\":189,\"hunger\":0.55203702410702,\"weapons\":{\"WEAPON_SNSPISTOL\":{\"ammo\":153}},\"thirst\":0.60407404821404,\"inventory\":[],\"position\":{\"z\":45.56489944458,\"y\":2573.4951171875,\"x\":1639.310180664},\"customization\":{\"1\":[0,0,2],\"2\":[3,4,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[21,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[32,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p10\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p6\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(66,'vRP:firstid','\"12/15/19\"'),(66,'vRP:jail:time','-1'),(66,'vRP:police_records','[Multa] 1000 € por Desrespeito á autoridade.<br />'),(67,'vRP:datatable','{\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,0],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,0,0],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,0,112],\"16\":[0,0,255],\"17\":[0,0,255],\"18\":[0,0,255],\"19\":[0,0,255],\"20\":[0,0,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":-1067576423,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"kebab\":{\"amount\":17},\"medkit\":{\"amount\":14},\"water\":{\"amount\":8},\"hamgurger\":{\"amount\":1}},\"weapons\":{\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_SMOKEGRENADE\":{\"ammo\":5},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":141},\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":150},\"WEAPON_SMG\":{\"ammo\":149}},\"thirst\":89.795637405216,\"hunger\":62.397818702608,\"cloakroom_idle\":{\"0\":[0,0,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"11\":[182,0,2],\"13\":[0,2,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p1\":[6,0],\"p7\":[-1,0],\"17\":[256,2,0],\"p5\":[-1,0],\"15\":[262144,2,238],\"20\":[33686018,2,6],\"10\":[60,0,2],\"p0\":[121,0],\"12\":[0,0,0],\"14\":[0,2,255],\"p4\":[-1,0],\"modelhash\":1885233650,\"18\":[33686016,2,0],\"p8\":[-1,0],\"16\":[0,2,1],\"p6\":[3,0],\"p2\":[-1,0],\"9\":[0,1,2],\"8\":[130,0,2],\"7\":[0,0,2],\"6\":[25,0,2],\"5\":[0,0,2],\"4\":[31,0,2],\"3\":[41,0,2],\"2\":[19,4,2],\"1\":[0,0,2]},\"health\":196,\"position\":{\"x\":-70.578224182128,\"z\":26.988597869874,\"y\":-1079.1354980468},\"groups\":{\"user\":true,\"PSP - Agente\":true}}'),(67,'vRP:firstid','\"12/15/19\"'),(68,'vRP:datatable','{\"hunger\":8.0,\"inventory\":[],\"thirst\":8.0,\"groups\":[]}'),(69,'vRP:datatable','{\"customization\":{\"1\":[111,0,1],\"2\":[21,3,2],\"3\":[17,0,2],\"4\":[42,0,2],\"5\":[0,0,2],\"6\":[6,1,2],\"7\":[0,0,2],\"8\":[82,3,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[191,25,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[65536,2,255],\"17\":[419430659,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[0,0],\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"health\":150,\"weapons\":[],\"thirst\":35.69771092714,\"groups\":{\"user\":true,\"MotoClub - Boss\":true},\"inventory\":{\"folhademaconha\":{\"amount\":164},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"hamgurger\":{\"amount\":23},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":241}},\"position\":{\"x\":684.41864013672,\"z\":25.427295684814,\"y\":-723.0922241211},\"hunger\":38.333113899728}'),(69,'vRP:firstid','\"12/15/19\"'),(70,'vRP:datatable','{\"groups\":{\"user\":true},\"health\":159,\"inventory\":[],\"hunger\":44.324386896386,\"position\":{\"x\":472.8310546875,\"y\":-1021.9053344726,\"z\":27.613248825074},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"thirst\":59.648773792774,\"weapons\":[],\"customization\":{\"1\":[37,0,1],\"2\":[50,0,2],\"3\":[4,0,2],\"4\":[4,2,2],\"5\":[0,0,2],\"6\":[1,14,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[84,5,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[917506,2,2],\"17\":[83886336,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[3,0],\"p3\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0]}}'),(70,'vRP:firstid','\"12/15/19\"'),(70,'vRP:head:overlay','{\"12\":[255,0,0],\"8\":[255,2,0],\"9\":[255,0,0],\"-1\":[2,0,0],\"11\":[255,0,0],\"10\":[255,1,0],\"2\":[255,1,0],\"3\":[255,0,0],\"0\":[255,0,0],\"1\":[2,1,0],\"6\":[1,0,0],\"7\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0]}'),(71,'vRP:datatable','{\"groups\":[],\"inventory\":[],\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"hunger\":1.0}'),(72,'vRP:datatable','{\"customization\":{\"4\":[4,0,2],\"p7\":[-1,0],\"2\":[13,4,2],\"p5\":[-1,0],\"0\":[0,0,0],\"p9\":[-1,0],\"19\":[33686018,2,255],\"modelhash\":1885233650,\"p1\":[-1,0],\"11\":[143,2,2],\"p3\":[-1,0],\"9\":[0,1,2],\"8\":[15,0,2],\"7\":[0,0,2],\"6\":[22,4,2],\"5\":[0,0,2],\"p8\":[-1,0],\"p6\":[-1,0],\"3\":[20,0,2],\"1\":[111,0,1],\"p10\":[-1,0],\"18\":[33685760,2,255],\"p0\":[-1,0],\"16\":[262144,2,255],\"20\":[33686018,2,255],\"12\":[0,0,0],\"p2\":[-1,0],\"14\":[0,2,255],\"p4\":[-1,0],\"15\":[262144,2,110],\"10\":[17,0,2],\"17\":[33554688,2,255],\"13\":[0,1,0]},\"thirst\":72.538271128928,\"health\":152,\"weapons\":[],\"position\":{\"x\":457.9514465332,\"z\":24.914697647094,\"y\":-1001.8819580078},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"hunger\":50.639228572646,\"groups\":{\"Ballas - Chefe\":true,\"user\":true},\"inventory\":{\"lemonade\":{\"amount\":14},\"hamgurger\":{\"amount\":14}}}'),(72,'vRP:firstid','\"12/15/19\"'),(72,'vRP:head:overlay','{\"12\":[255,0,0],\"8\":[0,2,2],\"9\":[255,0,0],\"10\":[255,1,0],\"11\":[255,0,0],\"5\":[255,2,0],\"2\":[255,1,0],\"3\":[255,0,0],\"0\":[255,0,0],\"1\":[255,1,0],\"6\":[255,0,0],\"7\":[255,0,1],\"4\":[255,0,0],\"-1\":[3,0,0]}'),(73,'vRP:datatable','{\"groups\":{\"user\":true,\"Máfia d´Ouro - Membro\":true},\"health\":189,\"customization\":{\"1\":[0,0,1],\"2\":[13,4,2],\"3\":[87,0,2],\"4\":[47,1,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[125,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[50,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[1,2,255],\"15\":[262144,2,110],\"16\":[1,2,2],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,1],\"0\":[0,0,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[2,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0],\"p2\":[1,0],\"p1\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p7\":[-1,0],\"p0\":[-1,0]},\"hunger\":89.49759940892,\"gaptitudes\":{\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"position\":{\"x\":31.473487854004,\"y\":6607.7993164062,\"z\":32.449081420898},\"inventory\":{\"donut\":{\"amount\":3},\"cocacola\":{\"amount\":1},\"water\":{\"amount\":4}},\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":198},\"WEAPON_APPISTOL\":{\"ammo\":0}},\"thirst\":64.995198817868}'),(73,'vRP:firstid','\"12/15/19\"'),(73,'vRP:police_records','[Multa] 3000 € por Fuga<br />[Multa] 3000 € por Fuga<br />[Multa] 1000 € por Direção Perigosa<br />'),(74,'vRP:datatable','{\"groups\":{\"Prosegur\":true,\"user\":true},\"health\":200,\"inventory\":[],\"hunger\":23.41501901735,\"position\":{\"x\":5.0991020202636,\"y\":-676.45788574218,\"z\":32.33804321289},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"thirst\":38.330038034702,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650}}'),(74,'vRP:firstid','\"12/15/19\"'),(75,'vRP:datatable','{\"groups\":{\"user\":true},\"thirst\":96.211256723124,\"customization\":{\"5\":[0,0,2],\"6\":[8,2,2],\"7\":[0,0,2],\"8\":[125,0,2],\"1\":[0,0,1],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[26,0,2],\"0\":[0,0,0],\"p0\":[-1,0],\"10\":[0,0,2],\"modelhash\":1885233650,\"p8\":[-1,0],\"18\":[33685760,2,255],\"p6\":[-1,0],\"16\":[131072,2,255],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[1,2,255],\"p2\":[-1,0],\"p10\":[-1,0],\"20\":[33686018,2,255],\"p3\":[-1,0],\"p9\":[-1,0],\"19\":[33686018,2,255],\"17\":[256,2,255],\"p7\":[-1,0],\"15\":[0,2,100],\"p5\":[-1,0],\"9\":[0,1,2],\"11\":[49,0,2],\"p1\":[-1,0],\"13\":[0,1,0]},\"weapons\":{\"WEAPON_SMG\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":248},\"WEAPON_KNIFE\":{\"ammo\":0},\"WEAPON_MICROSMG\":{\"ammo\":195}},\"health\":200,\"inventory\":{\"water\":{\"amount\":16},\"hamgurger\":{\"amount\":17}},\"hunger\":79.605626354868,\"position\":{\"y\":-840.57159423828,\"z\":30.352754592896,\"x\":177.2592010498},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(75,'vRP:firstid','\"12/15/19\"'),(76,'vRP:datatable','{\"thirst\":90.880580259782,\"hunger\":67.690290129892,\"inventory\":{\"repairkit\":{\"amount\":23},\"cocacola\":{\"amount\":13},\"pizza\":{\"amount\":13}},\"weapons\":[],\"health\":140,\"position\":{\"x\":226.59191894532,\"z\":29.97241783142,\"y\":-1398.7010498046},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0}},\"customization\":{\"1\":[18,0,1],\"2\":[13,4,2],\"3\":[49,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[26,2,2],\"7\":[0,0,2],\"8\":[125,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[49,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[1,2,255],\"15\":[262144,2,100],\"16\":[131072,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p10\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"user\":true,\"Mecanico\":true,\"estagiario\":true}}'),(76,'vRP:firstid','\"12/15/19\"'),(77,'vRP:datatable','{\"weapons\":{\"WEAPON_SMG\":{\"ammo\":200}},\"thirst\":69.323736701134,\"inventory\":{\"pizza\":{\"amount\":9},\"water\":{\"amount\":8},\"kebab\":{\"amount\":31},\"icetea\":{\"amount\":11}},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":146,\"hunger\":53.450130720254,\"groups\":{\"user\":true},\"position\":{\"y\":-1172.4072265625,\"x\":-36.101512908936,\"z\":36.051391601562},\"customization\":{\"1\":[0,0,1],\"2\":[19,2,2],\"3\":[44,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[10,0,2],\"7\":[0,0,2],\"8\":[28,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[29,5,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[131072,2,108],\"16\":[0,2,1],\"17\":[83886336,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p1\":[3,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p3\":[-1,0],\"p5\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0]}}'),(77,'vRP:firstid','\"12/15/19\"'),(78,'vRP:datatable','{\"groups\":{\"user\":true},\"health\":200,\"inventory\":[],\"hunger\":1.500019038419,\"position\":{\"x\":237.26887512208,\"y\":-405.33584594726,\"z\":47.92431640625},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"thirst\":1.5000380768382,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p1\":[-1,0],\"p7\":[-1,0]}}'),(78,'vRP:firstid','\"12/15/19\"'),(79,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"health\":200,\"position\":{\"x\":-49.77444076538,\"y\":-1051.5560302734,\"z\":28.013286590576},\"inventory\":[],\"hunger\":11.63480509053,\"thirst\":19.76961018106,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p8\":[-1,0],\"modelhash\":1885233650,\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"groups\":{\"user\":true}}'),(79,'vRP:firstid','\"12/15/19\"'),(80,'vRP:admin:jail:time','-1'),(80,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[3,4,2],\"3\":[19,0,2],\"4\":[26,0,2],\"5\":[0,0,2],\"6\":[27,0,2],\"7\":[0,0,2],\"8\":[3,0,2],\"9\":[0,1,2],\"10\":[24,0,2],\"11\":[106,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,110],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,4],\"0\":[0,0,0],\"p9\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[4,0]},\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"hamgurger\":{\"amount\":9},\"redbull\":{\"amount\":8}},\"weapons\":[],\"thirst\":71.766423621584,\"health\":172,\"hunger\":57.883211810792,\"position\":{\"x\":271.32421875,\"z\":28.567440032958,\"y\":-884.86785888672},\"groups\":{\"user\":true,\"Vanilla - Segurança\":true}}'),(80,'vRP:firstid','\"12/15/19\"'),(80,'vRP:jail:time','-1'),(80,'vRP:police_records','[Multa] 2500 € por Tráfico de drogas<br />'),(81,'vRP:datatable','{\"thirst\":13.0,\"hunger\":13.0,\"inventory\":[],\"groups\":[]}'),(82,'vRP:datatable','{\"thirst\":12.5,\"hunger\":12.5,\"inventory\":[],\"groups\":[]}'),(83,'vRP:datatable','{\"hunger\":1.0,\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":[],\"inventory\":[]}'),(84,'vRP:datatable','{\"hunger\":1.0,\"thirst\":1.0,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":[],\"inventory\":[]}'),(85,'vRP:datatable','{\"hunger\":1.5,\"thirst\":1.5,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":[],\"inventory\":[]}'),(86,'vRP:datatable','{\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[17,0,2],\"4\":[83,0,2],\"5\":[0,0,2],\"6\":[1,1,2],\"7\":[0,0,2],\"8\":[23,1,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[7,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[65536,2,1],\"17\":[257,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p9\":[-1,0],\"p1\":[3,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650},\"thirst\":37.297600701186,\"health\":174,\"weapons\":[],\"inventory\":{\"donut\":{\"amount\":1},\"water\":{\"amount\":5}},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"hunger\":30.648800350594,\"groups\":{\"Taxi\":true,\"user\":true},\"position\":{\"x\":1833.9559326172,\"z\":69.887657165528,\"y\":2127.5705566406}}'),(86,'vRP:firstid','\"12/15/19\"'),(87,'vRP:datatable','{\"weapons\":[],\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"c++\":0,\"hacking\":0,\"lua\":0},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0}},\"thirst\":67.999839236588,\"hunger\":49.999919618294,\"groups\":{\"admin\":true,\"headadmin\":true,\"Governo\":true,\"user\":true},\"customization\":{\"1\":[97,0,1],\"2\":[3,3,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[4,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"inventory\":{\"medkit\":{\"amount\":10}},\"health\":151,\"position\":{\"x\":86.947326660156,\"y\":205.6106262207,\"z\":147.34756469726}}'),(87,'vRP:firstid','\"12/15/19\"'),(87,'vRP:police_records','[Multa] 1000 € por Desrespeito á autoridade.<br />'),(88,'vRP:datatable','{\"inventory\":{\"hamgurger\":{\"amount\":23},\"bilheteguia\":{\"amount\":1},\"water\":{\"amount\":20}},\"groups\":{\"MotoClub - Motoqueiro\":true,\"user\":true},\"health\":120,\"customization\":{\"1\":[0,0,1],\"2\":[21,4,2],\"3\":[29,0,2],\"4\":[6,1,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[15,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[1,2,0],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,84],\"0\":[0,0,0],\"p0\":[84,8],\"p1\":[5,0],\"modelhash\":1885233650,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[2,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":39.650779134284,\"hunger\":30.607558329134,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":144.0}},\"weapons\":{\"WEAPON_PETROLCAN\":{\"ammo\":4},\"WEAPON_VINTAGEPISTOL\":{\"ammo\":161}},\"position\":{\"z\":29.369970321656,\"x\":203.78118896484,\"y\":-1029.5150146484}}'),(88,'vRP:firstid','\"12/15/19\"'),(88,'vRP:tattoos','[]'),(89,'vRP:datatable','{\"groups\":{\"user\":true},\"health\":200,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":432.86001586914,\"y\":-736.79486083984,\"z\":99.195640563964},\"weapons\":{\"WEAPON_ADVANCEDRIFLE\":{\"ammo\":213}},\"thirst\":1.6648620650238,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p10\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p8\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650},\"hunger\":1.5824310325118,\"inventory\":[]}'),(89,'vRP:firstid','\"12/15/19\"'),(90,'vRP:datatable','{\"groups\":[],\"thirst\":18.0,\"inventory\":[],\"hunger\":18.0,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(91,'vRP:datatable','{\"groups\":{\"user\":true},\"health\":200,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":252.59440612792,\"y\":-376.0252380371,\"z\":44.162006378174},\"weapons\":[],\"thirst\":16.487059399498,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p10\":[-1,0]},\"hunger\":10.993529699748,\"inventory\":{\"bilheteguia\":{\"amount\":1}}}'),(91,'vRP:firstid','\"12/15/19\"'),(92,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"0\":[0,0],\"model\":\"mp_m_freemode_01\"},\"groups\":{\"user\":true},\"thirst\":5.5,\"position\":{\"x\":238.89158117212,\"y\":-405.01692616288,\"z\":47.032302741892},\"hunger\":5.5,\"inventory\":[]}'),(93,'vRP:datatable','{\"thirst\":3.5,\"groups\":[],\"hunger\":3.5,\"inventory\":[]}'),(94,'vRP:datatable','{\"weapons\":[],\"thirst\":2.5228875729086,\"hunger\":2.5114437864544,\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p1\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0]},\"inventory\":[],\"position\":{\"y\":-409.36688232422,\"x\":236.29942321778,\"z\":47.924320220948},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"groups\":{\"user\":true}}'),(94,'vRP:firstid','\"12/15/19\"'),(95,'vRP:datatable','{\"groups\":[],\"hunger\":56.5,\"inventory\":[],\"thirst\":56.5}'),(96,'vRP:datatable','{\"inventory\":[],\"groups\":[],\"thirst\":2.0,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"hunger\":2.0}'),(97,'vRP:datatable','{\"thirst\":2.7158203243766,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p7\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0]},\"hunger\":2.607910162188,\"health\":200,\"weapons\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"groups\":{\"user\":true},\"position\":{\"z\":47.924312591552,\"y\":-407.73471069336,\"x\":237.0379333496}}'),(97,'vRP:firstid','\"12/15/19\"'),(98,'vRP:datatable','{\"groups\":{\"user\":true},\"thirst\":41.904335778056,\"customization\":{\"1\":[0,0,2],\"2\":[10,1,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[10,14,2],\"7\":[0,0,2],\"8\":[43,3,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[23,2,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[65536,2,228],\"16\":[917504,2,255],\"17\":[33554691,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"health\":166,\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"hunger\":32.95216788903,\"position\":{\"y\":-1367.0246582032,\"z\":39.534378051758,\"x\":250.90255737304},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(98,'vRP:firstid','\"12/16/19\"'),(99,'vRP:datatable','{\"weapons\":[],\"thirst\":56.601381203802,\"hunger\":42.550690601902,\"health\":199,\"customization\":{\"1\":[0,0,2],\"2\":[13,0,1],\"3\":[4,0,2],\"4\":[9,13,2],\"5\":[0,0,2],\"6\":[6,1,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[23,2,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,108],\"16\":[65549,2,1],\"17\":[33554688,2,0],\"18\":[33620480,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,5],\"0\":[0,0,0],\"modelhash\":1885233650,\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"p2\":[0,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p10\":[-1,0],\"p0\":[-1,0],\"p1\":[5,1]},\"inventory\":[],\"position\":{\"y\":-1275.9624023438,\"x\":-234.095703125,\"z\":30.990964889526},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"groups\":{\"user\":true,\"Prosegur\":true}}'),(99,'vRP:firstid','\"12/15/19\"'),(99,'vRP:head:overlay','{\"11\":[255,0,0],\"10\":[255,1,0],\"-1\":[255,0,0],\"12\":[13,0,3],\"0\":[255,0,0],\"1\":[9,1,3],\"2\":[7,1,1],\"3\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"6\":[255,0,0],\"7\":[255,0,0],\"8\":[255,2,0],\"9\":[255,0,0]}'),(100,'vRP:datatable','{\"weapons\":[],\"thirst\":16.082900562406,\"hunger\":9.7914502812028,\"health\":120,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"modelhash\":1885233650,\"p7\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"inventory\":[],\"position\":{\"y\":-1111.7735595704,\"x\":-80.478981018066,\"z\":25.988082885742},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"groups\":{\"user\":true}}'),(100,'vRP:firstid','\"12/15/19\"'),(101,'vRP:datatable','{\"groups\":[],\"hunger\":14.0,\"inventory\":[],\"thirst\":14.0}'),(102,'vRP:datatable','{\"health\":200,\"groups\":{\"user\":true,\"PSP - Recruta\":true},\"thirst\":57.356960554426,\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":237},\"WEAPON_STUNGUN\":{\"ammo\":1},\"WEAPON_NIGHTSTICK\":{\"ammo\":0}},\"position\":{\"y\":6473.4096679688,\"z\":30.950952529908,\"x\":-145.87677001954},\"cloakroom_idle\":{\"1\":[0,0,2],\"2\":[16,2,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[3,0,2],\"7\":[0,0,2],\"8\":[4,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[4,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[131072,2,100],\"16\":[0,2,0],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,12],\"0\":[0,0,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p0\":[12,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0]},\"hunger\":40.928480277214,\"inventory\":[],\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[1,0,2],\"9\":[0,0,0],\"10\":[0,0,2],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,2,112],\"16\":[0,2,0],\"17\":[0,0,0],\"18\":[33554432,0,0],\"19\":[2,0,0],\"20\":[131074,2,0],\"0\":[0,0,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p0\":[0,0],\"p1\":[1,0],\"p2\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":-1067576423,\"p9\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(102,'vRP:firstid','\"12/15/19\"'),(103,'vRP:datatable','{\"customization\":{\"0\":[0,0,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"11\":[191,0,2],\"13\":[0,1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p1\":[0,0],\"p7\":[-1,0],\"17\":[257,2,0],\"p5\":[-1,0],\"15\":[65536,2,100],\"20\":[33686018,2,0],\"10\":[0,0,2],\"p0\":[-1,0],\"12\":[0,0,0],\"14\":[0,2,255],\"p4\":[-1,0],\"modelhash\":1885233650,\"18\":[33685760,2,0],\"p8\":[-1,0],\"16\":[0,2,1],\"p6\":[-1,0],\"p2\":[-1,0],\"9\":[0,1,2],\"8\":[23,1,2],\"7\":[0,0,2],\"6\":[32,0,2],\"5\":[0,0,2],\"4\":[7,0,2],\"3\":[1,0,2],\"2\":[4,1,2],\"1\":[111,0,1]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"inventory\":{\"kebab\":{\"amount\":2},\"redbull\":{\"amount\":2}},\"weapons\":{\"WEAPON_VINTAGEPISTOL\":{\"ammo\":99}},\"thirst\":100,\"health\":200,\"phone_directory\":[],\"hunger\":100,\"position\":{\"x\":224.81932067872,\"z\":29.170232772828,\"y\":-1406.97265625},\"groups\":{\"user\":true,\"MotoClub - Braço Direito\":true}}'),(103,'vRP:firstid','\"12/16/19\"'),(104,'vRP:admin:jail:time','499'),(104,'vRP:datatable','{\"health\":120,\"groups\":{\"user\":true},\"weapons\":{\"WEAPON_KNIFE\":{\"ammo\":0},\"WEAPON_APPISTOL\":{\"ammo\":250},\"WEAPON_ASSAULTRIFLE\":{\"ammo\":248}},\"inventory\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"position\":{\"y\":2570.2780761718,\"z\":45.564823150634,\"x\":1643.4561767578},\"hunger\":0.5010556913356,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p0\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0]},\"thirst\":0.5021113826712}'),(104,'vRP:firstid','\"12/15/19\"'),(105,'vRP:datatable','{\"health\":179,\"groups\":{\"user\":true},\"weapons\":{\"WEAPON_KNIFE\":{\"ammo\":0},\"WEAPON_APPISTOL\":{\"ammo\":0},\"WEAPON_PISTOL\":{\"ammo\":156}},\"inventory\":[],\"thirst\":16.075318128662,\"position\":{\"y\":-373.16024780274,\"z\":45.079414367676,\"x\":276.70138549804},\"hunger\":11.28765906433,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p1\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(105,'vRP:firstid','\"12/15/19\"'),(106,'vRP:datatable','{\"health\":159,\"groups\":{\"user\":true},\"weapons\":[],\"inventory\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"position\":{\"y\":-383.74356079102,\"z\":44.829681396484,\"x\":263.58401489258},\"hunger\":7.8173509566978,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p5\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p4\":[-1,0],\"p0\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0]},\"thirst\":9.1347019133956}'),(106,'vRP:firstid','\"12/15/19\"'),(107,'vRP:datatable','{\"health\":120,\"groups\":{\"user\":true},\"phone_directory\":[],\"weapons\":[],\"inventory\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"position\":{\"y\":-378.44766235352,\"z\":44.748874664306,\"x\":267.0329284668},\"hunger\":7.3829839447114,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p2\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0]},\"thirst\":8.7659678894228}'),(107,'vRP:firstid','\"12/15/19\"'),(108,'vRP:datatable','{\"health\":200,\"groups\":{\"user\":true},\"weapons\":[],\"position\":{\"y\":-1381.650024414,\"z\":33.742404937744,\"x\":238.7562866211},\"thirst\":30.563049700184,\"hunger\":23.281524850092,\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p0\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(108,'vRP:firstid','\"12/15/19\"'),(109,'vRP:datatable','{\"health\":179,\"groups\":{\"user\":true},\"weapons\":[],\"inventory\":[],\"thirst\":5.8998398608508,\"position\":{\"y\":-406.16845703125,\"z\":47.924312591552,\"x\":237.4073638916},\"hunger\":4.9499199304254,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0]},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(109,'vRP:firstid','\"12/15/19\"'),(110,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":-44.12126159668,\"y\":-1084.267578125,\"z\":26.23341178894},\"customization\":{\"1\":[0,0,2],\"2\":[2,4,2],\"3\":[0,0,2],\"4\":[78,4,2],\"5\":[0,0,2],\"6\":[31,2,2],\"7\":[0,0,2],\"8\":[16,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[72,1,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[16777216,2,255],\"15\":[262144,2,100],\"16\":[131076,2,0],\"17\":[16777472,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,16],\"0\":[0,0,0],\"p9\":[-1,0],\"p10\":[-1,0],\"p0\":[16,5],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"modelhash\":1885233650,\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"hunger\":29.323972471756,\"thirst\":43.147944943512,\"groups\":{\"Groove Street - Membro\":true,\"user\":true},\"health\":199,\"inventory\":[]}'),(110,'vRP:firstid','\"12/15/19\"'),(111,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[39,0,1],\"3\":[20,0,2],\"4\":[82,4,2],\"5\":[0,0,2],\"6\":[42,1,2],\"7\":[0,0,2],\"8\":[73,1,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[81,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[65540,2,255],\"17\":[257,2,255],\"18\":[33620224,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"medkit\":{\"amount\":2},\"hamgurger\":{\"amount\":12},\"cocacola\":{\"amount\":7}},\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":233}},\"thirst\":63.974814002792,\"groups\":{\"user\":true,\"moderador\":true,\"Groove Street - Chefe\":true},\"health\":190,\"position\":{\"x\":-54.756782531738,\"z\":27.065065383912,\"y\":-1075.9934082032},\"hunger\":45.987407001396}'),(111,'vRP:firstid','\"12/15/19\"'),(111,'vRP:head:overlay','{\"0\":[255,0,0],\"11\":[255,0,0],\"10\":[255,1,0],\"9\":[255,0,0],\"7\":[255,0,0],\"4\":[255,0,0],\"6\":[255,0,0],\"5\":[255,2,0],\"8\":[255,2,0],\"12\":[39,0,0],\"2\":[255,1,0],\"1\":[255,1,0],\"-1\":[255,0,0],\"3\":[255,0,0]}'),(111,'vRP:tattoos','{\"MP_Buis_M_Back_000\":\"mpbusiness_overlays\"}'),(112,'vRP:datatable','{\"hunger\":11.359951757122,\"health\":200,\"inventory\":{\"donut\":{\"amount\":2},\"icetea\":{\"amount\":2},\"hamgurger\":{\"amount\":5},\"water\":{\"amount\":7}},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[11,0,2],\"3\":[4,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[4,0,2],\"7\":[0,0,2],\"8\":[44,0,2],\"9\":[0,1,2],\"10\":[3,0,2],\"11\":[6,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,110],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p0\":[4,0],\"modelhash\":1885233650,\"p9\":[-1,0],\"p7\":[-1,0],\"p1\":[3,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p10\":[-1,0]},\"groups\":{\"user\":true},\"thirst\":15.719903514244,\"weapons\":[],\"position\":{\"x\":134.2638092041,\"y\":-1362.7447509766,\"z\":29.306259155274}}'),(112,'vRP:firstid','\"12/15/19\"'),(112,'vRP:head:overlay','{\"4\":[255,0,0],\"3\":[255,0,0],\"2\":[255,1,0],\"1\":[2,1,0],\"0\":[255,0,0],\"12\":[255,0,0],\"11\":[255,0,0],\"10\":[255,1,0],\"-1\":[0,0,0],\"9\":[255,0,0],\"8\":[255,2,0],\"7\":[255,0,0],\"6\":[255,0,0],\"5\":[255,2,0]}'),(113,'vRP:datatable','{\"customization\":{\"1\":[0,0,2],\"2\":[7,4,2],\"3\":[17,0,2],\"4\":[33,0,2],\"5\":[0,0,2],\"6\":[24,0,2],\"7\":[0,0,2],\"8\":[131,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[171,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":160,\"weapons\":[],\"thirst\":77.059822801828,\"groups\":{\"user\":true},\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"position\":{\"x\":341.67819213868,\"z\":28.924087524414,\"y\":-1523.2492675782},\"hunger\":56.7799114009}'),(113,'vRP:firstid','\"12/16/19\"'),(114,'vRP:datatable','{\"thirst\":10.770128930248,\"hunger\":9.3850644651232,\"inventory\":{\"bilheteguia\":{\"amount\":11}},\"groups\":{\"user\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":200,\"position\":{\"x\":244.36596679688,\"z\":44.502418518066,\"y\":-378.02276611328},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p10\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p9\":[-1,0],\"p3\":[-1,0],\"0\":[0,0,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0]},\"weapons\":[]}'),(114,'vRP:firstid','\"12/16/19\"'),(115,'vRP:datatable','{\"hunger\":29.05765900319,\"health\":200,\"weapons\":[],\"inventory\":[],\"groups\":{\"user\":true,\"Elétricista\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[38,0,1],\"3\":[24,0,2],\"4\":[1,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[49,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,1,255],\"15\":[0,2,100],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33620480,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,0],\"0\":[0,0,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[0,0],\"p2\":[5,0],\"p3\":[-1,0]},\"position\":{\"z\":31.33868598938,\"y\":-818.99871826172,\"x\":112.6485824585},\"thirst\":40.115318006382}'),(115,'vRP:firstid','\"12/16/19\"'),(115,'vRP:head:overlay','{\"10\":[255,1,0],\"3\":[255,0,0],\"0\":[255,0,0],\"1\":[22,1,3],\"6\":[255,0,0],\"7\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"8\":[255,2,0],\"9\":[255,0,0],\"12\":[38,0,0],\"-1\":[43,0,0],\"11\":[255,0,0],\"2\":[255,1,0]}'),(116,'vRP:datatable','{\"thirst\":2.00006975956,\"position\":{\"x\":237.6787284147,\"z\":47.58601078298,\"y\":-404.6074323384},\"hunger\":2.00003487978,\"inventory\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"0\":[0,0],\"model\":\"mp_m_freemode_01\"}}'),(117,'vRP:datatable','{\"thirst\":100,\"groups\":[],\"inventory\":[],\"hunger\":100}'),(118,'vRP:datatable','{\"thirst\":33.656279261908,\"phone_directory\":[],\"cloakroom_idle\":{\"p10\":[-1,0],\"18\":[33686016,2,0],\"p8\":[-1,0],\"16\":[0,2,1],\"14\":[0,2,255],\"p4\":[-1,0],\"p2\":[3,0],\"20\":[33686018,2,0],\"10\":[0,0,2],\"p0\":[-1,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"9\":[0,1,2],\"11\":[38,0,2],\"17\":[256,2,0],\"13\":[0,2,0],\"5\":[0,0,2],\"4\":[4,0,2],\"3\":[0,0,2],\"modelhash\":1885233650,\"1\":[0,0,2],\"0\":[0,0,0],\"8\":[131,0,2],\"6\":[1,0,2],\"12\":[0,0,0],\"2\":[21,3,2],\"p3\":[-1,0],\"p6\":[0,0],\"p1\":[0,0],\"p5\":[-1,0],\"7\":[0,0,2],\"p7\":[-1,0],\"15\":[196608,2,228]},\"hunger\":36.078139630962,\"groups\":{\"UberEats\":true,\"user\":true},\"weapons\":{\"WEAPON_CROWBAR\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":0},\"WEAPON_FLASHLIGHT\":{\"ammo\":0}},\"health\":135,\"position\":{\"x\":-1079.6141357422,\"z\":77.494407653808,\"y\":463.08279418946},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"customization\":{\"p10\":[-1,0],\"18\":[33620480,2,0],\"p8\":[-1,0],\"16\":[0,2,6],\"14\":[0,1,255],\"p4\":[-1,0],\"p2\":[3,0],\"20\":[33686018,2,0],\"10\":[1,0,2],\"p0\":[-1,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"9\":[0,1,2],\"11\":[105,0,2],\"7\":[0,0,2],\"6\":[36,0,2],\"15\":[0,2,110],\"4\":[28,0,2],\"3\":[0,0,2],\"modelhash\":1885233650,\"1\":[0,0,2],\"0\":[0,0,0],\"8\":[0,0,2],\"12\":[0,0,0],\"2\":[9,0,1],\"p3\":[-1,0],\"5\":[0,0,2],\"p6\":[0,0],\"p1\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"13\":[0,2,0],\"17\":[256,2,0]},\"inventory\":{\"cocacola\":{\"amount\":15},\"bilheteguia\":{\"amount\":1},\"orangejuice\":{\"amount\":4},\"hamgurger\":{\"amount\":20},\"medkit\":{\"amount\":19},\"pizza\":{\"amount\":14},\"kebab\":{\"amount\":3}}}'),(118,'vRP:firstid','\"12/16/19\"'),(118,'vRP:head:overlay','{\"11\":[0,0,0],\"0\":[255,0,0],\"1\":[4,1,56],\"2\":[12,1,3],\"12\":[9,0,0],\"-1\":[0,0,0],\"7\":[3,0,1],\"8\":[6,2,0],\"9\":[255,0,0],\"10\":[255,1,0],\"3\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"6\":[255,0,0]}'),(119,'vRP:datatable','{\"phone_directory\":{\"111\":\"quebras \"},\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"cloakroom_idle\":{\"0\":[0,0,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"11\":[93,0,2],\"13\":[0,2,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p1\":[5,0],\"p7\":[-1,0],\"17\":[256,2,0],\"p5\":[-1,0],\"15\":[196608,2,110],\"20\":[33686018,2,10],\"10\":[28,0,2],\"p0\":[11,0],\"12\":[0,0,0],\"14\":[0,2,255],\"p4\":[-1,0],\"modelhash\":1885233650,\"18\":[33686016,2,0],\"p8\":[-1,0],\"16\":[0,2,6],\"p6\":[10,0],\"p2\":[11,0],\"9\":[0,1,2],\"8\":[15,0,2],\"7\":[0,0,2],\"6\":[9,0,2],\"5\":[0,0,2],\"4\":[9,0,2],\"3\":[0,0,2],\"2\":[1,3,2],\"1\":[0,0,2]},\"groups\":{\"moderador\":true,\"estagiario\":true,\"user\":true,\"PSP - Comandante\":true,\"admin\":true},\"weapons\":{\"WEAPON_SMG\":{\"ammo\":248},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":199},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":250},\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_SNIPERRIFLE\":{\"ammo\":199},\"WEAPON_SMOKEGRENADE\":{\"ammo\":4},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":248},\"WEAPON_BZGAS\":{\"ammo\":3}},\"thirst\":10.769724875604,\"inventory\":{\"water\":{\"amount\":21},\"bread\":{\"amount\":17}},\"health\":120,\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,2],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,1,2],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,2,117],\"16\":[0,0,255],\"17\":[256,0,255],\"18\":[33554432,0,255],\"19\":[0,0,255],\"20\":[512,0,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":2124742566,\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"position\":{\"x\":239.12854003906,\"z\":36.708919525146,\"y\":-689.04406738282},\"hunger\":19.814204197392}'),(119,'vRP:firstid','\"12/16/19\"'),(120,'vRP:datatable','{\"inventory\":[],\"thirst\":31.5,\"hunger\":31.5,\"groups\":[]}'),(121,'vRP:datatable','{\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"health\":190,\"position\":{\"z\":26.956203460694,\"x\":-21.226379394532,\"y\":-1120.537475586},\"groups\":{\"user\":true},\"thirst\":50.414894374974,\"weapons\":[],\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"lua\":0,\"c++\":0,\"hacking\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[21,2,2],\"3\":[17,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[7,0,2],\"7\":[0,0,2],\"8\":[3,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[131072,2,100],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,5],\"p6\":[4,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"p2\":[5,0],\"p1\":[5,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p8\":[-1,0],\"p10\":[-1,0],\"p9\":[-1,0]},\"hunger\":39.20744718748}'),(121,'vRP:firstid','\"12/19/19\"'),(122,'vRP:datatable','{\"thirst\":30.83276680662,\"weapons\":[],\"hunger\":22.66638340331,\"health\":200,\"position\":{\"z\":106.28672790528,\"y\":217.36627197266,\"x\":236.66021728516},\"groups\":{\"user\":true},\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"customization\":{\"p1\":[20,0],\"13\":[0,2,0],\"p3\":[-1,0],\"11\":[59,0,2],\"17\":[256,2,0],\"19\":[33686018,2,0],\"15\":[0,2,110],\"p5\":[-1,0],\"p9\":[-1,0],\"3\":[1,0,2],\"2\":[3,0,1],\"1\":[0,0,2],\"0\":[0,0,0],\"7\":[0,0,2],\"6\":[3,0,2],\"5\":[0,0,2],\"4\":[79,0,2],\"9\":[0,1,2],\"8\":[4,0,2],\"p10\":[-1,0],\"p2\":[8,1],\"12\":[0,0,0],\"p0\":[4,0],\"10\":[6,0,2],\"20\":[33686018,2,4],\"p6\":[2,0],\"16\":[0,2,0],\"p4\":[-1,0],\"14\":[0,1,255],\"18\":[33620480,2,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0]},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(122,'vRP:firstid','\"12/16/19\"'),(122,'vRP:head:overlay','{\"4\":[255,0,0],\"3\":[255,0,0],\"6\":[0,0,0],\"5\":[255,2,0],\"0\":[1,0,0],\"2\":[255,1,0],\"1\":[23,1,1],\"10\":[255,1,0],\"11\":[255,0,0],\"12\":[3,0,0],\"8\":[255,2,0],\"7\":[2,0,0],\"-1\":[255,0,0],\"9\":[1,0,0]}'),(122,'vRP:tattoos','{\"MP_Buis_M_Neck_003\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_002\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_LLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_002\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_F_RLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_F_RArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Stomach_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Neck_001\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_002\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_001\":\"mpbusiness_overlays\",\"MP_Buis_F_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_001\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_001\":\"mpbusiness_overlays\"}'),(123,'vRP:datatable','{\"groups\":{\"user\":true},\"thirst\":1.027349183568,\"position\":{\"y\":-404.97316547484,\"z\":47.996259638108,\"x\":238.39255571924},\"inventory\":[],\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"model\":\"mp_m_freemode_01\",\"0\":[0,0]},\"hunger\":1.013674591784,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}}}'),(123,'vRP:firstid','\"12/16/19\"'),(124,'vRP:datatable','{\"customization\":{\"1\":[0,0,2],\"2\":[6,5,2],\"3\":[14,0,2],\"4\":[88,22,2],\"5\":[0,0,2],\"6\":[77,10,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[8,0,2],\"11\":[212,22,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[327680,2,102],\"16\":[655382,2,2],\"17\":[369099008,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[3,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[3,3]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"health\":200,\"weapons\":[],\"thirst\":34.04026074868,\"groups\":{\"user\":true,\"Ballas - Chefe\":true,\"admin\":true,\"estagiario\":true},\"phone_directory\":[],\"inventory\":{\"kebab\":{\"amount\":8},\"redbull\":{\"amount\":12},\"medkit\":{\"amount\":28},\"hamgurger\":{\"amount\":3}},\"position\":{\"x\":338.83419799804,\"z\":32.509246826172,\"y\":-1390.3682861328},\"hunger\":25.598551038092}'),(124,'vRP:firstid','\"12/16/19\"'),(124,'vRP:tattoos','{\"MP_Buis_M_LeftArm_001\":\"mpbusiness_overlays\",\"MP_Buis_M_Chest_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Back_000\":\"mpbusiness_overlays\",\"MP_Buis_F_RLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_F_LLeg_000\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_000\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_001\":\"mpbusiness_overlays\",\"MP_Buis_M_RightArm_000\":\"mpbusiness_overlays\"}'),(125,'vRP:datatable','{\"thirst\":42.839130478366,\"weapons\":[],\"hunger\":31.169565239182,\"health\":200,\"position\":{\"z\":38.696376800538,\"y\":-115.7486038208,\"x\":-364.36987304688},\"groups\":{\"Carteiro\":true,\"user\":true},\"inventory\":{\"hamgurger\":{\"amount\":10},\"lemonade\":{\"amount\":10},\"cartas\":{\"amount\":18},\"encomendas\":{\"amount\":19}},\"customization\":{\"1\":[0,0,2],\"2\":[4,4,2],\"3\":[24,0,2],\"4\":[9,7,2],\"5\":[0,0,2],\"6\":[25,0,2],\"7\":[0,0,2],\"8\":[12,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[166,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[7,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,23],\"p10\":[-1,0],\"p1\":[23,9],\"p0\":[-1,0],\"p3\":[-1,0],\"p2\":[0,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(125,'vRP:firstid','\"12/16/19\"'),(125,'vRP:head:overlay','{\"10\":[255,1,0],\"11\":[255,0,0],\"1\":[10,1,0],\"-1\":[0,0,0],\"12\":[255,0,0],\"0\":[255,0,0],\"5\":[255,2,0],\"4\":[255,0,0],\"3\":[255,0,0],\"2\":[255,1,0],\"9\":[255,0,0],\"8\":[255,2,0],\"7\":[255,0,0],\"6\":[255,0,0]}'),(126,'vRP:datatable','{\"thirst\":8.0,\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"hunger\":8.0,\"groups\":[],\"inventory\":[]}'),(127,'vRP:datatable','{\"thirst\":3.3878170011098,\"weapons\":[],\"hunger\":2.443908500555,\"health\":200,\"position\":{\"z\":44.91976928711,\"y\":-342.9845275879,\"x\":292.7829284668},\"groups\":{\"user\":true},\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p10\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650,\"p8\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(127,'vRP:firstid','\"12/16/19\"'),(128,'vRP:datatable','{\"thirst\":1.546561827601,\"position\":{\"z\":48.720711733214,\"y\":-404.09370223246,\"x\":237.95991765056},\"groups\":{\"user\":true},\"hunger\":1.5232809138004,\"inventory\":[],\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"0\":[0,0],\"model\":\"mp_m_freemode_01\"},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(129,'vRP:datatable','{\"thirst\":4.1756491337624,\"weapons\":[],\"hunger\":2.8378245668812,\"health\":120,\"position\":{\"z\":43.98225402832,\"y\":-361.5712890625,\"x\":198.83251953125},\"groups\":{\"user\":true},\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p10\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p9\":[-1,0],\"p8\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(129,'vRP:firstid','\"12/16/19\"'),(130,'vRP:datatable','{\"thirst\":4.2493903840588,\"weapons\":[],\"hunger\":3.3746951920294,\"health\":200,\"position\":{\"z\":44.919841766358,\"y\":-341.59225463868,\"x\":291.18627929688},\"groups\":{\"user\":true},\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(130,'vRP:firstid','\"12/16/19\"'),(131,'vRP:datatable','{\"thirst\":1.0,\"hunger\":1.0,\"inventory\":[],\"groups\":[],\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}}}'),(132,'vRP:datatable','{\"thirst\":12.0,\"inventory\":[],\"groups\":[],\"hunger\":12.0}'),(133,'vRP:datatable','{\"thirst\":16.268631931834,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"hunger\":9.6343159659172,\"health\":200,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0]},\"inventory\":[],\"groups\":{\"user\":true},\"position\":{\"z\":44.173351287842,\"y\":-800.5015258789,\"x\":34.577499389648}}'),(133,'vRP:firstid','\"12/16/19\"'),(134,'vRP:datatable','{\"thirst\":5.5398626109752,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"hunger\":3.5199313054876,\"health\":200,\"weapons\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p7\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p10\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p8\":[-1,0]},\"inventory\":[],\"groups\":{\"user\":true},\"position\":{\"z\":42.028953552246,\"y\":-703.92071533204,\"x\":141.69836425782}}'),(134,'vRP:firstid','\"12/16/19\"'),(135,'vRP:datatable','{\"thirst\":2.0132251399634,\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"model\":\"mp_m_freemode_01\",\"0\":[0,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"hunger\":2.0066125699816,\"inventory\":[],\"groups\":{\"user\":true},\"position\":{\"z\":47.241724243388,\"y\":-405.66437532566,\"x\":237.92341004406}}'),(136,'vRP:datatable','{\"thirst\":22.0,\"groups\":[],\"inventory\":[],\"hunger\":22.0}'),(137,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":42.036324494042,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"inventory\":{\"tea\":{\"amount\":7},\"pizza\":{\"amount\":7},\"water\":{\"amount\":6}},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[3,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[6,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[13,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,7],\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p6\":[7,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p1\":[0,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0]},\"thirst\":38.072648988086,\"weapons\":[],\"health\":200,\"position\":{\"x\":136.03463745118,\"y\":-1386.4903564454,\"z\":28.745164871216}}'),(137,'vRP:firstid','\"12/16/19\"'),(138,'vRP:datatable','{\"thirst\":1.5,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"groups\":[],\"inventory\":[],\"hunger\":1.5}'),(139,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":-14.49974822998,\"y\":-1124.2180175782,\"z\":27.28783416748},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p4\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"p10\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"groups\":{\"user\":true},\"health\":120,\"thirst\":40.648072339692,\"inventory\":[],\"hunger\":24.824036169846}'),(139,'vRP:firstid','\"12/16/19\"'),(140,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":330.20489501954,\"y\":-369.24426269532,\"z\":45.167098999024},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p10\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"hunger\":4.4071135227858,\"health\":200,\"thirst\":5.8142270455718,\"groups\":{\"user\":true},\"inventory\":[]}'),(140,'vRP:firstid','\"12/16/19\"'),(141,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":-1259.2416992188,\"y\":-899.17309570312,\"z\":10.873423576354},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p10\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0]},\"weapons\":[],\"hunger\":6.9767203225986,\"thirst\":10.953440645198,\"inventory\":[],\"health\":200,\"groups\":{\"user\":true}}'),(141,'vRP:firstid','\"12/16/19\"'),(142,'vRP:datatable','{\"thirst\":3.0,\"groups\":[],\"inventory\":[],\"hunger\":3.0}'),(143,'vRP:datatable','{\"thirst\":1.5087629100656,\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"x\":238.19190532248,\"y\":-405.6951908851,\"z\":47.413567091338},\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"0\":[0,0],\"model\":\"mp_m_freemode_01\"},\"groups\":{\"user\":true},\"inventory\":[],\"hunger\":1.5043814550328}'),(143,'vRP:firstid','\"12/16/19\"'),(144,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":9.6266890097904,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"customization\":{\"modelhash\":1885233650,\"14\":[0,2,255],\"p2\":[-1,0],\"12\":[0,0,0],\"p4\":[-1,0],\"p6\":[-1,0],\"16\":[0,2,255],\"p8\":[-1,0],\"18\":[33686016,2,255],\"p0\":[-1,0],\"10\":[0,0,2],\"19\":[33686018,2,255],\"p1\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"9\":[0,1,2],\"6\":[5,0,2],\"7\":[0,0,2],\"8\":[5,0,2],\"5\":[0,0,2],\"11\":[5,0,2],\"3\":[5,0,2],\"4\":[56,0,2],\"17\":[256,2,255],\"2\":[6,4,2],\"p7\":[-1,0],\"0\":[0,0,0],\"p10\":[-1,0],\"p3\":[-1,0],\"20\":[33686018,2,255],\"13\":[0,2,0],\"15\":[262144,2,100],\"1\":[0,0,2]},\"thirst\":14.253378019584,\"weapons\":[],\"health\":120,\"position\":{\"x\":128.96687316894,\"y\":-219.12837219238,\"z\":54.55838394165}}'),(144,'vRP:firstid','\"12/16/19\"'),(145,'vRP:datatable','{\"hunger\":5.0,\"inventory\":[],\"thirst\":5.0,\"groups\":[]}'),(146,'vRP:datatable','{\"health\":200,\"weapons\":{\"WEAPON_ASSAULTRIFLE\":{\"ammo\":93},\"WEAPON_MICROSMG\":{\"ammo\":220}},\"position\":{\"z\":29.323434829712,\"x\":183.8829650879,\"y\":-1008.2578125},\"customization\":{\"1\":[0,0,2],\"2\":[33,0,2],\"3\":[4,0,2],\"4\":[28,5,2],\"5\":[0,0,2],\"6\":[51,0,2],\"7\":[0,0,2],\"8\":[10,2,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[4,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[5,2,6],\"17\":[258,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"0\":[0,0,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[2,0],\"p2\":[1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p1\":[2,0],\"p0\":[8,0]},\"hunger\":17.813225983178,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"c++\":0,\"logic\":0,\"hacking\":0,\"lua\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30}},\"thirst\":28.881698359104,\"groups\":{\"Mecanico\":true,\"user\":true},\"inventory\":{\"pizza\":{\"amount\":10},\"kebab\":{\"amount\":10},\"tacos\":{\"amount\":9},\"water\":{\"amount\":5},\"redbull\":{\"amount\":8},\"hamgurger\":{\"amount\":7}}}'),(146,'vRP:firstid','\"12/16/19\"'),(146,'vRP:head:overlay','{\"12\":[33,0,26],\"10\":[255,1,0],\"11\":[255,0,0],\"3\":[255,0,0],\"2\":[255,1,0],\"1\":[255,1,0],\"-1\":[255,0,0],\"7\":[255,0,0],\"6\":[255,0,0],\"5\":[255,2,0],\"4\":[255,0,0],\"0\":[255,0,0],\"9\":[255,0,0],\"8\":[255,2,0]}'),(147,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":10.50527600773,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"customization\":{\"modelhash\":1885233650,\"14\":[0,2,255],\"p2\":[-1,0],\"12\":[0,0,0],\"p4\":[-1,0],\"p6\":[-1,0],\"16\":[0,2,0],\"p8\":[-1,0],\"18\":[33686016,2,0],\"p0\":[11,0],\"10\":[0,0,2],\"19\":[33686018,2,0],\"p1\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"9\":[0,1,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"5\":[0,0,2],\"11\":[70,2,2],\"3\":[0,0,2],\"4\":[0,0,2],\"17\":[33554688,2,0],\"2\":[0,0,2],\"p7\":[-1,0],\"0\":[0,0,0],\"p5\":[-1,0],\"p3\":[-1,0],\"20\":[33686018,2,11],\"13\":[0,2,0],\"15\":[0,2,100],\"1\":[0,0,2]},\"thirst\":16.510552015462,\"weapons\":[],\"health\":158,\"position\":{\"x\":175.83502197266,\"y\":-185.60375976562,\"z\":54.192043304444}}'),(147,'vRP:firstid','\"12/16/19\"'),(148,'vRP:datatable','{\"hunger\":3.5,\"inventory\":[],\"thirst\":3.5,\"groups\":[]}'),(149,'vRP:datatable','{\"groups\":{\"user\":true},\"hunger\":1.8585761118954,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"p10\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p9\":[-1,0],\"p0\":[-1,0]},\"health\":200,\"weapons\":[],\"thirst\":2.7171522237908,\"position\":{\"x\":280.64727783204,\"y\":-360.00662231446,\"z\":45.072746276856}}'),(149,'vRP:firstid','\"12/16/19\"'),(150,'vRP:datatable','{\"inventory\":[],\"groups\":[],\"hunger\":1.5,\"thirst\":1.5,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(151,'vRP:datatable','{\"position\":{\"x\":206.40106201172,\"y\":-1046.912475586,\"z\":29.20927619934},\"inventory\":[],\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0],\"2\":[0,0],\"3\":[0,0],\"4\":[0,0],\"5\":[0,0],\"6\":[0,0],\"7\":[0,0],\"8\":[0,0],\"9\":[0,0],\"10\":[0,0],\"11\":[0,0],\"12\":[0,0],\"13\":[0,0],\"14\":[0,0],\"15\":[0,0],\"16\":[0,0],\"17\":[0,0],\"18\":[0,0],\"19\":[0,0],\"0\":[0,0],\"model\":\"mp_m_freemode_01\"},\"hunger\":1.507684901434,\"thirst\":1.515369802868,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(152,'vRP:datatable','{\"inventory\":[],\"groups\":[],\"hunger\":1.0,\"thirst\":1.0,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(153,'vRP:datatable','{\"inventory\":[],\"groups\":[],\"hunger\":1.0,\"thirst\":1.0,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30}}}'),(154,'vRP:datatable','{\"hunger\":7.899775927373,\"health\":200,\"weapons\":[],\"inventory\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"z\":47.701389312744,\"y\":-294.9651184082,\"x\":40.383632659912},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0]},\"thirst\":11.799551854746}'),(154,'vRP:firstid','\"12/16/19\"'),(155,'vRP:datatable','{\"hunger\":100,\"groups\":[],\"inventory\":[],\"thirst\":100}'),(156,'vRP:datatable','{\"hunger\":44.46998527386,\"position\":{\"z\":72.964141845704,\"y\":403.83108520508,\"x\":-997.48236083984},\"weapons\":[],\"inventory\":{\"tacos\":{\"amount\":2},\"water\":{\"amount\":2}},\"groups\":{\"user\":true,\"Entregador\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"customization\":{\"1\":[0,0,1],\"2\":[39,0,2],\"3\":[0,0,2],\"4\":[39,0,2],\"5\":[0,0,2],\"6\":[66,0,2],\"7\":[0,0,2],\"8\":[136,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[24,5,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[83886336,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p10\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"modelhash\":1885233650,\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0]},\"health\":200,\"thirst\":60.939970547718}'),(156,'vRP:firstid','\"12/16/19\"'),(157,'vRP:datatable','{\"hunger\":100,\"groups\":[],\"inventory\":[],\"thirst\":100}'),(158,'vRP:datatable','{\"customization\":{\"1\":[0,0,2],\"2\":[8,0,2],\"3\":[1,0,2],\"4\":[25,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[12,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[10,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p1\":[0,1],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p0\":[-1,0],\"p2\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0]},\"weapons\":[],\"position\":{\"x\":-210.82081604004,\"y\":-1305.591796875,\"z\":30.814474105834},\"health\":181,\"thirst\":85.463071273912,\"hunger\":64.731535636942,\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"hacking\":0,\"lua\":0,\"logic\":0,\"c++\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"inventory\":{\"bilheteguia\":{\"amount\":1}},\"groups\":{\"Mecanico\":true,\"user\":true}}'),(158,'vRP:firstid','\"12/17/19\"'),(159,'vRP:datatable','{\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0]},\"health\":200,\"weapons\":[],\"inventory\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"hunger\":11.081199022514,\"position\":{\"z\":44.39140701294,\"y\":-375.99694824218,\"x\":246.00296020508},\"thirst\":16.66239804503}'),(159,'vRP:firstid','\"12/17/19\"'),(160,'vRP:datatable','{\"inventory\":[],\"weapons\":[],\"thirst\":4.569423205202,\"position\":{\"x\":238.98690795898,\"y\":-398.60626220704,\"z\":47.924324035644},\"hunger\":4.0347116026014,\"customization\":{\"13\":[0,2,0],\"18\":[33686016,2,255],\"11\":[0,0,2],\"16\":[0,2,255],\"p6\":[-1,0],\"14\":[0,2,255],\"p4\":[-1,0],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"19\":[33686018,2,255],\"12\":[0,0,0],\"20\":[33686018,2,255],\"10\":[0,0,2],\"0\":[0,0,0],\"17\":[0,2,255],\"p2\":[-1,0],\"15\":[0,2,228],\"modelhash\":1885233650,\"p10\":[-1,0],\"p3\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"p5\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"logic\":0,\"lua\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"lsd1\":0,\"cocaine1\":0}},\"groups\":{\"user\":true},\"health\":200}'),(160,'vRP:firstid','\"12/17/19\"'),(161,'vRP:datatable','{\"groups\":[],\"thirst\":9.0,\"inventory\":[],\"hunger\":9.0}'),(162,'vRP:datatable','{\"hunger\":54.266797088822,\"weapons\":{\"WEAPON_VINTAGEPISTOL\":{\"ammo\":90}},\"thirst\":84.533594177646,\"position\":{\"x\":-2683.0366210938,\"y\":1742.390625,\"z\":82.655487060546},\"inventory\":[],\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p8\":[-1,0],\"p9\":[-1,0],\"p7\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0]},\"gaptitudes\":{\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"logic\":0,\"lua\":0,\"c++\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0}},\"groups\":{\"user\":true},\"health\":120}'),(162,'vRP:firstid','\"12/17/19\"'),(163,'vRP:datatable','{\"customization\":{\"1\":[0,0,1],\"2\":[2,5,2],\"3\":[1,0,2],\"4\":[77,10,2],\"5\":[0,0,2],\"6\":[7,14,2],\"7\":[0,0,2],\"8\":[55,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[49,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[327680,2,228],\"16\":[917514,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0]},\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"inventory\":[],\"weapons\":[],\"thirst\":66.621616442196,\"groups\":{\"user\":true,\"Ballas - Recruta\":true},\"phone_directory\":[],\"health\":148,\"position\":{\"x\":215.43756103516,\"z\":30.3635597229,\"y\":-791.28729248046},\"hunger\":49.060808221098}'),(163,'vRP:firstid','\"12/17/19\"'),(164,'vRP:datatable','{\"inventory\":[],\"hunger\":5.5,\"groups\":[],\"thirst\":5.5}'),(165,'vRP:datatable','{\"inventory\":[],\"hunger\":3.5,\"groups\":[],\"thirst\":3.5}'),(166,'vRP:datatable','{\"thirst\":1.5,\"inventory\":[],\"hunger\":1.5,\"groups\":[]}'),(167,'vRP:datatable','{\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[3,1,2],\"3\":[5,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[5,1,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[3,1,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[65536,2,100],\"16\":[0,2,1],\"17\":[16777473,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"0\":[0,0,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p1\":[2,1],\"p0\":[-1,0]},\"weapons\":[],\"position\":{\"z\":45.752006530762,\"x\":135.01432800292,\"y\":-764.36389160156},\"hunger\":19.960333800944,\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"c++\":0,\"logic\":0,\"hacking\":0,\"lua\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"physical\":{\"strength\":30}},\"inventory\":[],\"groups\":{\"user\":true},\"thirst\":31.920667601886}'),(167,'vRP:firstid','\"12/17/19\"'),(168,'vRP:datatable','{\"weapons\":{\"WEAPON_VINTAGEPISTOL\":{\"ammo\":191}},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":18.474559626168,\"inventory\":[],\"position\":{\"x\":308.02239990234,\"y\":-279.89981079102,\"z\":54.164611816406},\"customization\":{\"1\":[0,0,2],\"2\":[14,1,2],\"3\":[85,0,2],\"4\":[42,2,2],\"5\":[0,0,2],\"6\":[28,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[57,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[65536,2,100],\"16\":[2,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[29,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p2\":[3,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[3,0]},\"groups\":{\"user\":true},\"health\":200,\"hunger\":14.237279813084}'),(168,'vRP:firstid','\"12/17/19\"'),(169,'vRP:datatable','{\"weapons\":{\"WEAPON_MICROSMG\":{\"ammo\":249},\"WEAPON_VINTAGEPISTOL\":{\"ammo\":238}},\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"thirst\":41.404592280218,\"customization\":{\"1\":[0,0,2],\"2\":[15,0,2],\"3\":[0,0,2],\"4\":[14,0,2],\"5\":[0,0,2],\"6\":[37,0,2],\"7\":[0,0,2],\"8\":[44,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[70,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,0],\"0\":[0,0,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[0,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"p5\":[-1,0],\"p2\":[0,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[24,1]},\"inventory\":[],\"groups\":{\"user\":true},\"hunger\":31.202296140114,\"health\":169,\"position\":{\"x\":300.41537475586,\"y\":-249.35063171386,\"z\":54.11629486084}}'),(169,'vRP:firstid','\"12/17/19\"'),(170,'vRP:datatable','{\"inventory\":[],\"thirst\":10.5,\"groups\":[],\"hunger\":10.5}'),(171,'vRP:datatable','{\"health\":120,\"hunger\":41.65151915486,\"position\":{\"x\":-38.885425567626,\"z\":26.438426971436,\"y\":-1110.7150878906},\"cloakroom_idle\":{\"20\":[33686018,2,0],\"10\":[0,0,2],\"p0\":[-1,0],\"9\":[0,1,2],\"8\":[72,0,2],\"7\":[0,0,2],\"6\":[1,2,2],\"5\":[0,0,2],\"4\":[10,0,2],\"3\":[1,0,2],\"2\":[14,3,2],\"1\":[0,0,2],\"0\":[0,0,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"14\":[0,2,255],\"18\":[33686016,2,0],\"p8\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"p2\":[0,0],\"p3\":[-1,0],\"13\":[0,2,0],\"p1\":[16,2],\"11\":[167,3,2],\"17\":[50331904,2,0],\"p5\":[-1,0],\"15\":[196608,2,100],\"p7\":[-1,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"16\":[131072,2,2],\"12\":[0,0,0]},\"inventory\":{\"ferramenta\":{\"amount\":20}},\"gaptitudes\":{\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"groups\":{\"user\":true,\"Elétricista\":true},\"thirst\":64.803038309722,\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,0],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,0,0],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,0,112],\"16\":[0,0,255],\"17\":[0,0,255],\"18\":[0,0,255],\"19\":[0,0,255],\"20\":[0,0,255],\"p0\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"p10\":[-1,0],\"modelhash\":1657546978},\"weapons\":[]}'),(171,'vRP:firstid','\"12/17/19\"'),(172,'vRP:datatable','{\"health\":190,\"hunger\":19.911784840828,\"customization\":{\"20\":[0,0,255],\"10\":[0,0,0],\"p0\":[-1,0],\"9\":[0,0,0],\"8\":[0,0,0],\"7\":[0,0,0],\"6\":[0,0,0],\"5\":[0,0,0],\"4\":[0,0,0],\"3\":[0,0,2],\"2\":[0,0,0],\"1\":[0,0,0],\"0\":[0,0,0],\"modelhash\":1657546978,\"14\":[0,0,255],\"p10\":[-1,0],\"18\":[33554432,0,255],\"p8\":[-1,0],\"p4\":[-1,0],\"p6\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"13\":[0,0,0],\"p1\":[-1,0],\"11\":[0,0,0],\"17\":[0,0,255],\"p5\":[-1,0],\"15\":[0,2,112],\"p7\":[-1,0],\"p9\":[-1,0],\"19\":[0,0,255],\"16\":[0,0,255],\"12\":[0,0,0]},\"cloakroom_idle\":{\"20\":[33686018,2,0],\"10\":[0,0,2],\"p0\":[-1,0],\"9\":[0,1,2],\"8\":[6,0,2],\"7\":[0,0,2],\"6\":[10,0,2],\"5\":[0,0,2],\"4\":[24,0,2],\"3\":[0,0,2],\"2\":[21,1,2],\"1\":[0,0,2],\"0\":[0,0,0],\"modelhash\":1885233650,\"14\":[0,2,255],\"p10\":[-1,0],\"18\":[33686016,2,0],\"p8\":[-1,0],\"p4\":[-1,0],\"p6\":[8,0],\"p2\":[0,0],\"p3\":[-1,0],\"13\":[0,2,0],\"p1\":[-1,0],\"11\":[11,0,2],\"17\":[256,2,0],\"p5\":[-1,0],\"15\":[65536,2,100],\"p7\":[-1,0],\"p9\":[-1,0],\"19\":[33686018,2,0],\"16\":[0,2,2],\"12\":[0,0,0]},\"thirst\":26.323569681656,\"gaptitudes\":{\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"groups\":{\"user\":true,\"Elétricista\":true},\"inventory\":{\"ferramenta\":{\"amount\":19}},\"position\":{\"x\":-559.50787353516,\"z\":34.198909759522,\"y\":2854.3498535156},\"weapons\":[]}'),(172,'vRP:firstid','\"12/17/19\"'),(173,'vRP:datatable','{\"inventory\":[],\"thirst\":5.0,\"groups\":[],\"hunger\":5.0}'),(174,'vRP:admin:jail:time','30'),(174,'vRP:datatable','{\"health\":151,\"hunger\":8.388162041872,\"position\":{\"x\":1643.4372558594,\"z\":45.562522888184,\"y\":2570.5080566406},\"thirst\":12.776324083744,\"gaptitudes\":{\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0}},\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p0\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650,\"p2\":[-1,0],\"0\":[0,0,0],\"p9\":[-1,0]},\"inventory\":[],\"weapons\":[]}'),(174,'vRP:firstid','\"12/17/19\"'),(175,'vRP:datatable','{\"health\":200,\"hunger\":3.4119465607146,\"position\":{\"x\":243.57093811036,\"z\":46.30525970459,\"y\":-392.33068847656},\"thirst\":4.3238931214294,\"gaptitudes\":{\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0}},\"groups\":{\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p0\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p1\":[-1,0],\"p2\":[-1,0],\"p6\":[-1,0],\"p5\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"p9\":[-1,0],\"0\":[0,0,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"inventory\":[],\"weapons\":[]}'),(175,'vRP:firstid','\"12/18/19\"'),(176,'vRP:datatable','{\"inventory\":{\"hamgurger\":{\"amount\":10},\"cocacola\":{\"amount\":9}},\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[3,0,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[13,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[4,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,1],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[3,0],\"modelhash\":1885233650,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[0,0]},\"thirst\":21.15442077079,\"hunger\":38.077210385388,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"physical\":{\"strength\":30},\"hacker\":{\"c++\":0,\"lua\":0,\"logic\":0,\"hacking\":0}},\"weapons\":[],\"position\":{\"z\":28.64112854004,\"x\":319.39562988282,\"y\":-746.40454101562}}'),(176,'vRP:firstid','\"12/18/19\"'),(177,'vRP:datatable','{\"inventory\":[],\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[15,0,2],\"4\":[6,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[15,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,0],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,19],\"0\":[0,0,0],\"p0\":[19,0],\"p1\":[25,4],\"modelhash\":1885233650,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":25.026711459022,\"hunger\":19.01335572951,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"physical\":{\"strength\":30},\"hacker\":{\"c++\":0,\"lua\":0,\"logic\":0,\"hacking\":0}},\"weapons\":[],\"position\":{\"z\":29.372478485108,\"x\":204.4881439209,\"y\":-1030.7316894532}}'),(177,'vRP:firstid','\"12/18/19\"'),(178,'vRP:datatable','{\"inventory\":[],\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[37,0,1],\"2\":[14,1,2],\"3\":[15,0,2],\"4\":[6,0,2],\"5\":[0,0,2],\"6\":[6,0,2],\"7\":[0,0,2],\"8\":[57,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[15,0,2],\"12\":[65536,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[65536,2,108],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":27.533600300548,\"hunger\":20.016800150274,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"position\":{\"z\":29.306392669678,\"x\":194.34902954102,\"y\":-1051.0360107422}}'),(178,'vRP:firstid','\"12/18/19\"'),(179,'vRP:datatable','{\"inventory\":[],\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[19,2,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[31,2,2],\"7\":[0,0,2],\"8\":[46,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[70,9,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[131072,2,100],\"16\":[131072,2,255],\"17\":[150995200,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":37.768441259086,\"hunger\":24.134220629542,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"position\":{\"z\":26.438457489014,\"x\":-39.77363204956,\"y\":-1110.4862060546}}'),(179,'vRP:firstid','\"12/18/19\"'),(180,'vRP:datatable','{\"inventory\":[],\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[12,0,2],\"3\":[0,0,2],\"4\":[1,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":27.081794311572,\"hunger\":17.790897155786,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"position\":{\"z\":54.557838439942,\"x\":123.5279083252,\"y\":-219.62936401368}}'),(180,'vRP:firstid','\"12/18/19\"'),(181,'vRP:admin:jail:time','14'),(181,'vRP:datatable','{\"weapons\":[],\"groups\":{\"UberEats\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"physical\":{\"strength\":275},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0}},\"health\":199,\"hunger\":0.50000426184792,\"position\":{\"y\":2571.353515625,\"x\":1642.3370361328,\"z\":45.564849853516},\"thirst\":0.50000852369582,\"customization\":{\"1\":[0,0,1],\"2\":[19,3,2],\"3\":[4,0,2],\"4\":[28,0,2],\"5\":[0,0,2],\"6\":[3,0,2],\"7\":[0,0,2],\"8\":[32,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[29,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[0,2,6],\"17\":[256,2,0],\"18\":[33685760,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"p2\":[-1,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[2,0],\"p9\":[-1,0],\"p8\":[-1,0],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"inventory\":{\"pizza\":{\"amount\":64},\"cocacola\":{\"amount\":54},\"hamgurger\":{\"amount\":51}}}'),(181,'vRP:firstid','\"12/18/19\"'),(182,'vRP:admin:jail:time','1'),(182,'vRP:datatable','{\"weapons\":[],\"groups\":{\"Ballas - SubChefe\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":275},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[21,3,2],\"3\":[17,0,2],\"4\":[55,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[130,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[96,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[196608,2,100],\"16\":[0,2,2],\"17\":[256,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,11],\"p2\":[11,2],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":1.7843316872968,\"health\":200,\"thirst\":3.0686633745938,\"position\":{\"y\":-1391.2368164062,\"x\":238.42669677734,\"z\":30.804862976074},\"inventory\":[]}'),(182,'vRP:firstid','\"12/18/19\"'),(183,'vRP:datatable','{\"inventory\":{\"water\":{\"amount\":16},\"donut\":{\"amount\":6},\"dinheirof\":{\"amount\":19}},\"groups\":{\"Prosegur\":true,\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,0],\"4\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,0],\"9\":[0,0,0],\"10\":[0,0,0],\"11\":[0,0,0],\"12\":[0,0,0],\"13\":[0,0,0],\"14\":[0,0,255],\"15\":[0,0,117],\"16\":[0,0,255],\"17\":[0,0,255],\"18\":[0,0,255],\"19\":[0,0,255],\"20\":[0,0,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":-1782092083,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":1.0137876972578,\"hunger\":0.75689384862886,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"cloakroom_idle\":{\"1\":[0,0,2],\"2\":[11,5,2],\"3\":[1,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[22,5,2],\"7\":[0,0,2],\"8\":[14,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[6,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[327680,2,228],\"16\":[327680,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p4\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p10\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"position\":{\"z\":47.657119750976,\"x\":154.29931640625,\"y\":2891.263671875}}'),(183,'vRP:firstid','\"12/18/19\"'),(184,'vRP:datatable','{\"inventory\":[],\"groups\":{\"user\":true},\"health\":200,\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p0\":[-1,0],\"p1\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p6\":[-1,0],\"p7\":[-1,0],\"p5\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[-1,0]},\"thirst\":2.0000395872446,\"hunger\":2.0000197936224,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"laboratory\":{\"lsd1\":0,\"weed1\":0,\"cocaine1\":0},\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"weapons\":[],\"position\":{\"z\":47.924327850342,\"x\":238.44764709472,\"y\":-404.19381713868}}'),(185,'vRP:datatable','{\"weapons\":{\"WEAPON_COMBATPISTOL\":{\"ammo\":107},\"WEAPON_SMG\":{\"ammo\":178}},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"hacker\":{\"logic\":0,\"c++\":0,\"hacking\":0,\"lua\":0}},\"thirst\":100,\"inventory\":{\"kebab\":{\"amount\":3},\"icetea\":{\"amount\":8}},\"customization\":{\"1\":[54,0,1],\"2\":[19,1,2],\"3\":[1,0,2],\"4\":[24,5,2],\"5\":[0,0,2],\"6\":[3,4,2],\"7\":[0,0,2],\"8\":[11,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[23,3,2],\"12\":[65792,0,0],\"13\":[0,1,0],\"14\":[0,2,255],\"15\":[65536,2,100],\"16\":[262149,2,255],\"17\":[50331904,2,255],\"18\":[33685760,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p5\":[-1,0],\"p4\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p8\":[-1,0],\"p9\":[-1,0],\"p10\":[-1,0],\"modelhash\":1885233650,\"0\":[0,0,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p0\":[-1,0],\"p1\":[-1,0]},\"groups\":{\"Vanilla - Membro\":true,\"user\":true},\"position\":{\"x\":1125.821899414,\"y\":-242.70944213868,\"z\":69.476234436036},\"health\":157,\"hunger\":35.073472193312}'),(185,'vRP:firstid','\"12/18/19\"'),(186,'vRP:datatable','{\"weapons\":[],\"groups\":{\"UberEats\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":275},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,228],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":31.02779300507,\"health\":198,\"thirst\":38.55558601014,\"position\":{\"y\":457.9613647461,\"x\":-1214.931640625,\"z\":92.063415527344},\"inventory\":{\"folhademaconha\":{\"amount\":8},\"cocacola\":{\"amount\":48},\"pizza\":{\"amount\":58},\"hamgurger\":{\"amount\":72}}}'),(186,'vRP:firstid','\"12/18/19\"'),(187,'vRP:datatable','{\"weapons\":[],\"groups\":{\"Uber\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":30}},\"customization\":{\"1\":[0,0,2],\"2\":[4,4,2],\"3\":[1,0,2],\"4\":[4,2,2],\"5\":[0,0,2],\"6\":[7,0,2],\"7\":[0,0,2],\"8\":[1,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[7,2,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,108],\"16\":[2,2,2],\"17\":[33554688,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"p2\":[3,1],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"0\":[0,0,0],\"p1\":[5,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":58.97604807301,\"health\":196,\"thirst\":82.952096146016,\"position\":{\"y\":-1118.9301757812,\"x\":-41.594207763672,\"z\":26.452314376832},\"inventory\":[]}'),(187,'vRP:firstid','\"12/18/19\"'),(188,'vRP:datatable','{\"groups\":[],\"thirst\":66.0,\"inventory\":[],\"hunger\":66.0}'),(189,'vRP:datatable','{\"weapons\":[],\"groups\":{\"Reporter TV\":true,\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0}},\"customization\":{\"1\":[0,0,1],\"2\":[4,0,1],\"3\":[4,0,2],\"4\":[25,2,2],\"5\":[0,0,2],\"6\":[28,0,2],\"7\":[0,0,2],\"8\":[15,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[171,0,2],\"12\":[0,0,0],\"13\":[0,1,0],\"14\":[0,1,255],\"15\":[0,2,102],\"16\":[2,2,2],\"17\":[256,2,0],\"18\":[33620224,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,2],\"p2\":[2,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[2,0],\"p9\":[-1,0],\"p8\":[-1,0],\"0\":[0,0,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":-1667301416,\"p10\":[-1,0]},\"hunger\":44.740469994898,\"health\":200,\"thirst\":59.480939989796,\"position\":{\"y\":247.83715820312,\"x\":33.063190460206,\"z\":109.0182800293},\"inventory\":{\"kebab\":{\"amount\":8},\"water\":{\"amount\":16}}}'),(189,'vRP:firstid','\"12/18/19\"'),(189,'vRP:head:overlay','{\"1\":[255,1,0],\"2\":[2,1,0],\"0\":[255,0,0],\"8\":[1,2,0],\"-1\":[21,0,0],\"11\":[255,0,0],\"9\":[255,0,0],\"10\":[255,1,0],\"7\":[255,0,0],\"12\":[4,0,1],\"5\":[255,2,0],\"6\":[255,0,0],\"3\":[3,0,0],\"4\":[0,0,0]}'),(189,'vRP:tattoos','{\"MP_Buis_F_LArm_000\":\"mpbusiness_overlays\",\"MP_Buis_F_Stom_002\":\"mpbusiness_overlays\",\"MP_Buis_F_Chest_001\":\"mpbusiness_overlays\",\"MP_Buis_F_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_000\":\"mpbusiness_overlays\",\"MP_Buis_M_LeftArm_000\":\"mpbusiness_overlays\",\"MP_Buis_M_Neck_002\":\"mpbusiness_overlays\"}'),(190,'vRP:datatable','{\"weapons\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[14,2,2],\"3\":[1,0,2],\"4\":[78,2,2],\"5\":[0,0,2],\"6\":[77,0,2],\"7\":[0,0,2],\"8\":[1,0,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[230,2,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[131072,2,228],\"16\":[2,2,255],\"17\":[33554688,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":48.206177115152,\"health\":175,\"thirst\":65.912354230304,\"position\":{\"y\":-693.02783203125,\"x\":-247.06335449218,\"z\":32.961524963378},\"inventory\":[]}'),(190,'vRP:firstid','\"12/18/19\"'),(191,'vRP:datatable','{\"weapons\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,0,2],\"10\":[0,0,2],\"11\":[0,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,100],\"16\":[0,2,255],\"17\":[0,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":1.4476637210866,\"health\":200,\"thirst\":1.895327442173,\"position\":{\"y\":-397.12881469726,\"x\":247.2700958252,\"z\":47.053020477294},\"inventory\":[]}'),(192,'vRP:datatable','{\"weapons\":[],\"groups\":{\"user\":true},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0}},\"customization\":{\"1\":[0,0,2],\"2\":[9,0,2],\"3\":[1,0,2],\"4\":[6,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[6,0,2],\"9\":[0,1,2],\"10\":[3,0,2],\"11\":[3,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[0,2,110],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p3\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p7\":[-1,0],\"p6\":[1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p2\":[1,0],\"p1\":[-1,0],\"p0\":[-1,0],\"modelhash\":1885233650,\"p10\":[-1,0]},\"hunger\":15.478158604124,\"health\":120,\"thirst\":24.45631720825,\"position\":{\"y\":-826.73278808594,\"x\":415.01940917968,\"z\":29.30291557312},\"inventory\":[]}'),(192,'vRP:firstid','\"12/18/19\"'),(193,'vRP:datatable','{\"groups\":[],\"thirst\":9.0,\"inventory\":[],\"hunger\":9.0}'),(194,'vRP:datatable','{\"groups\":[],\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"hacking\":0,\"c++\":0}},\"thirst\":0.5,\"inventory\":[],\"hunger\":0.5}'),(195,'vRP:datatable','{\"weapons\":{\"WEAPON_SMG\":{\"ammo\":241},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_COMBATPISTOL\":{\"ammo\":250}},\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0}},\"position\":{\"x\":919.79284667968,\"y\":-328.58166503906,\"z\":65.635055541992},\"thirst\":60.101096735794,\"health\":174,\"cloakroom_idle\":{\"0\":[0,0,0],\"1\":[0,0,2],\"2\":[0,0,2],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,2],\"6\":[0,0,2],\"7\":[0,0,2],\"8\":[0,0,2],\"9\":[0,1,2],\"p5\":[-1,0],\"15\":[0,2,100],\"p7\":[-1,0],\"17\":[256,2,255],\"p9\":[-1,0],\"modelhash\":1885233650,\"11\":[0,0,2],\"p3\":[-1,0],\"13\":[0,2,0],\"p1\":[-1,0],\"14\":[0,2,255],\"p4\":[-1,0],\"16\":[0,2,255],\"18\":[33686016,2,255],\"p8\":[-1,0],\"p6\":[-1,0],\"p10\":[-1,0],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"p2\":[-1,0],\"10\":[0,0,2],\"p0\":[-1,0],\"12\":[0,0,0]},\"customization\":{\"0\":[0,0,0],\"1\":[0,0,0],\"2\":[0,0,0],\"3\":[0,0,2],\"4\":[0,0,2],\"5\":[0,0,0],\"6\":[0,0,0],\"7\":[0,0,0],\"8\":[0,0,2],\"9\":[0,0,0],\"p5\":[-1,0],\"15\":[0,2,112],\"p7\":[-1,0],\"17\":[0,0,255],\"p9\":[-1,0],\"modelhash\":-1067576423,\"11\":[0,0,0],\"p3\":[-1,0],\"13\":[0,0,0],\"p1\":[-1,0],\"14\":[0,0,255],\"p4\":[-1,0],\"16\":[0,2,255],\"18\":[33554432,0,255],\"p8\":[-1,0],\"p6\":[-1,0],\"p10\":[-1,0],\"19\":[2,0,255],\"20\":[131074,2,255],\"p2\":[-1,0],\"10\":[0,0,2],\"p0\":[-1,0],\"12\":[0,0,0]},\"groups\":{\"user\":true,\"PSP - Recruta\":true},\"inventory\":[],\"hunger\":52.800548367894}'),(195,'vRP:firstid','\"12/18/19\"'),(196,'vRP:datatable','{\"groups\":{\"user\":true},\"health\":129,\"customization\":{\"p7\":[-1,0],\"4\":[7,12,2],\"p5\":[-1,0],\"2\":[14,0,1],\"0\":[0,0,0],\"19\":[33686018,2,255],\"p9\":[-1,0],\"modelhash\":1885233650,\"11\":[191,20,2],\"p1\":[-1,0],\"9\":[0,1,2],\"p3\":[-1,0],\"7\":[0,0,2],\"8\":[0,2,2],\"5\":[0,0,2],\"6\":[1,9,2],\"p8\":[-1,0],\"p6\":[-1,0],\"3\":[6,0,2],\"1\":[0,0,2],\"16\":[589836,2,255],\"p10\":[-1,0],\"p0\":[-1,0],\"15\":[0,2,100],\"18\":[33620480,2,255],\"p2\":[-1,0],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[0,1,255],\"10\":[0,0,2],\"20\":[33686018,2,255],\"13\":[0,2,0],\"17\":[335544578,2,255]},\"hunger\":39.496159475892,\"gaptitudes\":{\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"position\":{\"x\":1952.1563720704,\"y\":4899.30859375,\"z\":45.23755645752},\"inventory\":{\"hamgurger\":{\"amount\":4},\"wammo|WEAPON_VINTAGEPISTOL\":{\"amount\":169},\"water\":{\"amount\":3},\"wbody|WEAPON_VINTAGEPISTOL\":{\"amount\":1},\"folhadeganza\":{\"amount\":4}},\"weapons\":[],\"thirst\":52.9923189518}'),(196,'vRP:firstid','\"12/18/19\"'),(196,'vRP:head:overlay','{\"6\":[255,0,0],\"7\":[255,0,0],\"4\":[255,0,0],\"5\":[255,2,0],\"8\":[255,2,0],\"9\":[255,0,0],\"12\":[14,0,4],\"10\":[255,1,0],\"11\":[255,0,0],\"-1\":[0,0,0],\"2\":[255,1,0],\"3\":[255,0,0],\"0\":[255,0,0],\"1\":[3,1,0]}'),(197,'vRP:datatable','{\"groups\":[],\"thirst\":10.5,\"hunger\":10.5,\"inventory\":[]}'),(198,'vRP:datatable','{\"thirst\":5.0,\"groups\":[],\"inventory\":[],\"hunger\":5.0,\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0}}}'),(199,'vRP:datatable','{\"hunger\":21.762161281068,\"inventory\":{\"lenha\":{\"amount\":160}},\"thirst\":30.024322562138,\"health\":200,\"gaptitudes\":{\"hacker\":{\"logic\":0,\"hacking\":0,\"lua\":0,\"c++\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"cocaine1\":0,\"lsd1\":0,\"weed1\":0},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"position\":{\"y\":5395.9418945312,\"z\":40.45993423462,\"x\":-813.41955566406},\"weapons\":[],\"groups\":{\"user\":true,\"Lenhador\":true},\"customization\":{\"12\":[0,0,0],\"p0\":[-1,0],\"10\":[0,0,2],\"p2\":[-1,0],\"18\":[33686016,2,255],\"14\":[0,2,255],\"p6\":[-1,0],\"16\":[0,2,255],\"p8\":[-1,0],\"p10\":[-1,0],\"11\":[13,0,2],\"p1\":[-1,0],\"13\":[0,2,0],\"17\":[256,2,255],\"15\":[196608,2,228],\"19\":[33686018,2,255],\"p9\":[-1,0],\"p7\":[-1,0],\"5\":[0,0,2],\"6\":[0,0,2],\"3\":[19,0,2],\"4\":[4,0,2],\"1\":[0,0,2],\"2\":[10,3,2],\"0\":[0,0,0],\"20\":[33686018,2,255],\"p4\":[-1,0],\"p5\":[-1,0],\"p3\":[-1,0],\"9\":[0,1,2],\"modelhash\":1885233650,\"7\":[0,0,2],\"8\":[15,0,2]}}'),(199,'vRP:firstid','\"12/18/19\"'),(200,'vRP:datatable','{\"phone_directory\":[],\"gaptitudes\":{\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"hacker\":{\"lua\":0,\"logic\":0,\"c++\":0,\"hacking\":0},\"physical\":{\"strength\":30},\"science\":{\"chemicals\":0,\"mathematics\":0}},\"health\":124,\"weapons\":[],\"thirst\":38.167351071062,\"hunger\":23.583675535532,\"customization\":{\"1\":[0,0,2],\"2\":[21,4,2],\"3\":[4,0,2],\"4\":[24,0,2],\"5\":[0,0,2],\"6\":[3,0,2],\"7\":[0,0,2],\"8\":[90,0,2],\"9\":[0,1,2],\"10\":[1,0,2],\"11\":[35,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,110],\"16\":[0,2,255],\"17\":[256,2,255],\"18\":[33686016,2,255],\"19\":[33686018,2,255],\"20\":[33686018,2,255],\"0\":[0,0,0],\"p9\":[-1,0],\"p2\":[-1,0],\"p1\":[-1,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"modelhash\":1885233650,\"p0\":[-1,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[3,0]},\"inventory\":{\"medkit\":{\"amount\":29},\"water\":{\"amount\":14},\"icetea\":{\"amount\":12},\"donut\":{\"amount\":9},\"hamgurger\":{\"amount\":16}},\"position\":{\"x\":401.52612304688,\"z\":29.40814781189,\"y\":-923.38513183594},\"groups\":{\"user\":true,\"Inem - Recruta\":true}}'),(200,'vRP:firstid','\"12/18/19\"'),(200,'vRP:police_records','[Multa] 400 € por Poluição Sonora<br />'),(201,'vRP:datatable','{\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"hacking\":0,\"lua\":0,\"c++\":0,\"logic\":0},\"science\":{\"chemicals\":0,\"mathematics\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0}},\"inventory\":[],\"thirst\":18.0,\"groups\":[],\"hunger\":18.0}'),(202,'vRP:datatable','{\"gaptitudes\":{\"science\":{\"mathematics\":0,\"chemicals\":0},\"physical\":{\"strength\":30},\"hacker\":{\"c++\":0,\"lua\":0,\"hacking\":0,\"logic\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0}},\"inventory\":[],\"thirst\":6.5,\"hunger\":6.5,\"groups\":[]}'),(203,'vRP:datatable','{\"thirst\":21.99104421802,\"hunger\":13.24552210901,\"inventory\":{\"water\":{\"amount\":50},\"pizza\":{\"amount\":2}},\"weapons\":[],\"gaptitudes\":{\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0},\"hacker\":{\"logic\":0,\"c++\":0,\"lua\":0,\"hacking\":0}},\"position\":{\"x\":239.63632202148,\"z\":30.585767745972,\"y\":-1412.9196777344},\"groups\":{\"Uber\":true,\"user\":true},\"customization\":{\"1\":[0,0,2],\"2\":[14,4,2],\"3\":[1,0,2],\"4\":[10,0,2],\"5\":[0,0,2],\"6\":[1,0,2],\"7\":[0,0,2],\"8\":[10,4,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[4,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[262144,2,100],\"16\":[0,2,0],\"17\":[260,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,7],\"0\":[0,0,0],\"p10\":[-1,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"p0\":[7,0],\"p7\":[-1,0],\"p8\":[-1,0],\"p5\":[-1,0],\"p6\":[-1,0],\"p4\":[-1,0],\"p3\":[-1,0],\"p2\":[0,0],\"p1\":[5,0]},\"health\":189}'),(203,'vRP:firstid','\"12/19/19\"'),(204,'vRP:datatable','{\"thirst\":100,\"gaptitudes\":{\"physical\":{\"strength\":30},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0},\"laboratory\":{\"weed1\":0,\"cocaine1\":0,\"lsd1\":0},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":[],\"inventory\":[],\"hunger\":100}'),(205,'vRP:datatable','{\"groups\":[],\"inventory\":[],\"thirst\":89.0,\"hunger\":89.0}'),(206,'vRP:datatable','{\"groups\":{\"user\":true,\"PSP - Recruta\":true},\"hunger\":60.269595740946,\"health\":175,\"customization\":{\"p7\":[-1,0],\"4\":[0,0,0],\"p5\":[-1,0],\"2\":[0,0,0],\"0\":[0,0,0],\"19\":[0,0,255],\"p9\":[-1,0],\"modelhash\":-1067576423,\"11\":[0,0,0],\"p1\":[-1,0],\"9\":[0,0,0],\"p3\":[-1,0],\"7\":[0,0,0],\"8\":[0,0,0],\"5\":[0,0,0],\"6\":[0,0,0],\"p8\":[-1,0],\"p6\":[-1,0],\"3\":[0,0,2],\"1\":[0,0,0],\"16\":[0,0,255],\"p10\":[-1,0],\"p0\":[-1,0],\"15\":[0,2,112],\"18\":[33554432,0,255],\"p2\":[-1,0],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[0,0,255],\"10\":[0,0,0],\"20\":[0,0,255],\"13\":[0,0,0],\"17\":[0,0,255]},\"cloakroom_idle\":{\"p7\":[-1,0],\"4\":[6,1,2],\"p5\":[-1,0],\"2\":[2,0,2],\"0\":[0,0,0],\"19\":[33686018,2,0],\"p9\":[-1,0],\"modelhash\":1885233650,\"11\":[7,0,2],\"p1\":[3,0],\"13\":[0,2,0],\"p3\":[-1,0],\"7\":[0,0,2],\"8\":[23,0,2],\"18\":[33686016,2,0],\"6\":[6,0,2],\"p8\":[-1,0],\"p6\":[4,0],\"20\":[33686018,2,4],\"3\":[0,0,2],\"1\":[0,0,2],\"p10\":[-1,0],\"17\":[256,2,0],\"16\":[1,2,6],\"5\":[0,0,2],\"p2\":[12,0],\"12\":[0,0,0],\"p4\":[-1,0],\"14\":[0,2,255],\"10\":[5,0,2],\"15\":[0,2,110],\"9\":[0,1,2],\"p0\":[-1,0]},\"gaptitudes\":{\"hacker\":{\"hacking\":0,\"logic\":0,\"lua\":0,\"c++\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"position\":{\"x\":-23.42899131775,\"y\":-1121.2407226562,\"z\":26.852355957032},\"inventory\":{\"donut\":{\"amount\":10},\"water\":{\"amount\":10},\"medkit\":{\"amount\":46}},\"weapons\":{\"WEAPON_NIGHTSTICK\":{\"ammo\":0},\"WEAPON_FIREEXTINGUISHER\":{\"ammo\":250},\"WEAPON_FLASHLIGHT\":{\"ammo\":0},\"WEAPON_STUNGUN\":{\"ammo\":0},\"WEAPON_BZGAS\":{\"ammo\":0},\"WEAPON_SMOKEGRENADE\":{\"ammo\":3},\"WEAPON_PUMPSHOTGUN\":{\"ammo\":250},\"WEAPON_COMBATPISTOL\":{\"ammo\":250},\"WEAPON_SMG\":{\"ammo\":250}},\"thirst\":43.253379062152}'),(206,'vRP:firstid','\"12/19/19\"'),(207,'vRP:datatable','{\"weapons\":[],\"position\":{\"y\":121.41358947754,\"x\":69.686157226562,\"z\":78.682647705078},\"groups\":{\"user\":true,\"Carteiro\":true},\"inventory\":{\"cartas\":{\"amount\":40}},\"hunger\":41.324001293256,\"health\":176,\"customization\":{\"1\":[0,0,2],\"2\":[11,5,2],\"3\":[0,0,2],\"4\":[4,0,2],\"5\":[0,0,2],\"6\":[8,2,2],\"7\":[0,0,2],\"8\":[7,2,2],\"9\":[0,1,2],\"10\":[0,0,2],\"11\":[21,0,2],\"12\":[0,0,0],\"13\":[0,2,0],\"14\":[0,2,255],\"15\":[327680,2,100],\"16\":[131072,2,1],\"17\":[258,2,0],\"18\":[33686016,2,0],\"19\":[33686018,2,0],\"20\":[33686018,2,3],\"0\":[0,0,0],\"p1\":[3,4],\"p0\":[16,3],\"p6\":[0,0],\"p10\":[-1,0],\"p4\":[-1,0],\"p5\":[-1,0],\"p2\":[-1,0],\"p3\":[-1,0],\"p9\":[-1,0],\"p8\":[-1,0],\"p7\":[-1,0],\"modelhash\":1885233650},\"gaptitudes\":{\"science\":{\"chemicals\":0,\"mathematics\":0},\"physical\":{\"strength\":30},\"laboratory\":{\"lsd1\":0,\"cocaine1\":0,\"weed1\":0},\"hacker\":{\"lua\":0,\"c++\":0,\"logic\":0,\"hacking\":0}},\"thirst\":57.148002586512}'),(207,'vRP:firstid','\"12/19/19\"'),(208,'vRP:datatable','{\"hunger\":0.5,\"gaptitudes\":{\"hacker\":{\"hacking\":0,\"lua\":0,\"logic\":0,\"c++\":0},\"laboratory\":{\"cocaine1\":0,\"weed1\":0,\"lsd1\":0},\"physical\":{\"strength\":30},\"science\":{\"mathematics\":0,\"chemicals\":0}},\"groups\":[],\"inventory\":[],\"thirst\":0.5}');
201/*!40000 ALTER TABLE `vrp_user_data` ENABLE KEYS */;
202UNLOCK TABLES;
203
204--
205-- Table structure for table `vrp_user_homes`
206--
207
208DROP TABLE IF EXISTS `vrp_user_homes`;
209/*!40101 SET @saved_cs_client = @@character_set_client */;
210/*!40101 SET character_set_client = utf8 */;
211CREATE TABLE `vrp_user_homes` (
212 `user_id` int(11) NOT NULL,
213 `home` varchar(100) DEFAULT NULL,
214 `number` int(11) DEFAULT NULL,
215 PRIMARY KEY (`user_id`),
216 UNIQUE KEY `home` (`home`,`number`),
217 CONSTRAINT `fk_user_homes_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
218) ENGINE=InnoDB DEFAULT CHARSET=latin1;
219/*!40101 SET character_set_client = @saved_cs_client */;
220
221--
222-- Dumping data for table `vrp_user_homes`
223--
224
225LOCK TABLES `vrp_user_homes` WRITE;
226/*!40000 ALTER TABLE `vrp_user_homes` DISABLE KEYS */;
227INSERT INTO `vrp_user_homes` VALUES (11,'Apartamento Luxo',1),(20,'Apartamento Luxo 3',1),(30,'Apartamento Moderno 1',1),(76,'Apartamento Moderno 2',1),(12,'Apartamento Normal',1),(3,'Apartamento Normal 2',1),(80,'Bungalo',1),(31,'Caravana Trevor',1),(43,'Casa Barata',1),(73,'Casa barata 2',1),(2,'Casa Básica 2',1),(5,'Casa Básica 2',2),(119,'Casa Eclipse',1),(103,'Casa Eclipse',2),(69,'Casa na Praia',1),(9,'Casa Vip 1',1),(1,'Mansao Frankline',1);
228/*!40000 ALTER TABLE `vrp_user_homes` ENABLE KEYS */;
229UNLOCK TABLES;
230
231--
232-- Table structure for table `vrp_user_identities`
233--
234
235DROP TABLE IF EXISTS `vrp_user_identities`;
236/*!40101 SET @saved_cs_client = @@character_set_client */;
237/*!40101 SET character_set_client = utf8 */;
238CREATE TABLE `vrp_user_identities` (
239 `user_id` int(11) NOT NULL,
240 `registration` varchar(100) DEFAULT NULL,
241 `phone` varchar(100) DEFAULT NULL,
242 `firstname` varchar(100) DEFAULT NULL,
243 `name` varchar(100) DEFAULT NULL,
244 `age` int(11) DEFAULT NULL,
245 `Married` varchar(255) DEFAULT '0',
246 PRIMARY KEY (`user_id`),
247 KEY `registration` (`registration`),
248 KEY `phone` (`phone`),
249 CONSTRAINT `fk_user_identities_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
250) ENGINE=InnoDB DEFAULT CHARSET=latin1;
251/*!40101 SET character_set_client = @saved_cs_client */;
252
253--
254-- Dumping data for table `vrp_user_identities`
255--
256
257LOCK TABLES `vrp_user_identities` WRITE;
258/*!40000 ALTER TABLE `vrp_user_identities` DISABLE KEYS */;
259INSERT INTO `vrp_user_identities` VALUES (1,'138OQC','217-1207','Ramos','Rodrigo',29,'0'),(2,'755UIL','608-2212','tina','chico ',29,'0'),(3,'813JTS','330-4467','Machado','Gongas',20,'0'),(4,'693ITP','734-9900','Suzuki','Takashi',31,'0'),(5,'723FZQ','295-3947','Mangalhão','Antonio',23,'0'),(6,'124WYL','595-9591','1212','martim',12,'0'),(7,'655HRI','451-4592','Monhê','Careca',22,'0'),(8,'876NMG','290-3949','Reinaldo','Sr',24,'0'),(9,'841SRR','815-2845','Sousa','Joao',21,'0'),(10,'500PCF','916-8296','Moura','Rafael',23,'0'),(11,'205QZF','722-0252','Ramos','Sentry',19,'0'),(12,'813HBY','406-6396','1337','exec',24,'0'),(13,'322NYX','708-9143','Santos','Vicente',26,'0'),(14,'305SDQ','106-3698','Tiago','Andre',23,'0'),(15,'591OCK','051-3589','Silva','Miguel',25,'0'),(16,'020GHF','062-5591','Change','Me',40,'0'),(17,'429AOQ','456-6043','Tomas','Diogo',29,'0'),(18,'683CBL','359-6274','Dias','Jeronimo',25,'0'),(19,'593MET','742-2931','Montelino','João',40,'0'),(20,'960POF','708-7684','Gomes','Covinha',20,'0'),(21,'330GTB','695-4056','Change','Me',30,'0'),(22,'886PCH','821-6031','Faisca','Firminio',20,'0'),(23,'746BID','612-6890','Change','Me',32,'0'),(24,'247KFQ','020-1846','Pequeno','Zé',32,'0'),(25,'868UMW','039-7208','carneiro','diogo',22,'0'),(26,'142LAT','424-4978','Soarez','Jason',23,'0'),(27,'349GEA','592-5990','Maromba','Alex ',26,'0'),(28,'150PRO','888-9134','Silva','Michel ',28,'0'),(29,'231QGY','592-7638','Ze','Ti',21,'0'),(30,'433NEC','913749705','Senhor','Macaco',19,'0'),(31,'335QPE','096-3113','Serra','Filipe',38,'0'),(32,'074RTU','002-4659','Cigano','Raul',24,'0'),(33,'592URJ','988-6281','Soares','João',25,'0'),(34,'721TOM','060-6609','vale','paulo',34,'0'),(35,'099UIV','384-3183','Folgado','Miguel',25,'0'),(36,'000EJR','425-3950','jamdera','wilson',19,'0'),(37,'702TQT','165-7377','lidare','eh',99,'0'),(38,'170VCD','506-8449','taxista','ze',20,'0'),(39,'280JTL','310-9249','zip','Xacer',25,'0'),(40,'505OSW','493-8805','Change','Me',29,'0'),(41,'834KHE','555-9176','Oliveira','Andre',19,'0'),(42,'886LBY','462-9162','candeias','joao ',23,'0'),(43,'618KWA','613-3475','Thiago','Mendez',25,'0'),(44,'733VXF','169-0841','Berranteiro','Bernardo',21,'0'),(45,'098BYY','086-1494','Escobar','Pablo',35,'0'),(46,'230PHW','351-5213','DoRodo','Poze ',35,'0'),(47,'375YOZ','450-1806','vascaino','josefino',0,'0'),(48,'390AJA','060-7313','tiga','adolfo',24,'0'),(49,'556GOB','211-2565','pani','ultras',20,'0'),(50,'919CLU','355-3498','Fuganices','Rafael',23,'0'),(51,'039EIX','844-8205','Aaaaaa','Aaaaaa',55,'0'),(52,'395ADF','159-8115','Bbbb','aaAAA',56,'0'),(53,'666AAJ','561-9418','SSSsss','AAAaaa',18,'0'),(54,'815YUP','100-3900','D\'Angola','Kiminarih',20,'0'),(55,'778NLJ','081-0850','Oliveira','André',21,'0'),(56,'569NQZ','685-2960','Trincão','Wilson',19,'0'),(57,'288EBV','910728124','Teixeira','André',21,'0'),(58,'317IRX','612-3693','Rafael','Ribeiro',66,'0'),(59,'400BPV','004-7157','ok','ok',13,'0'),(60,'682EIT','788-3928','Mamba','Bloack',21,'0'),(61,'031WUG','770-3103','LOPES','HUGO',19,'0'),(62,'996JOD','988-5273','Change','Me',28,'0'),(63,'038HKU','259-5171','Change','Me',30,'0'),(64,'065DLN','787-0604','Change','Me',40,'0'),(65,'251FNY','680-2992','Oliveira','frederico',25,'0'),(66,'570CIC','867-1970','Zero','Mr',31,'0'),(67,'254NXS','151-2575','Carlos Alves','João',20,'0'),(68,'134CJE','396-9224','Change','Me',26,'0'),(69,'514EEF','504-2828','cASTRO','O.G.',24,'0'),(70,'074LFD','453-2031','pedro','tiago',20,'0'),(71,'506NDY','882-8394','Change','Me',36,'0'),(72,'345ODI','362-8072','Couveiro','Ze',30,'0'),(73,'687RZT','737-9316','Mendes','Kiko',27,'0'),(74,'457ECK','652-9499','Amaral','Diogo',18,'0'),(75,'945XUV','150-7976','Alex','Piter',19,'0'),(76,'406AJQ','060-6306','Raposas','José',29,'0'),(77,'567HXS','887-4186','cd','ab',32,'0'),(78,'961XNY','641-3663','Zumbir','Zacarias',23,'0'),(79,'411ALK','325-7224','Mendes','Antonio',30,'0'),(80,'891TGN','524-8913','Filipe','Ricardo',22,'0'),(81,'852JYA','594-9250','Change','Me',30,'0'),(82,'567DNR','488-1999','Change','Me',37,'0'),(83,'068JPK','028-5630','Change','Me',29,'0'),(84,'901IUO','450-3190','Change','Me',31,'0'),(85,'474JXX','492-4063','Change','Me',29,'0'),(86,'783HIZ','664-3458','Ferreira','Pedro',28,'0'),(87,'966QSQ','345-1713','Silva','Joao',20,'0'),(88,'129VVP','984-3103','Garanhao','Carlao',29,'0'),(89,'736PAX','320-8702','HASSANESEN','HASSAN',17,'0'),(90,'138ITJ','938-7540','Change','Me',38,'0'),(91,'351TPN','626-2831','Manteigas','Antonio',42,'0'),(92,'407DTB','455-9492','Change','Me',27,'0'),(93,'727GFX','395-2106','Change','Me',39,'0'),(94,'194DNL','880-7585','Florença','Cremindo',29,'0'),(95,'992ARH','784-1470','Change','Me',32,'0'),(96,'344CAJ','506-8676','Change','Me',39,'0'),(97,'696VTX','689-0890','mohammed','ski',23,'0'),(98,'771RED','339-0822','brito','tomas',19,'0'),(99,'654BMY','831-6670','Trabalhador','Antonio ',21,'0'),(100,'960XYT','207-0683','awdasdaw','awdasd',23,'0'),(101,'879IAQ','561-2745','Change','Me',33,'0'),(102,'019EJR','440-7001','sigano','manuel',20,'0'),(103,'702EMC','531-9415','Pereira','Joaquim',53,'0'),(104,'697YUL','736-1443','Mambona','Ezequiel',21,'0'),(105,'649ZEZ','827-4997','Mambona','Abdul',21,'0'),(106,'200NCM','459-1916','manbona','camilo ',27,'0'),(107,'898SYA','011-5563','MOJRIM','AGRaM',18,'0'),(108,'082FTZ','368-8665','Macarroni','Rafa',24,'0'),(109,'642SFH','593-7337','Teller','Jax',22,'0'),(110,'096AXY','720-7068','Jaquim','Jarvásio',25,'0'),(111,'581BSR','031-9078','vitton','luis',20,'0'),(112,'987XIA','656-1274','Magalhães','Rodrigo ',25,'0'),(113,'272HNY','373-3766','MorningStar','Lucifer',29,'0'),(114,'053CZM','154-8807','Pinto','Mantorras',21,'0'),(115,'747IRE','443-9072','Manolo','Jimi',35,'0'),(116,'005CML','591-9167','Change','Me',35,'0'),(117,'824XRA','951-0483','Change','Me',35,'0'),(118,'884YRB','547-5810','monteiro','milton',18,'0'),(119,'315QLY','919-8274','Sousa','Rui ',26,'0'),(120,'665MBM','983-1667','Change','Me',25,'0'),(121,'384QCO','915270715','Sobral','Pedro',23,'0'),(122,'780ZQA','997-2070','Cabrita','Francisco',25,'0'),(123,'125QXC','407-3296','lol','E,il',3,'0'),(124,'154VWA','758-5344','Caraibas','Nelson',28,'0'),(125,'916SSS','636-3824','Morais','Pedro',40,'0'),(126,'361LMJ','907-2005','Change','Me',32,'0'),(127,'011NOR','373-8927','lol','berber',54,'0'),(128,'133YBU','227-9368','Change','Me',36,'0'),(129,'676YPV','796-8908','Larsen','Jason',30,'0'),(130,'070SWK','459-8793','malle','knud',21,'0'),(131,'411WTW','849-6054','Change','Me',38,'0'),(132,'096BQD','570-4992','Change','Me',29,'0'),(133,'368WRR','540-4983','wedmsnn','jones',33,'0'),(134,'392HLQ','642-7225','Til Maniman','Sub',45,'0'),(135,'937JIT','663-8272','Change','Me',36,'0'),(136,'548WAU','585-3440','Change','Me',33,'0'),(137,'001ENO','637-3892','martins','wilson',30,'0'),(138,'104VID','564-9919','Change','Me',37,'0'),(139,'881GEF','926-6263','Olsen','Jakob La Cour',12,'0'),(140,'099THA','706-8345','DelMuerte','Mauricio',22,'0'),(141,'635JIZ','164-8019','djiehfes','nihao',22,'0'),(142,'189FCP','969-0484','Change','Me',33,'0'),(143,'523UPJ','922-8733','Alberto','Mihagi',25,'0'),(144,'636IVF','496-0951','Eletrecista','Kramos',10,'0'),(145,'359QQP','096-0615','Change','Me',32,'0'),(146,'339BUG','279-3688','\n\nPedro','Coelho',24,'0'),(147,'373WZG','703-2676','SALAZAR','CARLAO',34,'0'),(148,'983FRR','707-0270','Change','Me',28,'0'),(149,'683MOZ','879-3065','PAIIII','HALOOO',22,'0'),(150,'272ERS','696-8796','Change','Me',26,'0'),(151,'890ZXT','881-2129','Change','Me',35,'0'),(152,'878XLY','605-4758','Change','Me',36,'0'),(153,'603CYB','780-9609','Change','Me',29,'0'),(154,'585JMM','003-5068','Ganjo','Ahmed',16,'0'),(155,'979ULU','361-4439','Change','Me',28,'0'),(156,'564YZE','982-7499','lvhc','tiago',35,'0'),(157,'563SJW','927-0326','Change','Me',39,'0'),(158,'796WYC','890-9978','Johny','Montas',26,'0'),(159,'960OKT','581-0660','Seabra','Renata',27,'0'),(160,'405JCZ','914154880','Esperto','Chico',40,'0'),(161,'966PCY','916061570','Sem','Identidade',39,'0'),(162,'382MXR','910951048','Takashi','Hinata',19,'0'),(163,'267RXE','918577161','gregorio','ricardo',20,'0'),(164,'793QVW','916654049','Sem','Identidade',28,'0'),(165,'593TJI','917663827','Sem','Identidade',35,'0'),(166,'049YFA','916278414','Sem','Identidade',29,'0'),(167,'506WPU','916979747','Sousa','Américo ',28,'0'),(168,'496AZO','911048315','Peixoto','Miguel',51,'0'),(169,'703HQU','916818577','sebosa','cona ',14,'0'),(170,'707AHS','910392246','Sem','Identidade',29,'0'),(171,'660ICY','910780960','Machado','Juliano',21,'0'),(172,'407JGX','916353391','Fernandes','Tonecas',20,'0'),(173,'259HXU','917409272','Sem','Identidade',32,'0'),(174,'068PUR','919797473','Queen','Oliver',21,'0'),(175,'997VYX','917900115','Guitarra','Jose',25,'0'),(176,'663RIV','912496095','Marco','Serrão',24,'0'),(177,'705YNR','918528406','goma','ze',35,'0'),(178,'048LII','915103749','Smoke','Bino',24,'0'),(179,'927FWN','914944818','João','Gouveia',26,'0'),(180,'470LYO','911590708','Silva','Amanda',25,'0'),(181,'038LIC','911003296','Antunes','Crespim',35,'0'),(182,'951FGC','911870184','Germuino','Diogo',24,'0'),(183,'995MFV','916143805','183','cento',20,'0'),(184,'471WFH','915426769','Sem','Identidade',36,'0'),(185,'999UVS','911593908','Afanalbeto Pelela','Thiago',24,'0'),(186,'773AFR','918206131','Cabral','Diogo',19,'0'),(187,'105TKT','914629391','Rodrigues','Layblack',20,'0'),(188,'024LIV','914924098','Sem','Identidade',26,'0'),(189,'391GQZ','917176877','sousa','Mariana',25,'0'),(190,'683HGN','910615145','Miranda','Carlos',26,'0'),(191,'581XNR','911851411','peter','sørnsen',23,'0'),(192,'967VYM','914373261','jonas','otte ger',20,'0'),(193,'289XEF','919106738','Sem','Identidade',31,'0'),(194,'895TAI','914477869','Sem','Identidade',33,'0'),(195,'458BFK','914384924','Dias','Jafo',28,'0'),(196,'123ZGH','917376826','Canelas','Albertino',22,'0'),(197,'673VQC','919966225','Sem','Identidade',31,'0'),(198,'737LQH','919391390','Sem','Identidade',36,'0'),(199,'145ILC','918986327','jOÃO','Santos',25,'0'),(200,'997VDD','915258470','barbosa','ricardo',18,'0'),(201,'483OHK','916904635','Sem','Identidade',37,'0'),(202,'835HKQ','919046357','Sem','Identidade',28,'0'),(203,'041IGX','911309711','Tec','Mendes',16,'0'),(204,'773QPO','916932119','Sem','Identidade',28,'0'),(205,'044NUB','914556024','Sem','Identidade',28,'0'),(206,'340FLI','911763125','Santos','Fabio',20,'0'),(207,'783DGC','913745100','Ranhoso','Rambo',39,'0'),(208,'517VAL','914037480','Sem','Identidade',30,'0');
260/*!40000 ALTER TABLE `vrp_user_identities` ENABLE KEYS */;
261UNLOCK TABLES;
262
263--
264-- Table structure for table `vrp_user_ids`
265--
266
267DROP TABLE IF EXISTS `vrp_user_ids`;
268/*!40101 SET @saved_cs_client = @@character_set_client */;
269/*!40101 SET character_set_client = utf8 */;
270CREATE TABLE `vrp_user_ids` (
271 `identifier` varchar(100) NOT NULL,
272 `user_id` int(11) DEFAULT NULL,
273 PRIMARY KEY (`identifier`),
274 KEY `fk_user_ids_users` (`user_id`),
275 CONSTRAINT `fk_user_ids_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
276) ENGINE=InnoDB DEFAULT CHARSET=latin1;
277/*!40101 SET character_set_client = @saved_cs_client */;
278
279--
280-- Dumping data for table `vrp_user_ids`
281--
282
283LOCK TABLES `vrp_user_ids` WRITE;
284/*!40000 ALTER TABLE `vrp_user_ids` DISABLE KEYS */;
285INSERT INTO `vrp_user_ids` VALUES ('discord:439553801075163136',1),('license:5cc1777ec11094081210ae8eabf0f2625a188e03',1),('live:985154059914805',1),('steam:1100001177540e6',1),('xbl:2535456918280060',1),('discord:529310583481434122',2),('license:95454c9553722a7b3f8a3b8ba7dc05a1ab1f878f',2),('steam:11000013c6a22d4',2),('discord:419161115705081856',3),('license:31fd0aed4ded1a38602d96ccf329950e91cc51da',3),('live:1688853665605879',3),('steam:11000013cd90ff4',3),('xbl:2535439547152731',3),('discord:571014518625271808',4),('license:abd4ab3b4c81088f82dec37c8c9cf149f5bfa8e4',4),('steam:110000117121dad',4),('discord:486459412894973952',5),('license:23abb7fcc3a74e358c02b307a8cd57b4490f2b4d',5),('live:985154327345550',5),('discord:489555034946797578',6),('fivem:529103',6),('license:c432518b3c25b6f037dd7a1765a4f592772d7714',6),('live:402631623623347',6),('steam:110000134c0b67c',6),('xbl:2535436968215720',6),('discord:469242028228870144',7),('license:445bb0ba35bbc2f97e3bf3f12d9efad0f86c425e',7),('steam:1100001379e4ff0',7),('discord:616357410394865684',8),('license:37bd8941910ac89a6c55c680f3573630ef934f69',8),('live:1055518341233980',8),('steam:110000114432a3f',8),('xbl:2535432569478763',8),('discord:270643123183550468',9),('license:0e8e10e77a47f6313ffc17c7ce01c5ef80e27bc6',9),('steam:11000010b4bf22f',9),('discord:488847749383716864',10),('license:b6b543f7cc6219bb167240e131a95b9c64d4352c',10),('live:1899945883163197',10),('steam:11000013dc33c9c',10),('xbl:2533275022373628',10),('discord:460398914512879616',11),('license:12e69c931f63327d2044ece153842ff59131b5a8',11),('steam:11000011a8f9211',11),('discord:366148694761930753',12),('license:e84c981a3b8768c97a0c7e10e0779c783c3bb8fa',12),('steam:110000115e6f111',12),('discord:650664402017583104',13),('license:469e4153ecef568f5d1a1e42431c7174801f8b12',13),('live:1688854047403033',13),('steam:11000013d44bbbb',13),('xbl:2535466762881909',13),('discord:648650018244263957',14),('license:b91b62bcde7ad4848c58888d5b0bb510bed7243c',14),('live:985153911623882',14),('steam:11000010d1ce87d',14),('xbl:2535442010170434',14),('discord:414555039613583361',15),('license:48d6eaaa2a6b93c8e611aeac0beeed61c58c9b56',15),('steam:110000108327f15',15),('discord:394974757310693386',16),('license:b49a8893b5d3872b6359f2cd1f5ff5d4e9d07303',16),('steam:11000013bbd3b23',16),('discord:540646644102987777',17),('license:f751e41ba3ba5a66636f3172da67cdeee69deecb',17),('steam:11000013ce8a270',17),('discord:345156206937243649',18),('license:4ab73d075a970fee7728ae9ee752da28c8b5d6c0',18),('live:1688853103517685',18),('steam:110000139d1421e',18),('xbl:2535431698098494',18),('discord:581555842524905673',19),('license:82c62e06b4efaa3ccf231d0effebe95b4fc81d62',19),('live:985153844251323',19),('steam:11000011b8f8f1e',19),('xbl:2535458823230765',19),('discord:536197756910305281',20),('license:d7cd8bda522adeb99a8dec60120f12cb5570825e',20),('live:1055522393668333',20),('steam:110000132bbe7c7',20),('xbl:2535416488700414',20),('discord:458042232063131659',21),('license:00824ef65b1723a0780f2df626bcd995fb3e1c20',21),('live:1759222569896959',21),('steam:11000013c93f808',21),('xbl:2535455089496501',21),('discord:370668324557946887',22),('license:839905761424d2cdddba8e10af2177d51cefd5ab',22),('live:914798298102983',22),('steam:11000013e088a9e',22),('license:e1775e627ea0c5708c9f5d30ff0d8dd5285443c8',23),('steam:11000010adffaee',23),('discord:643828270546288680',24),('license:4e39c81edfd079bd6aef33244f291708214c3a71',24),('live:844425485427109',24),('discord:414545485064568843',25),('license:95b983a046f567f9084b6077da6cef24608472af',25),('live:844425547104052',25),('steam:11000013b1e18e3',25),('discord:594687416799985880',26),('license:c533877aadcc428f5daa30416e494cc98e1c934c',26),('steam:11000013e309dbe',26),('discord:504762193221386251',27),('license:8854aade1a959e9c98421d1192ccd08355cf0d0f',27),('steam:110000114637526',27),('license:6c8d247ef5bff4d582fe81e4e37b985e06098511',28),('live:1829578889828008',28),('steam:11000011639eda5',28),('xbl:2535425029443503',28),('discord:627079746613673984',29),('license:f8fb98fb3c26fa87c3462d1a725e51258384fd83',29),('steam:110000119fe14d9',29),('discord:524178104105566215',30),('fivem:430566',30),('license:df468617fef2f5914f4fc708aafc69197c1c3362',30),('live:1759222522126652',30),('steam:11000011262b781',30),('xbl:2535449566413402',30),('discord:288017998491418634',31),('fivem:671323',31),('license:4812d8fbc7974a23ce321cff19af5eb9a405ec01',31),('steam:11000010a4509b6',31),('discord:138051800853905408',32),('fivem:690526',32),('license:4a784ee7bff95212a5feba24c7fa967a151621b5',32),('steam:110000104ccd348',32),('discord:277572686086012928',33),('license:5fe379b0627677ac9cfac30a3e578691bcbaa13c',33),('live:1759222506197456',33),('steam:1100001321338d9',33),('xbl:2535438174921466',33),('discord:471030534806437888',34),('license:372a78642311ac0dd71e4a0787048ec5cbb321d5',34),('live:985154014284337',34),('steam:110000134a9f5b4',34),('xbl:2535434747649199',34),('discord:350650107085193216',35),('license:6d3f949e424f4a45eaaa616c7f492c79521d9d1f',35),('live:844425225625280',35),('steam:11000011cf02e1c',35),('xbl:2535434396527093',35),('discord:323920288632930304',36),('license:1b8062b0d8b33df927539b74e7c8c9faee3d499e',36),('live:1055518913393554',36),('steam:1100001153594f3',36),('xbl:2535438694436953',36),('license:c2af36131da4d63be63acaeff6a33198b6cf0c74',37),('steam:1100001155271d7',37),('license:fd8ea8fba95c1f07b5051eb64053c9a510b81c22',38),('steam:11000013d5fd690',38),('discord:265789665506885632',39),('license:bde44d19cc4f3cd07b7ef54f9a22abe0f77b5368',39),('live:985157455471765',39),('steam:11000010e57c2fd',39),('xbl:2535410495958429',39),('discord:397050021595578370',40),('fivem:670595',40),('license:b31dd0825b31b27719aa2a0146c5b98edd3debca',40),('live:844425012564946',40),('steam:110000107a2ce0f',40),('xbl:2535436925833847',40),('license:0f10a631b83edd81eba4a302c5f2356b1d98c4ad',41),('steam:11000013656d908',41),('discord:546733466209878081',42),('fivem:499088',42),('license:6853a1416ecd3530d930e9dc9ad7a804a7949817',42),('steam:110000136e4b895',42),('discord:207988327968800768',43),('license:15cb3e07ebbfad879ccc1d8f5b1ff59a9342e125',43),('steam:110000115835b5b',43),('discord:502528284324790272',44),('license:76ba0dbf025b9299e7916888b7bc726fdeca0dae',44),('steam:1100001125587ab',44),('discord:363786634963189761',45),('license:53142b29f4604b941e05add245ff7debed047a3b',45),('steam:1100001174c9c6a',45),('discord:363786916782407691',46),('license:561898cc51b4520493fdc288c1af97f6455dbf8a',46),('live:844425527392369',46),('steam:110000132f95159',46),('xbl:2535423754976018',46),('discord:326328847165292545',47),('license:08a01aa47856b8c4113c500c7bf145baac9d4636',47),('live:914798380012006',47),('steam:1100001355cc4f8',47),('xbl:2535429790151090',47),('discord:432246721653899264',48),('license:6b693b57876ebd1930a618f648c771ed60d2e3d4',48),('live:1688854011280933',48),('steam:11000010b2b2ac6',48),('xbl:2535417221789134',48),('discord:518409739462246412',49),('license:b6a04f11236449d8cc9549dc8e72e98521e0bc82',49),('steam:11000013757d4b8',49),('discord:428923919341453323',50),('license:ed46a4c569e1b990ca9a737736e4c89d7d25a223',50),('live:1829582564030119',50),('steam:110000138e56e3d',50),('xbl:2535411731072357',50),('discord:408326233072599061',51),('license:468fddfd27b3cb729bf1bf410b169d414bfa5817',51),('steam:1100001139845c4',51),('discord:536288112880517141',52),('license:12ed1795ab73164300de9ccc4412df9855ccbdf2',52),('steam:11000011191231b',52),('discord:289849898139123714',53),('license:d8496a264d834d27ed0b7efcfe87a21fe401c0af',53),('steam:110000116d96c0b',53),('discord:490158149903319061',54),('license:ff31fe94f4a5003ba4ce5a40764d2fe23133bb75',54),('steam:1100001397bbbb6',54),('discord:312335624999010304',55),('license:5615e474ecf3538e7044665acdb3083871c276e7',55),('live:985153863889146',55),('steam:110000116942bbd',55),('xbl:2535445748474281',55),('discord:454373968242147339',56),('license:b2ee20dc123cc5cc059c0b931fdeb89befe85e49',56),('live:844424981382563',56),('xbl:2535471064155047',56),('discord:427894100642234368',57),('license:17e48d198642683e918626a25bd3db1617ea7213',57),('steam:1100001142ab37d',57),('discord:547843155165446164',58),('license:eb86dc5ab6115267d9c7c75a5f1e4060f09724b2',58),('live:1055522502735226',58),('steam:11000013a6c6917',58),('xbl:2535418933592062',58),('discord:577663235139043331',59),('license:1ace6a9a9344570a836be6d32e22b4a7609c1b81',59),('live:1829581667828336',59),('steam:110000103cd7ed6',59),('xbl:2535408367727671',59),('discord:584321152063897610',60),('license:09002ee7c581efa0635f6bddea201a778a7a7505',60),('steam:11000013e90a89c',60),('discord:586281841070178347',61),('license:fa24025a334410c10ac851c3d4ae715bd0fc0184',61),('steam:11000010e7142e1',61),('discord:550130029929955330',62),('license:996a42779c4279ec19854c2e2fb71c31b3f0b95a',62),('steam:1100001341d5a43',62),('discord:437343983279276043',63),('license:b614074601bd014351cf5e60a0a30e863e533a19',63),('steam:110000137bd6139',63),('license:3aa1abc3ae2350d637afa2576c267eb5b48f5c9e',64),('steam:11000011ad21ef3',64),('discord:483947196866232331',65),('license:c0e0537e4d665b714760a0fb4f6d80a4a2bb269f',65),('live:844428403199061',65),('steam:110000136259695',65),('xbl:2535467863290752',65),('discord:274955198479204352',66),('license:0efcb2c8ab2077b1ebe909c29e94139146bc1ea2',66),('steam:11000013e617167',66),('discord:339536333405945856',67),('license:47be0250be9f5029000f5768cc127ed0b1cacea0',67),('live:1899947308552997',67),('steam:1100001078ff012',67),('license:b940bcb0ee35681c77cd1bb57514f6f17aec181f',68),('discord:621695705131778058',69),('license:cbd976b54c7d72c412959f9f4c4bd3629b9f75a0',69),('live:985154169245060',69),('steam:1100001150f74a5',69),('xbl:2535422456752004',69),('discord:585135721833037837',70),('license:773d397f9e569107a2db1aed6e36b9fc2e5e73f9',70),('steam:11000013c12e4f5',70),('discord:412505232728129536',71),('license:ea3750bfa059248a792aad741c25c046c6bfbf0c',71),('live:1055522170170341',71),('steam:110000118ced778',71),('xbl:2535464867204690',71),('discord:512383954779897856',72),('license:30590510c33fc7af9f494d42b4ea49420e04f42e',72),('steam:11000011a766ee3',72),('discord:391478903736107009',73),('license:3921effe4295410f102bdb29fffdd9778dc7fab1',73),('steam:1100001391163bb',73),('discord:422163397480808449',74),('license:6cf8794d6360a71753bdb3969af2a060d6c642b8',74),('live:1055520722135664',74),('steam:1100001358efac8',74),('xbl:2533274902119943',74),('discord:463490309158993932',75),('license:19655000f9fe05be4eb977a963b8958f7294ddd5',75),('live:985153868743352',75),('steam:11000011a73e339',75),('xbl:2535453547448657',75),('discord:476757675380703272',76),('license:690cd3673fdb5ada105dcfb13308eea601c8db36',76),('live:844428660730895',76),('xbl:2535435593208375',76),('discord:386908556814843905',77),('license:bca881e130cc9568ac2a42ec9a5bd9e84ca48887',77),('license:20edd18bdda39fa586c15a57624f3151db1dbeea',78),('live:1688853671378665',78),('steam:11000010c2305fd',78),('xbl:2535446905046587',78),('discord:326695911176667157',79),('license:7d6f876c612f312c1d9f52d8d2d614896b0945aa',79),('steam:1100001002bd454',79),('discord:434809762773860393',80),('license:a7fe75d4aa4b02904f7d992a63177ac400b46806',80),('live:1759221956688154',80),('steam:110000133be465f',80),('discord:651452103297990666',81),('license:f6b25f890f1cd4384a0b53036c5332a5eb278cbb',81),('discord:627433661775609866',82),('license:ea8de7f5b60df9158ec456ff808804490a00f6d3',82),('discord:616941390181695488',83),('license:4d0f4e2fe28ff2339893198a7def58f44e8f8705',83),('steam:11000013d1d3c31',83),('discord:402787595974737921',84),('license:676a9dc9948e4dfc8416a28af3d7aa342f3948dc',84),('steam:11000013d259bad',84),('discord:463349438044438548',85),('license:962430e0c4a58fb2073d1f32fab089d13198f2a6',85),('live:1688853256881165',85),('steam:1100001177ded6f',85),('xbl:2535438533015416',85),('discord:393933452963217408',86),('license:70f9a2d1bc8928e5113654dd444e758f0c78ef61',86),('live:914798366691438',86),('steam:1100001144e7982',86),('xbl:2535465329581575',86),('discord:497873185501478943',87),('fivem:578641',87),('license:dd8b0a1e46606d2bf92faf78ee364515368bf154',87),('live:985154436028079',87),('steam:11000013d2041cb',87),('discord:200537186234269698',88),('license:98bb312bd47cf80d48e7cbfde7d368fac227fcc2',88),('live:914801362653966',88),('steam:11000010df321d5',88),('xbl:2535433566283054',88),('discord:380046057863905280',89),('license:e0bc58af052b0b3366a8a681bb8fa502bd66aa57',89),('live:844428348462240',89),('steam:1100001020845ca',89),('xbl:2535417474790884',89),('discord:575031425003159552',90),('license:a478da8fdf2f12d1add55a54dd41fbe0d5b0ca0a',90),('live:985157203971993',90),('xbl:2533275047619039',90),('license:6f25c94cf1dee6fe2f05dd24301e382f9077f421',91),('live:1899946416398937',91),('steam:110000112140120',91),('xbl:2535443351013759',91),('license:f950cdf09ef2f24cf2cd4041dea5343b448c1bed',92),('live:844424998729041',92),('steam:110000115b363bc',92),('xbl:2535436953682235',92),('discord:463064320960364545',93),('license:9e219b8ae563d8dcaf3f7be7e6d85d91d70c3415',93),('discord:362572789120630794',94),('license:5ea1db9cb904ab5a698760c67b3bea84fefedad6',94),('live:1829582820460790',94),('steam:11000011697b83d',94),('xbl:2535416490940018',94),('license:c41970f683bfb3ad2fd76f258fa4afc061a8d413',95),('discord:445637582827552779',96),('license:f6f2bc4d1b5883e1f7e33f7ef40e9fc2b56e2f9b',96),('live:1055520903231005',96),('steam:11000010218bcf3',96),('xbl:2535425624412042',96),('discord:361420446513758209',97),('license:ab175c44464ae045abe024e9edb584250af669ae',97),('live:985157833359713',97),('steam:110000114562a47',97),('xbl:2535450260397888',97),('discord:131167472588947456',98),('license:f5de3b7b34f8a59b7dc489bf1ec4ba8bb984d23f',98),('steam:110000110814fc4',98),('license:4a185a2b7d13e1778d6e13c2f544c6d2d418f881',99),('live:1055518402881886',99),('steam:11000011a6b1f79',99),('discord:400681856703528970',100),('license:1eb4ea3dcb6fc8e92bedf964d6ca2e733fcb5aee',100),('steam:11000010a0c6156',100),('discord:632234483793264713',101),('fivem:646761',101),('license:e4f48766fc2fbdedce410d277d4a4cc386b485ec',101),('discord:621410125537607680',102),('license:7a6fa8d8796660068de10471b4f726cb173d45d7',102),('steam:11000013d32d910',102),('discord:195249306469531649',103),('license:49105b8eccafefd6814e5cd9c7a07f8464425995',103),('live:1829582255035944',103),('xbl:2535467175464704',103),('discord:493039854704263176',104),('license:ed4f3d07d33cee7d6af0f12589fa1748c56d5c41',104),('steam:110000136b14364',104),('discord:468168227403464714',105),('license:735471b3db8940435b52c858ba462b5feda05156',105),('live:1055521594881679',105),('steam:11000011a591791',105),('xbl:2535432807439729',105),('discord:497480966793592862',106),('license:7914262e8aaddf983fff2e3e9d3e70d1b3ffbbb8',106),('live:844425519501100',106),('steam:110000115ba7c11',106),('license:963909b569e33f197542b1fd3be52d0500dc513a',107),('steam:11000013e5d120e',107),('discord:593088703547834378',108),('license:7faafabc44fcffea8a936e11a225e6145d2f0dda',108),('live:844425572327494',108),('steam:11000010b8f49b7',108),('discord:333647041051885568',109),('license:66d68114e619fb67b76dbb10e0a5db04e83e275e',109),('live:914801685389647',109),('steam:1100001195dc0c0',109),('xbl:2535471800896068',109),('discord:172429263885172736',110),('license:0c07fa3de1128e27ab26c98f64f5a2f231f17bd4',110),('live:914798041624549',110),('steam:11000010ed1a8ed',110),('xbl:2535432871547975',110),('discord:314399998185963520',111),('license:f12b2d243b7a9a660975a2fe759a9a8e37188a6b',111),('live:985153951606151',111),('steam:11000011447931f',111),('xbl:2535449853584119',111),('discord:430124078805024789',112),('fivem:616527',112),('license:1fe2d425fb2c553d24a7e2684c4e1db6c6151dd8',112),('live:914798160687077',112),('steam:11000010d67b81b',112),('xbl:2535448551844663',112),('discord:255370500245684226',113),('license:63ae7bfe252695935328f1b501843b3ee845f911',113),('discord:393571110823919626',114),('license:352dbf964f75f57cf0a0a55ed1811ba2c6e84e88',114),('live:1055521525896514',114),('steam:11000011732a9ff',114),('xbl:2535429950658983',114),('discord:400793821123706892',115),('license:ce4fe46ae8857a25c9c08c867dc5c61fb9b77dd4',115),('steam:11000010664dd11',115),('discord:493424864674447377',116),('license:84d8ce86137a2c66c67e8b1240d1f3d590acc99d',116),('steam:110000116a4926d',116),('discord:365800043330011139',117),('license:e77c8a890a9567248f9b4aada9fd9f9d35254031',117),('steam:11000013391a3d9',117),('discord:640277018188972060',118),('license:df5451f1c25498c7ad2b788fc1d5a5740a0e4680',118),('steam:11000013c8e24ef',118),('discord:391353252937072651',119),('license:56074c8cf77d4a7ea753499132436f3b913f9e4c',119),('live:914801505663263',119),('steam:1100001365cf934',119),('xbl:2535410568985969',119),('license:13ac31ee2aba448ebe4d0d7aa1bc2e36aab0c539',120),('discord:563774978919759893',121),('license:187b0e07961d209c6ad648f33a9e8263018d8bd6',121),('live:985153916482133',121),('steam:11000013c0719d8',121),('xbl:2535405867491098',121),('discord:449977121033682944',122),('license:513f6fa0cde64bc1c372be43dd5253f096629d2f',122),('live:985154237061793',122),('steam:110000135b88af7',122),('xbl:2535450928492711',122),('discord:414755293113745411',123),('license:4ed16b4173a6ccdf86f22e819641ea676a9a4bf6',123),('live:844425078385961',123),('steam:11000010e290a25',123),('xbl:2535424543030032',123),('discord:329663832404525057',124),('fivem:651081',124),('license:67350b2317b2ced65366236e354c48ed7e9c65bc',124),('live:1899947176291657',124),('steam:11000013cb66849',124),('xbl:2535461933236890',124),('discord:389184897539112960',125),('license:e1e83d12e895451f1d6677e92cbf28efbfcec7a4',125),('live:844428272378512',125),('steam:11000013743e761',125),('xbl:2535431084179981',125),('discord:313307942784991234',126),('license:be7eaa57cc22fef1368cff0fbdf16f31b312d07f',126),('live:914801426309209',126),('steam:11000011778ae96',126),('xbl:2535444694876536',126),('license:cae3476401759e29b39dc446b263087effbae6d3',127),('live:985154158568027',127),('steam:11000013d16f1a2',127),('xbl:2535432135426662',127),('discord:400672064673153029',128),('license:a06103d2b8e7989c1748bc9181ae30364310de62',128),('steam:110000136a35494',128),('discord:323506188211978250',129),('license:9cfa3c821e93ca964f07222c966a03a7bdc8b078',129),('live:1055522540812859',129),('steam:1100001001e3f0e',129),('xbl:2535430178981442',129),('discord:423878160396845076',130),('license:6c782b7d891cc80e933719e1aac9d270d1914a2e',130),('steam:110000118ccb43d',130),('discord:294890981701058560',131),('license:708ba6af87999e24d58143d6505974d59925cd16',131),('live:1055521722285167',131),('steam:11000011c6b1162',131),('xbl:2535413121217029',131),('discord:477521436966387712',132),('license:7ed580708758d60d5e2d1a2621dc1f67b03ef798',132),('live:1055518610893978',132),('steam:11000010bca6010',132),('xbl:2535418998440735',132),('discord:447099748831199232',133),('license:ae6a1adb5caee06eb9a33cb34565d0f03ade4957',133),('live:985154279863020',133),('steam:110000136889347',133),('discord:271366138821214209',134),('license:eee93506a37f541a7d362f0b72fe10630007974a',134),('steam:110000103cd2585',134),('discord:586635778717777924',135),('fivem:463858',135),('license:e29f10e031f1aa9c6c3ee10d76efd1151ac7bf9a',135),('live:914798146079819',135),('steam:11000013d20a21d',135),('discord:387977575051558913',136),('license:66c948774ee7585ada6ce1e0ebc5970b46433617',136),('steam:11000013d1ba9cd',136),('discord:527679228200878090',137),('license:6092cabc69d6f794e658f68d758ec7f24a8db81c',137),('steam:11000013c5a4262',137),('license:524d637489f5a0d4bce54fd31a772ed019babfd7',138),('steam:1100001171d92f3',138),('discord:424936592436625408',139),('license:7fb4a52b2c067b6f17ae9b3bba9b58d29f6128d3',139),('live:985157448643724',139),('steam:11000010dae7623',139),('xbl:2535468324105800',139),('discord:161197258296000512',140),('license:1a121302e503e98adb04e25b1fc8e1377aedbee3',140),('live:1899947251972959',140),('steam:11000010bc5bb2a',140),('xbl:2535410825817431',140),('discord:416286203705557003',141),('license:b7d43e2f058021915b789dff8563ac442e98475b',141),('live:1055518881768946',141),('steam:1100001198ff28a',141),('xbl:2535408198104630',141),('license:0edcf70c162752c17f6822080cc94b05667b9008',142),('live:1055518401137771',142),('steam:11000011418e364',142),('xbl:2535444985720822',142),('discord:325631317356183553',143),('license:b9e02384653d64095e6ddc8cc87068617c56f859',143),('live:914802156186036',143),('steam:110000116fb8374',143),('xbl:2535472464728862',143),('discord:341661670671646740',144),('license:98ff1018e4e1fc390715214ed557d26798c28cb6',144),('live:914801344197445',144),('xbl:2535425058943664',144),('discord:261835240190771200',145),('license:192cfa99dc986aad237fffab37130c149d1dc9cd',145),('license:46160123d420c221349f5d54903f9d3504ca4b22',146),('live:1055521426488458',146),('steam:110000114fd02a0',146),('xbl:2533275008828076',146),('discord:411654732747243532',147),('license:a79a8c25f10184a466c3a628df0b7a229f1135a2',147),('steam:1100001323be8e7',147),('discord:370563614974935042',148),('license:ebf3878709786c9553a377ced46fedb29e977fb6',148),('live:914802197495158',148),('xbl:2535455536353052',148),('discord:459281408402259978',149),('license:21d9541b24e02f207c7ad05012fc33151a8839b0',149),('steam:11000010e9d8dbf',149),('discord:339873984617119751',150),('license:e30b75870b02625f681a5cee3d5fbabed15ab56c',150),('steam:110000116e75e0e',150),('discord:295154641786765325',151),('license:268b357ea80e396853edc228d36819dfdafeef7e',151),('live:1899947235090198',151),('steam:11000011736ddd7',151),('discord:357243682925051916',152),('license:145c8a4844e9cb79e89dc451398a65e68b98382e',152),('steam:11000011638fca3',152),('discord:292641687719903232',153),('license:785f37f2379d7906aca8f2dfce6b229d465e05ea',153),('live:914797993467127',153),('steam:110000106dece33',153),('xbl:2535413949525152',153),('discord:653686344417280000',154),('fivem:704244',154),('license:2fbdf4ae3b8de4b3dfdd20aa8c4d5d86609828d9',154),('live:1055518874818032',154),('steam:110000100d54381',154),('xbl:2535429491699632',154),('license:18a91d87a093b030a7dda2bd7ab663ca251aceff',155),('discord:397865858904621056',156),('fivem:670625',156),('license:3c61fa94656f0c7abd62a34ef77aee7b6d093aae',156),('live:985157383513241',156),('steam:11000010b7907ea',156),('xbl:2535435171519899',156),('discord:622309023991070731',157),('license:874a90964d6fedad0bb8b7f1a56c5a60f790657f',157),('discord:304361506928066560',158),('license:da920d377e82047549631ed5be13b4def5cb3eb4',158),('live:914801967585988',158),('steam:1100001065a3c9a',158),('xbl:2535436287021595',158),('discord:221283320078663680',159),('license:fa016a22ab8236095367eea3ee367727b46455af',159),('steam:11000010633252c',159),('license:aa856af777251bedc8dcaec97b283d2e531f33f2',160),('steam:11000013c5be798',160),('license:01d69e8296f8e4e4181755e345ab574cd3125a30',161),('live:1055518748484744',161),('discord:509736257748860938',162),('license:d0b2a4434fef0c3fee06db3d4e48b708c961c0c3',162),('live:1688853564898266',162),('steam:11000011402597b',162),('xbl:2535459461840139',162),('discord:607568461945765920',163),('license:3cac51915774cbddd20a78053fd21e5b96d203ba',163),('steam:1100001188708e8',163),('discord:281864403295666179',164),('license:83b3fc21dcf2dffee186f33569ed2093b31d2fef',164),('live:985154479229710',164),('steam:110000114c935fa',164),('xbl:2535462489426673',164),('discord:282961787970650123',165),('license:2d2dc512f36fc201b987b35787ed771668aa2563',165),('steam:110000111d427c8',165),('discord:256447233485045770',166),('license:e3b3dd1184b43a8ee2a18e77c1a181e53db6952a',166),('steam:11000010e6fc533',166),('discord:378896941536509962',167),('license:6d79bc6fe847913a1226e4069e7a882bbcf3dde0',167),('steam:110000139b84548',167),('license:a4aba13e91728e5cffaf792fdb3a2bac203a2164',168),('live:1759221601337964',168),('steam:110000105360c64',168),('xbl:2535412224074917',168),('license:472cb642a8a49e3baf38ad70c84004cb119a5bdf',169),('live:1055521698756729',169),('steam:11000011336de28',169),('xbl:2535440010928637',169),('license:2c384a924333546b075ef1a1cc8c260f86c83099',170),('live:914802196963825',170),('xbl:2535464482996805',170),('discord:252891910836977664',171),('license:5aa77c03678fce427ac5dcc349f7b409d2d1a74f',171),('steam:11000010af40928',171),('discord:242303456612843520',172),('license:e1dc8b902eef0f7e6a18cea0400654bd53009bb9',172),('live:1688853939864093',172),('steam:110000113fec81f',172),('xbl:2535418422478414',172),('discord:568280568777670667',173),('license:4a1c163f31db1dbaa7e2c625bdd4b4b2734b1d52',173),('live:1899946991170162',173),('steam:110000114bd6b08',173),('xbl:2535433761865901',173),('discord:556637602925772829',174),('license:1e8257d5bfecfcec0ec782af0760c9cff2907d51',174),('live:1055518828249816',174),('steam:11000013e1e8fc1',174),('xbl:2535422195725562',174),('discord:285467596914950145',175),('license:1b48c25de7a629dc2a2660588475f6f7e1535d83',175),('steam:11000011331b9ee',175),('discord:403126648758730752',176),('license:37c72b16be1e35c76660659a092d14539cc24bb9',176),('live:1055518352078859',176),('steam:110000112ad0a0e',176),('xbl:2535431423318165',176),('discord:344061975090823168',177),('license:4e9a2715a0dcfa78f1edd83cc9473aa073f02432',177),('live:914798136624975',177),('steam:11000010d9818e7',177),('xbl:2535458838298056',177),('license:3292646fc9f3005199a69fbd32a3d53a7d7e277b',178),('steam:11000011c353ef4',178),('discord:117809529793544195',179),('license:2a8f8f65df9bea114d7c77bdeff4ef19e3d46f04',179),('steam:110000105b4e9e9',179),('license:aebe46a123be137c96eca91f9ce16bd3f8a744f5',180),('live:844428502187054',180),('steam:1100001060c52db',180),('xbl:2535438436506451',180),('discord:295529071230713856',181),('license:21cb03d15433b5cbe14547f64a7bd8ed4e1a38f4',181),('steam:11000010be3272d',181),('discord:265074836651507713',182),('license:2a76be39016e95a4f5693bb62d9edecf6b24ce19',182),('steam:110000114e89a91',182),('discord:461642238687182848',183),('license:80feb78a62cc384f01b88af3a5111cca54edf94b',183),('live:1055522568147692',183),('steam:110000136ddd974',183),('xbl:2535427221550341',183),('license:19869bf6bb1263c8c7b8c8bc29d4061817831dcf',184),('steam:11000011796bc0e',184),('discord:339810710844473364',185),('license:0a6ce36db2e871f39ffc2b02baa6b2fb302feff3',185),('steam:110000115e1f75d',185),('discord:314080243793264642',186),('license:220de2234468f5713a0e51d121238da8272e0dcc',186),('steam:11000011744d59b',186),('license:8f0bd87ff06d20a9e0dfcdae7ef10ecb6313da44',187),('discord:354570018471804928',188),('license:46da120f56b13be04192ddf656a46ee5586c3daa',188),('live:844424936350053',188),('xbl:2535452430046977',188),('license:4ae6acd2af567db7a9b3c0fed016dedbe2c6d53f',189),('live:1688853877359537',189),('steam:110000136fde722',189),('xbl:2535452216651956',189),('discord:506075157966749711',190),('fivem:671395',190),('license:1a766fa4946fc54a61a8c9fbf1ca7ab6531dcd50',190),('steam:11000011ce66e94',190),('discord:435465450873421824',191),('license:921e682675c6234387df8e40ec9942ccb263595c',191),('live:914801375644532',191),('steam:11000010beede22',191),('xbl:2535449453178012',191),('discord:538637727256805403',192),('license:e4bd5c153f88113a0e97ee6b6f0122e3dcc790c3',192),('live:985154323934027',192),('steam:110000117878e9e',192),('discord:248810481706336256',193),('license:d4809c1c9eabb5df71c4e13dd343d5842e6da28e',193),('live:914801231344745',193),('steam:11000010937008a',193),('xbl:2535462474087012',193),('discord:537637027060121610',194),('license:99e46864d7b6061b2a05024381c02546518c7943',194),('steam:11000013be1a124',194),('discord:466552971493376001',195),('license:9f9c36a92e17d505d68e4b1cd79e80b3d75f1bea',195),('live:985153837246912',195),('xbl:2535470914436550',195),('discord:226749036198232064',196),('license:0a6ee1343a7a1f05b07d1c6852067679222dd3d6',196),('steam:110000107a99b2a',196),('discord:373469104843259924',197),('license:b5c00dee51a958a8a49e0b3acbdd23879f8b8a2a',197),('live:914801439398261',197),('steam:11000010c39fb09',197),('xbl:2535455452446195',197),('license:6a840f0c6ca18d977a6f937a61b1c7c27b6390cf',198),('discord:373833756978446346',199),('license:60fd7af20e751256bfa79dbde7dff89ecc95e72d',199),('steam:11000010643a20b',199),('discord:402121129956737044',200),('fivem:45618',200),('license:d5dc705d28b2e982bc5a4eede83a1f36a88e19a4',200),('live:914798157787598',200),('discord:443498922384818195',201),('license:d6524b765aba6945672494f62ec677b2dd2f49a3',201),('live:985153914328849',201),('steam:110000111d34e13',201),('xbl:2535461269079107',201),('discord:634798098366857249',202),('license:f300be9d510edb970c09919b9e5d08d0838607fd',202),('steam:11000013b6cb63d',202),('discord:291644372129284109',203),('license:54814a2f621ceb2f48fd45de5db3ebaf1551501a',203),('live:844425500642352',203),('discord:326476307183435778',204),('license:7a0c726eb068fc8b79c41768cea446d690eb7d45',204),('live:1899947286052655',204),('steam:11000013833e1b1',204),('xbl:2535418453488172',204),('discord:643191508111065138',205),('license:fe264af26401558ad24150eee2620843fa9a8e97',205),('discord:430789337052086273',206),('license:73eafa29fdaa9a45113f8075eec8529c0057cb40',206),('live:985154352522746',206),('steam:11000011be3aa3f',206),('xbl:2535465115259679',206),('discord:249602983443169280',207),('license:87ae0bde793d2fd33d363ee9f75621fe41a87da6',207),('live:1829582752143392',207),('steam:1100001171e6167',207),('discord:504037642887757835',208),('license:78aaf14ef5f9194562fb79642fa409f09b6add8b',208),('live:985154210796513',208),('steam:110000133651f4f',208),('xbl:2535450038438283',208);
286/*!40000 ALTER TABLE `vrp_user_ids` ENABLE KEYS */;
287UNLOCK TABLES;
288
289--
290-- Table structure for table `vrp_user_moneys`
291--
292
293DROP TABLE IF EXISTS `vrp_user_moneys`;
294/*!40101 SET @saved_cs_client = @@character_set_client */;
295/*!40101 SET character_set_client = utf8 */;
296CREATE TABLE `vrp_user_moneys` (
297 `user_id` int(11) NOT NULL,
298 `wallet` int(11) DEFAULT NULL,
299 `bank` int(11) DEFAULT NULL,
300 PRIMARY KEY (`user_id`),
301 CONSTRAINT `fk_user_moneys_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
302) ENGINE=InnoDB DEFAULT CHARSET=latin1;
303/*!40101 SET character_set_client = @saved_cs_client */;
304
305--
306-- Dumping data for table `vrp_user_moneys`
307--
308
309LOCK TABLES `vrp_user_moneys` WRITE;
310/*!40000 ALTER TABLE `vrp_user_moneys` DISABLE KEYS */;
311INSERT INTO `vrp_user_moneys` VALUES (1,1000000,1698199),(2,0,658443),(3,0,10883984),(4,0,34474),(5,1,276199),(6,0,1850),(7,0,40950),(8,5000,55000),(9,283,4036853),(10,5000,55000),(11,0,55000),(12,38,2266215),(13,0,30760),(14,0,10351),(15,1740,94330),(16,5000,55000),(17,0,35094),(18,1441,268709),(19,56000,3650),(20,0,1045600),(21,5000,55000),(22,0,10000),(23,5000,55000),(24,0,56200),(25,300,37200),(26,817,254000),(27,4000,6955),(28,4900,55200),(29,0,43042),(30,0,283580),(31,780,75515),(32,50000,10220),(33,1820,53200),(34,5000,55000),(35,4770,55200),(36,890,866211),(37,5000,55000),(38,0,1900),(39,5000,55000),(40,5000,55000),(41,0,56000),(42,0,10200),(43,870,638737),(44,425,54100),(45,500,142190),(46,100,5335),(47,220,59000),(48,3840,43300),(49,0,16385),(50,0,55000),(51,4900,55000),(52,5000,55000),(53,0,9830),(54,0,29210),(55,4880,55000),(56,1205,60400),(57,145,13278),(58,0,35710),(59,5000,55000),(60,35000,25255),(61,5000,113569),(62,5000,55000),(63,5000,55000),(64,5000,55000),(65,5000,55000),(66,0,200),(67,0,47383),(68,5000,55000),(69,331,98763),(70,0,60075),(71,5000,55000),(72,285,60000),(73,11470,166318),(74,0,33370),(75,0,16768),(76,0,304442),(77,0,33865),(78,5000,55000),(79,5000,55000),(80,0,13212),(81,5000,55000),(82,5000,55000),(83,5000,55000),(84,5000,55000),(85,5000,55000),(86,4,26000),(87,0,55000),(88,110,47065),(89,5000,55000),(90,5000,55000),(91,4900,55000),(92,5000,55000),(93,5000,55000),(94,5000,55000),(95,5000,55000),(96,5000,55000),(97,4900,55000),(98,4600,55200),(99,3685,1000),(100,5000,55000),(101,5000,55000),(102,4705,56200),(103,836,2500),(104,10000,55000),(105,5000,55000),(106,5000,55000),(107,0,55000),(108,3000,42200),(109,5000,55000),(110,0,26605),(111,73,166292),(112,2410,55200),(113,3655,5100),(114,3800,55000),(115,0,59955),(116,5000,55000),(117,5000,55000),(118,50674,355395),(119,0,102855),(120,5000,55000),(121,4695,55000),(122,0,44165),(123,5000,55000),(124,0,55747),(125,12445,54000),(126,5000,55000),(127,5000,55000),(128,5000,55000),(129,5000,55000),(130,4900,55000),(131,5000,55000),(132,5000,55000),(133,5000,55000),(134,5000,55000),(135,5000,55000),(136,5000,55000),(137,95,0),(138,5000,55000),(139,0,23200),(140,5000,55000),(141,35000,20000),(142,5000,55000),(143,5000,55000),(144,5000,55000),(145,5000,55000),(146,10505,131360),(147,4935,55000),(148,5000,55000),(149,5000,55000),(150,5000,55000),(151,5000,55000),(152,5000,55000),(153,5000,55000),(154,5000,55000),(155,5000,55000),(156,20077,38875),(157,5000,55000),(158,700,2200),(159,5000,55000),(160,5000,55000),(161,5000,55000),(162,0,55000),(163,0,4190),(164,5000,55000),(165,5000,55000),(166,5000,55000),(167,300,59500),(168,0,600),(169,0,41800),(170,5000,55000),(171,1700,60060),(172,4735,56000),(173,5000,55000),(174,5000,55000),(175,5000,55000),(176,9700,36940),(177,0,33600),(178,4770,55200),(179,5,59900),(180,460,59400),(181,157300,59155),(182,0,52925),(183,430,9200),(184,5000,55000),(185,0,10499),(186,0,39600),(187,0,61860),(188,5000,55000),(189,0,6465),(190,3000,35600),(191,4900,55000),(192,0,55000),(193,5000,55000),(194,5000,55000),(195,5000,56200),(196,818,47400),(197,5000,55000),(198,5000,55000),(199,400,55000),(200,0,14642),(201,5000,55000),(202,5000,55000),(203,4797,56000),(204,5000,55000),(205,5000,55000),(206,8440,41600),(207,4897,55200),(208,5000,95000);
312/*!40000 ALTER TABLE `vrp_user_moneys` ENABLE KEYS */;
313UNLOCK TABLES;
314
315--
316-- Table structure for table `vrp_user_vehicles`
317--
318
319DROP TABLE IF EXISTS `vrp_user_vehicles`;
320/*!40101 SET @saved_cs_client = @@character_set_client */;
321/*!40101 SET character_set_client = utf8 */;
322CREATE TABLE `vrp_user_vehicles` (
323 `user_id` int(11) NOT NULL,
324 `vehicle` varchar(255) NOT NULL,
325 `veh_type` varchar(255) NOT NULL DEFAULT 'default',
326 `vehicle_plate` varchar(255) NOT NULL,
327 `vehicle_colorprimary` varchar(255) DEFAULT NULL,
328 `vehicle_colorsecondary` varchar(255) DEFAULT NULL,
329 `vehicle_pearlescentcolor` varchar(255) DEFAULT NULL,
330 `vehicle_wheelcolor` varchar(255) DEFAULT NULL,
331 `vehicle_plateindex` varchar(255) DEFAULT NULL,
332 `vehicle_neoncolor1` varchar(255) DEFAULT NULL,
333 `vehicle_neoncolor2` varchar(255) DEFAULT NULL,
334 `vehicle_neoncolor3` varchar(255) DEFAULT NULL,
335 `vehicle_windowtint` varchar(255) DEFAULT NULL,
336 `vehicle_wheeltype` varchar(255) DEFAULT NULL,
337 `vehicle_mods0` varchar(255) DEFAULT NULL,
338 `vehicle_mods1` varchar(255) DEFAULT NULL,
339 `vehicle_mods2` varchar(255) DEFAULT NULL,
340 `vehicle_mods3` varchar(255) DEFAULT NULL,
341 `vehicle_mods4` varchar(255) DEFAULT NULL,
342 `vehicle_mods5` varchar(255) DEFAULT NULL,
343 `vehicle_mods6` varchar(255) DEFAULT NULL,
344 `vehicle_mods7` varchar(255) DEFAULT NULL,
345 `vehicle_mods8` varchar(255) DEFAULT NULL,
346 `vehicle_mods9` varchar(255) DEFAULT NULL,
347 `vehicle_mods10` varchar(255) DEFAULT NULL,
348 `vehicle_mods11` varchar(255) DEFAULT NULL,
349 `vehicle_mods12` varchar(255) DEFAULT NULL,
350 `vehicle_mods13` varchar(255) DEFAULT NULL,
351 `vehicle_mods14` varchar(255) DEFAULT NULL,
352 `vehicle_mods15` varchar(255) DEFAULT NULL,
353 `vehicle_mods16` varchar(255) DEFAULT NULL,
354 `vehicle_turbo` varchar(255) NOT NULL DEFAULT 'off',
355 `vehicle_tiresmoke` varchar(255) NOT NULL DEFAULT 'off',
356 `vehicle_xenon` varchar(255) NOT NULL DEFAULT 'off',
357 `vehicle_mods23` varchar(255) DEFAULT NULL,
358 `vehicle_mods24` varchar(255) DEFAULT NULL,
359 `vehicle_neon0` varchar(255) DEFAULT NULL,
360 `vehicle_neon1` varchar(255) DEFAULT NULL,
361 `vehicle_neon2` varchar(255) DEFAULT NULL,
362 `vehicle_neon3` varchar(255) DEFAULT NULL,
363 `vehicle_bulletproof` varchar(255) DEFAULT NULL,
364 `vehicle_smokecolor1` varchar(255) DEFAULT NULL,
365 `vehicle_smokecolor2` varchar(255) DEFAULT NULL,
366 `vehicle_smokecolor3` varchar(255) DEFAULT NULL,
367 `vehicle_modvariation` varchar(255) NOT NULL DEFAULT 'off',
368 PRIMARY KEY (`user_id`,`vehicle`),
369 CONSTRAINT `fk_user_vehicles_users` FOREIGN KEY (`user_id`) REFERENCES `vrp_users` (`id`) ON DELETE CASCADE
370) ENGINE=InnoDB DEFAULT CHARSET=latin1;
371/*!40101 SET character_set_client = @saved_cs_client */;
372
373--
374-- Dumping data for table `vrp_user_vehicles`
375--
376
377LOCK TABLES `vrp_user_vehicles` WRITE;
378/*!40000 ALTER TABLE `vrp_user_vehicles` DISABLE KEYS */;
379INSERT INTO `vrp_user_vehicles` VALUES (1,'2015s3','car','P 138OQC','12','7','7','0','1','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','0','2','2','2','0','3','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(1,'ambulancec','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'APERTA','car','P 138OQC','131','0','0','0','0','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','17','3','0','on','on','on','-1','-1','on','on','on','on','off','254','254','254','off'),(1,'bentayga17','car','P 138OQC','12','39','0','0','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','8','-1','on','on','on','on','off','1','1','1','on'),(1,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'BMWS','bike','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'brisa_mvito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'C7','car','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'f248','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'flatbed','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'frogger2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'gnr_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'gsxr','bike','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'gt3rs','car','P 138OQC','39','0','0','27','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(1,'I8','car','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'inem_vwcrafter','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'kart','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'kuruma2','car','P 138OQC','131','83','0','64','1','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','0','150','255','off'),(1,'m2f22','car','P 138OQC','12','0','0','0','1','0','0','255','1','0','0','0','0','0','0','0','-1','-1','-1','-1','0','2','2','2','0','0','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(1,'m5','car','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'MC12','car','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'nh2r','bike','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'p1','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'pista','car','P 138OQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'policesu','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'psp_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'pt_inem4','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'r8ppi','car','P 138OQC','13','13','0','0','1','0','0','255','1','0','0','-1','-1','-1','-1','-1','-1','-1','0','-1','-1','2','2','2','0','-1','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(1,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'superkart','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'towtruck','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(1,'zl12017','car','P 138OQC','131','83','0','64','1','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','0','150','255','off'),(2,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'civicek9rb','car','P 755UIL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'exc530','bike','P 755UIL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'g65amg','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'hcbr17','bike','P 755UIL','12','12','0','0','1','255','0','0','5','6','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','off','off','off','off','off','255','10','10','off'),(2,'LP610','car','P 755UIL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'r8ppi','car','P 755UIL','39','12','0','0','1','0','0','0','1','0','1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','8','-1','0','on','off','on','3','-1','off','off','off','off','off','0','0','0','off'),(2,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(2,'x6m','car','P 755UIL','12','12','0','4','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','1','3','0','on','on','on','8','-1','on','on','on','on','off','128','128','128','off'),(3,'18performante','car','P 813JTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'APERTA','car','P 813JTS','131','28','111','111','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','8','-1','on','on','on','on','off','1','1','1','off'),(3,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'f4rr','bike','P 813JTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'gsxr','bike','P 813JTS','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','0','2','0','0','0','-1','0','off','off','off','0','-1','off','off','off','off','off','0','0','0','off'),(3,'gt3rs','car','P 813JTS','39','131','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(3,'gtr','car','P 813JTS','39','39','0','0','0','255','0','0','1','0','-1','0','0','0','-1','-1','-1','0','0','-1','-1','2','2','2','0','3','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(3,'I8','car','P 813JTS','83','131','0','147','0','0','0','255','1','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','0','2','2','2','0','3','0','on','on','on','0','-1','on','on','on','on','off','0','150','255','on'),(3,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'MV720','car','P 813JTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'p1','car','P 813JTS','83','83','0','64','0','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','2','-1','on','on','on','on','off','0','150','255','on'),(3,'pista','car','P 813JTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'r8ppi','car','P 813JTS','39','39','0','0','0','255','0','0','1','0','1','-1','-1','-1','-1','-1','-1','-1','1','-1','-1','2','0','2','0','-1','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(3,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'subwrx','car','P 813JTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(3,'teslapd','car','P 813JTS','39','0','0','0','0','255','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(3,'zl12017','car','P 813JTS','148','135','0','0','1','255','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','1','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(4,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'Daemon2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'gnr_ssti','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'Hexer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'pj_bmw','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'pj_mercedes','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'sheriffsci','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(4,'Wolfsbane','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'918','car','P 723FZQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'chiron17','car','P 723FZQ','55','55','0','0','0','0','255','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','0','-1','on','on','on','on','off','10','255','10','off'),(5,'dm1200','bike','P 723FZQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'f4rr','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'fxxk16','car','P 723FZQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'g65amg','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'gnr_ssti','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'hcbr17','bike','P 723FZQ','0','0','0','7','0','0','0','0','0','6','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','off','-1','-1','off','off','off','off','off','255','10','10','off'),(5,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'nissantitan17','car','P 723FZQ','0','0','0','0','1','255','255','255','1','0','0','-1','-1','0','0','0','0','-1','-1','-1','0','2','2','2','34','3','0','on','on','on','0','-1','on','on','on','on','off','255','10','10','off'),(5,'p1','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'pista','car','P 723FZQ','39','39','0','0','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(5,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'pspdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'psp_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'psp_kuga','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(5,'Skyline','car','P 723FZQ','13','131','0','2','1','255','0','255','1','0','0','0','0','0','0','-1','-1','0','-1','-1','-1','2','2','2','0','3','0','on','on','on','2','-1','on','on','on','on','off','153','10','153','off'),(5,'x6m','car','P 723FZQ','12','111','111','111','0','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','0','2','2','0','3','0','on','off','on','8','-1','on','on','on','on','off','0','0','0','off'),(6,'2015s3','car','P 124WYL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(6,'f4rr','bike','P 124WYL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(6,'m2f22','car','P 124WYL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(6,'teslapd','car','P 124WYL','131','0','0','0','0','0','0','255','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(7,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'BMWS','bike','P 655HRI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Daemon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Daemon2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Hexer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Innovation','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Wolfsbane','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Zombiea','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(7,'Zombieb','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'APERTA','car','P 841SRR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'dm1200','bike','P 841SRR','120','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','off','off','off','off','off','255','10','10','off'),(9,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'g65amg','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'gnrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'gnrt','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'gnr_1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'gnr_ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'R50','car','P 841SRR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'sheriff2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'sheriffx6','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(9,'ttrs','car','P 841SRR','12','39','0','111','0','255','0','0','1','0','0','-1','-1','-1','-1','-1','-1','-1','-1','0','-1','2','2','2','2','3','0','on','on','on','8','-1','on','on','on','on','off','1','1','1','on'),(11,'17m760i','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(11,'18performante','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(11,'APERTA','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(11,'C7','car','P 205QZF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(11,'golfgti','car','P 205QZF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(11,'gtr','car','P 205QZF','12','12','0','0','1','255','0','255','1','0','0','0','0','0','-1','-1','-1','0','-1','-1','-1','2','2','2','0','0','0','on','on','on','-1','-1','on','on','on','on','off','153','10','153','off'),(11,'m2f22','car','P 205QZF','12','12','0','0','1','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(11,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(11,'p1','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(11,'r8ppi','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','1','-1','-1','-1','-1','-1','-1','-1','1','-1','-1','2','2','2','0','-1','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(11,'zl12017','car','P 205QZF','12','12','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(12,'BMWS','bike','P 813HBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'chiron17','car','P 813HBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'f4rr','bike','P 813HBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'gtr','car','P 813HBY','12','0','0','0','0','255','0','0','0','0','0','0','0','0','-1','-1','-1','0','-1','-1','-1','2','0','0','0','0','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(12,'m5','car','P 813HBY','12','111','111','0','1','255','255','255','1','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(12,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'p1','car','P 813HBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'pista','car','P 813HBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'r8ppi','car','P 813HBY','12','0','0','0','1','255','0','0','1','7','0','-1','-1','-1','-1','-1','-1','-1','1','-1','-1','2','2','2','0','-1','0','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(12,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(12,'x6m','car','P 813HBY','12','4','4','111','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(13,'D99','bike','P 322NYX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Daemon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Daemon2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'evo9','car','P 305SDQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Hexer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Innovation','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'m4f82','car','P 305SDQ','145','147','147','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','off','-1','-1','off','off','off','off','off','0','0','0','off'),(14,'nh2r','bike','P 305SDQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Wolfsbane','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Zombiea','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(14,'Zombieb','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Daemon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Daemon2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'hcbr17','bike','P 591OCK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Hexer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'I8','car','P 591OCK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Innovation','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'kangoo','car','P 591OCK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pbus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policecon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policesl','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policesu','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'policet','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pspdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pspft','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'pspt_els','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'psp_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'psp_kuga','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Wolfsbane','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Zombiea','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(15,'Zombieb','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'bdaf','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'BMWS','bike','P 429AOQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'bv_ftransit','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'emsdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'pt_inem3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(17,'rsb_lrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(18,'alpha','car','P 683CBL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(18,'exc530','bike','P 683CBL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(18,'f4rr','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(18,'p1','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(18,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(19,'rx7tunable','car','P 593MET',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'exc530','bike','P 960POF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'f4rr','bike','P 960POF','0','0','0','0','0','0','0','0','0','0','0','0','-1','0','0','0','-1','-1','-1','-1','0','2','2','2','0','-1','0','on','off','on','0','-1','off','off','off','off','off','0','0','0','off'),(20,'g65amg','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnrt','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnr_1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnr_ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnr_evoque','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'gnr_jeep','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'LP610','car','P 960POF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'MV720','car','P 960POF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'p1','car','P 960POF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'sheriff2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'sheriffx6','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(20,'Skyline','car','P 960POF','12','0','0','0','0','255','0','0','1','0','0','0','0','0','0','-1','-1','0','-1','-1','-1','2','2','2','0','0','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(22,'2015s3','car','P 886PCH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(24,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(24,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(25,'BMWS','bike','P 868UMW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnrt','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnr_1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnr_ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnr_evoque','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnr_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'gnr_jeep','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'sheriff2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(26,'sheriffx6','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(27,'3000gt','car','P 349GEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(27,'370z','car','P 349GEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(27,'evo10','car','P 349GEA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'MV720','car','P 231QGY','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','off','-1','-1','off','off','off','off','off','0','0','0','off'),(29,'pbus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policecon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policesl','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policesu','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'policet','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'pspdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'pspft','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'pspt_els','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'psp_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'psp_kuga','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(29,'rx7tunable','car','P 231QGY','131','131','0','0','0','255','255','255','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(29,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(30,'APERTA','car','P 433NEC','111','28','0','28','0','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','7','3','0','on','on','on','3','-1','on','on','on','on','off','255','10','10','off'),(30,'B5S4','car','P 433NEC','3','5','5','0','0','0','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','off','off','0','-1','off','off','off','off','off','0','0','0','off'),(30,'bentayga17','car','P 433NEC','111','28','0','28','0','255','0','0','1','0','0','0','-1','0','-1','0','0','0','-1','-1','-1','2','2','2','7','3','0','on','on','on','3','-1','on','on','on','on','off','255','10','10','off'),(30,'C7','car','P 433NEC','111','28','0','28','1','255','0','0','1','0','0','0','0','0','-1','0','-1','0','-1','-1','0','2','2','2','7','3','0','on','on','on','3','-1','on','on','on','on','off','255','10','10','off'),(30,'MV720','car','P 433NEC','111','28','0','28','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','off','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(30,'r8ppi','car','P 433NEC','111','28','0','29','1','255','0','0','1','7','1','-1','-1','-1','-1','-1','-1','-1','1','-1','-1','2','2','2','7','-1','0','on','on','on','9','-1','on','on','on','on','off','255','10','10','off'),(30,'x6m','car','P 433NEC','12','111','111','111','0','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','7','3','0','on','off','on','0','-1','off','off','off','off','off','0','0','0','off'),(31,'BMWS','bike','P 335QPE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnrt','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnr_1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnr_ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnr_evoque','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnr_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'gnr_jeep','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'sheriff2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(31,'sheriffx6','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(32,'ma45','car','P 074RTU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'180sx','car','P 000EJR','12','12','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-1','0','0','0','0','2','2','2','0','3','0','on','off','on','-1','-1','off','off','off','off','off','0','0','0','off'),(36,'acp_pbipper','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'BMWS','bike','P 000EJR','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','0','0','0','-1','-1','-1','-1','0','2','2','2','0','-1','0','on','on','off','0','-1','off','off','off','off','off','254','254','254','off'),(36,'brisa_mvito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'flatbed','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'gto','car','P 000EJR','28','28','28','0','1','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','off','off','off','off','off','1','1','1','off'),(36,'m2f22','car','P 000EJR','131','12','0','0','0','0','0','0','1','0','-1','0','0','-1','0','0','-1','-1','-1','-1','0','2','2','2','0','3','0','on','on','off','3','-1','off','off','off','off','off','1','1','1','off'),(36,'nh2r','bike','P 000EJR','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','off','-1','-1','off','off','off','off','off','0','0','0','off'),(36,'peug108','car','P 000EJR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'r8ppi','car','P 000EJR','12','12','0','0','0','0','0','0','1','0','1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','-1','0','on','on','off','-1','-1','off','off','off','off','off','1','1','1','off'),(36,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(36,'towtruck','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(38,'dc2','car','P 170VCD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(38,'peug108','car','P 170VCD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(42,'ma45','car','P 886LBY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'C7','car','P 618KWA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'m2f22','car','P 214IAE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pbus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policecon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policesl','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policesu','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'policet','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pspdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pspft','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pspt_els','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'psp_i8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'psp_kuga','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'pturismo','car','P 618KWA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(43,'zl12017','car','P 214IAE','13','12','0','0','0','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','off','off','off','off','off','0','150','255','off'),(44,'450crf','bike','P 733VXF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(44,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(44,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(44,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'BMWS','bike','P 098BYY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'boxville2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'macla','car','P 098BYY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'peug108','car','P 098BYY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'pony','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'rc','bike','P 098BYY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(45,'volvoc30','car','P 098BYY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(46,'BMWS','bike','P 230PHW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(46,'dm1200','bike','P 230PHW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(46,'f4rr','bike','P 230PHW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(47,'dc2','car','P 375YOZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(49,'BMWS','bike','P 556GOB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(53,'2015s3','car','P 666AAJ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(54,'f4rr','bike','P 815YUP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(54,'gnr_ssti','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(54,'pj_bmw','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(54,'pj_mercedes','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(54,'sheriffsci','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(57,'f4rr','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(57,'p1','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(57,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(57,'rumpo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(57,'subwrx','car','P 288EBV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(58,'ibiza','car','P 317IRX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(60,'B5S4','car','P 682EIT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Daemon','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Daemon2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'exc530','bike','P 031WUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Hexer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Innovation','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'nh2r','bike','P 031WUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'pct18','car','P 031WUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Wolfsbane','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Zombiea','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(61,'Zombieb','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(67,'f4rr','bike','P 254NXS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(67,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(67,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(67,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(67,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'180sx','car','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'ben17','car','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'crafter17','car','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'dm1200','bike','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'f4rr','bike','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'LP610','car','P 514EEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'Nightblade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(69,'pista','car','P 514EEF','28','28','0','0','1','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(73,'B5S4','car','P 687RZT','12','12','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','0','0','0','0','on','off','off','0','-1','off','off','off','off','off','0','0','0','off'),(73,'m5','car','P 687RZT','12','0','0','28','1','255','0','0','1','7','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','16','-1','on','on','on','on','off','1','1','1','off'),(73,'pturismo','car','P 687RZT','12','39','0','27','1','255','0','0','1','7','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(74,'citroc4','car','P 457ECK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(74,'dilettante2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(74,'rsv4','bike','P 457ECK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(74,'stockade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(75,'C7','car','P 945XUV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(75,'dm1200','bike','P 945XUV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'acp_pbipper','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'brisa_mvito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'f4rr','bike','P 406AJQ','131','0','0','111','1','255','255','255','1','6','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','1','-1','0','on','on','on','10','10','off','off','off','off','off','1','1','1','on'),(76,'flatbed','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'nissantitan17','car','P 406AJQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'pista','car','P 406AJQ','12','120','0','111','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','254','254','254','off'),(76,'rubi3d','car','P 406AJQ','12','39','0','111','1','255','0','0','1','4','-1','0','-1','0','-1','-1','-1','-1','-1','-1','-1','2','2','2','2','3','0','on','on','on','3','-1','on','on','on','on','off','1','1','1','on'),(76,'towtruck','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(76,'x6m','car','P 406AJQ','12','111','111','111','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','1','3','0','on','on','on','8','-1','on','on','on','on','off','1','1','1','off'),(77,'nh2r','bike','P 567HXS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(77,'nissantitan17','car','P 567HXS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(80,'180sx','car','P 891TGN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(80,'C7','car','P 891TGN','28','131','0','0','0','255','0','0','3','7','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','0','3','0','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(80,'dm1200','bike','P 891TGN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(80,'m4f82','car','P 891TGN','28','131','0','0','0','255','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(80,'r1v2','bike','P 891TGN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(86,'f4rr','bike','P 783HIZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'2015s3','car','P 966QSQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'E63B','car','P 966QSQ','150','135','0','89','0','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','0','0','0','35','3','0','on','on','on','7','-1','on','on','on','on','off','153','10','153','off'),(87,'ghispo2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'gnrdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'gnrt','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'gnr_ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'gnr_ssti','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'pbus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'pj_bmw','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'pj_mercedes','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'pspt_els','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'sheriff2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'sheriffevo','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(87,'sheriffsci','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(88,'Avarus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(88,'nissantitan17','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(88,'r1v2','bike','P 129VVP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(88,'Sanctus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(99,'subwrx','car','P 654BMY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(102,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(103,'B5S4','car','P 702EMC','111','28','0','147','0','255','0','0','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','2','2','1','3','0','off','on','on','8','-1','on','on','on','on','off','255','10','10','off'),(103,'GBurrito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(103,'hcbr17','bike','P 702EMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(103,'l37','car','P 702EMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(103,'m5','car','P 702EMC','0','0','0','0','0','255','0','0','1','7','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','0','0','0','0','0','on','on','on','-1','-1','on','on','on','on','off','1','1','1','off'),(103,'rubi3d','car','P 702EMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(108,'peug108','car','P 082FTZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(110,'f4rr','bike','P 096AXY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'180sx','car','P 581BSR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'f4rr','bike','P 581BSR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'gtr','car','P 581BSR','111','0','0','147','0','255','0','0','2','4','0','0','0','0','-1','-1','-1','0','0','-1','-1','2','2','2','0','3','0','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(111,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'pspft','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(111,'renault4l','car','P 581BSR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(113,'evo9','car','P 272HNY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'ambulancec','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'ambulancei','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'B5S4','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'boxville2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'c3plur','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'civicek9rb','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'ems_gs1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'espace3','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'inem_vwcrafter','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'m4f82','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'pony','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'pt_inem','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'pt_inem4','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(118,'rm3e36','car','P 884YRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'ma45','car','P 315QLY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pbus','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'policegt350r','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'policer8','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'policesl','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'policesu','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'policet','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'polmav','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pspdef','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pspft','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'pspt_els','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'psp_kuga','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'riot','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(119,'zx10r','bike','P 315QLY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'ambulancec','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'ambulancei','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'BMWS','bike','P 154VWA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'ems_gs1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'inem_vwcrafter','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'kx250f','bike','P 154VWA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'m4f82','car','P 154VWA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'pt_inem','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(124,'pt_inem4','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(125,'BMWS','bike','P 916SSS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(137,'370z','car','P 001ENO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(137,'golfgti','car','P 001ENO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(139,'celica','car','P 881GEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(139,'rc','bike','P 881GEF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(146,'17m760i','car','P 339BUG','12','0','0','0','1','0','0','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','2','0','2','0','3','0','on','off','on','0','-1','on','on','on','on','off','0','0','0','off'),(146,'180sx','car','P 339BUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(146,'renault4l','car','P 339BUG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(156,'celica','car','P 564YZE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(158,'rx7tunable','car','P 796WYC','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','off','off','off','-1','-1','off','off','off','off','off','0','0','0','off'),(163,'exc530','bike','P 267RXE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'f4rr','bike','P 267RXE','0','0','0','0','0','0','0','0','0','0','0','0','-1','0','0','0','-1','-1','-1','-1','0','2','2','2','0','-1','0','on','off','off','0','-1','off','off','off','off','off','0','0','0','off'),(163,'pista','car','P 267RXE','39','131','0','111','0','255','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','on','on','-1','-1','on','on','on','on','off','255','10','10','off'),(163,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'police2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'police3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'pspt_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'psp_bmwgs','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'renault4l','car','P 267RXE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(163,'sef_pfinder','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(168,'s500w222','car','P 496AZO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(171,'brisa_mvito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(172,'brisa_mvito','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(176,'peug108','car','P 663RIV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(177,'r1v2','bike','P 705YNR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'B5S4','car','P 038LIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'dilettante2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(181,'stockade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(182,'B5S4','car','P 951FGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(182,'Blazer','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(182,'Dubsta3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(182,'Moonbeam','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(183,'2015s3','car','P 995MFV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(183,'dilettante2','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(183,'stockade','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(185,'180sx','car','P 999UVS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(185,'BMWS','bike','P 999UVS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(185,'f4rr','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(185,'p1','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(185,'rs7','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(186,'B5S4','car','P 773AFR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(187,'Baller3','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(189,'rx7tunable','car','P 391GQZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(190,'BMWS','bike','P 683HGN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(195,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(196,'D99','bike','P 123ZGH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(196,'m4f82','car','P 123ZGH','0','111','0','0','1','255','255','255','1','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','on','off','on','-1','-1','on','on','on','on','off','0','0','0','off'),(199,'renault4l','car','P 145ILC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'ambulance','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'ambulancec','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'c3plur','car','P 997VDD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'ems_gs1200','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'m2f22','car','P 997VDD','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','0','2','0','0','0','3','0','off','off','off','0','-1','off','off','off','off','off','0','0','0','off'),(200,'pt_inem','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(200,'pt_inem4','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(203,'C7','car','P 041IGX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(206,'370z','car','P 340FLI','0','0','0','0','0','0','0','0','0','0','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','-1','off','off','on','-1','-1','off','off','off','off','off','0','0','0','off'),(206,'police','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(206,'pspp_530d','default','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(207,'f4rr','bike','P 783DGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off'),(207,'rs6pd600','car','P 783DGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off','off','off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'off');
380/*!40000 ALTER TABLE `vrp_user_vehicles` ENABLE KEYS */;
381UNLOCK TABLES;
382
383--
384-- Table structure for table `vrp_users`
385--
386
387DROP TABLE IF EXISTS `vrp_users`;
388/*!40101 SET @saved_cs_client = @@character_set_client */;
389/*!40101 SET character_set_client = utf8 */;
390CREATE TABLE `vrp_users` (
391 `id` int(11) NOT NULL AUTO_INCREMENT,
392 `last_login` varchar(100) DEFAULT NULL,
393 `whitelisted` tinyint(1) DEFAULT NULL,
394 `banned` tinyint(1) DEFAULT NULL,
395 `GunLicense` varchar(55) NOT NULL DEFAULT 'Required',
396 `pescLicense` varchar(55) NOT NULL DEFAULT 'Required',
397 `DmvTest` varchar(50) NOT NULL DEFAULT 'Required',
398 PRIMARY KEY (`id`)
399) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=latin1;
400/*!40101 SET character_set_client = @saved_cs_client */;
401
402--
403-- Dumping data for table `vrp_users`
404--
405
406LOCK TABLES `vrp_users` WRITE;
407/*!40000 ALTER TABLE `vrp_users` DISABLE KEYS */;
408INSERT INTO `vrp_users` VALUES (1,'85.138.5.146 13:33:30 19/12/2019',1,0,'Passed','Passed','Passed'),(2,'161.230.37.7 00:28:18 19/12/2019',1,0,'Passed','Required','Passed'),(3,'5.249.18.123 11:41:16 19/12/2019',0,0,'Passed','Required','Passed'),(4,'176.79.78.178 18:14:35 17/12/2019',0,0,'Passed','Required','Passed'),(5,'188.82.216.77 11:44:17 19/12/2019',0,0,'Required','Required','Required'),(6,'77.54.115.232 19:50:05 16/12/2019',0,0,'Required','Required','Required'),(7,'85.242.165.185 00:44:15 14/12/2019',0,0,'Required','Required','Required'),(8,'85.246.222.151 22:28:48 11/12/2019',0,0,'Required','Required','Required'),(9,'185.230.124.52 23:08:08 18/12/2019',0,0,'Required','Required','Required'),(10,'185.174.156.75 22:46:24 11/12/2019',0,0,'Required','Required','Required'),(11,'85.243.131.103 20:20:42 13/12/2019',0,0,'Required','Required','Required'),(12,'94.60.168.116 12:07:03 19/12/2019',0,0,'Required','Required','Passed'),(13,'95.92.34.164 20:15:01 18/12/2019',0,0,'Passed','Required','Required'),(14,'89.153.187.225 20:11:12 18/12/2019',0,0,'Required','Required','Required'),(15,'178.166.59.44 15:11:20 18/12/2019',0,1,'Required','Required','Required'),(16,'213.138.229.71 20:06:55 12/12/2019',0,0,'Required','Required','Required'),(17,'109.51.74.187 00:55:05 14/12/2019',0,0,'Required','Required','Required'),(18,'188.80.96.94 11:41:36 19/12/2019',0,0,'Required','Required','Required'),(19,'109.48.81.159 16:23:19 14/12/2019',0,0,'Required','Required','Required'),(20,'78.130.94.6 13:16:38 19/12/2019',0,0,'Passed','Required','Required'),(21,'200.106.148.199 23:07:58 12/12/2019',0,0,'Required','Required','Required'),(22,'94.61.51.101 00:38:12 13/12/2019',0,0,'Required','Required','Required'),(23,'89.153.35.37 00:51:01 13/12/2019',0,0,'Required','Required','Required'),(24,'188.251.207.103 20:23:03 17/12/2019',0,0,'Required','Required','Required'),(25,'195.23.174.76 16:33:47 13/12/2019',0,0,'Required','Required','Required'),(26,'85.244.67.67 13:00:40 15/12/2019',0,0,'Required','Required','Required'),(27,'89.155.103.26 17:31:39 13/12/2019',0,0,'Required','Required','Required'),(28,'77.54.136.166 18:08:38 13/12/2019',0,0,'Required','Required','Required'),(29,'89.155.99.161 12:07:34 19/12/2019',0,0,'Required','Required','Required'),(30,'89.152.200.40 13:31:25 19/12/2019',0,0,'Required','Required','Required'),(31,'85.138.118.47 00:44:19 18/12/2019',0,0,'Required','Required','Passed'),(32,'188.81.36.241 18:20:31 13/12/2019',0,0,'Required','Required','Required'),(33,'85.240.166.203 20:00:33 13/12/2019',0,0,'Required','Required','Required'),(34,'93.108.170.1 21:30:50 14/12/2019',0,0,'Required','Required','Required'),(35,'188.82.99.213 20:17:20 13/12/2019',0,0,'Required','Required','Required'),(36,'217.129.6.189 19:57:14 18/12/2019',0,0,'Required','Required','Passed'),(37,'94.46.131.9 21:30:18 13/12/2019',0,0,'Required','Required','Required'),(38,'46.189.131.135 15:31:41 14/12/2019',0,0,'Required','Required','Required'),(39,'46.190.51.123 22:41:38 13/12/2019',0,0,'Required','Required','Required'),(40,'95.223.57.32 00:31:16 14/12/2019',0,0,'Required','Required','Required'),(41,'84.91.40.102 00:03:13 15/12/2019',0,0,'Required','Required','Required'),(42,'0.0.0.0 02:09:05 14/12/2019',0,0,'Required','Required','Required'),(43,'148.63.4.144 23:44:15 18/12/2019',0,0,'Passed','Required','Passed'),(44,'94.62.171.57 19:49:55 17/12/2019',0,0,'Required','Required','Required'),(45,'109.49.48.112 15:47:22 16/12/2019',0,0,'Required','Required','Required'),(46,'109.49.49.51 14:02:01 15/12/2019',0,0,'Required','Required','Required'),(47,'2.80.108.111 15:44:45 14/12/2019',0,1,'Required','Required','Required'),(48,'5.249.41.214 15:50:31 14/12/2019',0,0,'Required','Required','Required'),(49,'94.62.235.100 14:16:21 15/12/2019',0,0,'Required','Required','Required'),(50,'95.92.104.9 17:26:38 14/12/2019',0,1,'Required','Required','Required'),(51,'188.81.121.109 15:28:16 14/12/2019',0,0,'Required','Required','Required'),(52,'188.37.237.136 15:31:35 14/12/2019',0,0,'Required','Required','Required'),(53,'85.138.164.21 15:41:36 14/12/2019',0,0,'Required','Required','Required'),(54,'144.64.167.95 18:15:28 14/12/2019',0,0,'Required','Required','Required'),(55,'85.246.219.98 18:19:34 14/12/2019',0,0,'Required','Required','Required'),(56,'82.154.29.47 18:59:26 14/12/2019',0,0,'Required','Required','Passed'),(57,'89.181.226.107 13:23:12 19/12/2019',0,0,'Required','Required','Passed'),(58,'89.154.99.41 19:31:53 14/12/2019',0,0,'Required','Required','Required'),(59,'109.51.242.35 17:50:49 15/12/2019',0,0,'Required','Required','Required'),(60,'85.138.223.233 22:11:05 16/12/2019',0,0,'Required','Required','Required'),(61,'149.90.161.237 20:03:42 18/12/2019',0,1,'Required','Required','Required'),(62,'61.90.27.41 05:52:20 15/12/2019',0,0,'Required','Required','Required'),(63,'223.24.150.21 05:55:18 15/12/2019',0,0,'Required','Required','Required'),(64,'91.241.69.131 08:18:21 15/12/2019',0,0,'Required','Required','Required'),(65,'94.61.131.35 11:27:42 15/12/2019',0,0,'Required','Required','Required'),(66,'94.132.141.85 14:03:05 15/12/2019',0,0,'Required','Required','Required'),(67,'188.37.89.149 04:47:43 19/12/2019',0,0,'Passed','Required','Passed'),(68,'85.139.30.8 13:22:26 15/12/2019',0,0,'Required','Required','Required'),(69,'89.152.86.152 00:33:19 19/12/2019',0,0,'Required','Required','Required'),(70,'217.129.33.185 16:05:46 15/12/2019',0,0,'Required','Required','Required'),(71,'77.138.141.252 15:07:51 15/12/2019',0,0,'Required','Required','Required'),(72,'95.172.169.207 18:17:08 15/12/2019',0,0,'Required','Required','Required'),(73,'94.60.84.218 13:30:29 19/12/2019',0,0,'Required','Required','Passed'),(74,'176.78.171.121 15:19:38 15/12/2019',0,0,'Required','Required','Required'),(75,'85.242.139.181 18:24:48 16/12/2019',0,0,'Required','Required','Required'),(76,'2.80.187.92 13:33:28 19/12/2019',0,0,'Required','Required','Required'),(77,'85.240.175.48 21:24:41 15/12/2019',0,0,'Required','Required','Required'),(78,'161.230.33.241 16:22:25 15/12/2019',0,0,'Required','Required','Required'),(79,'81.193.175.251 16:47:11 15/12/2019',0,0,'Required','Required','Required'),(80,'154.127.147.13 11:25:02 19/12/2019',0,0,'Required','Required','Passed'),(81,'195.39.187.26 16:52:18 15/12/2019',0,0,'Required','Required','Required'),(82,'86.98.124.11 16:52:44 15/12/2019',0,0,'Required','Required','Required'),(83,'37.210.220.189 16:53:04 15/12/2019',0,0,'Required','Required','Required'),(84,'94.128.85.203 16:54:01 15/12/2019',0,0,'Required','Required','Required'),(85,'85.139.213.141 17:11:35 15/12/2019',0,0,'Required','Required','Required'),(86,'89.153.226.127 17:19:47 15/12/2019',0,0,'Required','Required','Required'),(87,'85.139.232.190 20:04:43 18/12/2019',0,0,'Required','Required','Passed'),(88,'94.60.187.44 14:30:21 18/12/2019',0,1,'Required','Required','Required'),(89,'178.157.242.47 19:10:50 15/12/2019',0,1,'Required','Required','Required'),(90,'185.5.164.120 18:47:43 16/12/2019',0,0,'Required','Required','Required'),(91,'161.230.20.106 19:34:29 15/12/2019',0,0,'Required','Required','Required'),(92,'94.61.112.238 19:34:37 15/12/2019',0,0,'Required','Required','Required'),(93,'185.126.111.179 19:42:55 15/12/2019',0,0,'Required','Required','Required'),(94,'89.181.148.135 20:27:36 15/12/2019',0,0,'Required','Required','Required'),(95,'94.59.111.223 20:27:42 15/12/2019',0,0,'Required','Required','Required'),(96,'89.109.93.91 20:32:45 15/12/2019',0,0,'Required','Required','Required'),(97,'85.184.180.234 21:06:59 16/12/2019',0,0,'Required','Required','Required'),(98,'82.154.118.110 18:06:10 16/12/2019',0,0,'Required','Required','Required'),(99,'188.250.69.9 20:56:49 15/12/2019',0,0,'Required','Required','Passed'),(100,'185.157.116.103 21:26:00 15/12/2019',0,0,'Required','Required','Required'),(101,'80.162.61.21 21:53:19 15/12/2019',0,0,'Required','Required','Required'),(102,'188.81.30.162 22:26:36 15/12/2019',0,0,'Required','Required','Required'),(103,'109.50.191.13 00:27:34 19/12/2019',0,0,'Passed','Required','Passed'),(104,'148.69.73.198 22:39:33 15/12/2019',0,0,'Required','Required','Required'),(105,'82.155.16.218 22:46:27 15/12/2019',0,1,'Required','Required','Required'),(106,'2.81.175.21 22:41:06 15/12/2019',0,1,'Required','Required','Required'),(107,'41.200.176.77 22:43:53 15/12/2019',0,1,'Required','Required','Required'),(108,'93.102.22.102 22:59:28 15/12/2019',0,0,'Required','Required','Required'),(109,'163.172.121.91 23:11:44 15/12/2019',0,1,'Required','Required','Required'),(110,'94.60.78.47 21:56:57 16/12/2019',0,0,'Required','Required','Required'),(111,'85.242.155.94 01:52:17 19/12/2019',0,0,'Passed','Required','Passed'),(112,'95.136.77.60 23:43:32 15/12/2019',0,0,'Required','Required','Passed'),(113,'81.244.192.194 11:47:56 19/12/2019',0,0,'Required','Required','Passed'),(114,'95.94.184.243 00:31:14 16/12/2019',0,0,'Required','Required','Required'),(115,'188.86.44.165 23:43:39 16/12/2019',0,0,'Required','Required','Required'),(116,'27.145.89.131 10:50:37 16/12/2019',0,0,'Required','Required','Required'),(117,'37.238.35.15 13:04:18 16/12/2019',0,0,'Required','Required','Required'),(118,'149.90.41.31 13:40:13 19/12/2019',0,0,'Required','Required','Passed'),(119,'188.250.162.37 00:37:50 19/12/2019',0,0,'Required','Required','Required'),(120,'80.161.48.90 18:13:37 16/12/2019',0,0,'Required','Required','Required'),(121,'95.95.161.48 13:16:18 19/12/2019',0,0,'Required','Required','Required'),(122,'85.138.119.181 19:18:10 16/12/2019',0,0,'Required','Required','Required'),(123,'176.23.149.125 18:51:45 16/12/2019',0,0,'Required','Required','Required'),(124,'2.81.48.35 01:56:47 19/12/2019',0,0,'Passed','Required','Required'),(125,'81.84.219.102 19:22:27 16/12/2019',0,0,'Required','Required','Required'),(126,'188.83.143.97 13:36:51 19/12/2019',0,0,'Required','Required','Required'),(127,'128.76.235.9 19:30:44 16/12/2019',0,0,'Required','Required','Required'),(128,'188.178.120.168 19:55:51 16/12/2019',0,0,'Required','Required','Required'),(129,'87.52.50.167 19:58:16 16/12/2019',0,0,'Required','Required','Required'),(130,'62.107.227.178 20:05:15 16/12/2019',0,0,'Required','Required','Required'),(131,'94.147.152.5 20:08:24 16/12/2019',0,0,'Required','Required','Required'),(132,'212.10.240.188 20:48:31 16/12/2019',0,0,'Required','Required','Required'),(133,'86.52.197.38 21:05:10 16/12/2019',0,1,'Required','Required','Required'),(134,'95.154.29.37 21:07:07 16/12/2019',0,1,'Required','Required','Required'),(135,'79.169.80.200 21:08:42 16/12/2019',0,1,'Required','Required','Required'),(136,'176.21.229.165 21:18:32 16/12/2019',0,0,'Required','Required','Required'),(137,'89.155.224.240 22:08:06 16/12/2019',0,0,'Required','Required','Required'),(138,'95.93.16.163 21:28:22 16/12/2019',0,0,'Required','Required','Required'),(139,'188.176.155.42 21:40:39 16/12/2019',0,0,'Required','Required','Required'),(140,'85.139.213.194 21:43:00 16/12/2019',0,0,'Required','Required','Required'),(141,'5.186.125.37 21:53:12 16/12/2019',0,0,'Required','Required','Required'),(142,'0.0.0.0 21:56:53 16/12/2019',0,0,'Required','Required','Required'),(143,'94.132.151.6 21:59:44 16/12/2019',0,0,'Required','Required','Required'),(144,'2.83.253.40 22:12:37 16/12/2019',0,0,'Required','Required','Required'),(145,'2.80.16.57 22:04:55 16/12/2019',0,0,'Required','Required','Required'),(146,'94.60.107.100 22:07:58 17/12/2019',0,0,'Passed','Required','Passed'),(147,'188.93.199.70 22:12:42 16/12/2019',0,0,'Required','Required','Required'),(148,'88.157.13.123 22:08:30 16/12/2019',0,0,'Required','Required','Required'),(149,'188.83.121.209 22:11:05 16/12/2019',0,0,'Required','Required','Required'),(150,'188.37.136.140 22:11:34 16/12/2019',0,1,'Required','Required','Required'),(151,'94.62.109.251 22:11:37 16/12/2019',0,1,'Required','Required','Required'),(152,'89.109.90.217 22:12:10 16/12/2019',0,1,'Required','Required','Required'),(153,'188.83.110.118 22:12:12 16/12/2019',0,1,'Required','Required','Required'),(154,'94.145.103.127 23:06:15 16/12/2019',0,0,'Required','Required','Required'),(155,'109.51.165.207 23:16:32 16/12/2019',0,0,'Required','Required','Required'),(156,'195.245.144.254 23:39:10 16/12/2019',0,0,'Required','Required','Passed'),(157,'95.92.249.227 23:46:56 16/12/2019',0,0,'Required','Required','Required'),(158,'85.138.169.45 16:52:40 17/12/2019',0,0,'Required','Required','Passed'),(159,'89.181.42.192 05:37:49 17/12/2019',0,0,'Required','Required','Required'),(160,'37.201.152.109 17:56:13 17/12/2019',0,0,'Required','Required','Required'),(161,'93.162.10.62 15:16:47 17/12/2019',0,0,'Required','Required','Required'),(162,'86.111.136.200 18:20:53 17/12/2019',0,0,'Required','Required','Required'),(163,'95.92.15.95 01:54:57 19/12/2019',0,0,'Required','Required','Passed'),(164,'80.197.111.154 21:39:37 17/12/2019',0,0,'Required','Required','Required'),(165,'188.228.50.140 21:43:35 17/12/2019',0,0,'Required','Required','Required'),(166,'87.57.132.147 21:59:17 17/12/2019',0,0,'Required','Required','Required'),(167,'94.132.136.184 22:24:35 17/12/2019',0,0,'Required','Required','Required'),(168,'217.129.214.150 21:08:09 18/12/2019',0,1,'Required','Required','Required'),(169,'94.61.148.203 21:09:41 18/12/2019',0,1,'Required','Required','Required'),(170,'176.20.140.173 23:18:46 17/12/2019',0,0,'Required','Required','Required'),(171,'89.115.196.211 23:43:38 17/12/2019',0,0,'Required','Required','Required'),(172,'176.78.109.86 23:41:48 17/12/2019',0,0,'Required','Required','Required'),(173,'94.147.21.153 23:29:26 17/12/2019',0,0,'Required','Required','Required'),(174,'80.163.63.27 23:58:33 17/12/2019',0,0,'Required','Required','Required'),(175,'2.81.226.97 00:08:04 18/12/2019',0,0,'Required','Required','Required'),(176,'95.172.170.56 13:21:48 18/12/2019',0,0,'Required','Required','Required'),(177,'37.189.57.221 14:55:16 18/12/2019',0,1,'Required','Required','Required'),(178,'89.153.128.74 14:50:24 18/12/2019',0,1,'Required','Required','Required'),(179,'81.193.225.197 14:51:50 18/12/2019',0,0,'Required','Required','Required'),(180,'85.247.36.16 15:03:08 18/12/2019',0,0,'Required','Required','Required'),(181,'2.83.99.145 18:48:33 18/12/2019',0,1,'Required','Required','Required'),(182,'148.71.224.58 18:01:00 18/12/2019',0,0,'Required','Required','Required'),(183,'89.181.169.100 15:12:13 18/12/2019',0,0,'Required','Required','Passed'),(184,'91.101.36.147 15:16:35 18/12/2019',0,0,'Required','Required','Required'),(185,'148.71.174.225 20:01:23 18/12/2019',0,0,'Required','Required','Required'),(186,'94.61.2.114 19:51:04 18/12/2019',0,0,'Required','Required','Required'),(187,'77.54.79.194 18:43:58 18/12/2019',0,0,'Required','Required','Required'),(188,'109.49.21.43 17:47:12 18/12/2019',0,0,'Required','Required','Required'),(189,'2.80.157.175 18:49:52 18/12/2019',0,1,'Required','Required','Required'),(190,'89.154.162.188 18:59:39 18/12/2019',0,0,'Required','Required','Required'),(191,'212.112.152.105 18:55:37 18/12/2019',0,0,'Required','Required','Required'),(192,'185.5.166.94 19:01:04 18/12/2019',0,0,'Required','Required','Required'),(193,'0.0.0.0 19:41:27 18/12/2019',0,0,'Required','Required','Required'),(194,'80.71.142.5 19:43:19 18/12/2019',0,0,'Required','Required','Required'),(195,'188.251.140.29 20:28:57 18/12/2019',0,0,'Required','Required','Required'),(196,'82.155.119.10 13:30:49 19/12/2019',0,0,'Required','Required','Passed'),(197,'178.157.250.132 21:08:44 18/12/2019',0,0,'Required','Required','Required'),(198,'178.155.211.121 21:18:53 18/12/2019',0,0,'Required','Required','Required'),(199,'89.152.207.41 22:46:55 18/12/2019',0,0,'Required','Required','Required'),(200,'188.250.144.21 01:41:04 19/12/2019',0,0,'Required','Required','Passed'),(201,'89.152.36.120 23:12:44 18/12/2019',0,0,'Required','Required','Required'),(202,'193.126.179.47 23:08:22 18/12/2019',0,0,'Required','Required','Required'),(203,'109.50.240.179 13:32:52 19/12/2019',0,0,'Required','Required','Required'),(204,'85.242.36.227 03:12:13 19/12/2019',0,0,'Required','Required','Required'),(205,'2.83.70.130 09:04:49 19/12/2019',0,0,'Required','Required','Required'),(206,'89.155.100.102 13:30:45 19/12/2019',0,0,'Passed','Required','Required'),(207,'109.51.119.136 12:22:56 19/12/2019',0,1,'Required','Required','Required'),(208,'85.240.11.224 13:31:01 19/12/2019',0,0,'Required','Required','Required');
409/*!40000 ALTER TABLE `vrp_users` ENABLE KEYS */;
410UNLOCK TABLES;
411
412--
413-- Dumping routines for database 'zap468512-1'
414--
415/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
416
417/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
418/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
419/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
420/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
421/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
422/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
423/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
424
425-- Dump completed on 2019-12-19 13:42:29