· 7 years ago · Feb 19, 2019, 02:34 AM
1--
2-- Table structure for table `groups`
3--
4
5CREATE TABLE IF NOT EXISTS `groups` (
6 `id` int(11) NOT NULL AUTO_INCREMENT,
7 `Type` tinyint(4) NOT NULL DEFAULT '0',
8 `Name` varchar(64) NOT NULL DEFAULT '',
9 `MOTD` varchar(128) NOT NULL DEFAULT '',
10 `Allegiance` tinyint(4) NOT NULL DEFAULT '0',
11 `Bug` tinyint(4) unsigned NOT NULL DEFAULT '255',
12 `Radio` tinyint(4) unsigned NOT NULL DEFAULT '255',
13 `DeptRadio` tinyint(4) unsigned NOT NULL DEFAULT '255',
14 `GovAnnouncement` tinyint(4) unsigned NOT NULL DEFAULT '255',
15 `SpikeStrips` tinyint(4) unsigned NOT NULL DEFAULT '255',
16 `Barricades` tinyint(4) unsigned NOT NULL DEFAULT '255',
17 `Cones` tinyint(4) unsigned NOT NULL DEFAULT '255',
18 `Flares` tinyint(4) unsigned NOT NULL DEFAULT '255',
19 `Barrels` tinyint(4) unsigned NOT NULL DEFAULT '255',
20 `FreeNameChange` tinyint(3) unsigned NOT NULL DEFAULT '255',
21 `CrateIslandAccess` tinyint(4) unsigned NOT NULL DEFAULT '255',
22 `DutyColour` mediumint(8) unsigned NOT NULL DEFAULT '16777215',
23 `RadioColour` mediumint(8) unsigned NOT NULL DEFAULT '16777215',
24 `Budget` int(11) NOT NULL DEFAULT '0',
25 `BudgetPayment` int(11) NOT NULL DEFAULT '0',
26 `Stock` int(11) NOT NULL DEFAULT '0',
27 `LockerCostType` int(11) NOT NULL,
28 `CrateX` float NOT NULL DEFAULT '0',
29 `CrateY` float NOT NULL DEFAULT '0',
30 `CrateZ` float NOT NULL DEFAULT '0',
31 `Rank0` varchar(30) NOT NULL DEFAULT '',
32 `Rank1` varchar(30) NOT NULL DEFAULT '',
33 `Rank2` varchar(30) NOT NULL DEFAULT '',
34 `Rank3` varchar(30) NOT NULL DEFAULT '',
35 `Rank4` varchar(30) NOT NULL DEFAULT '',
36 `Rank5` varchar(30) NOT NULL DEFAULT '',
37 `Rank6` varchar(30) NOT NULL DEFAULT '',
38 `Rank7` varchar(30) NOT NULL DEFAULT '',
39 `Rank8` varchar(30) NOT NULL DEFAULT '',
40 `Rank9` varchar(30) NOT NULL DEFAULT '',
41 `Rank0Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
42 `Rank1Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
43 `Rank2Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
44 `Rank3Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
45 `Rank4Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
46 `Rank5Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
47 `Rank6Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
48 `Rank7Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
49 `Rank8Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
50 `Rank9Pay` mediumint(8) unsigned NOT NULL DEFAULT '0',
51 `Div0` varchar(30) NOT NULL,
52 `Div1` varchar(16) NOT NULL DEFAULT '',
53 `Div2` varchar(16) NOT NULL DEFAULT '',
54 `Div3` varchar(16) NOT NULL DEFAULT '',
55 `Div4` varchar(16) NOT NULL DEFAULT '',
56 `Div5` varchar(16) NOT NULL DEFAULT '',
57 `Div6` varchar(16) NOT NULL DEFAULT '',
58 `Div7` varchar(16) NOT NULL DEFAULT '',
59 `Div8` varchar(16) NOT NULL DEFAULT '',
60 `Div9` varchar(16) NOT NULL DEFAULT '',
61 `Div10` varchar(16) NOT NULL DEFAULT '',
62 `Gun0` tinyint(4) NOT NULL,
63 `Cost0` int(11) NOT NULL,
64 `Gun1` tinyint(4) NOT NULL DEFAULT '0',
65 `Cost1` int(11) NOT NULL DEFAULT '0',
66 `Gun2` tinyint(4) NOT NULL DEFAULT '0',
67 `Cost2` int(11) NOT NULL DEFAULT '0',
68 `Gun3` tinyint(4) NOT NULL DEFAULT '0',
69 `Cost3` int(11) NOT NULL DEFAULT '0',
70 `Gun4` tinyint(4) NOT NULL DEFAULT '0',
71 `Cost4` int(11) NOT NULL DEFAULT '0',
72 `Gun5` tinyint(4) NOT NULL DEFAULT '0',
73 `Cost5` int(11) NOT NULL DEFAULT '0',
74 `Gun6` tinyint(4) NOT NULL DEFAULT '0',
75 `Cost6` int(11) NOT NULL DEFAULT '0',
76 `Gun7` tinyint(4) NOT NULL DEFAULT '0',
77 `Cost7` int(11) NOT NULL DEFAULT '0',
78 `Gun8` tinyint(4) NOT NULL DEFAULT '0',
79 `Cost8` int(11) NOT NULL DEFAULT '0',
80 `Gun9` tinyint(4) NOT NULL DEFAULT '0',
81 `Cost9` int(11) NOT NULL DEFAULT '0',
82 `Gun10` tinyint(4) NOT NULL DEFAULT '0',
83 `Cost10` int(11) NOT NULL DEFAULT '0',
84 `Gun11` tinyint(4) NOT NULL DEFAULT '0',
85 `Cost11` int(11) NOT NULL DEFAULT '0',
86 `Gun12` tinyint(4) NOT NULL DEFAULT '0',
87 `Cost12` int(11) NOT NULL DEFAULT '0',
88 `Gun13` tinyint(4) NOT NULL DEFAULT '0',
89 `Cost13` int(11) NOT NULL DEFAULT '0',
90 `Gun14` tinyint(4) NOT NULL DEFAULT '0',
91 `Cost14` int(11) NOT NULL DEFAULT '0',
92 `Gun15` tinyint(4) NOT NULL DEFAULT '0',
93 `Cost15` int(11) NOT NULL DEFAULT '0',
94 `Gun16` int(11) NOT NULL DEFAULT '0',
95 `Cost16` int(11) NOT NULL DEFAULT '0',
96 `CratesOrder` int(11) NOT NULL DEFAULT '0',
97 `CrateIsland` int(4) NOT NULL DEFAULT '255',
98 `IntRadio` int(11) NOT NULL DEFAULT '255',
99 `GarageX` float(11,0) NOT NULL DEFAULT '0',
100 `GarageY` float(11,0) NOT NULL DEFAULT '0',
101 `GarageZ` float(11,0) NOT NULL DEFAULT '0',
102 PRIMARY KEY (`id`)
103) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ;
104
105--
106-- Dumping data for table `groups`
107--
108
109INSERT INTO `groups` (`id`, `Type`, `Name`, `MOTD`, `Allegiance`, `Bug`, `Radio`, `DeptRadio`, `GovAnnouncement`, `SpikeStrips`, `Barricades`, `Cones`, `Flares`, `Barrels`, `FreeNameChange`, `CrateIslandAccess`, `DutyColour`, `RadioColour`, `Budget`, `BudgetPayment`, `Stock`, `LockerCostType`, `CrateX`, `CrateY`, `CrateZ`, `Rank0`, `Rank1`, `Rank2`, `Rank3`, `Rank4`, `Rank5`, `Rank6`, `Rank7`, `Rank8`, `Rank9`, `Rank0Pay`, `Rank1Pay`, `Rank2Pay`, `Rank3Pay`, `Rank4Pay`, `Rank5Pay`, `Rank6Pay`, `Rank7Pay`, `Rank8Pay`, `Rank9Pay`, `Div0`, `Div1`, `Div2`, `Div3`, `Div4`, `Div5`, `Div6`, `Div7`, `Div8`, `Div9`, `Div10`, `Gun0`, `Cost0`, `Gun1`, `Cost1`, `Gun2`, `Cost2`, `Gun3`, `Cost3`, `Gun4`, `Cost4`, `Gun5`, `Cost5`, `Gun6`, `Cost6`, `Gun7`, `Cost7`, `Gun8`, `Cost8`, `Gun9`, `Cost9`, `Gun10`, `Cost10`, `Gun11`, `Cost11`, `Gun12`, `Cost12`, `Gun13`, `Cost13`, `Gun14`, `Cost14`, `Gun15`, `Cost15`, `Gun16`, `Cost16`, `CratesOrder`, `CrateIsland`, `IntRadio`, `GarageX`, `GarageY`, `GarageZ`) VALUES
110(1, 1, 'LSPD', 'If you are not in the business - contact High Command for an invite', 1, 255, 0, 0, 7, 4, 4, 2, 2, 4, 255, 255, 255, 7237375, 32535473, 145000, 708, 0, 1529.05, -1688.03, 5.88, 'Cadet', 'Officer', 'Senior Officer', 'Corporal', 'Sergeant', 'Staff Sergeant', 'Lieutenant', 'Captain', 'Deputy Chief', 'Chief of Police', 3000, 10000, 20000, 25000, 30000, 40000, 50000, 55000, 57000, 60000, '', 'IA', 'SWAT', '', 'FTO', 'DUNC', 'PTL', 'ADM', 'HON', 'OPS', 'PROB', 0, 0, 3, 0, 41, 0, 17, 1, 24, 3, 29, 5, 25, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 27, 12, 34, 10, 30, 6, 31, 8, 15, 255, 255, 1567, -1682, 6),
111(2, 1, 'FBI', 'Agent+ Allowed 1 SPAS-12 per day DONT ABUSE - Make sure to use the arrest log', 1, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 255, 8679679, 8613887, 4820513, 81000, 543, 0, 300.7, -1490.81, 24.59, 'Probationary Agent', 'Staff', 'Agent', 'Senior Agent', 'Special Agent', 'Division Supervisor', 'Division Leader', 'Assistant Director', 'Deputy Director', 'Director', 0, 15000, 20000, 30000, 40000, 50000, 60000, 90000, 95000, 100000, '', 'IA', 'ACDMY', 'NSB', 'OCU', 'CID', 'FO', 'CMD', 'HON', '', ' ', 29, 2500, 3, 0, 41, 0, 17, 1, 24, 3, 25, 3, 29, 5, 31, 8, 27, 12, 34, 10, 33, 4, 30, 8, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 4, 299, -1518, 25),
112(3, 1, 'S.H.A.F.T', 'Do NOT donate to our budget fund! Return the cars after use!', 1, 0, 0, 0, 6, 1, 1, 1, 1, 1, 0, 255, 1794468, 9276927, 87054271, 125000, 417, 0, -2068.57, 360.04, 35.15, 'Probationary Agent', 'Agent', 'Senior Agent', 'Special Agent', 'Supervisory Special Agent', 'Special Agent I.C.', 'Special Advisor', 'Assistant Director', 'Deputy Director', 'Director', 5000, 15000, 20000, 25000, 30000, 40000, 50000, 70000, 80000, 100000, '', 'OPR) (T&R', 'OPR', 'ATT', 'FO', 'ATT) (T&R', 'FO) (T&R', 'Spec Ops', '', '', '', 0, 0, 3, 1, 24, 3, 25, 3, 27, 12, 29, 5, 31, 8, 43, 0, 34, 10, 17, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 255, -2048, 374, 42),
113(4, 1, 'SFPD', 'Make sure to sign up for your shift for DoC! Its Mandatory for everyone!', 1, 255, 0, 0, 6, 3, 3, 3, 3, 3, 255, 255, 6724095, 9276927, 100243846, 85000, 452, 0, -1622.93, 659.84, -5.23, 'Cadet', 'Officer', 'Corporal', 'Sergeant', 'Staff Sergeant', 'Lieutenant', 'Captain', 'Commander', 'Deputy Chief', 'Chief of Police', 5000, 10000, 15000, 25000, 30000, 40000, 50000, 60000, 70000, 75000, '', 'SO', '', '', 'HR-FTO', 'PROB', 'ADM', 'HON', 'HR-IA', '', '', 24, 2500, 3, 0, 41, 0, 17, 1, 24, 3, 25, 3, 29, 5, 31, 8, 27, 12, 34, 10, 30, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 255, 255, -1578, 719, -5),
114(5, 1, 'Secret Service', '', 1, 0, 0, 0, 6, 255, 1, 1, 1, 1, 0, 255, 7697781, 7697781, 30970843, 20000, 149, 0, 1741.81, -1779.16, 13.63, 'Intern', 'Agent', 'Senior Agent', 'Special Agent', 'Supervisor', 'Lead Supervisor', 'Deputy Director', 'Director', '', '', 5000, 15000, 20000, 30000, 40000, 50000, 70000, 80000, 0, 0, '', 'TNR', 'Investigations', 'Protection', 'Uniformed', 'Administration', 'TNR-INV', 'PRO-UNI', '', '', '', 0, 0, 24, 8, 29, 5, 27, 12, 34, 10, 31, 8, 28, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 255, 7, -124, -1126, 2),
115(6, 5, 'San Andreas', 'Try to build up relations with other departments!', 1, 0, 0, 0, 9, 255, 255, 255, 0, 255, 0, 255, 11711154, 11310968, 1029459426, 0, 16000, 2, -1105.56, 4309.79, 4.4, 'Intern', 'Advisor', 'Senior Advisor', 'Ambassador', 'Security Advisor', 'Attorney General', 'Secretary', 'Chief of Staff', 'Vice President', 'President', 10000, 25000, 40000, 50000, 60000, 70000, 90000, 100000, 150000, 250000, '', 'ADM', 'Immigration', 'Security', 'State', 'Treasury', 'Defense', '', '', '', '', 0, 0, 24, 0, 25, 0, 29, 0, 31, 0, 34, 0, 0, 0, 0, 0, 0, 0, 3, 0, 41, 0, 46, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1259, -2033, 59),
116(7, 1, 'FCTS', 'Free Tibet', 1, 7, 0, 0, 7, 2, 2, 1, 1, 1, 255, 255, 9057807, 9057807, 1446, 0, 15000, 2, 0, 0, 0, 'Trainee', 'Serviceman', 'Senior Serviceman', '', '', '', '', 'Regional Manager', 'Co-Owner', 'Owner', 15000, 25000, 95000, 0, 0, 0, 0, 100000, 130000, 150000, '', 'LS-Office', 'Flint-Office', '420', '', '', '', '', '', '', '', 0, 0, 24, 2000, 25, 2000, 29, 5000, 5, 500, 27, 3000, 31, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 7, 0, 0, 0),
117(8, 2, 'Hitman Agency', 'Radio1: killmenow / Be in TS! / 2-3 Contracts a day! / Check forums regularly.', 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 0, 255, 16777215, 8421504, 0, 0, 0, 0, -789.07, -1875.01, 6.86, 'Freelancer', 'Freelancer', 'Marksman', 'Agent', 'Special Agent', 'Vice Director', 'Director', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 'PT', '', '', '', '', '', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0),
118(9, 1, 'TRAF', 'If I see any of you using my bullets, you will suffer extreme pain.', 2, 2, 0, 0, 7, 1, 2, 1, 1, 1, 255, 255, 30549, 30549, 2866062, 0, 0, 1, 0, 0, 0, 'Recruit', 'Private', 'Corporal', 'Sergeant', 'Staff Sergeant', 'Lieutenant', 'Captain', 'Major', 'Colonel', 'General', 14000, 21000, 28000, 35000, 42000, 49000, 56000, 63000, 70000, 80000, '', 'Human Resources', 'Border Patrol', 'Police Unit', 'Marine Corps', 'DSS', 'Command', '', '', '', '', 0, 0, 3, 0, 41, 0, 29, 0, 24, 0, 17, 0, 46, 0, 31, 0, 27, 0, 34, 0, 30, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 255, 7, -2262, 2533, 4),
119(10, 3, 'TRES', 'Follow the weapon and vehicle restrictions, any breach results in punishment', 2, 255, 0, 0, 5, 1, 1, 1, 1, 1, 255, 255, 43656, 43656, 1002, 0, 0, 1, 0, 0, 0, 'Trainee', 'Paramedic', 'Staff', 'Intermediate', 'Lieutenant', 'Captain', 'District Supervisor', 'District Chief', 'Assistant Commissioner', 'Commissioner', 9000, 19000, 27000, 35000, 40000, 50000, 60000, 70000, 80000, 90000, '', 'Fire Dept', 'Combat Medic', 'Human Resources', 'JRS', 'HAZMAT', 'Coast Guard', '', '', '', '', 0, 0, 29, 0, 24, 0, 25, 0, 33, 0, 6, 0, 9, 0, 46, 0, 43, 0, 42, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, -522, 2593, 53),
120(11, 5, 'Tierra Robada', 'Be sure to check the forums daily! (National Government, Governing Council & Legislative) - James Luck.', 2, 255, 0, 0, 6, 1, 2, 1, 1, 1, 255, 255, 52377, 52377, 1000000, 0, 0, 2, -2489.28, 2254.26, 4.98, 'Volunteer', 'Tribal Ranger', 'Intelligence Agent', 'Director', 'Diplomatic Staff', 'Executive Assistant', 'Ambassedor', 'Consulor General', 'Council Member', 'Executive Officer', 19000, 24000, 27000, 34000, 39000, 49000, 59000, 69000, 79000, 89000, '', 'TRGC', 'TRDC', 'TRIA', 'NGO', '', '', '', '', '', '', 0, 0, 24, 0, 25, 2500, 29, 10000, 43, 0, 46, 0, 30, 50000, 27, 80000, 31, 10000, 34, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 2, -2480, 2236, 5),
121(12, 1, 'SAAS', 'All units make sure you get insurance at Fort Carson Hospital, until base is finished!', 1, 0, 0, 0, 8, 3, 4, 3, 3, 3, 255, 255, 9156653, 10079232, 36261345, 80000, 1231, 0, -1550.68, 400.51, 7.17, 'Recruit', 'Private', 'Private First Class', 'Corporal', 'Sergeant', 'First Sergeant', 'Lieutenant', 'Captain', 'Major', 'General', 3000, 7000, 10000, 15000, 23000, 25000, 40000, 70000, 97000, 110000, '', 'CMD', 'TNR', '16TH AER', '75th R', 'VET', 'Air Force', 'Navy', '', '', '', 0, 0, 6, 0, 17, 1, 33, 4, 24, 3, 25, 3, 29, 5, 31, 8, 27, 12, 34, 10, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 7, 325, 1933, 18),
122(13, 4, 'SANews', 'As we have filled out the current Director positions, we will proceed to increase activity.', 0, 255, 0, 255, 255, 255, 255, 255, 255, 255, 255, 255, 3050071, 3050071, -85064, 0, 999999, 2, 0, 0, 0, 'Probationary Intern', 'Intern', 'Field Reporter', 'Anchorman', 'Supervisor', 'Asst. Director', 'Director', 'Asst. Network Producer', 'Network Producer', 'CEO', 5000, 6000, 10000, 7000, 15000, 20000, 25000, 30000, 40000, 45000, '', 'T&R', 'TS', 'IA', 'Journ', 'TRA', 'BC', '', '', '', '', 0, 0, 43, 500, 46, 700, 3, 3, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 759, -1359, 13),
123(14, 1, 'NOOSE', 'Ensigns HAVE to wear Ensign uniforms((skin id 71))', 1, 0, 0, 0, 8, 1, 1, 1, 1, 1, 255, 255, 8390921, 10027008, 180927957, 175000, 1111, 0, -649.9, -1837.91, 38.43, 'Ensign', 'Marksman', 'MW Mercenary', 'Operative', 'MW Commander', 'Master at Arms', 'Enforcer', 'Division Leader', 'Commander', 'Founder', 1000, 5000, 20000, 30000, 40000, 50000, 60000, 85000, 125000, 150000, '', 'SS', 'AA', 'REPO', 'VET', 'IT', 'FRE', 'MWD', '', '', '', 0, 0, 3, 0, 41, 0, 46, 0, 17, 1, 25, 3, 24, 3, 29, 5, 31, 8, 30, 6, 27, 12, 34, 12, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 255, -706, -1979, 15),
124(15, 6, 'Judicial', 'Continue to stay active on TeamSpeak & Forum. Judges & Clerks: Check Case Assignments', 1, 255, 0, 0, 7, 255, 255, 255, 255, 255, 255, 255, 10079436, 10053324, 22243437, 20000, 15000, 2, 1397.42, -1649.43, 13.35, 'Intern', 'Clerk', 'Public Defender', 'Prosecutor', 'District Attorney', 'District Judge', 'Secretary General', 'Associate Justice', 'Senior Associate Justice', 'Chief Justice', 5000, 7000, 10000, 20000, 40000, 40000, 0, 50000, 80000, 95000, '', 'JRC', '', '', '', '', '', '', '', '', '', 0, 0, 15, 0, 46, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0),
125(16, 5, 'nope', '', 1, 255, 0, 0, 0, 255, 255, 255, 255, 255, 255, 255, 12362751, 703436, 0, 0, 1, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', 'Director', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0),
126(17, 3, 'FDSA', 'New FDSA PR Frequency is : 198766 pr frquency 121500 is only to be used by S&R division', 1, 255, 0, 0, 6, 255, 255, 0, 1, 3, 255, 255, 16737894, 16737894, 10001486, 80000, 15000, 2, 1079.31, 1486.18, 5.82, 'Recruit', 'Firefighter', 'Senior Firefighter', 'Fire Sergeant', 'Lieutenant', 'Captain', 'Battalion Chief', 'Assistant Chief', 'Deputy Fire Chief', 'Fire Chief', 2100, 5000, 10000, 20000, 25000, 30000, 40000, 50000, 70000, 90000, '', 'CMD', 'Fire Inspector', 'SACBFC', 'HR', 'IA', 'Search & Rescue', 'FIRE', 'EMS', 'Honorary', 'Probation', 0, 0, 6, 0, 43, 0, 25, 3000, 46, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 6, 1569, -2173, 14),
127(18, 9, 'Underground Racing League', 'Sorry for the lack of events but out even cordinator is really sick ', 0, 255, 0, 255, 255, 255, 255, 6, 8, 9, 255, 255, 16728325, 16728325, -26562, 0, 0, 2, -548.28, -514.2, 33.34, 'Outsider', 'Rookie Driver', 'Pro Driver', 'Elite Driver', 'Champion', 'Crew Co-Leader', 'Crew Leader', 'Legend', 'Underboss', 'Boss', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 'Staff', 'Solo', 'Crew', '', '', '', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, -607, -483, 26),
128(19, 1, 'SASD', 'Remember to return cars to the garage and please DO NOT leave them out. Keep up the great work! ', 1, 255, 0, 1, 7, 1, 1, 1, 1, 1, 255, 255, 13408563, 13408563, 25787584, 80000, 48, 0, 612.82, -588.59, 17.2, 'CSO', 'Trainee', 'Deputy', 'Senior Deputy', 'Corporal', 'Sergeant', 'Lieutenant', 'Captain', 'Undersheriff', 'Sheriff', 7000, 12000, 25000, 30000, 40000, 45000, 55000, 65000, 70000, 80000, '', 'HON', 'IA', 'FTO', 'PATROL', 'FIELD', 'SUPPORT', 'K9', 'MCU', '', 'RESTRICTION', 0, 0, 41, 0, 3, 0, 24, 3, 25, 3, 27, 12, 29, 5, 31, 8, 34, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 599, -591, -5),
129(20, 1, 'Department of Game Affairs', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 16724736, 6535423, 3799, 0, 9999999, 2, 1769.88, -1915.28, 14.5, 'Gang Moderator', 'Faction Moderator', 'Senior Gang Mod', 'Senior Faction Mod', 'Game Affairs Tech', 'DoFM', 'DoGM', 'DGA Mapper', 'ADoGA', 'DoGA', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 'FMOD', 'GMOD', 'DGA', 'II', 'I', 'HR', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2462, -130, 26);
130
131-- --------------------------------------------------------