Advertisement
Guest User

Mujib

a guest
Aug 15th, 2009
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 190.98 KB | None | 0 0
  1. #include <a_samp>
  2. #include <float>
  3. forward Timer();
  4. forward SetPlayerPosWithObjects(playerid,Float:x,Float:y,Float:z);
  5. /*
  6. SetPlayerPosWithObjects usage in your gamemode:
  7.  
  8. CallRemoteFunction("SetPlayerPosWithObjects","ifff",playerid,newx,newy,newz);
  9. */
  10.  
  11. //------------------------------------------------------------------------------
  12.  
  13.  
  14.  
  15. #define FILTERSCRIPT
  16. #if defined FILTERSCRIPT
  17. #define COLOR_BASIC 0x0066FFAA
  18. #define COLOR_RED 0xCC0000AA
  19. #define COLOR_GREY 0xAFAFAFAA
  20.  
  21. stock NormalTele(playerid, telename[], Float:Vx, Float:Vy, Float:Vz, Float:Va, Float:Px, Float:Py, Float:Pz, Float:Pa, interior)
  22. {
  23. ResetPlayerWeapons(playerid);
  24. TogglePlayerControllable(playerid, 1);
  25. new a[128], b[128], playerName[MAX_PLAYER_NAME];
  26. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  27. if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  28. {
  29. SetVehiclePos(GetPlayerVehicleID(playerid),Vx,Vy,Vz);
  30. SetVehicleZAngle(GetPlayerVehicleID(playerid),Va);
  31. LinkVehicleToInterior(GetPlayerVehicleID(playerid),interior);
  32. }
  33. else
  34. {
  35. SetPlayerPos(playerid,Px,Py,Pz);
  36. SetPlayerFacingAngle(playerid,Pa);
  37. }
  38. PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  39. SetCameraBehindPlayer(playerid);
  40. SetPlayerInterior(playerid, interior);
  41. format(a, sizeof(a), "You have been teleported to -%s-", telename);
  42. SendClientMessage(playerid, COLOR_BASIC, a);
  43. format(b, sizeof(b), "%s has teleported to /%s", playerName, telename);
  44. for(new i=0; i<MAX_PLAYERS; i++)
  45. {
  46. if(IsPlayerConnected(i))
  47. {
  48. SendClientMessage(i, COLOR_GREY, b);
  49. }
  50. }
  51. return 1;
  52. }
  53.  
  54. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  55.  
  56. stock SpeceficTele(playerid, telename[], Float:Vx, Float:Vy, Float:Vz, Float:Va, Float:Px, Float:Py, Float:Pz, Float:Pa, interior, Vmodel)
  57. {
  58. ResetPlayerWeapons(playerid);
  59. TogglePlayerControllable(playerid, 1);
  60. new a[128], b[128], playerName[MAX_PLAYER_NAME];
  61. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  62. if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER && GetVehicleModel(GetPlayerVehicleID(playerid)) == Vmodel)
  63. {
  64. SetVehiclePos(GetPlayerVehicleID(playerid),Vx,Vy,Vz);
  65. SetVehicleZAngle(GetPlayerVehicleID(playerid),Va);
  66. LinkVehicleToInterior(GetPlayerVehicleID(playerid),interior);
  67. }
  68. else
  69. {
  70. SetPlayerPos(playerid,Px,Py,Pz);
  71. SetPlayerFacingAngle(playerid,Pa);
  72. }
  73. PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  74. SetCameraBehindPlayer(playerid);
  75. SetPlayerInterior(playerid, interior);
  76. format(a, sizeof(a), "You have been teleported to -%s-", telename);
  77. SendClientMessage(playerid, COLOR_BASIC, a);
  78. format(b, sizeof(b), "%s has teleported to /%s", playerName, telename);
  79. for(new i=0; i<MAX_PLAYERS; i++)
  80. {
  81. if(IsPlayerConnected(i))
  82. {
  83. SendClientMessage(i, COLOR_GREY, b);
  84. }
  85. }
  86. return 1;
  87. }
  88.  
  89. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  90.  
  91. stock OnlyPlayerTele(playerid, telename[], Float:Px, Float:Py, Float:Pz, Float:Pa, interior)
  92. {
  93. ResetPlayerWeapons(playerid);
  94. TogglePlayerControllable(playerid, 1);
  95. new a[128], b[128], playerName[MAX_PLAYER_NAME];
  96. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  97.  
  98. SetPlayerPos(playerid,Px,Py,Pz);
  99. SetPlayerFacingAngle(playerid,Pa);
  100.  
  101. PlayerPlaySound(playerid, 1085, 0.0, 0.0, 0.0);
  102. SetCameraBehindPlayer(playerid);
  103. SetPlayerInterior(playerid, interior);
  104. format(a, sizeof(a), "You have been teleported to -%s-", telename);
  105. SendClientMessage(playerid, COLOR_BASIC, a);
  106. format(b, sizeof(b), "%s has teleported to /%s", playerName, telename);
  107. for(new i=0; i<MAX_PLAYERS; i++)
  108. {
  109. if(IsPlayerConnected(i))
  110. {
  111. SendClientMessage(i, COLOR_GREY, b);
  112. }
  113. }
  114. return 1;
  115. }
  116.  
  117. new Menu: TruckStops;
  118. new Menu: stunttele;
  119. new Menu: StuntZones1;
  120. new Menu: StuntZones2;
  121. new Menu: StuntZones3;
  122. new Menu: DMZones;
  123. new Menu: OtherZones1;
  124. new Menu: OtherZones2;
  125. new Menu: TuneGarages;
  126. new Menu: TrainStations;
  127.  
  128. enum object_info
  129. {
  130. modelid,
  131. Float:ox,
  132. Float:oy,
  133. Float:oz,
  134. Float:orx,
  135. Float:ory,
  136. Float:orz,
  137. Float:viewdist
  138. }
  139.  
  140. new Objects[][object_info] = {
  141.  
  142. //SFAirport
  143. {13592,-1363.201294,-179.693390,24.719044,2.5783,43.8304,344.4557,150.0},
  144. {5390,-1063.072754,-146.819305,16.832548,0.0,0.0,298.5159,150.0},
  145. {1378,-1246.529053,-0.451308,37.550682,0.0,0.0,15.7784,150.0},
  146. {16502,-1235.174194,-37.927879,39.852940,0.0,0.0,104.7645,150.0},
  147. {16502,-1232.510864,-50.457226,34.858364,6.8747,341.9518,104.7645,150.0},
  148. {16502,-1230.905884,-61.715115,27.979595,6.0152,338.5141,98.7484,150.0},
  149. {16502,-1230.209106,-68.182060,25.286905,6.0152,355.7028,98.7484,150.0},
  150. {12990,-1238.687500,-25.896696,46.153404,24.9228,0.8586,17.3426,150.0},
  151. {12990,-1258.809082,41.763924,34.431854,329.0603,352.2651,17.4972,150.0},
  152. {18450,-1312.406250,-652.725769,24.600445,0.0,0.0,0.0,150.0},
  153. {18450,-1392.307251,-652.723145,24.599531,0.0,0.0,0.0,150.0},
  154. {18450,-1427.466675,-652.677124,24.636473,0.0,0.0,0.0,150.0},
  155. {1634,-1236.415649,-637.270630,13.820757,0.0,7.7349,160.7083,150.0},
  156. {1634,-1238.381836,-640.472900,16.399513,15.4690,13.7510,152.1138,150.0},
  157. {1634,-1240.467896,-642.454163,19.110447,23.2039,20.6265,140.9410,150.0},
  158. {1634,-1241.979492,-643.450928,21.580639,35.2360,29.2208,135.7844,150.0},
  159. {12990,-1246.552612,0.170016,46.196335,337.6546,0.0,16.4087,150.0},
  160. {1634,-1168.462891,-153.341461,13.970755,0.0,352.2651,320.1565,150.0},
  161. {1634,-1165.389160,-148.588943,18.619144,26.6417,347.9679,324.4537,150.0},
  162. {1634,-1164.687012,-145.361923,24.704172,48.1276,334.2169,337.3452,150.0},
  163. {16776,-1371.612549,-193.487152,13.247047,0.0,0.0,157.4995,150.0},
  164. {9339,-1202.918701,-96.897942,23.068041,0.8586,269.7591,44.9993,150.0},
  165. {9339,-1204.661987,-97.005653,23.081532,0.8586,269.7591,44.9993,150.0},
  166. {9339,-1204.500610,-99.121368,23.060337,0.8586,269.7591,44.9993,150.0},
  167. {1634,-1457.270020,342.869324,30.379343,7.7341,0.0,91.0994,150.0},
  168. {1634,-1457.269897,346.986725,30.358538,7.7341,0.0,91.0994,150.0},
  169. {1634,-1459.900635,342.813843,33.359619,30.0794,0.0,91.0994,150.0},
  170. {1634,-1459.913696,346.947083,33.291489,30.0794,0.0,91.0994,150.0},
  171. {1634,-1461.780151,342.830505,36.697052,38.6738,0.0,91.0994,150.0},
  172. {1634,-1461.865967,346.908966,36.723980,38.6738,0.0,91.0994,150.0},
  173. {1655,-1576.197021,49.405045,17.362610,0.0,0.0,134.9307,150.0},
  174. {1655,-1577.285156,48.215397,18.812740,23.2039,0.0,134.9307,150.0},
  175. {1655,-1578.989624,46.530949,21.688242,41.2521,0.0,134.9307,150.0},
  176. {1634,-1603.732178,41.237343,36.551971,0.8586,348.8273,51.5654,150.0},
  177. {1634,-1656.788452,85.399429,18.780016,355.7028,0.0,317.0282,150.0},
  178. {1655,-1596.355225,143.549408,-11.104969,0.0,0.0,315.3093,150.0},
  179. {1655,-1594.202759,145.730637,-8.725912,19.7662,0.0,315.3093,150.0},
  180. {1655,-1593.141479,146.794708,-5.628717,38.6738,0.0,315.3093,150.0},
  181. {1655,-1592.187622,147.736908,-2.162281,58.4409,0.0,315.3093,150.0},
  182. {18450,-1482.095947,165.216354,6.322878,0.0,353.1245,18.0473,150.0},
  183. {18450,-1444.819824,176.555710,13.017599,12.8907,345.3896,18.0473,150.0},
  184. {18450,-1416.540649,182.885361,21.593639,24.0634,338.5141,18.0473,150.0},
  185. {1633,-1620.405884,-217.015472,13.273724,349.6868,0.0,311.8715,150.0},
  186. {1633,-1616.863037,-213.935760,14.175161,0.0,11.1718,311.8715,150.0},
  187. {1633,-1616.135742,-213.408447,14.681524,11.1718,27.5011,311.8715,150.0},
  188. {1633,-1613.727173,-212.308609,16.252083,21.4851,44.6899,304.1366,150.0},
  189. {1633,-1608.963989,-211.915054,19.030041,22.3445,59.3003,282.6507,150.0},
  190. {1633,-1607.431885,-212.926010,19.616013,18.0473,71.3324,261.1648,150.0},
  191. {13592,-1612.581665,-219.347244,25.184164,56.7220,281.7913,29.2200,150.0},
  192. {13592,-1606.339844,-224.272949,38.278275,56.7220,281.7913,30.9389,150.0},
  193. {13592,-1602.566406,-226.793045,49.519337,56.7220,281.7913,30.9389,150.0},
  194. {1634,-1608.948120,-228.874344,12.645748,341.9518,0.0,20.6256,150.0},
  195. {1634,-1609.819824,-226.567398,13.360285,355.7028,0.0,20.6256,150.0},
  196. {1634,-1610.441406,-224.836349,14.494349,10.3124,0.0,20.6256,150.0},
  197. {1634,-1611.876465,-221.073669,18.430668,27.5011,0.0,20.6256,150.0},
  198. {1634,-1612.259277,-220.089752,20.334772,38.6738,0.0,20.6256,150.0},
  199. {1634,-1612.721436,-218.832947,23.915852,51.5654,0.0,20.6256,150.0},
  200. {1634,-1612.857300,-218.479553,25.752245,68.7541,0.0,20.6256,150.0},
  201. {1634,-1612.648315,-219.021362,26.040274,82.5051,0.0,20.6256,150.0},
  202. {1634,-1612.164917,-220.280289,28.573400,99.6938,0.0,20.6256,150.0},
  203. {1633,-1637.988159,-186.940323,14.123726,0.0,0.8586,223.3496,150.0},
  204. {1633,-1635.304077,-189.781784,15.650970,10.3124,0.8586,223.3496,150.0},
  205. {1633,-1631.198486,-194.174316,19.544737,21.4851,0.8586,223.3496,150.0},
  206. {1633,-1627.512817,-198.157333,24.765829,31.7983,0.8586,223.3496,150.0},
  207. {1633,-1624.263672,-201.655685,30.627077,36.9549,0.8586,223.3496,150.0},
  208. {1633,-1621.497437,-204.637680,36.785133,42.9710,0.8586,223.3496,150.0},
  209. {1633,-1618.899292,-207.442032,43.348984,44.6899,0.8586,223.3496,150.0},
  210. {1633,-1616.442383,-210.119400,50.192871,47.2682,0.8586,223.3496,150.0},
  211. {18450,-1308.661865,74.883972,13.003571,0.0,351.4056,45.5493,150.0},
  212. {18450,-1308.956909,74.695305,12.018707,0.0,341.0924,45.5493,150.0},
  213. {18450,-1299.576904,84.261467,17.161289,0.0,331.6386,45.5493,150.0},
  214. {18450,-1299.394775,84.505608,16.091787,0.0,317.8876,45.5493,150.0},
  215. {18450,-1292.203979,91.863876,25.996208,0.0,304.9961,45.5493,150.0},
  216. {18450,-1291.635742,92.237457,27.013199,0.0,298.9800,45.5493,150.0},
  217. {18450,-1290.709229,93.159691,30.233538,0.0,289.5262,45.5493,150.0},
  218. {18450,-1253.574829,130.991211,67.733444,0.0,0.0,45.5493,150.0},
  219. {1634,-1231.075684,153.552200,68.174438,350.5462,355.7028,316.1687,150.0},
  220. {1634,-1228.148315,157.054596,70.176460,5.1558,350.5462,317.8876,150.0},
  221. {1634,-1226.573608,159.427536,72.403305,22.3445,341.9518,322.1848,150.0},
  222. {1634,-1225.343628,162.536896,76.738380,42.1115,329.9197,331.6386,150.0},
  223. {3491,-1359.864258,-244.475494,21.693756,0.0,0.0,134.7989,150.0},
  224. {703,-1364.264404,-249.161896,13.544555,0.0,0.0,0.0,150.0},
  225. {803,-1363.962646,-251.456512,15.013266,0.0,0.0,0.0,150.0},
  226. {803,-1365.094604,-247.972244,15.011948,0.0,0.0,0.0,150.0},
  227. {803,-1361.136230,-250.732590,14.113277,0.0,0.0,0.0,150.0},
  228. {803,-1366.288086,-252.980530,14.438273,0.0,0.0,42.9710,150.0},
  229. {4640,-1339.612671,-224.351303,14.840546,0.0,0.0,134.8276,150.0},
  230. {966,-1341.962036,-222.048538,13.143966,0.0,0.0,314.4499,150.0},
  231. {966,-1337.152832,-226.756058,13.148438,0.0,0.0,133.1087,150.0},
  232. {968,-1341.960449,-222.024506,13.957676,0.0,0.0,311.0121,150.0},
  233. {968,-1337.143677,-226.787155,13.932676,0.0,0.0,133.2118,150.0},
  234. {1231,-1342.248779,-227.011765,15.878830,0.0,0.0,315.4124,150.0},
  235. {3461,-1348.292725,-216.673447,14.723449,0.0,0.0,0.0,150.0},
  236. {3461,-1331.897217,-233.315720,14.723449,0.0,0.0,0.0,150.0},
  237. {3586,-1343.909302,-280.167603,16.650330,0.0,0.0,315.4124,150.0},
  238. {3586,-1350.438721,-286.722961,21.375309,0.0,0.0,314.4499,150.0},
  239. {1656,-1356.690308,-291.492859,24.631088,0.0,0.0,315.2062,150.0},
  240. {1656,-1355.320679,-292.851868,24.631088,0.0,0.0,315.3093,150.0},
  241. {1698,-1355.016602,-291.164612,24.616356,0.0,0.0,315.3093,150.0},
  242. {1698,-1356.369019,-293.875610,23.606092,37.8144,0.0,315.3093,150.0},
  243. {1698,-1357.734497,-292.545258,23.631104,36.9549,0.0,315.3093,150.0},
  244. {1698,-1357.246460,-293.024048,23.606092,37.8144,0.0,316.1687,150.0},
  245. {16779,-1355.250244,-239.892105,29.716351,0.0,0.0,0.0,150.0},
  246. {3528,-1338.294800,-223.343613,26.365150,0.0,0.0,40.4958,150.0},
  247. {18450,-1186.759644,403.194214,9.806452,0.0,355.7028,316.1687,150.0},
  248. {18450,-1235.697021,450.172363,4.705688,0.0,355.7028,316.1687,150.0},
  249. {3330,-1190.036621,406.523560,-0.520683,0.0,0.0,45.5493,150.0},
  250. {3881,-1148.354736,379.635651,14.982956,0.0,0.0,44.6899,150.0},
  251. {8171,-1073.964233,419.276642,15.200352,1.7180,0.0,315.3093,100.0},
  252. {8171,-1097.387817,395.713348,14.866587,3.4369,0.0,315.4124,100.0},
  253. {8171,-1054.903687,438.803131,20.569824,5.1558,0.0,315.4124,100.0},
  254. {8171,-1044.832275,449.018677,25.000715,7.7341,0.0,315.4124,100.0},
  255. {8171,-1035.238159,458.594482,27.862604,8.5935,0.0,315.3093,100.0},
  256. {8171,-1024.243286,469.683838,32.281273,10.3124,0.0,315.3093,100.0},
  257. {8171,-998.154602,496.119873,43.787659,13.7501,0.0,315.3093,100.0},
  258. {8171,-981.727783,512.739868,51.525616,15.4690,0.0,315.3093,100.0},
  259. {8171,-967.710693,526.899109,59.112869,17.1879,0.0,315.3093,100.0},
  260. {8171,-950.005676,544.813965,70.048210,19.7662,0.0,315.3093,100.0},
  261. {8171,-932.170593,562.867859,82.262589,22.3445,0.0,315.3093,100.0},
  262. {8171,-912.855408,582.401489,95.735878,24.0634,0.0,315.3093,100.0},
  263. {8171,-894.946777,600.356262,109.135841,25.7823,0.0,315.2062,100.0},
  264. {8171,-870.285156,625.347900,128.386475,27.5011,0.0,315.3093,100.0},
  265. {8171,-849.443359,646.417542,146.956360,30.0794,0.0,315.3093,100.0},
  266. {8171,-825.116333,671.013123,169.172882,31.7983,0.0,315.3093,100.0},
  267. {8171,-808.835449,687.462158,185.890427,33.5172,0.0,315.3093,100.0},
  268. {8171,-797.113831,699.322021,199.233551,35.2361,0.0,315.3093,100.0},
  269. {8171,-783.017395,713.571045,217.071426,37.8144,0.0,315.3093,100.0},
  270. {8171,-706.225769,791.186035,301.810028,37.8144,0.0,315.3093,100.0},
  271. {8171,-629.539429,868.687622,386.426666,37.8144,0.0,315.3093,100.0},
  272. {10767,-1014.800049,478.116089,-1.464394,0.0,0.0,0.0,250.0},
  273. {10767,-897.719971,595.228210,-1.485146,0.0,0.0,0.0,250.0},
  274. {10767,-842.912842,650.052856,-1.479030,0.0,0.0,0.0,250.0},
  275. {17310,-1115.783325,364.677704,17.271616,0.0,150.4006,224.2090,150.0},
  276. {17310,-1128.423096,377.488678,17.296606,0.0,150.5037,224.2090,150.0},
  277. {17310,-1121.390625,370.331055,17.296606,0.0,150.4006,224.3121,150.0},
  278. {13666,-1458.398071,-166.876907,15.728800,0.0,302.4177,0.0,150.0},
  279. {13666,-1456.466187,-167.417892,18.762800,0.0,303.2772,0.0,150.0},
  280. {13666,-1454.455444,-167.952896,21.822300,0.0,303.2772,0.0,150.0},
  281. {13666,-1452.414673,-168.496902,24.903700,0.0,303.2772,0.0,150.0},
  282. {13666,-1450.386841,-169.053207,27.979200,0.0,303.2772,0.0,150.0},
  283. {1634,-1459.921875,-171.738403,13.845700,36.9549,49.8465,117.7420,150.0},
  284. {1634,-1458.584106,-170.015594,12.400100,20.6256,32.6578,145.2440,150.0},
  285. {1634,-1458.669434,-168.440903,11.795800,8.5935,18.0473,161.4701,150.0},
  286. {1634,-1458.850342,-167.350204,11.820800,356.5623,11.1718,168.4487,150.0},
  287. //{9241,-1424.535156,-266.099915,26.146400,0.0,0.0,139.9842,150.0}, //helipad
  288. {10841,-1328.628418,425.245392,4.438600,0.0,0.0,90.2400,150.0},
  289. {10841,-1328.557739,390.907196,4.437900,0.0,0.0,90.2400,150.0},
  290. {10841,-1328.524902,355.260406,4.448000,0.0,0.0,90.2400,150.0},
  291. {18256,-1133.519287,-378.091827,6.177489,0.0,0.0,0.0,150.0},
  292. {18256,-1107.987549,-380.190704,10.982184,359.1406,346.2490,0.0,150.0},
  293. {18256,-1100.421387,-380.842499,15.994127,358.2811,336.7952,0.0,150.0},
  294. {18256,-1090.051514,-381.542084,26.221296,357.4217,323.0442,0.0,150.0},
  295. {18256,-1086.928955,-381.808899,33.447578,356.5623,309.2932,358.2811,150.0},
  296. {18256,-1083.437988,-382.138672,41.181633,355.7028,294.6828,357.4217,150.0},
  297. {18256,-1154.514526,-376.162201,6.900221,0.8594,10.3132,0.0,150.0},
  298. {18256,-1169.384766,-374.994965,10.998650,1.7189,21.4859,0.0,150.0},
  299. {18256,-1181.942505,-374.100342,17.169821,3.4377,32.6586,0.0,150.0},
  300. {18256,-1194.548950,-373.415710,27.593351,5.1566,45.5501,0.0,150.0},
  301. {18256,-1200.362549,-373.323303,33.227554,6.0161,59.3011,0.0,150.0},
  302. {1632,-1444.842285,-141.622833,14.448549,0.0,0.0,82.5059,150.0},
  303. {1632,-1448.986572,-141.126633,17.631208,20.6265,0.0,83.3654,150.0},
  304. {1632,-1451.417114,-140.835510,21.582962,44.6907,0.0,83.3654,150.0},
  305. {1632,-1451.610840,-140.853027,26.596205,73.9116,0.0,85.9437,150.0},
  306. {1632,-1450.163574,-140.868088,30.068253,100.5541,0.0,94.5380,150.0},
  307. {18256,-1079.621704,-382.718811,50.083549,353.9839,283.5101,356.5623,150.0},
  308. {18256,-1207.200195,-373.353851,39.394028,6.0161,72.1927,357.4217,150.0},
  309. {13666,-1383.335938,-302.830933,29.367825,0.0,0.0,0.0,150.0},
  310. {13666,-1379.679443,-303.386902,29.367825,0.0,0.0,0.0,150.0},
  311. {13666,-1376.044189,-303.942169,29.367825,0.0,0.0,0.0,150.0},
  312. {13666,-1372.396240,-304.473907,29.367825,0.0,0.0,0.0,150.0},
  313. {13666,-1368.750610,-305.020447,29.367825,0.0,0.0,0.0,150.0},
  314. {13666,-1365.093506,-305.573486,29.367825,0.0,0.0,0.0,150.0},
  315. {13666,-1361.468994,-306.123352,29.367825,0.0,0.0,0.0,150.0},
  316. {13666,-1357.813110,-306.669464,29.367825,0.0,0.0,0.0,150.0},
  317. {13666,-1354.155640,-307.208862,29.367825,0.0,0.0,0.0,150.0},
  318. {13666,-1351.081787,-307.376312,29.367825,0.0,0.0,7.7349,150.0},
  319. {13666,-1348.292725,-307.116608,29.367825,0.0,0.0,17.1887,150.0},
  320. {13666,-1346.446045,-306.365356,29.367825,0.0,0.0,32.6586,150.0},
  321. {13666,-1343.051147,-304.971252,29.417805,0.0,0.0,32.6586,150.0},
  322. {13666,-1339.711426,-303.431885,29.417816,0.0,0.0,32.6586,150.0},
  323. {13666,-1336.401611,-301.960449,29.417824,0.0,0.0,31.7992,150.0},
  324. {1634,-1379.141846,-291.084137,25.384823,1.7189,6.8755,189.0762,150.0},
  325. {1634,-1379.011597,-294.058197,27.828247,18.0482,3.4377,184.7789,150.0},
  326. {1245,-1355.598999,-326.642761,27.888891,0.8594,359.1406,290.3856,150.0},
  327. {1245,-1356.871704,-322.481506,30.328262,356.5623,0.0,290.3856,150.0},
  328. {1245,-1358.103394,-318.249908,33.118252,357.4217,2.5783,290.3856,150.0},
  329. {2774,-1359.389648,-317.847778,18.893076,0.0,0.0,21.4859,150.0},
  330. {2774,-1358.158691,-322.160706,16.153797,0.0,0.0,20.6265,150.0},
  331. {2774,-1356.805908,-326.291901,14.027403,0.0,0.0,20.6265,150.0},
  332. {1655,-1478.034912,-218.363586,25.487616,0.0,0.0,47.2690,150.0},
  333. {1655,-1480.446411,-216.069427,31.925947,141.8069,0.0,227.7508,150.0},
  334. {1655,-1486.454224,-210.690155,32.588390,162.4336,0.0,228.5061,150.0},
  335. {1655,-1491.765869,-205.853531,30.103600,187.3574,0.0,226.7873,150.0},
  336. {1655,-1498.401489,-200.153839,16.725893,27.5020,0.0,227.6467,150.0},
  337. {1655,-1501.450562,-197.402405,14.195345,0.0,0.0,227.6467,150.0},
  338. {18450,-1441.404663,92.183350,13.284257,0.0,8.5944,325.6225,150.0},
  339. {1634,-1304.809082,233.994446,13.136753,347.9679,0.0,26.6425,150.0},
  340. {1634,-1306.512329,237.517883,14.416145,356.5623,0.0,26.6425,150.0},
  341. {18450,-1248.334229,203.356796,68.304459,0.0,354.8434,307.5744,150.0},
  342. {18450,-1292.736450,261.055176,61.749763,0.0,354.8434,307.5744,150.0},
  343. {18450,-1424.122070,260.855316,93.777397,0.0,338.5141,322.1848,150.0},
  344. {18450,-1482.892578,306.461365,65.144356,0.0,339.3735,322.1848,150.0},
  345. {3865,-1318.586548,-246.624725,25.866898,0.0,0.0,315.3093,150.0},
  346. {3865,-1312.213379,-240.427780,25.203110,351.4056,0.0,314.4499,150.0},
  347. {3865,-1306.001343,-234.470749,23.155926,341.9518,0.0,314.4499,150.0},
  348. {3865,-1300.292114,-228.990601,20.050791,335.0763,0.0,314.4499,150.0},
  349. {3865,-1294.597900,-223.461243,16.875029,341.9518,0.0,315.3093,150.0},
  350. {3865,-1288.362915,-217.307922,15.052887,354.8434,0.0,315.3093,150.0},
  351. {1290,-1295.760010,-224.508804,10.968914,0.0,0.0,315.3093,150.0},
  352. {1290,-1303.712280,-232.146408,15.420698,0.0,0.0,312.7310,150.0},
  353. {1290,-1311.979614,-240.029434,18.800278,0.0,0.0,315.3093,150.0},
  354. {638,-1357.148438,-241.649323,13.841000,0.0,0.0,315.3093,150.0},
  355. {638,-1353.399902,-237.953003,13.841001,0.0,0.0,315.3093,150.0},
  356. {638,-1349.721802,-234.319931,13.845471,0.0,0.0,315.3093,150.0},
  357. {677,-1295.772827,-224.511978,13.153060,0.0,0.0,0.0,150.0},
  358. {677,-1303.678711,-232.201553,13.153060,0.0,0.0,0.0,150.0},
  359. {677,-1311.986450,-240.280670,13.148589,0.0,0.0,0.0,150.0},
  360. {677,-1312.173462,-239.837677,13.153060,0.0,0.0,262.0242,150.0},
  361. {8355,-1044.878296,448.851410,27.684555,12.0321,0.0,315.3093,150.0},
  362. {2985,-1524.689575,460.992279,42.386459,0.0,0.0,128.9155,150.0},
  363. {3080,-1362.409546,-173.872696,13.398566,0.0,0.0,73.0521,150.0},
  364. {3080,-1363.465088,-176.978760,13.448565,0.0,0.0,73.0521,150.0},
  365. {2921,-1331.494019,-232.774689,22.390060,0.0,0.0,43.8313,150.0},
  366. {2886,-1348.720703,-215.594055,15.663818,0.0,0.0,314.4499,150.0},
  367. {3110,-1366.249268,-306.176544,32.810078,0.0,0.0,13.6471,150.0},
  368. {973,-1328.548340,-229.050720,13.988658,0.0,0.0,48.1285,150.0},
  369. {973,-1322.376099,-222.147247,13.988657,0.0,0.0,48.1285,150.0},
  370. {973,-1344.249023,-213.054306,13.988658,0.0,0.0,223.3495,150.0},
  371. {973,-1337.622681,-206.803574,13.989953,0.0,0.0,223.3495,150.0},
  372. {973,-1316.235962,-221.938995,13.914897,0.0,0.0,314.4499,150.0},
  373. {973,-1316.323608,-228.314911,13.922265,0.0,0.0,225.0684,150.0},
  374. {973,-1322.816040,-235.014725,13.929648,0.0,0.0,226.7873,150.0},
  375. {615,-1324.516235,-231.253540,13.142271,0.0,0.0,152.0161,150.0},
  376. {615,-1319.423584,-225.274384,13.142271,0.0,0.0,0.0,150.0},
  377. {973,-1337.457153,-200.474243,13.972325,0.0,0.0,313.5904,150.0},
  378. {973,-1343.694824,-200.478180,13.929709,0.0,0.0,44.6907,150.0},
  379. {973,-1350.336914,-207.044525,13.937093,0.0,0.0,44.6907,150.0},
  380. {615,-1346.849609,-209.689575,13.142270,0.0,0.0,341.8481,150.0},
  381. {615,-1340.736450,-203.810562,13.142271,0.0,0.0,188.9720,150.0},
  382. {18256,-1211.989502,-373.336029,47.776413,6.0161,83.3654,357.4217,150.0},
  383. {18256,-1077.040405,-382.711517,54.944595,353.9839,274.9158,356.5623,150.0},
  384. {874,-1342.970703,-207.016281,14.942006,0.0,0.0,302.4177,150.0},
  385. {874,-1343.912231,-204.862061,14.692010,0.0,0.8594,116.8834,150.0},
  386. {874,-1321.568481,-229.256042,14.942006,0.0,0.0,300.6989,150.0},
  387. {874,-1322.894043,-227.471817,14.942006,0.0,0.0,125.4778,150.0},
  388. {4585,-1182.987183,117.613289,19.053003,292.1045,0.0,0.0,150.0},
  389. {13666,-1304.941284,-101.021530,18.028748,0.0,0.0,0.0,150.0},
  390. {13666,-1308.386230,-94.694717,18.028763,0.0,0.0,0.0,150.0},
  391. {13666,-1311.804321,-88.258682,18.028763,0.0,0.0,0.0,150.0},
  392. {13666,-1315.225464,-81.835617,18.028763,0.0,0.0,0.0,150.0},
  393. {624,-1316.163574,-92.302490,12.512922,0.0,0.0,0.0,150.0},
  394. {624,-1299.986938,-101.174934,12.512922,0.0,0.0,0.0,150.0},
  395. {624,-1304.391968,-82.696274,12.512924,0.0,0.0,0.0,150.0},
  396. {1634,-1314.811035,-107.740807,14.220758,0.0,0.0,353.9839,150.0},
  397. {13593,-1322.623291,-69.677719,13.866297,0.0,0.0,207.0202,150.0},
  398. {10948,-1240.615356,-463.155792,75.295059,0.0,0.0,29.2208,150.0},
  399. {16395,-1270.663818,-383.413513,23.348238,351.4056,326.4820,258.6904,150.0},
  400. {5153,-1280.053833,-464.919281,74.925323,329.9197,331.6386,268.8997,150.0},
  401. {1634,-1211.009277,-483.909637,70.998566,0.0,0.0,298.9800,150.0},
  402. {1634,-1205.472900,-480.404633,76.005402,23.2048,354.8434,303.2772,150.0},
  403. {1634,-1202.297119,-477.352051,82.418503,37.8152,347.9679,311.0121,150.0},
  404. {1634,-1201.223755,-475.424561,88.004395,52.4256,341.0924,317.8876,150.0},
  405. {1634,-1266.230469,-439.233459,94.823578,0.0,0.0,28.3614,150.0},
  406. {1634,-1268.973267,-433.549225,99.268974,18.9076,4.2972,24.9237,150.0},
  407. {1634,-1270.280518,-429.008759,105.638382,36.9558,11.1727,17.1887,150.0},
  408. {1634,-1270.0,-426.428589,112.571686,54.1445,22.3454,6.0161,150.0},
  409. {1634,-1196.194092,-423.263336,118.623581,0.0,0.0,298.9800,150.0},
  410. {1634,-1191.284058,-419.221161,123.352608,21.4859,349.6868,313.5131,150.0},
  411. {1634,-1189.489502,-415.203949,129.443329,38.6747,332.4980,332.4980,150.0},
  412. {3279,-1363.055542,-205.421646,24.338917,0.0,0.0,225.0683,150.0},
  413. {1696,-1343.617798,-278.287445,12.730674,0.0,0.0,315.3093,150.0},
  414. {1696,-1348.557617,-284.210175,18.055651,202.7231,0.0,133.9680,150.0},
  415.  
  416. //BuildingJump
  417. {9907,-2882.705566,-3148.956543,30.826664,0.0,0.0,269.8631,200.0},
  418. {1655,-2882.777100,-3114.734375,79.687759,0.0,0.0,179.6224,200.0},
  419. {1634,-2868.561523,-3163.846680,84.716545,0.0,0.0,225.9278,200.0},
  420. {8391,-2786.222900,-3212.827881,20.785454,0.0,0.0,44.7945,200.0},
  421. {1634,-2749.385010,-3220.978027,39.424583,0.0,0.0,314.4499,200.0},
  422. {4602,-2712.810547,-3182.439941,-44.678299,0.0,0.0,0.0,200.0},
  423. {1632,-2703.018555,-3173.144043,26.559313,0.0,0.0,311.8715,200.0},
  424. {6391,-2676.282715,-3148.785645,-12.242161,0.0,0.0,9.4538,200.0},
  425. {4585,-2610.179932,-3148.804199,35.500702,0.0,48.1284,0.0,200.0},
  426. {1655,-2645.999512,-3148.733154,29.856356,0.0,0.0,269.7592,200.0},
  427. {1412,-2549.142334,-3132.596680,118.223984,0.0,0.0,90.2408,200.0},
  428. {1412,-2549.149170,-3165.049805,118.206322,0.0,0.0,90.1370,200.0},
  429. {1412,-2549.173828,-3159.778809,118.212059,0.0,0.0,90.2409,200.0},
  430. {1412,-2549.137207,-3137.863037,118.211891,0.0,0.0,90.2409,200.0},
  431. {1412,-2549.128906,-3143.139648,118.219383,0.0,0.0,90.2409,200.0},
  432. {1412,-2549.145264,-3154.492188,118.226906,0.0,0.0,90.2408,200.0},
  433. {1634,-2524.902588,-3148.983154,91.658066,312.7310,0.0,269.7591,200.0},
  434. {1634,-2515.979980,-3149.028076,89.558701,329.9197,0.0,269.7591,200.0},
  435. {1634,-2506.942383,-3148.981934,90.104515,346.2490,0.0,270.6186,200.0},
  436. {4564,-2422.852539,-3148.780273,-30.391731,0.0,0.0,269.7591,200.0},
  437. {1655,-2396.559570,-3148.979248,79.967850,0.0,0.0,269.8631,200.0},
  438. {4690,-2309.909912,-3154.984375,-85.528091,0.0,0.8594,179.6224,200.0},
  439. {1655,-2300.698730,-3182.422607,63.384151,0.0,0.8594,179.6224,200.0},
  440. {4571,-2300.665039,-3229.766357,0.411537,0.0,0.0,0.0,200.0},
  441. {4603,-2300.290771,-3316.769775,16.042915,0.0,0.0,0.0,200.0},
  442. {1632,-2301.019775,-3244.735352,65.477257,0.0,0.0,179.6224,200.0},
  443. {1632,-2300.479492,-3304.468994,47.928951,0.0,0.0,180.4819,200.0},
  444. {10948,-2312.455811,-3389.554199,-2.993324,0.0,0.0,0.0,200.0},
  445. {1655,-2257.403320,-3387.079346,40.337990,0.0,0.0,269.8630,200.0},
  446. {4558,-2201.316162,-3406.932373,35.067619,0.0,0.0,268.8997,200.0},
  447. {1633,-2170.597168,-3389.443115,33.327271,0.0,0.0,267.1808,200.0},
  448. {10619,-2082.274902,-3394.752441,9.830154,0.0,0.0,226.0320,200.0},
  449. {1634,-2051.554688,-3351.556885,27.741539,0.0,0.0,0.0,200.0},
  450. {17533,-2065.521240,-3301.779541,-1.725090,0.0,0.0,181.3413,200.0},
  451. {1632,-2068.406006,-3288.083252,35.387096,0.0,0.0,91.8559,200.0},
  452. {4019,-2120.260742,-3284.299561,-7.317807,0.0,0.0,0.0,200.0},
  453. {8674,-2887.976563,-3114.480713,79.179512,0.0,0.0,269.7591,200.0},
  454. {8674,-2877.672119,-3114.481201,79.179527,0.0,0.0,269.7591,200.0},
  455. {8674,-2882.798096,-3109.344971,82.094780,0.0,0.0,0.0,200.0},
  456. {8674,-2887.922119,-3114.488037,82.104630,0.0,0.0,90.2409,200.0},
  457. {8674,-2877.692871,-3114.477295,82.104645,0.0,0.0,89.3814,200.0},
  458. {8674,-2882.783203,-3110.817627,83.579536,90.2409,0.0,0.0,200.0},
  459. {8674,-2882.791016,-3113.737061,83.547722,90.2408,0.0,0.0,200.0},
  460. {10948,-2234.872314,-3297.982666,-8.296989,0.0,0.0,0.0,200.0},
  461. {1655,-2147.864990,-3289.781494,32.927620,0.0,0.0,90.1369,200.0},
  462. {1655,-2224.995605,-3244.912109,35.284340,0.0,0.0,0.0,200.0},
  463. {4006,-2228.412598,-3196.378174,13.965515,0.0,0.0,0.0,200.0},
  464. {4563,-2202.495117,-3352.000977,60.625214,0.0,0.0,0.0,200.0},
  465. {4563,-2417.814453,-3231.480225,24.285820,0.0,0.0,0.0,200.0},
  466. {4563,-2606.590088,-3076.596436,7.792725,0.0,0.0,0.0,200.0},
  467. {4563,-2885.514160,-3229.168945,48.889942,0.0,0.0,0.0,200.0},
  468. {4571,-2385.805420,-3385.786377,22.620010,0.0,0.0,0.0,200.0},
  469. {4571,-2131.863770,-3173.972656,23.351299,0.0,0.0,0.0,200.0},
  470. {4571,-2553.030762,-3252.951904,21.721924,0.0,0.0,0.0,200.0},
  471. {4571,-2797.039551,-3127.261719,22.412292,0.0,0.0,0.0,200.0},
  472. {4585,-2032.884155,-3232.165283,26.348061,0.0,0.0,0.0,200.0},
  473. {4585,-2161.247803,-3495.907471,35.635555,0.0,0.0,0.0,200.0},
  474. {4586,-1959.884033,-3397.687012,51.280075,0.0,0.0,90.2409,200.0},
  475. {4586,-2347.974854,-3483.689941,56.034904,0.0,0.0,0.0,200.0},
  476. {4602,-2395.797363,-3059.538574,59.059341,0.0,0.0,356.5623,200.0},
  477. {4602,-2718.041992,-3065.195313,59.661198,0.0,0.0,0.0,200.0},
  478. {4602,-2674.001709,-3271.598633,60.065804,0.0,0.0,0.0,200.0},
  479. {4602,-2976.944580,-3102.350342,60.218887,0.0,0.0,0.0,200.0},
  480. {4603,-2217.558594,-3089.144287,6.331810,0.0,0.0,0.0,200.0},
  481. {1634,-2225.056885,-3182.619141,28.164351,0.0,0.0,0.0,200.0},
  482. {13603,-2243.887207,-3141.773438,21.233524,0.0,0.0,359.1406,200.0},
  483. {8674,-2890.265381,-3119.670654,80.079582,0.0,0.0,0.0,200.0},
  484. {8674,-2875.304199,-3119.661133,80.079582,0.0,0.0,0.0,200.0},
  485. {8674,-2890.227539,-3072.862793,80.129585,0.0,0.0,0.0,200.0},
  486. {8674,-2875.320801,-3072.754883,80.079582,0.0,0.0,0.0,200.0},
  487. {8674,-2883.040283,-3072.755127,80.097702,0.0,0.0,0.0,200.0},
  488. {8674,-2862.787354,-3085.223145,80.079582,0.0,0.0,269.7591,200.0},
  489. {8674,-2902.689697,-3085.241943,80.029579,0.0,0.0,270.6186,200.0},
  490. {8674,-2862.783447,-3107.158936,80.079582,0.0,0.0,90.2409,200.0},
  491. {8674,-2902.713867,-3107.108643,80.079582,0.0,0.0,269.7591,200.0},
  492. {8674,-2902.695557,-3104.529541,80.079582,0.0,0.0,269.7591,200.0},
  493. {8674,-2902.727783,-3095.512695,80.054581,0.0,0.0,269.7591,200.0},
  494. {8674,-2862.772949,-3104.623779,80.079582,0.0,0.0,90.2409,200.0},
  495. {8674,-2862.823486,-3095.526367,80.079582,0.0,0.0,89.3814,200.0},
  496. {8674,-2866.441406,-3116.013672,80.079582,0.0,0.0,44.6907,200.0},
  497. {8674,-2866.449707,-3076.401855,80.079582,0.0,0.0,315.3093,200.0},
  498. {8674,-2899.034668,-3076.583252,80.079582,0.0,359.1406,44.6907,200.0},
  499. {8674,-2899.094727,-3115.978027,80.079582,0.0,0.0,314.4499,200.0},
  500.  
  501. //BloodRingArena
  502. {13650,1234.752441,-2057.020020,500.494019,0.0,0.0,179.6224,400.0},
  503. {12814,1302.233521,-2093.142090,495.079987,0.0,0.0,0.0,400.0},
  504. {12814,1302.039795,-2043.288452,495.079987,0.0,0.0,180.4819,400.0},
  505. {12814,1301.816528,-1993.440552,495.079987,0.0,0.0,0.0,400.0},
  506. {12814,1272.295776,-2093.140625,495.079987,0.0,0.0,0.0,400.0},
  507. {12814,1242.361450,-2093.132813,495.079987,0.0,0.0,0.0,400.0},
  508. {12814,1212.454956,-2093.121826,495.079987,0.0,0.0,0.0,400.0},
  509. {12814,1182.572021,-2093.127197,495.079987,0.0,0.0,0.0,400.0},
  510. {12814,1152.701782,-2093.140625,495.079987,0.0,0.0,0.0,400.0},
  511. {12814,1271.888428,-1993.452637,495.079987,0.0,0.0,0.0,400.0},
  512. {12814,1241.944824,-1993.465698,495.079987,0.0,0.0,0.0,400.0},
  513. {12814,1212.005005,-1993.471313,495.079987,0.0,0.0,0.0,400.0},
  514. {12814,1182.078491,-1993.479248,495.079987,0.0,0.0,0.0,400.0},
  515. {12814,1152.163208,-1993.479858,495.079987,0.0,0.0,0.0,400.0},
  516. {12814,1272.092773,-2043.313232,495.079987,0.0,0.0,180.4818,400.0},
  517. {12814,1242.141846,-2043.297363,495.079987,0.0,0.0,180.4819,400.0},
  518. {12814,1212.310547,-2043.344116,495.079987,0.0,0.0,180.3777,400.0},
  519. {12814,1182.602783,-2043.338379,495.079987,0.0,0.0,180.4818,400.0},
  520. {12814,1152.682373,-2043.333130,495.079987,0.0,0.0,180.4818,400.0},
  521. {8209,1308.253418,-2053.555664,498.200012,0.0,0.0,89.3814,400.0},
  522. {8209,1259.489990,-2107.884521,498.200012,0.0,0.0,359.1406,400.0},
  523. {8209,1202.290161,-2107.603027,498.200012,0.0,0.0,0.0,400.0},
  524. {8209,1153.347778,-2052.589600,498.200012,0.0,0.0,269.7591,400.0},
  525. {8209,1202.181763,-2003.371216,498.200012,0.0,0.0,179.6223,400.0},
  526. {8209,1259.375732,-2003.710693,498.200012,0.0,0.0,179.6224,400.0},
  527. {8209,1153.319946,-2058.592285,498.200012,0.0,0.0,269.7591,400.0},
  528. {8209,1307.584351,-2059.643555,498.200012,0.0,0.0,90.2409,400.0},
  529. {3814,1138.813843,-2011.618896,515.402100,0.0,90.2408,0.0,400.0},
  530. {3814,1138.821533,-2061.142578,515.402100,0.0,90.2409,0.0,400.0},
  531. {3814,1138.827515,-2096.326172,515.402100,0.0,90.2409,0.0,400.0},
  532. {3814,1167.005859,-2121.208740,515.402100,0.0,91.1002,89.3814,400.0},
  533. {3814,1216.792725,-2121.736816,515.402100,0.0,91.1003,89.3814,400.0},
  534. {3814,1267.065918,-2122.277588,515.402100,0.0,91.1003,89.3814,400.0},
  535. {3814,1302.110107,-2122.683350,515.402100,0.0,91.1003,89.3814,400.0},
  536. {3814,1321.685913,-2102.058594,515.402100,0.0,269.8631,359.1406,400.0},
  537. {3814,1322.284058,-2060.920898,515.402100,0.0,269.7591,359.1406,400.0},
  538. {3814,1323.005493,-2012.272705,515.402100,0.0,269.8631,359.1406,400.0},
  539. {3814,1304.839844,-1989.963745,515.402100,0.0,90.2409,269.7591,400.0},
  540. {3814,1259.455444,-1989.795776,515.402100,0.0,90.2409,269.7591,400.0},
  541. {3814,1217.144531,-1989.625977,515.402100,0.0,90.2409,269.7591,400.0},
  542. {3814,1166.822876,-1989.243408,515.402100,0.0,269.7591,89.3814,400.0},
  543. {1217,1178.357178,-2010.251343,495.517517,0.0,0.0,0.0,400.0},
  544. {1217,1180.734375,-2011.498535,495.517517,0.0,0.0,280.0724,400.0},
  545. {1217,1179.551880,-2011.762207,495.517517,0.0,0.0,132.3534,400.0},
  546. {1217,1177.999512,-2015.961426,495.517517,0.0,0.0,176.9399,400.0},
  547. {1218,1214.411011,-2024.801270,495.517517,0.0,0.0,0.0,400.0},
  548. {1218,1210.292603,-2029.286499,495.517517,0.0,0.0,274.9158,400.0},
  549. {1218,1209.959106,-2026.988525,495.517517,0.0,0.0,176.0805,400.0},
  550. {3057,1211.341309,-2025.288940,495.436981,0.0,0.0,335.0763,400.0},
  551. {3057,1209.762451,-2030.615234,495.436920,0.0,0.0,36.0963,400.0},
  552. {3374,1239.246216,-2082.877197,496.536957,0.0,0.0,0.0,400.0},
  553. {3374,1238.773926,-2078.571289,496.487213,0.0,0.0,349.6868,400.0},
  554. {3374,1281.466187,-2030.556274,496.537140,0.0,0.0,15.4699,400.0},
  555. {3374,1276.781494,-2029.160156,496.512085,0.0,0.0,255.1487,400.0},
  556. {3864,1312.262451,-1999.662476,506.0,0.0,0.0,54.1445,400.0},
  557. {3864,1149.729614,-1999.199341,506.0,0.0,0.0,140.9477,400.0},
  558. {3864,1149.023804,-2111.389893,506.0,0.0,0.0,228.5061,400.0},
  559. {3864,1311.168823,-2112.408203,506.0,0.0,0.0,317.8876,400.0},
  560. {1217,1235.631226,-2082.342285,495.477295,0.0,0.0,0.0,400.0},
  561. {1217,1239.350098,-2075.292480,495.477295,0.0,0.0,0.0,400.0},
  562. {1217,1274.964355,-2071.221436,495.477295,0.0,0.0,0.0,400.0},
  563. {1217,1274.140137,-2068.387939,495.477295,0.0,0.0,313.5904,400.0},
  564. {1217,1283.340576,-2099.356934,495.477295,0.0,0.0,115.0605,400.0},
  565. {1217,1297.292114,-2062.147949,495.477295,0.0,0.0,0.0,400.0},
  566. {1217,1242.632813,-2029.741821,495.477295,0.0,0.0,229.3656,400.0},
  567. {1217,1281.859131,-2098.406006,495.477295,0.0,0.0,0.0,400.0},
  568. {1217,1284.185913,-2098.235107,495.477295,0.0,0.0,50.7068,400.0},
  569. {1217,1283.321289,-2099.331055,496.562134,0.0,0.0,30.0803,400.0},
  570. {3374,1169.761597,-2060.690918,496.562073,0.0,0.0,42.9718,400.0},
  571. {3374,1228.640503,-2015.287231,496.511963,0.0,0.0,8.5944,400.0},
  572. {3057,1199.761963,-2056.012695,495.477295,0.0,0.0,0.0,400.0},
  573. {1222,1200.724243,-2052.680420,495.477295,0.0,0.0,0.0,400.0},
  574.  
  575. //pipehangar
  576. {3865,-1143.258911,-37.325905,15.077887,0.0,0.0,315.3093,100.0},
  577. {3865,-1136.959351,-31.006828,15.142344,0.8594,359.1406,316.1687,100.0},
  578. {3865,-1130.764404,-24.788645,15.420094,2.5783,0.0,315.3093,100.0},
  579. {3865,-1124.457520,-18.356247,16.103987,6.0161,0.0,317.0282,100.0},
  580. {3865,-1118.456421,-11.850220,17.310627,9.4538,0.0,318.7470,100.0},
  581. {3865,-1112.775024,-5.324821,18.894699,11.1727,0.0,320.4659,100.0},
  582. {3865,-1107.133301,1.559401,20.516687,9.4538,0.0,322.1848,100.0},
  583. {3865,-1101.624023,8.799764,21.823853,6.8755,0.0,324.7631,100.0},
  584. {3865,-1096.499512,16.235380,22.702976,4.2972,0.0,327.3414,100.0},
  585. {3865,-1091.859863,23.926632,23.160557,1.7189,0.0,331.6386,100.0},
  586. {3865,-1087.479248,31.948545,23.223965,359.1406,0.0,332.4980,100.0},
  587. {3865,-1083.496948,39.958908,22.867031,356.5623,0.0,335.9358,100.0},
  588. {3865,-1080.0,47.878490,22.138556,353.9839,0.0,337.6546,100.0},
  589. {3865,-1076.865845,55.953449,21.010326,351.4056,0.0,341.0924,100.0},
  590. {3865,-1073.982666,64.441582,19.370377,347.9679,0.0,342.8113,100.0},
  591. {3865,-1071.479614,72.846016,17.213625,344.5301,0.0,345.3896,100.0},
  592. {3865,-1069.317505,81.270485,14.795572,344.5301,0.0,347.1084,100.0},
  593. {3865,-1067.447021,89.891716,12.408718,345.3896,0.0,349.6868,100.0},
  594. {3865,-1066.025757,98.303879,10.186935,345.3896,0.0,352.2651,100.0},
  595. {3865,-1064.885132,107.003487,7.967059,346.2490,0.0,353.9839,100.0},
  596. {3865,-1064.072388,115.701500,5.896607,347.1084,0.0,356.5623,100.0},
  597. {3865,-1063.645874,124.552711,4.013290,348.8273,0.0,359.1406,100.0},
  598. {3865,-1063.602295,133.528625,2.571424,353.1245,0.0,1.7189,100.0},
  599. {3865,-1149.402344,-43.494896,15.092722,0.0,0.0,316.1687,100.0},
  600. {3865,-1155.888184,-50.006996,15.096844,0.0,0.0,315.3093,100.0},
  601. {3865,-1162.350830,-56.411942,15.035107,0.8594,0.0,315.3093,100.0},
  602. {3865,-1168.307617,-62.306816,14.914917,0.8594,0.0,315.3093,100.0},
  603. {3865,-1173.928345,-67.804787,14.750490,1.7189,0.0,314.4499,100.0},
  604. {3865,-1115.153076,333.133942,14.606102,0.0,0.0,44.6907,100.0},
  605. {3865,-1109.069336,326.660919,14.494368,1.7189,0.0,42.9718,100.0},
  606. {3865,-1103.190674,319.927094,14.098070,3.4377,0.0,40.3935,100.0},
  607. {3865,-1097.651245,312.978790,13.444111,5.1566,0.0,37.8152,100.0},
  608. {3865,-1092.476074,305.721985,12.517939,6.8755,0.0,34.3775,100.0},
  609. {3865,-1087.905151,298.312927,11.290287,9.4538,0.0,30.0803,100.0},
  610. {3865,-1083.961548,290.705109,9.753551,11.1727,0.0,25.7831,100.0},
  611. {3865,-1080.612427,282.681213,7.916279,12.8916,0.0,20.6265,100.0},
  612. {3865,-1077.867188,274.352448,5.990915,12.0321,0.0,17.1887,100.0},
  613. {3865,-1075.658813,266.013184,4.336786,9.4538,0.0,13.7510,100.0},
  614. {3865,-1073.937622,257.544830,3.079252,6.8755,0.0,10.3132,100.0},
  615. {3865,-1072.757202,248.640808,2.201732,4.2972,0.0,6.0161,100.0},
  616. {8673,-1064.100952,147.800995,0.592166,89.3815,0.0,271.4780,100.0},
  617. {8673,-1064.933716,168.148117,0.569053,89.3814,0.0,273.1969,100.0},
  618. {8673,-1066.371582,188.447830,0.572031,89.3815,0.0,274.9158,100.0},
  619. {8673,-1068.421265,208.735992,0.556025,88.5220,0.0,276.6346,100.0},
  620. {8673,-1070.536499,226.777710,0.574701,89.3814,359.1406,277.4941,100.0},
  621. {3865,-1072.030640,241.445526,1.866770,0.0,0.0,6.8755,100.0},
  622. {1653,-1065.5022,144.4618,1.2456,0.0,0.0,271.4780,100.0},
  623. {1653,-1065.9287,157.2410,1.2651,0.0,0.0,272.3375,100.0},
  624. {1653,-1066.5477,170.0551,1.2429,0.0,0.0,273.1969,100.0},
  625. {1653,-1067.4139,182.8194,1.2487,0.0,0.0,274.9158,100.0},
  626. {1653,-1068.5302,195.5792,1.2435,0.0,0.0,274.9158,100.0},
  627. {1653,-1069.8129,208.3421,1.2296,0.0,0.0,276.6346,100.0},
  628. {1653,-1071.3054,221.0715,1.2477,0.0,0.0,276.6346,100.0},
  629. {1653,-1072.7961,233.7921,1.2458,0.0,0.0,276.6346,100.0},
  630. {1653,-1062.5844,144.5194,1.2371,0.0,0.0,91.8558,100.0},
  631. {1653,-1063.0052,157.3330,1.2402,0.0,0.0,91.9597,100.0},
  632. {1653,-1063.5485,170.1395,1.2113,0.0,0.0,92.8192,100.0},
  633. {1653,-1064.4493,182.9068,1.2162,0.0,0.0,95.2936,100.0},
  634. {1653,-1065.6335,195.6594,1.2145,0.0,0.0,95.2935,100.0},
  635. {1653,-1066.9141,208.4125,1.1855,0.0,0.0,96.2569,100.0},
  636. {1653,-1068.3966,221.1357,1.2174,0.0,0.0,97.0124,100.0},
  637. {1653,-1069.8043,233.8719,1.2185,0.0,0.0,96.1530,100.0},
  638.  
  639. //DragRace
  640. {16037,-147.084045,-2293.212891,32.171833,0.0,0.8594,0.0,1000.0},
  641. {16037,-26.102201,-2293.209229,30.372803,0.0,0.8594,0.0,1000.0},
  642. {16037,94.881821,-2293.206787,28.570375,0.0,0.8594,0.0,1000.0},
  643. {16037,215.807602,-2293.210449,26.761364,0.0,0.8594,0.0,1000.0},
  644. {16037,336.820862,-2293.201904,24.963446,0.0,0.8594,0.0,1000.0},
  645. {16037,457.818176,-2293.211426,23.165270,0.0,0.8594,0.0,1000.0},
  646. {16037,578.740723,-2293.204834,21.356173,0.0,0.8594,0.0,1000.0},
  647. {16037,699.610291,-2293.215088,19.559959,0.0,0.8594,0.0,1000.0},
  648. {16037,820.594604,-2293.204590,17.760946,0.0,0.8594,0.0,1000.0},
  649. {16037,941.635803,-2293.254395,16.856367,0.0,0.0,0.0,1000.0},
  650. {1696,-210.146515,-2299.266357,28.433142,358.2811,0.0,269.7591,150.0},
  651. {1696,-210.129776,-2286.458252,28.416525,358.2811,0.0,269.7591,150.0},
  652. {1696,-210.128708,-2294.197998,28.431019,358.2811,0.0,269.7591,150.0},
  653. {1696,-210.141449,-2290.261963,28.421984,358.2811,0.0,270.6186,150.0},
  654. {1696,1004.674316,-2299.864746,12.525989,350.5462,0.0,90.2409,150.0},
  655. {1696,1004.647339,-2294.443604,12.525989,350.5462,0.0,90.2409,150.0},
  656. {1696,1004.622009,-2289.565430,12.525988,350.5462,0.0,90.2409,150.0},
  657. {1696,1004.614502,-2287.086426,12.525989,350.5462,0.0,90.2409,150.0},
  658. {1262,993.647034,-2291.517822,20.473785,0.0,0.1039,269.7591,150.0},
  659. {1262,993.639099,-2291.033203,20.473797,0.0,0.0,269.7591,150.0},
  660. {1262,993.637024,-2292.008301,20.473801,0.0,0.0,270.6186,150.0},
  661. {1262,993.646729,-2292.481934,20.473801,0.0,0.0,268.8997,150.0},
  662. {1262,993.642151,-2290.548584,20.473812,0.0,0.0,268.8997,150.0},
  663. {1238,994.987000,-2291.482910,13.307360,0.0,0.0,0.0,150.0},
  664. {996,994.872070,-2285.301025,12.612952,0.0,0.0,270.6186,150.0},
  665. {996,994.950989,-2293.094482,12.611060,0.0,0.0,270.6186,150.0},
  666. {1238,994.885620,-2285.529053,13.330467,0.0,0.0,356.5623,150.0},
  667. {1238,994.997192,-2297.436035,13.328575,0.0,0.0,0.8594,150.0},
  668. {1278,994.967773,-2298.002441,18.077091,0.0,0.0,180.4819,150.0},
  669. {1366,1002.070618,-2281.789795,12.707242,0.0,0.0,341.9518,150.0},
  670. {2670,998.849365,-2299.179199,13.229670,0.0,0.0,0.0,150.0},
  671. {852,1008.590881,-2315.531250,12.057586,0.0,0.0,0.0,150.0},
  672. {850,1011.611389,-2275.510986,12.205243,0.0,0.0,0.0,150.0},
  673. {2676,974.223389,-2299.262451,13.240941,0.0,0.0,0.0,150.0},
  674. {2673,998.677185,-2286.043945,13.077007,0.0,0.0,0.0,150.0},
  675. {1229,995.012268,-2298.076416,14.697297,0.0,0.0,91.9597,150.0},
  676. {1217,1001.812744,-2304.226318,12.515130,0.0,0.0,0.0,150.0},
  677. {3525,993.287292,-2285.279541,16.759653,0.0,0.0,0.0,150.0},
  678. {850,-212.681931,-2303.668457,28.147556,0.0,0.0,0.0,150.0},
  679. {852,-210.632233,-2282.198242,28.027754,0.0,0.0,0.0,150.0},
  680. {2670,-204.649704,-2299.451416,29.408266,0.0,0.0,0.0,150.0},
  681. {2671,-220.273605,-2298.514404,27.251328,0.0,0.0,0.0,150.0},
  682. {2673,-218.456970,-2283.595703,27.864557,0.0,0.0,0.0,150.0},
  683. {1228,-202.758057,-2299.881836,29.708965,0.0,0.0,0.0,150.0},
  684. {1228,-202.731888,-2297.259521,29.641987,353.9839,0.0,0.0,150.0},
  685. {1228,-202.733307,-2294.671875,29.567009,0.0,0.0,0.0,150.0},
  686. {1228,-202.738708,-2292.041016,29.567467,0.0,0.0,0.0,150.0},
  687. {1228,-202.734573,-2289.429688,29.560158,0.0,0.0,0.0,150.0},
  688. {1228,-202.722717,-2286.771484,29.559980,0.0,0.0,0.0,150.0},
  689. {850,891.092163,-2299.407471,13.249110,0.0,0.0,278.3535,150.0},
  690. {852,875.125732,-2300.513428,13.187585,0.0,0.0,0.0,150.0},
  691. {854,688.893738,-2300.773926,16.208294,0.0,0.0,0.0,150.0},
  692. {960,687.222839,-2300.539795,16.408407,0.0,0.0,0.0,150.0},
  693. {1230,660.151001,-2300.496582,16.849491,0.0,0.0,0.0,150.0},
  694. {1230,660.990234,-2300.288086,16.836903,0.0,0.0,115.1645,150.0},
  695. {2670,439.318176,-2299.795410,19.815674,0.0,0.0,0.0,150.0},
  696. {2671,435.007538,-2299.963867,19.790838,0.0,0.0,256.0082,150.0},
  697. {2672,354.604767,-2300.223877,21.256962,0.0,0.0,0.0,150.0},
  698. {2674,98.294357,-2299.250244,24.821754,0.0,0.0,0.0,150.0},
  699. {2675,100.886055,-2299.468506,24.825397,0.0,0.0,0.0,150.0},
  700. {2676,-131.921799,-2299.308350,28.328537,0.0,0.0,0.0,150.0},
  701. {852,-127.091415,-2300.145752,28.116589,0.0,0.0,0.0,150.0},
  702. {854,-150.782928,-2300.679199,28.714893,0.0,0.0,0.0,150.0},
  703. {926,93.512604,-2300.479248,25.121056,0.0,0.0,0.0,150.0},
  704. {928,351.335541,-2300.552734,21.285179,0.0,0.0,0.0,150.0},
  705. {960,-84.111191,-2300.187256,27.905624,0.0,0.0,0.0,150.0},
  706. {2670,932.197937,-2289.976807,13.081232,0.0,0.0,0.0,150.0},
  707. {2671,860.768433,-2293.125977,13.293221,0.0,0.0,0.0,150.0},
  708. {2673,660.112976,-2286.229736,16.372667,0.0,0.0,0.0,150.0},
  709. {2674,608.475342,-2296.850342,17.064238,0.0,0.0,0.0,150.0},
  710. {2675,408.012451,-2290.061768,20.109049,0.0,0.0,0.0,150.0},
  711. {2676,144.707672,-2295.644531,24.058632,0.0,0.0,0.0,150.0},
  712. {2677,-72.989563,-2286.365234,27.480560,0.0,0.0,0.0,150.0},
  713. {16370,1022.374756,-2313.564209,13.976952,0.0,0.0,20.6265,150.0},
  714.  
  715. //BigJump2
  716. {16395,-763.6339,2310.3188,136.8804,0.0,0.0,0.0,1000.0},
  717. {16395,-763.6631,2304.7163,136.8866,0.0,0.0,0.0,1000.0},
  718. {866,-836.8700,2303.3643,151.2166,0.0,0.0,64.5619,1000.0},
  719. {866,-667.5522,2309.7642,134.9199,0.0,0.0,182.2007,1000.0},
  720.  
  721. //AdminCastle
  722. {5296,-2959.221191,-68.487907,8.757286,0.0,1.7189,0.0,500.0},
  723. {5112,-3090.730469,-68.496834,14.510729,0.0,2.5783,0.0,500.0},
  724. {16192,-3370.675293,-22.984571,-32.727802,0.0,0.0,358.3849,500.0},
  725. {16201,-3306.528320,-213.492935,-45.258339,0.0,0.0,339.3735,500.0},
  726. {16163,-3373.794922,-123.639656,-34.690109,0.0,0.0,267.1808,500.0},
  727. {16097,-3392.219482,-30.452894,-56.198586,0.0,0.0,0.0,500.0},
  728. {16253,-3489.069824,21.487816,-25.945404,0.0,0.0,0.0,500.0},
  729. {16253,-3349.901855,72.998863,-30.540390,0.0,0.0,0.0,500.0},
  730. {16253,-3298.297852,5.448934,-27.477436,0.0,0.0,250.8515,500.0},
  731. {16253,-3252.529785,-135.771896,-34.159309,0.0,0.0,213.8957,500.0},
  732. {620,-3318.306885,8.004265,13.520521,0.0,0.0,218.1929,500.0},
  733. {620,-3412.097656,-66.846298,13.124645,0.0,0.0,0.0,500.0},
  734. {622,-3377.784424,0.622974,9.989002,33.5180,347.9679,349.6868,500.0},
  735. {624,-3369.132813,-132.495224,11.020182,0.0,0.0,0.0,500.0},
  736. {624,-3322.991943,-94.534653,6.870912,0.0,0.0,0.0,500.0},
  737. {641,-3364.500000,-169.810211,11.197411,0.0,0.0,0.0,500.0},
  738. {641,-3353.857422,-142.653259,8.166229,0.0,0.0,0.0,500.0},
  739. {17000,-3411.391113,-43.882969,12.962399,0.0,0.0,0.0,500.0},
  740. {1457,-3379.465820,-7.668954,12.300587,0.0,0.0,12.8916,500.0},
  741. {621,-2918.576660,-84.790184,0.165083,0.0,0.0,0.0,500.0},
  742. {621,-2917.885986,-52.887833,0.309372,0.0,0.0,0.0,500.0},
  743. {3330,-3232.294678,-68.558113,9.477560,0.0,0.0,90.2409,500.0},
  744. {3330,-3122.177490,-68.402504,10.735949,0.0,0.0,269.7591,500.0},
  745. {3330,-3033.897461,-68.441399,6.600946,0.0,0.0,269.7591,500.0},
  746. {8419,-3360.077148,-69.735901,1.467458,0.0,0.0,0.0,500.0},
  747. {11484,-3336.120117,-24.978544,105.061714,0.0,0.0,269.7591,500.0},
  748. {11484,-3336.010010,-114.618408,104.936722,0.0,0.0,269.7591,500.0},
  749. {11484,-3384.296143,-25.087173,105.061684,0.0,0.0,90.2409,500.0},
  750. {11484,-3384.038330,-114.625359,104.936783,0.0,0.0,90.2409,500.0},
  751. {12814,-3360.213867,-22.908411,37.783619,269.7591,0.0,0.0,500.0},
  752. {12814,-3360.212891,-22.800524,87.671478,90.2409,0.0,180.4818,500.0},
  753. {14467,-2913.066162,-68.240341,4.253541,0.0,0.0,90.9963,500.0},
  754. {3277,-3331.218750,-50.365265,11.798759,0.0,0.0,255.1487,500.0},
  755. {3277,-3331.219482,-86.740517,10.042594,0.0,0.0,255.1487,500.0},
  756. {3267,-3331.209229,-86.864029,10.095337,0.0,0.0,301.4547,500.0},
  757. {3267,-3331.201172,-50.420959,11.851509,0.0,0.0,240.5383,500.0},
  758. {12814,-3360.147217,-22.798712,97.150360,90.2409,0.0,180.4818,500.0},
  759. {12814,-3360.023682,-116.501633,38.188629,269.7591,0.0,179.6223,500.0},
  760. {12814,-3360.210693,-116.616264,88.115623,90.2409,0.0,0.0,500.0},
  761. {12814,-3360.045166,-116.644501,97.740616,90.2409,0.0,0.0,500.0},
  762. {12814,-3386.223877,-45.359600,28.113613,0.0,269.7591,0.0,500.0},
  763. {12814,-3386.016602,-95.148972,28.113647,0.0,90.2409,180.4818,500.0},
  764. {12814,-3386.340088,-45.348450,58.024174,0.0,269.7591,0.0,500.0},
  765. {12814,-3386.127930,-95.163292,58.000172,0.0,90.2409,180.4818,500.0},
  766. {12814,-3386.457520,-45.351620,87.989807,0.0,269.7591,0.0,500.0},
  767. {12814,-3386.373291,-95.149117,87.991074,0.0,90.2409,179.6223,500.0},
  768. {12814,-3386.516357,-45.318626,107.144615,0.0,269.7591,0.0,500.0},
  769. {12814,-3386.441650,-95.159935,107.157974,0.0,90.2409,179.6223,500.0},
  770. {8648,-3386.262939,-90.844650,122.987968,0.0,0.0,0.0,500.0},
  771. {8648,-3386.251709,-60.777592,122.987968,0.0,0.0,0.0,500.0},
  772. {8648,-3386.248779,-45.497864,122.987968,0.0,0.0,0.0,500.0},
  773. {12814,-3334.081787,-43.542419,28.163578,0.0,90.2409,0.0,500.0},
  774. {12814,-3334.228516,-93.395966,28.169630,0.0,269.7591,179.6223,500.0},
  775. {12814,-3333.965332,-43.560062,58.076500,0.0,90.2409,0.0,500.0},
  776. {12814,-3333.850586,-43.570934,87.895096,0.0,90.2409,0.0,500.0},
  777. {12814,-3333.783203,-43.552959,107.179741,0.0,90.2409,0.0,500.0},
  778. {12814,-3334.145020,-93.385597,58.140488,0.0,269.7591,179.5182,500.0},
  779. {12814,-3334.032959,-93.405128,87.922417,0.0,269.7591,179.6224,500.0},
  780. {12814,-3333.963379,-93.402710,107.167244,0.0,269.7591,179.6224,500.0},
  781. {8645,-3334.128174,-90.789711,123.016907,0.0,0.0,269.7591,500.0},
  782. {8645,-3333.987793,-61.201843,123.011734,0.0,0.0,269.7591,500.0},
  783. {8645,-3333.887207,-38.162514,123.017471,0.0,0.0,269.7591,500.0},
  784. {3749,-2914.981445,-68.493553,7.430189,0.0,0.0,90.2409,500.0},
  785. {12990,-3298.566162,-100.742340,1.014380,0.0,0.0,0.0,500.0},
  786. {12990,-3298.558594,-128.502563,1.081604,0.8594,2.5783,0.0,500.0},
  787. {12990,-3298.578857,-150.502213,0.909999,0.0,2.5783,0.0,500.0},
  788. {12990,-3282.919434,-157.691696,0.696498,0.0,2.5783,91.1003,500.0},
  789. {12990,-3282.170898,-125.635963,1.290927,0.0,356.5623,90.2409,500.0},
  790. {12990,-3281.834961,-93.270592,1.398483,0.0,359.1406,91.1003,500.0},
  791. {16685,-3441.653076,57.514000,1.183322,0.8594,0.0,53.2851,500.0},
  792. {16409,-3665.451904,-268.933350,1.133422,0.0,0.0,323.9037,500.0},
  793. {8038,-3614.970215,-230.450027,21.051346,0.0,0.0,143.5260,500.0},
  794. {10810,-3627.486572,-247.787079,14.850968,0.0,0.0,73.9116,500.0},
  795. {1682,-3608.808350,-212.636230,16.456753,0.0,0.0,0.0,500.0},
  796. {3659,-3665.461914,-261.208649,1.996789,0.0,0.0,323.9037,500.0},
  797. {12990,-3422.388672,-111.217293,3.590969,354.8434,354.8434,48.9879,500.0},
  798. {12990,-3437.839355,-98.342697,2.881217,0.0,358.2811,231.0844,500.0},
  799. {12990,-3459.769531,-81.215546,3.218373,0.0,0.0,232.9074,500.0},
  800. {12990,-3483.374023,-63.611839,2.469438,4.2972,0.8594,233.6627,500.0},
  801. {8650,-3335.077148,-68.539909,46.394852,90.2409,0.0,91.1003,500.0},
  802. {8650,-3334.998779,-68.546967,66.272758,90.2409,0.0,91.1003,500.0},
  803. {8650,-3334.878174,-68.548943,96.720886,90.2408,0.0,91.1003,500.0},
  804. {8650,-3334.832275,-68.528160,106.947899,90.2408,0.0,90.2409,500.0},
  805. {8650,-3335.107422,-68.478493,43.166122,0.0,90.2408,0.0,500.0},
  806. {8650,-3335.119385,-37.990810,43.139938,0.0,89.3814,0.0,500.0},
  807. {8650,-3335.206543,-98.914986,43.159573,0.0,90.2409,0.0,500.0},
  808. {8650,-3334.983643,-68.564163,73.082817,0.0,90.2409,0.0,500.0},
  809. {8650,-3334.996582,-38.235031,73.063095,0.0,89.3814,0.0,500.0},
  810. {8650,-3334.999268,-98.828804,73.072083,0.0,90.2409,0.0,500.0},
  811. {8650,-3334.876221,-69.605171,102.888458,0.0,90.2408,0.0,500.0},
  812. {8650,-3334.886475,-39.319431,102.833641,0.0,88.5220,0.0,500.0},
  813. {8650,-3334.896973,-97.869446,102.880653,0.0,90.2409,0.0,500.0},
  814. {8650,-3334.805420,-68.557518,121.821678,0.0,91.1003,0.0,500.0},
  815. {8650,-3334.817139,-38.131989,121.795761,0.0,90.2409,0.0,500.0},
  816. {8650,-3334.822021,-98.853897,121.798553,0.0,90.2409,0.0,500.0},
  817. {8650,-3360.036377,-23.909058,43.149548,0.0,90.2409,90.2409,500.0},
  818. {8650,-3360.229980,-23.886604,73.084305,0.0,89.3814,90.2409,500.0},
  819. {8650,-3360.062988,-23.757610,102.864998,0.0,90.2409,90.2409,500.0},
  820. {8650,-3360.339844,-23.733822,121.800697,0.0,90.2409,90.2409,500.0},
  821. {8650,-3335.212402,-68.497108,13.200163,0.0,90.2409,0.0,500.0},
  822. {8650,-3335.200684,-38.019485,13.157665,0.0,88.5220,0.0,500.0},
  823. {8650,-3335.224609,-98.701668,13.210487,0.0,90.2409,0.0,500.0},
  824. {8650,-3360.447754,-24.024593,13.158604,0.0,88.5220,90.2409,500.0},
  825. {8650,-3359.998535,-115.439560,13.230076,0.0,91.1003,269.7591,500.0},
  826. {8650,-3359.877441,-115.469505,43.166649,0.0,90.1370,269.7592,500.0},
  827. {8650,-3359.851807,-115.516258,73.019081,0.0,90.2409,269.7592,500.0},
  828. {8650,-3360.144775,-115.651146,102.894806,0.0,90.2409,269.7591,500.0},
  829. {8650,-3360.259033,-115.718796,121.787933,0.0,90.2409,269.7591,500.0},
  830. {8650,-3385.081299,-70.521507,13.187513,0.0,269.7591,0.0,500.0},
  831. {8650,-3385.082031,-40.759575,13.182783,0.0,269.7591,0.0,500.0},
  832. {8650,-3385.080078,-100.801544,13.184799,0.0,269.7591,0.0,500.0},
  833. {8650,-3385.182861,-70.230614,28.829557,90.2409,270.6186,0.0,500.0},
  834. {8650,-3385.299072,-70.368668,59.327118,90.2409,269.7591,0.0,500.0},
  835. {8650,-3385.367920,-70.272606,89.828140,89.3814,269.7591,0.0,500.0},
  836. {8650,-3385.431885,-70.248520,106.905556,90.2409,0.0,269.7591,500.0},
  837. {8650,-3385.178711,-70.710304,43.121929,0.0,269.7592,0.0,500.0},
  838. {8650,-3385.173096,-101.113121,43.116497,0.0,269.7591,0.0,500.0},
  839. {8650,-3385.191406,-40.225456,43.112980,0.0,269.7591,0.0,500.0},
  840. {8650,-3385.314941,-70.354469,73.002502,0.0,269.7591,0.0,500.0},
  841. {8650,-3385.290771,-100.554848,73.009285,0.0,269.7591,0.0,500.0},
  842. {8650,-3385.307373,-39.909523,73.012489,0.0,268.8997,0.0,500.0},
  843. {8650,-3385.429199,-70.561081,103.030464,0.0,269.7591,0.0,500.0},
  844. {8650,-3385.424805,-100.979088,103.036758,0.0,269.7591,0.0,500.0},
  845. {8650,-3385.422607,-40.153633,103.027588,0.0,269.7591,0.0,500.0},
  846. {8650,-3385.501709,-69.932907,121.761307,0.0,269.7591,0.0,500.0},
  847. {8650,-3385.490479,-100.385262,121.768227,0.0,269.7591,0.0,500.0},
  848. {8650,-3385.503418,-39.518150,121.760826,0.0,269.7591,0.0,500.0},
  849. {3095,-3334.028809,-64.003555,17.693148,0.0,270.6186,0.0,500.0},
  850. {3095,-3334.029785,-73.015350,17.699146,0.0,270.6186,0.0,500.0},
  851. {3095,-3333.923096,-63.997032,26.663868,0.0,270.6186,0.0,500.0},
  852. {3095,-3333.910645,-73.006996,26.691315,0.0,270.6186,0.0,500.0},
  853. {8550,-3373.924316,-69.768341,126.478760,0.0,0.0,0.0,500.0},
  854. {9339,-3333.990479,-68.447639,31.844196,179.6224,0.0,0.0,500.0},
  855. {9339,-3333.992676,-77.761696,18.147102,269.7591,0.0,0.0,500.0},
  856. {9339,-3334.010498,-59.250862,18.033045,90.2409,0.0,0.0,500.0},
  857. {9339,-3334.603027,-68.502769,18.075233,90.2409,0.0,90.2409,500.0},
  858. {624,-3318.698242,-35.994278,8.495405,0.0,0.0,0.0,500.0},
  859. {624,-3327.759033,-131.298782,10.013206,0.0,0.0,30.0803,500.0},
  860. {5706,-3332.325195,-66.863312,9.467028,0.0,4.2972,180.4818,500.0},
  861. {1437,-3323.992188,-53.890480,10.302261,329.0603,0.0,179.5182,500.0},
  862. {1437,-3327.965088,-83.198250,9.969652,329.0603,0.0,0.0,500.0},
  863.  
  864. //Karting
  865. {2909, 2884.5017, 1028.8301, 13.7818, 0.0000, 0.0000, 0.0000, 200.0},
  866. {2909, 2888.9287, 1024.7074, 13.7818, 0.0000, 0.0000, 269.8631, 200.0},
  867. {2909, 2893.3450, 1028.8293, 13.7818, 0.0000, 0.0000, 0.0000, 200.0},
  868. {2909, 2893.3491, 1037.1182, 13.7819, 0.0000, 0.0000, 0.0000, 200.0},
  869. {2909, 2893.3704, 1045.3856, 13.7839, 0.0000, 0.0000, 0.0000, 200.0},
  870. {2909, 2884.5076, 1037.1141, 13.7819, 0.0000, 0.0000, 0.0000, 200.0},
  871. {2909, 2884.5220, 1045.3904, 13.7839, 0.0000, 0.0000, 0.0000, 200.0},
  872. {1491, 2884.5759, 1049.5861, 13.9906, 0.0000, 90.2408, 30.9397, 200.0},
  873. {1491, 2888.8882, 1049.5874, 13.9906, 0.0000, 90.2409, 147.7191, 200.0},
  874. {1491, 2893.3289, 1049.6006, 13.9905, 0.0000, 90.2409, 151.2609, 200.0},
  875. {1491, 2888.8860, 1049.5825, 13.9906, 0.0000, 90.2409, 28.3614, 200.0},
  876. {2909, 2888.8801, 1045.3650, 13.7839, 0.0000, 0.0000, 0.0000, 200.0},
  877. {2909, 2888.8865, 1037.1001, 13.7819, 0.0000, 0.0000, 0.0000, 200.0},
  878. {3080, 2886.4951, 1054.8181, 10.3486, 0.0000, 0.0000, 179.6225, 200.0},
  879. {3080, 2891.2847, 1054.8195, 10.3486, 0.0000, 0.0000, 180.4819, 200.0},
  880. {3080, 2889.1130, 1054.8007, 10.3485, 0.0000, 0.0000, 180.4818, 200.0},
  881. {2909, 2884.5310, 1053.1841, 12.5530, 341.9518, 0.0000, 0.0000, 200.0},
  882. {2909, 2884.5432, 1061.0502, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  883. {2909, 2893.3528, 1061.0485, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  884. {2909, 2893.3655, 1053.1760, 12.5546, 341.9518, 0.0000, 0.0000, 200.0},
  885. {3080, 2886.5708, 1065.6006, 8.5486, 0.0000, 0.0000, 0.0000, 200.0},
  886. {3080, 2891.3696, 1065.6045, 8.5486, 0.0000, 0.0000, 0.0000, 200.0},
  887. {3080, 2888.9412, 1065.5931, 8.5486, 0.0000, 0.0000, 0.0000, 200.0},
  888. {1217, 2892.4375, 1070.0310, 10.3198, 0.0000, 0.0000, 12.8916, 200.0},
  889. {1217, 2889.3884, 1070.0037, 10.3198, 0.0000, 0.0000, 222.4901, 200.0},
  890. {1217, 2885.3848, 1069.9728, 10.3198, 0.0000, 0.0000, 278.3535, 200.0},
  891. {1217, 2887.9336, 1069.6276, 10.3198, 0.0000, 0.0000, 51.5662, 200.0},
  892. {1217, 2886.6877, 1069.8787, 10.3198, 0.0000, 0.0000, 0.0000, 200.0},
  893. {1217, 2891.0466, 1069.8048, 10.3198, 0.0000, 0.0000, 291.2451, 200.0},
  894. {2909, 2884.5364, 1069.3280, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  895. {2909, 2893.3660, 1069.3159, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  896. {2909, 2889.2231, 1081.7196, 11.2048, 0.0000, 0.0000, 90.2409, 200.0},
  897. {2909, 2880.9338, 1081.7228, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  898. {2909, 2876.8176, 1077.5575, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  899. {2909, 2876.8091, 1069.2964, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  900. {2909, 2876.8074, 1061.0154, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  901. {2909, 2884.5115, 1028.8246, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  902. {2909, 2884.5037, 1037.1115, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  903. {2909, 2884.5120, 1045.3889, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  904. {2909, 2884.4993, 1053.6858, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  905. {3461, 2888.8733, 1049.5001, 14.0525, 0.0000, 0.0000, 0.0000, 200.0},
  906. {3461, 2893.3801, 1049.5342, 14.0525, 0.0000, 0.0000, 0.0000, 200.0},
  907. {3461, 2884.5110, 1049.5164, 14.0525, 0.0000, 0.0000, 0.0000, 200.0},
  908. {1225, 2877.8945, 1068.3608, 10.3042, 0.0000, 0.0000, 321.3253, 200.0},
  909. {1225, 2882.3723, 1069.1385, 10.3042, 0.0000, 0.0000, 8.5944, 200.0},
  910. {1225, 2880.5046, 1060.7450, 10.3042, 0.0000, 0.0000, 218.1929, 200.0},
  911. {1225, 2883.3623, 1051.2916, 10.3042, 0.0000, 0.0000, 291.2451, 200.0},
  912. {1225, 2878.7051, 1054.2269, 10.3042, 0.0000, 0.0000, 51.5662, 200.0},
  913. {2909, 2876.8169, 1052.7474, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  914. {2909, 2876.8276, 1044.4824, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  915. {2909, 2876.8306, 1036.2246, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  916. {2909, 2880.3569, 1024.7225, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  917. {2909, 2872.0957, 1024.7788, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  918. {1225, 2877.3721, 1045.3153, 10.3042, 0.0000, 0.0000, 0.0000, 200.0},
  919. {1225, 2880.7781, 1043.2640, 10.3042, 0.0000, 0.0000, 0.0000, 200.0},
  920. {1225, 2877.6584, 1036.2852, 10.3042, 0.0000, 0.0000, 0.0000, 200.0},
  921. {1225, 2883.8408, 1033.2797, 10.3042, 0.0000, 0.0000, 0.0000, 200.0},
  922. {2909, 2872.6890, 1032.1010, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  923. {2939, 2868.5271, 1029.1951, 9.8938, 0.0000, 0.0000, 89.3814, 200.0},
  924. {2939, 2868.5107, 1027.7402, 9.8938, 0.0000, 0.0000, 89.3814, 200.0},
  925. {3095, 2858.3286, 1027.7070, 11.8099, 0.0000, 0.0000, 0.0000, 200.0},
  926. {2909, 2865.4712, 1032.1345, 12.1298, 336.7952, 0.0000, 269.7591, 200.0},
  927. {2909, 2857.9568, 1032.1315, 13.6717, 0.0000, 0.0000, 90.2409, 200.0},
  928. {2909, 2857.9438, 1024.8264, 13.6717, 0.0000, 0.0000, 90.2409, 200.0},
  929. {2909, 2865.4465, 1024.8652, 12.1357, 336.7952, 0.0000, 269.7591, 200.0},
  930. {2909, 2853.8225, 1028.4366, 11.0357, 0.0000, 0.0000, 0.0000, 200.0},
  931. {2909, 2849.6794, 1024.2927, 11.2107, 0.0000, 0.0000, 90.2409, 200.0},
  932. {2909, 2849.6855, 1032.5338, 11.2107, 0.0000, 0.0000, 270.6186, 200.0},
  933. {2909, 2841.3879, 1024.2839, 11.2107, 0.0000, 0.0000, 269.7591, 200.0},
  934. {2909, 2872.7009, 1048.8940, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  935. {2939, 2868.5486, 1046.0089, 9.8938, 0.0000, 0.0000, 90.2409, 200.0},
  936. {2909, 2853.8298, 1036.7133, 11.0357, 0.0000, 0.0000, 0.0000, 200.0},
  937. {2909, 2853.8289, 1044.9741, 11.0299, 0.0000, 0.0000, 0.0000, 200.0},
  938. {3095, 2858.3806, 1044.9969, 11.7951, 0.0000, 0.0000, 0.0000, 200.0},
  939. {2939, 2868.5862, 1043.8041, 9.8938, 0.0000, 0.0000, 90.2409, 200.0},
  940. {2909, 2837.2554, 1028.4486, 11.2107, 0.0000, 0.0000, 0.0000, 200.0},
  941. {2909, 2837.2510, 1036.7064, 11.2107, 0.0000, 0.0000, 0.0000, 200.0},
  942. {2909, 2862.8418, 1045.0214, 11.0299, 0.0000, 0.0000, 0.0000, 200.0},
  943. {2939, 2848.0972, 1046.2426, 9.8938, 0.0000, 0.0000, 269.7591, 200.0},
  944. {2939, 2848.0681, 1043.7930, 9.8747, 0.0000, 0.0000, 269.7591, 200.0},
  945. {2909, 2845.5608, 1036.6277, 11.2107, 0.0000, 0.0000, 0.0000, 200.0},
  946. {2909, 2837.2627, 1045.0043, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  947. {2909, 2841.4050, 1049.1689, 11.2048, 0.0000, 0.0000, 90.2409, 200.0},
  948. {2909, 2858.3535, 1040.9165, 13.6569, 0.0000, 0.0000, 90.2409, 200.0},
  949. {2909, 2858.3303, 1049.0723, 13.6569, 0.0000, 0.0000, 269.7591, 200.0},
  950. {2909, 2849.6418, 1049.1598, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  951. {2909, 2866.8450, 1048.9697, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  952. {2909, 2849.8840, 1040.8312, 11.2107, 0.0000, 0.0000, 90.2409, 200.0},
  953. {2909, 2866.9111, 1040.8424, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  954. {2909, 2865.9287, 1040.8843, 12.1448, 22.3454, 0.0000, 89.3814, 200.0},
  955. {2909, 2865.8835, 1048.9910, 12.0990, 336.7952, 0.0000, 268.8997, 200.0},
  956. {2909, 2850.8064, 1040.8818, 12.0378, 24.0642, 0.0000, 270.6186, 200.0},
  957. {2909, 2850.7820, 1049.1042, 12.1067, 23.2048, 0.0000, 269.7591, 200.0},
  958. {2909, 2858.1765, 1032.1420, 11.2107, 0.0000, 0.0000, 90.2409, 200.0},
  959. {2909, 2864.4475, 1032.0927, 11.2048, 0.0000, 0.0000, 270.6186, 200.0},
  960. {1217, 2856.2883, 1028.5282, 12.7867, 0.0000, 0.0000, 170.9239, 200.0},
  961. {1217, 2869.8069, 1040.1818, 10.3198, 0.0000, 0.0000, 0.0000, 200.0},
  962. {2909, 2853.8167, 1053.2614, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  963. {2909, 2857.9668, 1057.3905, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  964. {2909, 2864.2068, 1057.3766, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  965. {2909, 2868.3225, 1061.5153, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  966. {3256, 2849.7556, 1036.8954, 10.1670, 0.0000, 0.0000, 0.0000, 200.0},
  967. {2909, 2868.3098, 1069.7710, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  968. {2909, 2868.3254, 1078.0381, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  969. {2909, 2868.3232, 1086.2859, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  970. {3080, 2870.4514, 1068.2368, 9.6486, 350.5462, 0.0000, 359.1406, 200.0},
  971. {2909, 2872.4763, 1090.3738, 11.1048, 0.0000, 0.0000, 89.3814, 200.0},
  972. {2909, 2880.7551, 1090.2842, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  973. {2909, 2893.3621, 1085.8793, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  974. {2909, 2893.3691, 1094.1418, 11.2048, 0.0000, 0.0000, 0.0000, 200.0},
  975. {2909, 2889.2346, 1098.3163, 11.2048, 0.0000, 0.0000, 89.3814, 200.0},
  976. {3374, 2870.4187, 1076.4103, 10.0174, 0.0000, 0.0000, 0.0000, 200.0},
  977. {3095, 2872.4148, 1094.8167, 11.8951, 0.0000, 0.0000, 0.0000, 200.0},
  978. {2939, 2882.5164, 1093.1943, 9.8938, 0.0000, 0.0000, 90.2409, 200.0},
  979. {2939, 2882.5149, 1095.5157, 9.8938, 0.0000, 0.0000, 90.2409, 200.0},
  980. {2909, 2880.9607, 1098.4742, 11.2048, 0.0000, 0.0000, 88.5220, 200.0},
  981. {3095, 2872.4275, 1086.0360, 11.8971, 0.0000, 0.0000, 0.0000, 200.0},
  982. {3095, 2881.2551, 1085.9833, 11.8991, 0.0000, 0.0000, 0.0000, 200.0},
  983. {3095, 2889.0559, 1085.9637, 11.9011, 0.0000, 0.0000, 0.0000, 200.0},
  984. {2909, 2872.4629, 1098.6207, 13.7569, 0.0000, 0.0000, 269.7591, 200.0},
  985. {2909, 2880.0408, 1098.5088, 12.2038, 23.2048, 0.0000, 88.5220, 200.0},
  986. {2909, 2868.3184, 1094.3593, 13.7569, 0.0000, 0.0000, 0.0000, 200.0},
  987. {2909, 2868.2898, 1085.9590, 13.7589, 0.0000, 0.0000, 0.0000, 200.0},
  988. {2909, 2872.4717, 1081.7109, 13.7589, 0.0000, 0.0000, 90.2409, 200.0},
  989. {2909, 2880.8772, 1081.7295, 13.7609, 0.0000, 0.0000, 269.7591, 200.0},
  990. {2909, 2889.2188, 1081.7345, 13.7629, 0.0000, 0.0000, 90.2409, 200.0},
  991. {2909, 2889.2302, 1090.2524, 13.7629, 0.0000, 0.0000, 90.2409, 200.0},
  992. {2909, 2880.9595, 1090.2815, 13.7609, 0.0000, 0.0000, 269.7591, 200.0},
  993. {5153, 2891.1799, 1082.7693, 12.6547, 0.0000, 14.6104, 0.0000, 200.0},
  994. {5153, 2891.1990, 1084.8490, 12.6547, 0.0000, 14.6104, 0.0000, 200.0},
  995. {2909, 2897.4761, 1090.2014, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  996. {2909, 2897.5210, 1081.7577, 11.2048, 0.0000, 0.0000, 90.2409, 200.0},
  997. {2909, 2897.5088, 1073.4324, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  998. {2909, 2905.7896, 1081.7821, 11.2101, 0.0000, 0.0000, 90.2409, 200.0},
  999. {2909, 2905.7544, 1090.1080, 11.2101, 0.0000, 0.0000, 269.0037, 200.0},
  1000. {2909, 2913.9717, 1090.0620, 11.2101, 0.0000, 0.0000, 90.2409, 200.0},
  1001. {2909, 2918.0972, 1085.9218, 11.2101, 0.0000, 0.0000, 0.0000, 200.0},
  1002. {2909, 2918.1011, 1077.6360, 11.2101, 0.0000, 0.0000, 0.0000, 200.0},
  1003. {2909, 2913.9409, 1073.5354, 11.2048, 0.0000, 0.0000, 269.7591, 200.0},
  1004. {2909, 2905.7515, 1073.4701, 11.2048, 0.0000, 0.0000, 91.1003, 200.0},
  1005. {1696, 2895.7463, 1075.8439, 10.9057, 0.0000, 0.0000, 90.2409, 200.0},
  1006. {1696, 2895.7405, 1078.7578, 10.9057, 0.0000, 0.0000, 90.2409, 200.0},
  1007. {620, 2867.8477, 1080.1908, 9.8906, 0.0000, 0.0000, 0.0000, 200.0},
  1008. {620, 2893.4111, 1046.8374, 6.3156, 0.0000, 0.0000, 209.5985, 200.0},
  1009. {620, 2836.8748, 1027.7126, 9.9715, 0.0000, 0.0000, 0.0000, 200.0},
  1010. {624, 2903.9597, 1090.9803, 9.1931, 0.0000, 0.0000, 0.0000, 200.0},
  1011. {624, 2853.0708, 1049.9471, 9.2129, 0.0000, 0.0000, 0.0000, 200.0},
  1012.  
  1013. //DamStunt
  1014. {4867, -582.4526, 2247.5225, 41.4960, 0.0000, 0.0000, 0.0000, 300.0},
  1015. {4865, -659.9562, 2107.8894, 41.5109, 0.0000, 0.0000, 0.0000, 300.0},
  1016. {4867, -780.9871, 2170.2981, 41.5079, 0.0000, 0.0000, 269.7591, 300.0},
  1017. {8038, -832.0695, 2057.2632, 61.4982, 0.0000, 0.0000, 269.7591, 300.0},
  1018. {18450, -705.0845, 2202.9580, 54.9540, 0.0000, 22.3454, 269.7591, 300.0},
  1019. {8555, -699.1761, 2259.7065, 47.1499, 0.0000, 0.0000, 0.0000, 300.0},
  1020. {3279, -730.1766, 2245.3948, 70.4458, 0.0000, 0.0000, 0.0000, 300.0},
  1021. {18256, -709.7196, 2161.9600, 36.5149, 0.8594, 9.4538, 274.0563, 300.0},
  1022. {18256, -710.1022, 2094.4033, 43.1650, 358.2811, 340.2330, 274.0563, 300.0},
  1023. {18450, -620.0211, 2260.7410, 61.8142, 0.0000, 12.0321, 0.0000, 300.0},
  1024. {18450, -541.9662, 2260.7456, 45.1730, 0.0000, 12.0321, 0.0000, 300.0},
  1025. {1632, -680.7012, 2168.8872, 42.5860, 0.0000, 0.0000, 89.3814, 300.0},
  1026. {1632, -727.7003, 2170.3970, 42.6110, 0.0000, 358.2811, 268.8997, 300.0},
  1027. {13592, -705.3191, 2229.2222, 51.2666, 0.0000, 0.0000, 7.7349, 300.0},
  1028. {13666, -679.8284, 2261.2554, 75.3505, 0.0000, 0.0000, 281.7913, 300.0},
  1029. {3865, -668.4479, 2244.9211, 72.3041, 358.2811, 0.0000, 91.1003, 300.0},
  1030. {3865, -659.4134, 2244.7156, 72.0292, 5.1566, 0.0001, 87.6625, 300.0},
  1031. {3865, -651.0805, 2243.2866, 70.8401, 11.1727, 0.0000, 73.9116, 300.0},
  1032. {3865, -643.3817, 2239.9360, 68.4163, 20.6265, 0.0000, 60.1606, 300.0},
  1033. {3865, -637.0701, 2235.1555, 64.6603, 30.0803, 0.0000, 46.4096, 300.0},
  1034. {3865, -632.5502, 2229.7759, 60.2030, 34.3775, 0.0000, 34.3775, 300.0},
  1035. {3865, -629.2453, 2223.4275, 55.5165, 31.7992, 0.0000, 22.3454, 300.0},
  1036. {3865, -627.4100, 2216.2451, 51.5455, 24.0642, 0.0000, 7.7349, 300.0},
  1037. {3865, -627.1786, 2208.1804, 48.2880, 19.7670, 0.0000, 356.5623, 300.0},
  1038. {3865, -628.2537, 2199.8921, 45.6321, 15.4699, 0.0000, 349.6868, 300.0},
  1039. {3865, -630.1809, 2191.7913, 43.7448, 9.4538, 0.0000, 344.5301, 300.0},
  1040. {1290, -628.4858, 2221.2732, 47.5195, 0.0000, 0.0000, 21.4859, 300.0},
  1041. {16080, -556.0839, 2160.2407, 24.8442, 0.0000, 0.0000, 54.1445, 300.0},
  1042. {7916, -756.2578, 2014.0293, 2.4710, 0.0000, 0.0000, 7.7349, 300.0},
  1043. {16776, -544.7667, 2206.2051, 43.0468, 0.0000, 0.0000, 0.0000, 300.0},
  1044. {620, -660.5453, 2222.8308, 41.5132, 0.0000, 0.0000, 0.0000, 300.0},
  1045. {620, -723.2378, 2161.2505, 41.5030, 0.0000, 0.0000, 0.0000, 300.0},
  1046. {620, -636.3702, 2139.2410, 41.5030, 0.0000, 0.0000, 0.0000, 300.0},
  1047. {620, -585.9443, 2287.7935, 41.4382, 0.0000, 0.0000, 0.0000, 300.0},
  1048. {4832, -559.7130, 2073.8320, 81.8302, 0.0000, 0.0000, 0.0000, 300.0},
  1049. {4874, -852.3748, 2156.6243, 45.1471, 0.0000, 0.0000, 89.3814, 300.0},
  1050. {5006, -793.4394, 2202.6047, 47.2763, 0.0000, 0.0000, 267.1808, 300.0},
  1051. {1660, -565.3590, 2161.7271, 41.1308, 0.0000, 0.0000, 91.1003, 300.0},
  1052. {3269, -615.2668, 2107.5137, 41.3839, 0.0000, 0.0000, 155.5581, 300.0},
  1053. {3363, -746.6365, 2140.5112, 41.4712, 0.0000, 0.0000, 248.2732, 300.0},
  1054. {3364, -605.5424, 2225.6978, 41.4270, 0.0000, 0.0000, 342.8113, 300.0},
  1055. {3625, -550.1803, 2293.9431, 44.0062, 0.0000, 0.0000, 176.1846, 300.0},
  1056. {3664, -864.8555, 2099.0017, 48.3117, 0.0000, 0.0000, 89.3814, 300.0},
  1057. {3665, -808.2457, 2140.1743, 43.4925, 0.0000, 0.0000, 0.0000, 300.0},
  1058. {13590, -785.3847, 2186.8184, 42.7367, 0.0000, 0.0000, 38.6747, 300.0},
  1059. {13604, -552.2203, 2131.6455, 43.1439, 0.0000, 0.0000, 0.0000, 300.0},
  1060. {13636, -620.2708, 2147.9944, 43.6413, 0.0000, 0.0000, 180.4818, 300.0},
  1061. {13643, -628.2244, 2159.5530, 42.8069, 0.0000, 0.0000, 0.0000, 300.0},
  1062. {13641, -706.3238, 2082.4932, 53.5078, 0.0000, 329.0603, 268.8997, 300.0},
  1063. {18451, -821.9941, 2174.2791, 41.9953, 0.0000, 0.0000, 75.6304, 300.0},
  1064. {13666, -586.3330, 2183.8511, 46.4162, 0.0000, 0.0000, 278.3535, 300.0},
  1065. {13666, -592.2305, 2179.3420, 46.4162, 0.0000, 0.0000, 281.7913, 300.0},
  1066. {624, -592.8458, 2186.1455, 40.8754, 0.0000, 0.0000, 0.0000, 300.0},
  1067. {16114, -506.7751, 2149.0786, 40.3651, 0.0000, 0.0000, 146.1043, 300.0},
  1068. {16118, -748.8741, 2097.8933, 36.0904, 0.0000, 0.0000, 266.3214, 300.0},
  1069. {16121, -578.2364, 2334.9387, 41.2778, 0.0000, 0.0000, 265.4620, 300.0},
  1070. {1632, -629.6500, 2217.1541, 42.5711, 0.0000, 0.0000, 85.9437, 300.0},
  1071. {1632, -635.8858, 2217.6123, 47.5312, 28.3614, 0.0000, 85.9437, 300.0},
  1072. {1632, -638.8213, 2217.8225, 54.8841, 60.1606, 0.0000, 85.9437, 300.0},
  1073. {1632, -637.7125, 2217.7295, 63.2001, 87.6625, 0.0000, 85.9437, 300.0},
  1074. {1632, -847.5419, 2167.1335, 42.5830, 0.0000, 0.0000, 91.1003, 300.0},
  1075. {1632, -853.4562, 2166.7490, 47.2823, 28.3614, 354.8434, 93.6786, 300.0},
  1076. {1632, -856.3027, 2165.8037, 53.8196, 56.7228, 340.2330, 106.5702, 300.0},
  1077. {1632, -716.0154, 2225.2312, 42.5830, 0.0000, 0.0000, 89.3814, 300.0},
  1078. {1632, -720.3453, 2225.2710, 45.4840, 22.3454, 0.0000, 89.3814, 300.0},
  1079. {1632, -677.1642, 2099.4048, 42.8110, 0.0000, 0.0000, 180.4818, 300.0},
  1080. {1632, -677.1241, 2093.5515, 47.1653, 26.6425, 0.0000, 180.4818, 300.0},
  1081. {1632, -598.8895, 2050.1885, 60.2876, 0.0000, 0.0000, 39.5341, 300.0},
  1082. {1632, -828.5140, 2041.6466, 60.2616, 0.0000, 0.0000, 331.6386, 300.0},
  1083. {620, -818.6429, 2100.4426, 41.5250, 0.0000, 0.0000, 0.0000, 300.0},
  1084. {1696, -802.6118, 2102.2151, 42.5431, 0.0000, 0.0000, 299.8394, 300.0},
  1085. {1696, -542.3982, 2178.8674, 42.4931, 0.0000, 0.0000, 278.3535, 300.0},
  1086. {3425, -586.4080, 2190.4966, 52.7288, 0.0000, 0.0000, 124.6183, 300.0},
  1087. {3425, -773.2390, 2153.5369, 52.8538, 0.0000, 0.0000, 295.5422, 300.0},
  1088. {3864, -700.2843, 2264.8125, 76.5923, 0.0000, 0.0000, 89.3814, 300.0},
  1089. {7073, -652.5526, 2155.1953, 78.5106, 0.0000, 0.0000, 42.9718, 300.0},
  1090. {3374, -534.6607, 2179.6204, 43.0049, 0.0000, 0.0000, 8.5944, 300.0},
  1091. {18256, -700.9749, 2023.8988, 4.1531, 357.4217, 327.3414, 94.5380, 300.0},
  1092. {18256, -710.1724, 1997.3203, -2.4054, 0.8594, 12.0321, 274.0563, 300.0},
  1093. {18256, -710.6480, 1958.6846, -4.6454, 0.0000, 357.4217, 274.0563, 300.0},
  1094. {1655, -712.9157, 1936.9526, 5.1477, 0.0000, 0.0000, 177.0440, 300.0},
  1095. {1655, -706.4279, 1936.6488, 5.1593, 0.0000, 0.0000, 177.9035, 300.0},
  1096. {1655, -700.4106, 1936.4443, 5.1551, 0.0000, 0.0000, 177.9035, 300.0},
  1097. {1632, -652.0873, 2128.3281, 42.5610, 0.0000, 0.0000, 269.7591, 300.0},
  1098. {1632, -645.8295, 2128.2971, 47.5877, 28.3614, 0.0000, 269.7591, 300.0},
  1099. {1632, -642.6270, 2128.4182, 54.9873, 55.8634, 0.0000, 274.0563, 300.0},
  1100. {1632, -643.0411, 2128.4312, 63.1931, 82.5059, 0.0000, 269.7591, 300.0},
  1101. {1632, -560.4543, 2206.3364, 42.5711, 0.0000, 0.0000, 269.7591, 300.0},
  1102. {1632, -554.4139, 2206.3191, 46.3107, 17.1887, 0.0000, 269.7591, 300.0},
  1103. {1632, -593.3602, 2268.3940, 42.5711, 0.0000, 0.0000, 0.0000, 300.0},
  1104. {1632, -593.3712, 2273.1973, 45.8751, 24.9237, 0.0000, 0.0000, 300.0},
  1105. {1632, -593.3803, 2276.7358, 52.4837, 53.2851, 0.0000, 0.0000, 300.0},
  1106. {1632, -593.3773, 2276.5396, 60.3588, 81.6465, 0.0000, 0.0000, 300.0},
  1107. {1632, -593.3792, 2272.8298, 66.6579, 114.3051, 0.0000, 0.0000, 300.0},
  1108. {1632, -734.0747, 2251.2820, 71.5953, 0.0000, 0.0000, 107.4296, 300.0},
  1109. {1632, -671.4675, 2250.2244, 71.5203, 0.0000, 0.0000, 250.8515, 300.0},
  1110. {11489, -487.1819, 2185.3076, 41.4932, 0.0000, 0.0000, 131.4939, 300.0},
  1111. {620, -539.3313, 2251.7312, 41.5632, 0.0000, 0.0000, 0.0000, 300.0},
  1112. {620, -479.6769, 2177.2661, 41.5632, 0.0000, 0.0000, 0.0000, 300.0},
  1113. {620, -603.4106, 2233.2515, 41.5632, 0.0000, 0.0000, 0.0000, 300.0},
  1114. {620, -578.4973, 2109.8259, 41.5781, 0.0000, 0.0000, 0.0000, 300.0},
  1115. {620, -621.3944, 2106.6270, 41.5781, 0.0000, 0.0000, 0.0000, 300.0},
  1116. {624, -647.0639, 2266.6230, 40.8605, 0.0000, 0.0000, 0.0000, 300.0},
  1117. {624, -730.3687, 2202.1899, 40.8724, 0.0000, 0.0000, 0.0000, 300.0},
  1118. {624, -770.3195, 2142.2798, 40.8754, 0.0000, 0.0000, 0.0000, 300.0},
  1119. {624, -831.3646, 2133.1716, 40.8724, 0.0000, 0.0000, 0.0000, 300.0},
  1120. {624, -860.8040, 2073.3655, 40.8724, 0.0000, 0.0000, 0.0000, 300.0},
  1121. {624, -868.8935, 2170.9973, 40.8724, 0.0000, 0.0000, 0.0000, 300.0},
  1122. {624, -861.4731, 2257.8254, 40.8724, 0.0000, 0.0000, 0.0000, 300.0},
  1123. {624, -524.8528, 2300.5315, 41.4960, 0.0000, 0.0000, 0.0000, 300.0},
  1124. {622, -689.9858, 2197.0588, 41.7069, 18.0482, 358.2811, 321.3253, 300.0},
  1125. {622, -741.3587, 2110.5615, 41.7069, 18.0482, 358.2811, 81.6465, 300.0},
  1126.  
  1127. //WayToDeath
  1128. {18450,964.423462,2787.848389,1035.932495,0.0,309.2933,0.0,150.0},
  1129. {1634,985.305420,2782.187500,1067.810547,177.9036,0.0,269.7591,150.0},
  1130. {1634,984.444458,2782.182373,1065.933472,200.2491,0.0,269.7592,150.0},
  1131. {1634,984.495850,2782.169434,1065.938843,215.7187,0.0,269.7591,150.0},
  1132. {1634,985.309143,2785.985107,1067.810791,177.9035,0.0,269.8630,150.0},
  1133. {1634,985.316040,2789.679443,1067.810303,177.9035,0.0,269.8630,150.0},
  1134. {1634,985.319092,2793.530762,1067.810791,177.9035,0.0,269.7591,150.0},
  1135. {1634,984.447266,2785.845215,1065.910889,200.2489,0.0,269.7591,150.0},
  1136. {1634,984.490723,2789.653809,1065.930054,200.2491,0.0,269.7591,150.0},
  1137. {1634,984.514832,2793.526123,1065.933838,200.2490,0.0,269.7591,150.0},
  1138. {1634,984.502991,2786.291748,1065.961670,215.7186,0.0,270.6186,150.0},
  1139. {1634,984.480591,2789.924805,1065.963135,215.7187,0.0,269.7591,150.0},
  1140. {1634,984.505981,2793.535156,1065.987183,215.7187,0.0,269.7591,150.0},
  1141. {2395,990.347839,2790.025879,1068.715088,0.0,0.0,90.2409,150.0},
  1142. {2395,990.355103,2787.110107,1068.713867,0.0,0.0,90.2409,150.0},
  1143. {2395,990.363403,2780.637939,1068.713867,0.0,0.0,90.2409,150.0},
  1144. {2395,990.359131,2792.309814,1068.714600,0.0,0.0,90.2409,150.0},
  1145. {2395,990.369263,2783.707520,1068.714111,0.0,0.0,90.2409,150.0},
  1146. {2395,987.326233,2795.508057,1067.115845,0.0,0.0,0.0,150.0},
  1147. {2395,991.059692,2795.520264,1067.115845,0.0,0.0,0.0,150.0},
  1148. {2395,994.783813,2795.512451,1067.115845,0.0,0.0,0.0,150.0},
  1149. {2395,998.513000,2795.532959,1067.115845,0.0,0.0,0.0,150.0},
  1150. {2395,1002.246399,2795.524658,1067.115845,0.0,0.0,0.0,150.0},
  1151. {2395,1005.980774,2795.532959,1067.115845,0.0,0.0,0.0,150.0},
  1152. {2395,1009.695251,2795.525635,1067.115845,0.0,0.0,0.0,150.0},
  1153. {2395,1013.404846,2795.531494,1067.115845,0.0,0.0,0.0,150.0},
  1154. {2395,1017.134949,2795.521729,1067.115845,0.0,0.0,0.0,150.0},
  1155. {2395,1020.858521,2795.518555,1067.115845,0.0,0.0,0.0,150.0},
  1156. {2395,1024.572266,2795.519043,1067.115845,0.0,0.0,0.0,150.0},
  1157. {2395,1028.301392,2795.520996,1067.115845,0.0,0.0,0.0,150.0},
  1158. {2395,1032.023560,2795.532959,1067.115845,0.0,0.0,0.0,150.0},
  1159. {2395,1035.754883,2795.511719,1067.115845,0.0,0.0,0.0,150.0},
  1160. {2395,1039.466064,2795.523926,1067.115845,0.0,0.0,0.0,150.0},
  1161. {2395,1043.181763,2795.513672,1067.115845,0.0,0.0,0.0,150.0},
  1162. {2395,1046.913086,2795.520752,1067.115845,0.0,0.0,0.0,150.0},
  1163. {2395,1050.626465,2795.514404,1067.115845,0.0,0.0,0.0,150.0},
  1164. {2395,1054.334351,2795.532471,1067.115845,0.0,0.0,0.0,150.0},
  1165. {2395,1058.049072,2795.516602,1067.115845,0.0,0.0,0.0,150.0},
  1166. {2395,1061.776001,2795.523926,1067.115845,0.0,0.0,0.0,150.0},
  1167. {2395,1065.475830,2795.535156,1067.115845,0.0,0.0,0.0,150.0},
  1168. {2395,1066.253540,2795.516357,1067.115845,0.0,0.0,0.0,150.0},
  1169. {2395,985.291016,2795.510498,1064.589844,0.0,0.0,0.0,150.0},
  1170. {2395,984.013977,2795.515381,1062.761475,0.0,0.0,0.0,150.0},
  1171. {2395,989.274780,2795.532227,1068.841064,0.0,30.9397,0.0,150.0},
  1172. {2395,990.033203,2780.168701,1067.316040,0.0,0.0,180.4818,150.0},
  1173. {2395,993.764832,2780.185303,1067.115845,0.0,0.0,180.3776,150.0},
  1174. {2395,988.248901,2780.155273,1064.590332,0.0,0.0,180.4819,150.0},
  1175. {2395,986.971680,2780.147217,1062.755859,0.0,0.0,180.4818,150.0},
  1176. {2395,991.643921,2780.137695,1067.429565,0.0,329.0603,179.6222,150.0},
  1177. {2395,997.484924,2780.156494,1067.104980,0.0,0.0,179.6224,150.0},
  1178. {2395,1001.221375,2780.157471,1067.104980,0.0,0.0,179.6224,150.0},
  1179. {2395,1004.957458,2780.155762,1067.104980,0.0,0.0,179.6224,150.0},
  1180. {2395,1008.674255,2780.177979,1067.104980,0.0,0.0,180.4818,150.0},
  1181. {2395,1012.414551,2780.162842,1067.104980,0.0,0.0,179.6225,150.0},
  1182. {2395,1016.135803,2780.183350,1067.104980,0.0,0.0,180.4818,150.0},
  1183. {2395,1019.855225,2780.169434,1067.104980,0.0,0.0,179.6225,150.0},
  1184. {2395,1023.587585,2780.148438,1067.104980,0.0,0.0,179.6224,150.0},
  1185. {2395,1027.308960,2780.187988,1067.104980,0.0,0.0,180.4818,150.0},
  1186. {2395,1031.032959,2780.155762,1067.104980,0.0,0.0,179.6223,150.0},
  1187. {2395,1034.758911,2780.186768,1067.104980,0.0,0.0,180.4818,150.0},
  1188. {2395,1038.486816,2780.170166,1067.104980,0.0,0.0,179.6225,150.0},
  1189. {2395,1042.201904,2780.188477,1067.104980,0.0,0.0,180.4818,150.0},
  1190. {2395,1045.919556,2780.171875,1067.104980,0.0,0.0,179.6224,150.0},
  1191. {2395,1049.580933,2780.190918,1067.104980,0.0,0.0,180.4819,150.0},
  1192. {2395,1053.302368,2780.160156,1067.104980,0.0,0.0,179.6225,150.0},
  1193. {2395,1057.012939,2780.173584,1067.104980,0.0,0.0,180.4819,150.0},
  1194. {2395,1060.751465,2780.156006,1067.104980,0.0,0.0,179.6223,150.0},
  1195. {2395,1064.477905,2780.174072,1067.104980,0.0,0.0,180.4818,150.0},
  1196. {2395,1066.126343,2780.193604,1067.104980,0.0,0.0,180.4818,150.0},
  1197. {2395,1068.994995,2780.217041,1067.104980,0.0,0.0,180.4818,150.0},
  1198. {2395,1069.435059,2795.119629,1067.103149,0.0,0.0,269.7591,150.0},
  1199. {2395,1069.403564,2791.381348,1067.103149,0.0,0.0,269.7591,150.0},
  1200. {2395,1069.376709,2787.647949,1067.103149,0.0,0.0,269.7591,150.0},
  1201. {2395,1069.372559,2783.924561,1067.103149,0.0,0.0,269.7591,150.0},
  1202. {2395,1069.387939,2783.350098,1067.103149,0.0,0.0,269.7591,150.0},
  1203. {3524,990.853699,2780.961670,1068.490601,0.0,0.0,125.4778,150.0},
  1204. {3524,990.691406,2794.760742,1068.490356,0.0,0.0,55.0039,150.0},
  1205. {1217,992.020691,2794.600342,1067.751587,0.0,0.0,0.0,150.0},
  1206. {1217,1067.159790,2780.880859,1067.751587,0.0,0.0,235.3816,150.0},
  1207. {1217,1067.996460,2781.210693,1067.751587,0.0,0.0,47.2690,150.0},
  1208. {1229,991.381042,2780.658691,1068.889893,0.0,0.0,137.5099,150.0},
  1209. {2670,1060.633667,2792.082031,1067.220215,0.0,0.0,0.0,150.0},
  1210. {2671,1038.885132,2783.826172,1067.130737,0.0,0.0,0.0,150.0},
  1211. {2674,1011.998596,2788.757324,1067.149902,0.0,0.0,0.0,150.0},
  1212. {2676,998.364197,2783.020508,1067.206421,0.0,0.0,0.0,150.0},
  1213. {1323,963.424805,2795.490479,1038.506958,5.1566,308.4338,0.0,150.0},
  1214. {18450,938.958679,2787.842773,1007.924133,0.0,314.4499,0.0,150.0},
  1215. {18450,910.753174,2787.840332,982.230774,0.0,319.6065,0.0,150.0},
  1216. {18450,880.316101,2787.845215,959.352234,0.0,323.9037,0.0,150.0},
  1217. {18450,847.838501,2787.848145,938.665955,0.0,329.0603,0.0,150.0},
  1218. {18450,813.655334,2787.836914,921.144531,0.0,334.2169,0.0,150.0},
  1219. {18450,777.844360,2787.823242,906.795776,0.0,338.5141,0.0,150.0},
  1220. {18450,740.878723,2787.801270,895.182739,0.0,342.8113,0.0,150.0},
  1221. {18450,704.433533,2787.805420,886.836914,0.0,347.1084,0.0,150.0},
  1222. {18450,666.051575,2787.815674,880.973022,0.0,351.4056,0.0,150.0},
  1223. {18450,626.856079,2787.815918,877.965027,0.0,355.7028,0.0,150.0},
  1224. {18450,587.399109,2787.820068,877.913086,0.0,0.0,0.0,150.0},
  1225. {18450,547.710510,2787.818115,880.825012,0.0,4.2972,0.0,150.0},
  1226. {18450,508.310974,2787.790527,886.698425,0.0,8.5944,0.0,150.0},
  1227. {18450,956.174438,2787.857910,1026.114868,0.0,311.0121,0.0,150.0},
  1228. {18450,927.427429,2787.850342,996.738037,0.0,317.0282,0.0,150.0},
  1229. {18450,904.746887,2787.848145,977.508728,0.0,321.3253,0.0,150.0},
  1230. {18450,868.915894,2787.830078,951.543823,0.0,327.3414,0.0,150.0},
  1231. {18450,837.828003,2787.840576,933.122009,0.0,331.6386,0.0,150.0},
  1232. {18450,810.116516,2787.848877,919.786377,0.0,335.9358,0.0,150.0},
  1233. {18450,775.494690,2787.809082,906.168091,0.0,340.2330,0.0,150.0},
  1234. {18450,740.973083,2787.807373,895.564880,0.0,344.5301,0.0,150.0},
  1235. {18450,705.585815,2787.799316,887.321777,0.0,348.8273,0.0,150.0},
  1236. {18450,665.199524,2787.821777,881.084412,0.0,353.1245,0.0,150.0},
  1237. {18450,626.391418,2787.811768,878.142822,0.0,357.4217,0.0,150.0},
  1238. {18450,588.839355,2787.809814,878.049255,0.0,1.7189,0.0,150.0},
  1239. {18450,547.212830,2787.792969,881.099670,0.0,6.0161,0.0,150.0},
  1240. {18450,468.857483,2787.808838,894.527527,0.0,12.0321,0.0,150.0},
  1241. {18450,499.639008,2787.797119,888.353333,0.0,10.3132,0.0,150.0},
  1242. {18450,468.525482,2787.810791,893.600586,0.0,14.6104,0.0,150.0},
  1243. {18450,242.787155,2787.791992,860.207642,0.0,343.6707,0.0,150.0},
  1244. {1655,433.039886,2791.392334,902.896423,359.1406,0.0,90.2409,150.0},
  1245. {1655,433.062653,2784.116211,902.897034,359.1406,0.0,90.2409,150.0},
  1246. {1633,426.640808,2781.886230,906.195618,10.3132,0.0,90.2409,150.0},
  1247. {1633,426.586426,2785.964355,906.205505,10.3132,0.0,91.1003,150.0},
  1248. {1633,426.550537,2790.011230,906.217285,10.3132,0.0,90.2409,150.0},
  1249. {1633,426.545441,2793.748779,906.212524,10.3132,0.0,90.2409,150.0},
  1250. {18450,200.064911,2787.780273,851.087585,0.0,347.9679,0.0,150.0},
  1251. {18450,228.326340,2787.776123,857.149902,0.0,345.3896,0.0,150.0},
  1252. {18450,171.664017,2787.777588,844.967590,0.0,349.6868,0.0,150.0},
  1253. {18450,-122.935364,2787.287842,544.113281,0.0,315.3093,0.0,150.0},
  1254. {18450,-148.755371,2787.311279,518.560669,0.0,316.1687,0.0,150.0},
  1255. {18450,-175.553238,2787.310059,492.971832,0.0,317.0282,0.0,150.0},
  1256. {18450,-202.897964,2787.299316,468.289673,0.0,317.8876,0.0,150.0},
  1257. {18450,-231.721634,2787.302002,442.875854,0.0,318.7470,0.0,150.0},
  1258. {18450,-262.279114,2787.307617,418.369904,0.0,321.3253,0.0,150.0},
  1259. {18450,-293.903015,2787.328613,396.030029,0.0,324.7631,0.0,150.0},
  1260. {18450,-326.513916,2787.329102,375.858185,0.0,328.2008,0.0,150.0},
  1261. {18450,-360.175537,2787.329346,357.735504,0.0,331.6386,0.0,150.0},
  1262. {18450,-394.980438,2787.321533,341.605743,0.0,335.0763,0.0,150.0},
  1263. {18450,-430.630371,2787.335205,327.587036,0.0,338.5141,0.0,150.0},
  1264. {18450,-467.407379,2787.332275,315.623352,0.0,341.9518,0.0,150.0},
  1265. {18450,-503.796570,2787.313477,306.195801,0.0,345.3896,0.0,150.0},
  1266. {18450,-541.837280,2787.305908,298.053223,0.0,347.9679,0.0,150.0},
  1267. {18450,-579.433167,2787.336426,291.709839,0.0,350.5462,0.0,150.0},
  1268. {18450,-617.044678,2787.333252,287.238770,0.0,353.1245,0.0,150.0},
  1269. {18450,-655.955200,2787.348389,284.286560,0.0,355.7028,0.0,150.0},
  1270. {18450,-694.728455,2787.350342,283.036194,0.0,358.2811,0.0,150.0},
  1271. {18450,-733.182007,2787.353027,283.294434,0.0,0.8594,0.0,150.0},
  1272. {18450,-811.011169,2787.337646,284.477081,0.0,0.8594,0.0,150.0},
  1273. {18450,-890.254089,2787.343506,285.683411,0.0,0.8594,0.0,150.0},
  1274. {18450,-968.954285,2787.351563,276.764557,0.0,346.2490,0.0,150.0},
  1275. {18450,-978.251038,2787.384277,253.166779,0.0,27.5020,0.0,150.0},
  1276. {18450,-933.465881,2787.294434,288.571167,0.0,190.7950,179.6223,150.0},
  1277. {18450,-1011.299072,2787.526123,275.583649,0.0,171.8874,0.0,150.0},
  1278.  
  1279. //MonsterCrash
  1280. {18450,-2377.673584,2945.663818,360.759674,89.3814,0.0,269.7591,200.0},
  1281. {18450,-2390.272461,2945.734863,360.816071,269.8630,0.0,269.7591,200.0},
  1282. {18450,-2383.919189,2945.707520,367.122894,179.6223,0.0,269.7591,200.0},
  1283. {18450,-2383.882568,2959.265869,329.697266,0.0,269.7591,90.2409,200.0},
  1284. {18450,-2384.162842,2905.567627,372.639160,269.7591,0.0,179.6224,200.0},
  1285. {18450,-2395.898438,2905.765869,340.148712,0.0,90.2409,269.7591,200.0},
  1286. {18450,-2372.288086,2905.638184,340.159607,0.0,90.2409,269.7591,200.0},
  1287. {18450,-2384.210205,2875.085938,335.252777,0.0,39.5341,269.8632,200.0},
  1288. {18450,-2384.364746,2813.428711,284.367981,0.0,39.5341,269.8632,200.0},
  1289. {18450,-2384.516602,2751.761719,233.475525,0.0,39.5341,269.8632,200.0},
  1290. {18450,-2384.613037,2715.056641,203.179504,0.0,39.5341,269.8632,200.0},
  1291. {18450,-2384.748779,2644.721191,146.798203,0.0,36.0963,269.8632,200.0},
  1292. {18450,-2384.742920,2643.664307,147.917572,0.0,29.2208,269.8632,200.0},
  1293. {18450,-2384.768555,2642.807373,148.440262,0.0,22.3454,269.8632,200.0},
  1294. {18450,-2384.781982,2640.791748,148.299820,0.0,15.4699,269.8632,200.0},
  1295. {18450,-2384.778320,2638.124023,148.026306,0.0,8.5944,269.8632,200.0},
  1296. {18450,-2384.795166,2634.490967,147.477478,0.0,1.7189,269.8632,200.0},
  1297. {18450,-2384.802002,2633.285400,146.919418,0.0,354.8434,269.8632,200.0},
  1298. {18450,-2384.827148,2625.937012,147.429031,0.0,347.9679,269.8632,200.0},
  1299. {18450,-2384.832275,2622.513672,147.748138,0.0,341.0924,269.8632,200.0},
  1300. {18450,-2384.867920,2616.040283,149.860718,0.0,334.2169,269.8632,200.0},
  1301. {18450,-2384.855225,2613.176025,150.943832,0.0,327.3414,269.8632,200.0},
  1302. {18450,-2384.872070,2608.916260,153.262054,0.0,320.4659,269.8632,200.0},
  1303. {18450,-2384.890137,2604.741699,156.333099,0.0,313.5905,269.8632,200.0},
  1304. {18450,-2384.893311,2601.727051,158.864487,0.0,306.7150,269.8632,200.0},
  1305. {18450,-2384.890625,2598.495361,162.452881,0.0,299.8395,269.8632,200.0},
  1306. {18450,-2384.899170,2595.968506,166.280365,0.0,292.9640,269.8632,200.0},
  1307. {18450,-2384.910400,2593.974854,169.936783,0.0,286.0885,269.8632,200.0},
  1308. {18450,-2384.904053,2592.631592,172.749893,0.0,279.2130,269.8632,200.0},
  1309. {18450,-2384.902100,2591.479248,175.760666,0.0,272.3375,269.8632,200.0},
  1310. {18450,-2384.908447,2590.590088,178.194931,0.0,265.4620,269.8632,200.0},
  1311. {18450,-2384.904053,2589.940674,181.373535,0.0,258.5865,269.8632,200.0},
  1312. {18450,-2384.921631,2589.966064,185.659012,0.0,251.7111,269.8632,200.0},
  1313. {18450,-2384.908203,2590.380859,189.750443,0.0,244.8356,269.8632,200.0},
  1314. {18450,-2384.907227,2592.483154,195.837769,0.0,237.9600,269.8632,200.0},
  1315. {18450,-2384.914795,2594.499512,200.301132,0.0,231.0845,269.8632,200.0},
  1316. {18450,-2384.928955,2596.030518,203.399719,0.0,224.2089,269.8632,200.0},
  1317. {18450,-2384.886963,2599.604980,207.768173,0.0,217.3334,269.8632,200.0},
  1318. {18450,-2384.910400,2602.195313,210.606964,0.0,210.4578,269.8632,200.0},
  1319. {18450,-2384.894043,2605.370605,213.327271,0.0,203.5823,269.8632,200.0},
  1320. {18450,-2384.884033,2607.030029,215.154968,0.0,196.7068,269.8632,200.0},
  1321. {18450,-2384.876953,2610.474609,217.318527,0.0,189.8312,269.8632,200.0},
  1322. {18450,-2384.857666,2613.939697,219.314575,0.0,182.9557,269.8632,200.0},
  1323. {18450,-2384.851563,2619.714111,220.862213,0.0,176.0801,269.8632,200.0},
  1324. {18450,-2384.827393,2625.520264,221.607361,0.0,169.2046,269.8632,200.0},
  1325. {18450,-2384.815918,2631.176758,221.560089,0.0,162.3291,269.8632,200.0},
  1326. {18450,-2384.814453,2638.812012,219.802307,0.0,155.4536,269.8632,200.0},
  1327. {18450,-2384.796387,2642.721436,218.842468,0.0,148.5780,269.8632,200.0},
  1328. {18450,-2384.791504,2646.365723,217.644897,0.0,141.7024,269.8632,200.0},
  1329. {18450,-2384.793945,2649.736084,216.309738,0.0,134.8269,269.8632,200.0},
  1330. {18450,-2384.661621,2693.920898,139.226517,0.0,103.8874,269.8632,200.0},
  1331. {18450,-2384.660400,2691.641357,141.112961,0.0,95.2931,269.8632,200.0},
  1332. {18450,-2384.657959,2690.647705,144.999313,0.0,86.6988,269.8632,200.0},
  1333. {18450,-2384.667969,2691.342529,149.033203,0.0,78.1045,269.8632,200.0},
  1334. {18450,-2384.666504,2691.550293,146.760513,0.0,69.5102,269.8632,200.0},
  1335. {18450,-2384.659180,2689.429688,140.527222,0.0,60.9159,269.8632,200.0},
  1336. {18450,-2384.659180,2688.989746,138.790054,0.0,52.3217,269.8632,200.0},
  1337. {18450,-2384.665283,2687.394531,135.937057,0.0,43.7274,269.8632,200.0},
  1338. {18450,-2384.670410,2681.801270,130.796387,0.0,35.1330,269.8632,200.0},
  1339. {18450,-2384.826172,2616.583984,84.904709,0.0,35.1330,269.8632,200.0},
  1340. {18450,-2384.912354,2586.988281,63.712463,0.0,29.1170,269.8632,200.0},
  1341. {18450,-2384.989746,2555.249512,48.686890,0.0,23.1010,269.8632,200.0},
  1342. {18450,-2384.106689,2547.596680,46.274960,353.9839,18.8039,277.5981,200.0},
  1343. {18450,-2381.923096,2535.421387,43.116104,344.5301,13.6474,285.3329,200.0},
  1344. {18450,-2377.678223,2520.441162,40.329441,334.2169,11.0690,291.3489,200.0},
  1345. {18450,-2374.580078,2512.969238,39.303890,324.7631,9.3502,297.3649,200.0},
  1346. {18450,-2367.706055,2500.504150,37.935726,316.1687,7.6314,305.0998,200.0},
  1347. {18450,-2360.548828,2490.182373,37.105721,316.1687,5.9125,307.6780,200.0},
  1348. {18450,-2355.814453,2485.128418,36.842552,320.4659,4.1936,311.1158,200.0},
  1349. {18450,-2348.983154,2478.684570,36.884216,327.3414,1.6154,313.6940,200.0},
  1350. {18450,-2340.568848,2471.116455,37.206909,335.9358,358.1776,317.1318,200.0},
  1351. {18450,-2328.353027,2460.953369,37.936459,342.8113,356.4587,320.5695,200.0},
  1352. {18450,-2317.406982,2452.605957,39.107944,352.2651,353.8805,322.2884,200.0},
  1353. {18450,-2305.192627,2443.514893,40.816452,358.2811,350.4427,324.0072,200.0},
  1354. {18450,-2292.189453,2434.232422,43.905991,0.8594,347.8645,324.8666,200.0},
  1355. {18450,-2269.579102,2418.298584,50.439251,0.0,341.0924,325.6225,200.0},
  1356. {18450,-2207.612305,2375.902100,76.147522,0.0,341.0924,325.6225,200.0},
  1357. {18256,-2189.226807,2358.178223,75.072845,357.4217,331.6386,329.9197,200.0},
  1358. {18450,-2122.552734,2317.489258,62.933670,0.0,330.7792,146.1043,200.0},
  1359. {18450,-2102.850830,2305.096436,52.414459,354.8434,335.0763,145.2449,200.0},
  1360. {18450,-2113.020996,2311.563477,58.479271,351.4056,339.3735,144.3854,200.0},
  1361. {18450,-2107.425781,2307.848145,56.617970,344.5301,343.6707,141.8071,200.0},
  1362. {18450,-2104.483643,2305.752441,55.930756,338.5141,347.1084,140.0882,200.0},
  1363. {18450,-2097.760254,2300.917480,54.388813,332.4980,350.5462,138.3693,200.0},
  1364. {18450,-2090.420410,2295.109131,53.347202,328.2008,353.1245,137.5099,200.0},
  1365. {18450,-2083.947266,2289.548096,52.773476,325.6225,355.7028,136.6504,200.0},
  1366. {18450,-2075.527832,2281.618896,52.397110,328.2008,357.4217,135.7909,200.0},
  1367. {18450,-2071.794434,2277.457031,52.662163,330.7792,0.0,134.9315,200.0},
  1368. {18450,-2063.682129,2267.899414,53.489368,336.7952,2.5783,133.2126,200.0},
  1369. {18450,-2061.275879,2264.560791,54.440327,342.8113,5.1566,132.3532,200.0},
  1370. {18450,-2055.786133,2256.131836,56.267281,347.1084,7.7349,128.9154,200.0},
  1371. {18450,-2055.891602,2255.728027,56.804283,355.7028,10.3132,126.3371,200.0},
  1372. {18450,-2050.014648,2247.393555,58.919811,358.2811,12.0321,125.4776,200.0},
  1373. {18450,-2037.905762,2230.063477,64.319878,0.0,346.2490,304.9961,200.0},
  1374. {18450,-1993.514404,2166.670654,83.893005,0.0,345.3896,304.9961,200.0},
  1375. {18450,-1949.260010,2103.463867,104.628136,0.0,344.5301,304.9961,200.0},
  1376. {18450,-1889.099121,2018.000977,77.896263,0.0,43.8313,304.9961,200.0},
  1377. {18450,-1857.174194,1972.373413,24.434443,0.0,43.8313,304.9961,200.0},
  1378. {18450,-1853.968140,1967.546021,20.104530,0.0,35.2369,303.2772,200.0},
  1379. {18450,-1855.402710,1969.764771,21.831493,0.0,26.6425,301.5583,200.0},
  1380. {18450,-1853.322510,1966.380249,19.885242,0.8594,18.0482,299.8394,200.0},
  1381. {18450,-1850.668945,1961.639648,18.528814,1.7189,9.4538,298.1206,200.0},
  1382. {18450,-1850.276611,1960.903687,18.469229,3.4377,0.8594,296.4017,200.0},
  1383. {18450,-1849.206787,1958.769775,18.380133,5.1566,352.2651,294.6828,200.0},
  1384. {18450,-1847.028076,1953.643433,19.424002,7.7349,343.6707,292.9639,200.0},
  1385. {18450,-1846.174561,1951.177856,20.374115,11.1727,335.0763,291.2451,200.0},
  1386. {18450,-1844.305542,1943.576782,25.047346,13.7510,326.4820,289.5262,200.0},
  1387. {18450,-1845.079956,1949.719482,20.217781,17.1887,317.8877,287.8073,200.0},
  1388. {18450,-1843.478516,1950.809570,17.205254,20.6265,309.2933,286.0884,200.0},
  1389. {18450,-1841.258057,1950.295898,14.117853,22.3454,300.6989,284.3696,200.0},
  1390. {18450,-1838.435425,1948.507446,10.985855,24.0642,292.1046,282.6507,200.0},
  1391. {18450,-1836.118286,1944.471680,10.330215,25.7831,283.5102,280.9318,200.0},
  1392. {18450,-1833.938477,1939.619873,10.157578,27.5020,274.9158,279.2130,200.0},
  1393. {18450,-1939.034668,1939.812256,11.826149,0.0,349.6868,343.6707,200.0},
  1394. {18450,-1963.082397,1946.856812,8.381221,0.0,353.9839,343.6707,200.0},
  1395. {18450,-1966.443726,1947.836426,8.934970,0.0,358.2811,343.6707,200.0},
  1396. {18450,-1966.332153,1947.812500,9.878654,0.0,2.5783,343.6707,200.0},
  1397. {18450,-1967.755127,1948.229248,10.555182,0.0,6.8755,343.6707,200.0},
  1398. {18450,-1982.687378,1952.610352,13.784174,0.0,11.1727,343.6707,200.0},
  1399. {18450,-1978.838623,1951.472656,13.596218,0.0,15.4699,343.6707,200.0},
  1400. {18450,-1991.368164,1955.143433,18.950771,0.0,19.7670,343.6707,200.0},
  1401. {18450,-2002.903320,1958.536743,25.524994,0.0,24.0642,343.6707,200.0},
  1402. {18450,-2072.897705,1979.029785,58.103451,0.0,24.0642,343.6707,200.0},
  1403. {18450,-2106.776367,1988.950073,34.022018,0.0,90.2409,163.1889,200.0},
  1404. {18450,-2114.798584,1984.615112,56.920971,0.0,90.2409,73.8076,200.0},
  1405. {18450,-2118.914307,1992.539795,56.946007,0.0,90.2409,343.5670,200.0},
  1406. {18450,-2111.172119,1996.913818,56.938934,0.0,90.2409,254.2892,200.0},
  1407. {18450,-2106.458008,1988.851440,118.486130,0.0,90.2409,343.5670,200.0},
  1408. {18450,-2144.595947,2000.386597,17.345097,0.0,0.0,163.1889,200.0},
  1409. {18450,-2144.854004,2000.390015,96.950943,0.0,180.4818,163.1889,200.0},
  1410. {2918,-2117.210938,1992.253418,19.577982,0.0,0.0,0.0,200.0},
  1411. {2918,-2114.071045,1986.726929,19.577982,0.0,0.0,0.0,200.0},
  1412. {2918,-2111.512207,1995.408325,19.577982,0.0,0.0,0.0,200.0},
  1413. {2918,-2108.333008,1989.629761,19.577982,0.0,0.0,0.0,200.0},
  1414. {2918,-2109.688965,1985.548462,19.577982,0.0,0.0,0.0,200.0},
  1415. {2918,-2106.920410,1994.272095,19.577982,0.0,0.0,0.0,200.0},
  1416. {2918,-2115.903076,1996.638428,19.577982,0.0,0.0,0.0,200.0},
  1417. {2918,-2118.146240,1988.024048,19.577982,0.0,0.0,0.0,200.0},
  1418. {2918,-2112.689453,1990.825317,19.577982,0.0,0.0,0.0,200.0},
  1419. {2918,-2113.742676,1995.812256,19.577982,0.0,0.0,0.0,200.0},
  1420. {2918,-2116.540039,1994.344238,19.577982,0.0,0.0,0.0,200.0},
  1421. {2918,-2109.202148,1994.627075,19.577980,0.0,0.0,0.0,200.0},
  1422. {2918,-2107.575439,1991.905762,19.577982,0.0,0.0,0.0,200.0},
  1423. {2918,-2109.751709,1992.516357,19.577982,0.0,0.0,0.0,200.0},
  1424. {2918,-2111.978516,1993.092285,19.577982,0.0,0.0,0.0,200.0},
  1425. {2918,-2114.217529,1993.814575,19.577982,0.0,0.0,0.0,200.0},
  1426. {2918,-2114.796143,1991.580444,19.577982,0.0,0.0,0.0,200.0},
  1427. {2918,-2110.452393,1990.437256,19.577982,0.0,0.0,0.0,200.0},
  1428. {2918,-2111.947021,1986.133423,19.577982,0.0,0.0,0.0,200.0},
  1429. {2918,-2116.207764,1987.410400,19.577982,0.0,0.0,0.0,200.0},
  1430. {2918,-2109.067627,1987.598511,19.577982,0.0,0.0,0.0,200.0},
  1431. {2918,-2111.405518,1988.288696,19.577982,0.0,0.0,0.0,200.0},
  1432. {2918,-2113.367432,1988.827026,19.577982,0.0,0.0,0.0,200.0},
  1433. {2918,-2115.482178,1989.624146,19.577982,0.0,0.0,0.0,200.0},
  1434. {2918,-2117.570313,1990.160278,19.577982,0.0,0.0,0.0,200.0},
  1435.  
  1436. //Suicide
  1437. {11103, -1807.019897, 562.148560, 235.788361, 0.0000, 0.0000, 239.6789,40.0},
  1438. {11103, -1809.500244, 557.844360, 235.785156, 0.0000, 0.0000, 239.6789,40.0},
  1439. {11103, -1810.405762, 561.244873, 235.788361, 0.0000, 0.0000, 329.9197,40.0},
  1440. {11103, -1806.116577, 558.741211, 235.785156, 0.0000, 0.0000, 329.9197,40.0},
  1441. {11103, -1807.961548, 560.519531, 237.400513, 0.0000, 90.2409, 239.6789,40.0},
  1442. {11103, -1808.693237, 559.255676, 237.395111, 0.0000, 90.2409, 239.6789,40.0},
  1443. {11103, -1807.952148, 560.512146, 233.901596, 0.0000, 90.2409, 239.6789,40.0},
  1444. {11103, -1808.695313, 559.252808, 233.893082, 0.0000, 90.2409, 239.6789,40.0},
  1445. {2905,-1802.765869,563.303406,34.255512,0.0,0.0,0.0,40.0},
  1446. {2905,-1801.380737,552.983276,34.255512,0.0,0.0,261.1648,40.0},
  1447. {2906,-1809.168335,558.687805,34.238075,0.0,0.0,0.0,40.0},
  1448. {2907,-1810.331909,565.924561,34.324097,0.0,0.0,0.0,40.0},
  1449. {2908,-1815.318970,562.746277,34.241482,0.0,0.0,0.0,40.0},
  1450. {2906,-1796.536865,565.347351,34.238075,0.0,0.0,0.0,40.0},
  1451. {2905,-1805.426392,560.695923,233.998322,0.0,0.0,0.0,40.0},
  1452. {2906,-1809.354370,557.931885,233.960571,0.0,0.0,55.8634,40.0},
  1453. {2905,-1808.788574,562.535583,234.097763,0.0,71.4370,307.5744,40.0},
  1454. {2907,-1809.417480,562.106628,234.063553,0.0,0.0,317.0282,40.0},
  1455. {2908,-1809.714355,561.692078,234.128677,351.4056,118.6022,315.3093,40.0},
  1456. {2906,-1809.254639,561.851685,234.019714,0.0,0.0,283.5102,40.0},
  1457.  
  1458. //GlassMadness
  1459. {14445,-11.383385,1546.024902,17.790691,0.0,0.0,0.0,200.0},
  1460. {14445,-11.388700,1519.028076,17.784668,0.0,0.0,0.0,200.0},
  1461. {14445,35.217510,1546.010620,17.784664,0.0,0.0,0.0,200.0},
  1462. {14445,35.213242,1519.029419,17.790695,0.0,0.0,0.0,200.0},
  1463. {14445,35.204140,1519.030396,27.651781,0.0,0.0,0.0,200.0},
  1464. {14445,35.232418,1546.009644,27.647669,0.0,0.0,0.0,200.0},
  1465. {14445,35.223854,1546.017456,37.526360,0.0,0.0,0.0,200.0},
  1466. {14445,35.219032,1519.037598,37.543449,0.0,0.0,0.0,200.0},
  1467. {14445,35.213791,1546.017334,47.412060,0.0,0.0,0.0,200.0},
  1468. {14445,35.208969,1519.015015,47.428162,0.0,0.0,0.0,200.0},
  1469. {14445,35.223286,1546.024658,57.282455,0.0,0.0,0.0,200.0},
  1470. {14445,35.213192,1546.024780,67.156929,0.0,0.0,0.0,200.0},
  1471. {14445,35.223923,1519.003540,57.317291,0.0,0.0,0.0,200.0},
  1472. {14445,35.230507,1519.010864,67.200172,0.0,0.0,0.0,200.0},
  1473. {14445,35.203129,1546.029053,77.016083,0.0,0.0,0.0,200.0},
  1474. {14445,35.220444,1519.000366,77.115089,0.0,0.0,0.0,200.0},
  1475. {14445,-11.381330,1519.035400,27.657133,0.0,0.0,0.0,200.0},
  1476. {14445,-11.365026,1519.043213,37.529388,0.0,0.0,0.0,200.0},
  1477. {14445,-11.375140,1519.041138,47.407471,0.0,0.0,0.0,200.0},
  1478. {14445,-11.363791,1519.048706,57.275921,0.0,0.0,0.0,200.0},
  1479. {14445,-11.361440,1519.056030,67.147194,0.0,0.0,0.0,200.0},
  1480. {14445,-11.349124,1519.063354,77.018654,0.0,0.0,0.0,200.0},
  1481. {14445,-11.354694,1519.070679,86.883629,0.0,0.0,0.0,200.0},
  1482. {14445,-11.364813,1519.085938,96.746201,0.0,0.0,0.0,200.0},
  1483. {14445,-11.391788,1546.007202,27.662321,0.0,0.0,0.0,200.0},
  1484. {14445,-11.398052,1546.014526,37.543304,0.0,0.0,0.0,200.0},
  1485. {14445,-11.386824,1546.021851,47.425171,0.0,0.0,0.0,200.0},
  1486. {14445,-11.371927,1546.030518,57.307602,0.0,0.0,0.0,200.0},
  1487. {14445,-11.366171,1546.037598,67.177910,0.0,0.0,0.0,200.0},
  1488. {14445,-11.369091,1546.043457,77.042007,0.0,0.0,0.0,200.0},
  1489. {14445,-11.366776,1546.049805,86.912376,0.0,0.0,0.0,200.0},
  1490. {14445,-11.369230,1546.056152,96.703598,0.0,0.0,0.0,200.0},
  1491. {3851,-12.596554,1519.952026,94.433693,0.0,269.8631,0.0,200.0},
  1492. {3851,-16.569700,1510.510742,94.430275,0.0,269.8631,0.0,200.0},
  1493. {3851,-20.542540,1510.499512,94.427025,0.0,269.8631,0.0,200.0},
  1494. {3851,-28.474968,1510.511353,94.422150,0.0,269.8631,0.0,200.0},
  1495. {3851,-32.440094,1510.512207,94.419113,0.0,269.8631,0.0,200.0},
  1496. {3851,-16.552090,1521.803711,94.430214,0.0,269.8631,0.0,200.0},
  1497. {3851,-20.534700,1521.801514,94.425537,0.0,269.8631,0.0,200.0},
  1498. {3851,-24.495577,1521.803345,94.421043,0.0,269.8631,0.0,200.0},
  1499. {3851,-28.455549,1521.822021,94.416748,0.0,269.8631,0.0,200.0},
  1500. {3851,-32.441349,1521.819702,94.412300,0.0,269.8631,0.0,200.0},
  1501. {3851,-16.584063,1533.093140,94.428352,0.0,269.8631,0.0,200.0},
  1502. {3851,-20.541061,1533.113403,94.424095,0.0,269.8631,0.0,200.0},
  1503. {3851,-24.499346,1533.104858,94.420204,0.0,269.8631,0.0,200.0},
  1504. {3851,-28.459259,1533.133911,94.415848,0.0,269.8631,0.0,200.0},
  1505. {3851,-32.439587,1533.113770,94.411713,0.0,269.8631,0.0,200.0},
  1506. {3851,-33.375008,1533.124268,94.409698,0.0,269.8631,0.0,200.0},
  1507. {3851,-16.596510,1541.135620,94.428291,0.0,269.8631,0.0,200.0},
  1508. {3851,-20.550648,1541.138306,94.423965,0.0,269.8631,0.0,200.0},
  1509. {3851,-28.448244,1541.135742,94.415802,0.0,269.8631,0.0,200.0},
  1510. {3851,-32.430302,1541.142700,94.413353,0.0,269.8631,0.0,200.0},
  1511. {3851,-12.571813,1510.490479,74.731842,0.0,269.8631,0.0,200.0},
  1512. {3851,-16.549292,1510.485474,74.728233,0.0,269.8631,0.0,200.0},
  1513. {3851,-20.519979,1510.495728,74.725571,0.0,269.8631,0.0,200.0},
  1514. {3851,-24.509933,1510.476929,74.721565,0.0,269.8631,0.0,200.0},
  1515. {3851,-28.493605,1510.475952,74.718513,0.0,269.8631,0.0,200.0},
  1516. {3851,-32.477779,1510.466797,74.715729,0.0,269.8631,0.0,200.0},
  1517. {3851,-33.378487,1510.468628,74.713158,0.0,269.8631,0.0,200.0},
  1518. {3851,-12.571440,1521.797119,74.733185,0.0,269.8631,0.0,200.0},
  1519. {3851,-16.555666,1521.784302,74.729462,0.0,269.8631,0.0,200.0},
  1520. {3851,-20.534002,1521.806274,74.727097,0.0,269.8631,0.0,200.0},
  1521. {3851,-24.511860,1521.777832,74.723091,0.0,269.8631,0.0,200.0},
  1522. {3851,-28.501442,1521.789429,74.719368,0.0,269.8631,0.0,200.0},
  1523. {3851,-32.479473,1521.775146,74.715820,0.0,269.8631,0.0,200.0},
  1524. {3851,-33.376923,1521.754395,74.712738,0.0,269.8631,0.0,200.0},
  1525. {3851,-12.607658,1533.087036,74.732201,0.0,269.8631,0.0,200.0},
  1526. {3851,-16.565525,1533.097656,74.727684,0.0,269.8631,0.0,200.0},
  1527. {3851,-20.549406,1533.111572,74.723572,0.0,269.8631,0.0,200.0},
  1528. {3851,-24.518009,1533.080933,74.719406,0.0,269.8631,0.0,200.0},
  1529. {3851,-28.497135,1533.103638,74.715187,0.0,269.8631,0.0,200.0},
  1530. {3851,-32.487442,1533.073120,74.711235,0.0,269.8631,0.0,200.0},
  1531. {3851,-33.379555,1533.050903,74.707413,0.0,269.8631,0.0,200.0},
  1532. {3851,-12.613102,1541.125977,74.732574,0.0,269.8631,0.0,200.0},
  1533. {3851,-16.579830,1541.091431,74.728981,0.0,269.8631,0.0,200.0},
  1534. {3851,-20.554853,1541.096924,74.724953,0.0,269.8631,0.0,200.0},
  1535. {3851,-24.531343,1541.095703,74.721413,0.0,269.8631,0.0,200.0},
  1536. {3851,-28.517927,1541.120239,74.692070,0.0,269.8631,0.0,200.0},
  1537. {3851,-32.500317,1541.112915,74.688599,0.0,269.8631,0.0,200.0},
  1538. {3851,-33.397800,1541.126587,74.685257,0.0,269.8631,0.0,200.0},
  1539. {3851,13.205956,1510.409058,74.852631,0.0,269.8631,0.0,200.0},
  1540. {3851,13.206272,1520.293213,74.849403,0.0,269.8631,0.0,200.0},
  1541. {3851,13.196571,1531.590210,74.848663,0.0,269.8631,0.0,200.0},
  1542. {3851,13.180301,1541.114746,74.847549,0.0,269.8631,0.0,200.0},
  1543. {3851,17.198458,1510.403320,74.855446,0.0,269.8631,0.0,200.0},
  1544. {3851,21.198301,1510.402344,74.858971,0.0,269.8631,0.0,200.0},
  1545. {3851,25.180576,1510.413574,74.863289,0.0,269.8631,0.0,200.0},
  1546. {3851,29.158388,1510.421753,74.867668,0.0,269.8631,0.0,200.0},
  1547. {3851,33.120407,1510.412354,74.870369,0.0,269.8631,0.0,200.0},
  1548. {3851,33.993519,1510.420288,74.870766,0.0,269.8631,0.0,200.0},
  1549. {3851,17.184608,1521.713867,74.852844,0.0,269.8631,0.0,200.0},
  1550. {3851,21.175161,1521.706787,74.856300,0.0,269.8631,0.0,200.0},
  1551. {3851,25.159899,1521.717285,74.860161,0.0,269.8631,0.0,200.0},
  1552. {3851,29.146267,1521.724365,74.863770,0.0,269.8631,0.0,200.0},
  1553. {3851,33.099503,1521.712158,74.868019,0.0,269.8631,0.0,200.0},
  1554. {3851,33.977592,1521.696655,74.870789,0.0,269.8631,0.0,200.0},
  1555. {3851,17.164377,1533.026611,74.851227,0.0,269.8631,0.0,200.0},
  1556. {3851,21.150597,1533.007935,74.855415,0.0,269.8631,0.0,200.0},
  1557. {3851,25.145500,1533.015137,74.859718,0.0,269.8631,0.0,200.0},
  1558. {3851,29.134119,1533.014771,74.852081,0.0,269.8631,0.0,200.0},
  1559. {3851,33.101563,1533.006958,74.855423,0.0,269.8631,0.0,200.0},
  1560. {3851,33.966969,1532.998291,74.856651,0.0,269.8631,0.0,200.0},
  1561. {3851,17.177383,1541.119507,74.851189,0.0,269.8631,0.0,200.0},
  1562. {3851,21.137136,1541.121094,74.855705,0.0,269.8631,0.0,200.0},
  1563. {3851,25.136696,1541.119019,74.858284,0.0,269.8631,0.0,200.0},
  1564. {3851,29.098907,1541.110962,74.837509,0.0,269.8631,0.0,200.0},
  1565. {3851,33.088627,1541.114014,74.842056,0.0,269.8631,0.0,200.0},
  1566. {3851,33.976986,1541.120728,74.843582,0.0,269.8631,0.0,200.0},
  1567. {3851,-5.334063,1525.895264,74.759575,359.1406,269.8631,90.2409,200.0},
  1568. {3851,5.934891,1525.931885,74.833511,0.0,269.8631,90.2409,200.0},
  1569. {3851,33.995369,1510.435303,55.031296,0.0,269.8631,0.0,200.0},
  1570. {3851,30.002256,1510.447144,55.027733,0.0,269.8631,0.0,200.0},
  1571. {3851,26.033527,1510.440308,55.023865,0.0,269.8631,0.0,200.0},
  1572. {3851,22.045885,1510.425903,55.020729,0.0,269.8631,0.0,200.0},
  1573. {3851,18.060568,1510.399902,55.016884,0.0,269.8631,0.0,200.0},
  1574. {3851,14.070709,1510.411011,55.012535,0.0,269.8631,0.0,200.0},
  1575. {3851,13.197409,1510.428711,55.010239,0.0,269.8631,0.0,200.0},
  1576. {3851,33.973846,1518.898560,55.006676,0.0,269.8631,0.0,200.0},
  1577. {3851,29.981564,1518.884277,55.006889,0.0,269.8631,0.0,200.0},
  1578. {3851,25.997629,1518.886719,55.003944,0.0,269.8631,0.0,200.0},
  1579. {3851,22.003799,1518.880127,55.000359,0.0,269.8631,0.0,200.0},
  1580. {3851,18.026342,1518.886353,54.996529,0.0,269.8631,0.0,200.0},
  1581. {3851,14.057856,1518.881836,54.991814,0.0,269.8631,0.0,200.0},
  1582. {3851,13.210200,1518.879517,54.987740,0.0,269.8631,0.0,200.0},
  1583. {3851,33.976933,1530.213623,55.005409,0.0,269.8631,0.0,200.0},
  1584. {3851,29.979271,1530.189697,55.001030,0.0,269.8631,0.0,200.0},
  1585. {3851,25.986454,1530.190186,54.997063,0.0,269.8631,0.0,200.0},
  1586. {3851,21.991543,1530.191895,54.992851,0.0,269.8631,0.0,200.0},
  1587. {3851,18.014917,1530.192017,54.988846,0.0,269.8631,0.0,200.0},
  1588. {3851,14.047785,1530.190063,54.984428,0.0,269.8631,0.0,200.0},
  1589. {3851,13.202554,1530.195923,54.980690,0.0,269.8631,0.0,200.0},
  1590. {3851,33.982288,1541.122559,55.006485,0.0,269.8631,0.0,200.0},
  1591. {3851,29.991882,1541.114502,55.002480,0.0,269.8631,0.0,200.0},
  1592. {3851,26.003839,1541.105103,54.999763,0.0,269.8631,0.0,200.0},
  1593. {3851,22.014393,1541.111206,54.995552,0.0,269.8631,0.0,200.0},
  1594. {3851,18.025591,1541.108887,54.991562,0.0,269.8631,0.0,200.0},
  1595. {3851,14.037136,1541.122559,54.987869,0.0,269.8631,0.0,200.0},
  1596. {3851,13.197494,1541.121582,54.983757,0.0,269.8631,0.0,200.0},
  1597.  
  1598. //FreeWay
  1599. {8253,-2847.015869,2193.069580,804.448975,0.0,0.0,269.7591,200.0},
  1600. {17310,-2847.309570,2174.884766,796.074829,18.9076,180.3777,0.0,200.0},
  1601. {17310,-2847.338623,2165.460449,790.844910,37.8152,180.3777,0.0,200.0},
  1602. {17310,-2847.269775,2156.182861,783.650513,37.8152,180.3777,0.0,200.0},
  1603. {17310,-2847.199951,2146.877197,776.427429,37.8152,180.3777,0.0,200.0},
  1604. {17310,-2847.120361,2137.640625,769.261475,37.8152,180.3777,0.0,200.0},
  1605. {17310,-2847.034424,2128.343018,762.042847,37.8152,180.3777,0.0,200.0},
  1606. {17310,-2846.881348,2109.772461,747.613342,37.8152,180.3777,0.0,200.0},
  1607. {17310,-2836.666016,2107.789307,747.995422,0.0,163.1889,89.9544,200.0},
  1608. {17310,-2846.967285,2119.035889,754.808838,37.8152,180.3777,0.0,200.0},
  1609. {17310,-2848.449951,2107.727783,747.971008,0.0,163.1889,89.9544,200.0},
  1610. {17310,-2856.913086,2107.683350,747.953613,0.0,163.1889,89.9544,200.0},
  1611. {17310,-2846.972656,1989.449341,740.919434,0.0,180.3777,0.0,200.0},
  1612. {17310,-2856.867676,1977.470093,741.717651,0.0,198.4258,89.9544,200.0},
  1613. {17310,-2845.050781,1977.528931,741.710938,0.0,198.4258,89.9544,200.0},
  1614. {17310,-2836.624756,1977.559448,741.694763,0.0,198.4258,89.9544,200.0},
  1615. {17310,-2846.818848,1916.645752,745.912537,27.5020,180.3777,0.0,200.0},
  1616. {17310,-2846.760010,1906.484375,740.516968,28.3614,180.3777,0.0,200.0},
  1617. {17310,-2846.674561,1896.510742,734.730652,31.7992,180.3777,0.0,200.0},
  1618. {17310,-2846.594727,1886.489380,728.521301,31.7992,180.3777,0.0,200.0},
  1619. {17310,-2846.528809,1876.651489,722.417725,31.7992,180.3777,0.0,200.0},
  1620. {17310,-2846.443115,1866.646973,716.222046,31.7992,180.3777,0.0,200.0},
  1621. {17310,-2846.361572,1856.719971,710.062256,31.7992,180.3777,0.0,200.0},
  1622. {17310,-2846.070068,1846.894043,704.270691,23.2048,180.3777,4.2972,200.0},
  1623. {17310,-2844.984619,1836.851318,699.902588,18.9076,180.3777,8.5944,200.0},
  1624. {17310,-2843.046387,1826.666626,696.405701,14.6104,180.3777,12.8916,200.0},
  1625. {17310,-2840.325439,1816.572754,693.784180,10.3132,180.3777,17.1887,200.0},
  1626. {17310,-2836.707520,1806.345825,692.028076,6.0161,180.3777,21.4859,200.0},
  1627. {17310,-2832.213867,1796.376099,691.148132,1.7189,180.3777,25.7831,200.0},
  1628. {17310,-2827.019287,1786.735596,691.212097,357.4217,180.3777,30.0803,200.0},
  1629. {17310,-2821.281982,1777.788208,692.009155,353.1245,180.3777,34.3775,200.0},
  1630. {17310,-2814.978271,1769.525879,693.604858,348.8273,180.3777,38.6747,200.0},
  1631. {17310,-2807.755371,1760.775513,695.817017,348.8273,180.3777,39.5341,200.0},
  1632. {17310,-2800.561523,1752.142334,697.563782,353.1245,180.3777,39.5341,200.0},
  1633. {17310,-2793.310791,1743.439453,698.478882,357.4217,180.3777,39.5341,200.0},
  1634. {17310,-2785.968994,1734.714844,698.536072,1.7189,180.3777,39.5341,200.0},
  1635. {17310,-2778.578125,1725.928467,697.751709,6.0161,180.3777,39.5341,200.0},
  1636. {17310,-2771.422363,1717.381104,696.125000,10.3132,180.3777,39.5341,200.0},
  1637. {17310,-2764.423096,1709.021362,693.679199,14.6104,180.3777,39.5341,200.0},
  1638. {17310,-2757.434326,1700.673950,690.362305,18.9076,180.3777,39.5341,200.0},
  1639. {17310,-2750.619629,1692.548218,686.261292,23.2048,180.3777,39.5341,200.0},
  1640. {17310,-2744.555176,1685.600464,682.284180,18.9076,180.3777,43.8313,200.0},
  1641. {17310,-2737.146240,1678.410889,678.868896,14.6104,180.3777,48.1285,200.0},
  1642. {17310,-2728.855713,1671.662231,676.278992,10.3132,180.3777,52.4256,200.0},
  1643. {17310,-2719.891602,1665.370117,674.588013,6.0161,180.3777,56.7228,200.0},
  1644. {17310,-2710.620850,1659.802490,673.747192,1.7189,180.3777,61.0200,200.0},
  1645. {17310,-2700.685059,1654.416626,672.954346,6.0161,180.3777,61.0200,200.0},
  1646. {17310,-2690.788330,1649.005371,671.315002,10.3132,180.3777,61.0200,200.0},
  1647. {17310,-2681.097168,1643.739014,668.846741,14.6104,180.3777,61.0200,200.0},
  1648. {17310,-2671.611816,1638.548828,665.560791,18.9076,180.3777,61.0200,200.0},
  1649. {17310,-2662.458496,1633.569092,661.518982,23.2048,180.3777,61.0200,200.0},
  1650. {17310,-2653.423096,1628.662476,656.621887,27.5020,180.3777,61.0200,200.0},
  1651. {17310,-2644.811523,1623.994873,650.986877,31.7992,180.3777,61.0200,200.0},
  1652. {17310,-2636.503662,1619.501343,644.608215,36.0963,180.3777,61.0200,200.0},
  1653. {17310,-2628.645752,1615.255859,637.528625,40.3935,180.3777,61.0200,200.0},
  1654. {17310,-2620.840820,1611.017456,629.974548,40.3935,180.3777,61.0200,200.0},
  1655. {17310,-2612.958252,1606.761230,622.341248,40.3935,180.3777,61.0200,200.0},
  1656. {17310,-2605.261230,1602.596558,614.882202,40.3935,180.3777,61.0200,200.0},
  1657. {17310,-2597.528809,1598.427124,607.403198,40.3935,180.3777,61.0200,200.0},
  1658. {17310,-2589.596680,1594.131470,599.735840,40.3935,180.3777,61.0200,200.0},
  1659. {17310,-2581.588135,1589.778564,592.528992,36.0963,180.3777,61.0200,200.0},
  1660. {17310,-2573.101074,1585.155029,586.004028,31.7992,180.3777,61.0200,200.0},
  1661. {17310,-2564.232910,1580.400757,580.793579,23.2048,180.3777,61.0200,200.0},
  1662. {17310,-2555.577148,1575.636230,577.362671,14.6104,180.3777,61.0200,200.0},
  1663. {17310,-2546.236816,1570.538818,575.375061,6.0161,180.3777,61.0200,200.0},
  1664. {17310,-2535.963623,1564.968384,575.081055,357.4217,180.3777,61.0200,200.0},
  1665. {17310,-2526.170898,1559.639771,576.393372,348.8273,180.3777,61.0200,200.0},
  1666. {17310,-2516.262207,1554.171875,579.523987,340.2330,180.3777,61.0200,200.0},
  1667. {17310,-2507.010986,1549.145752,584.223328,331.6386,180.3777,61.0200,200.0},
  1668. {17310,-2389.500977,1485.279053,565.153320,8.5944,180.3777,61.0200,200.0},
  1669. {17310,-2379.964111,1480.067627,563.787964,6.0161,180.3777,61.0200,200.0},
  1670. {17310,-2370.150879,1474.752197,563.015015,1.7189,180.3777,61.0200,200.0},
  1671. {17310,-2360.799805,1469.623047,563.054871,357.4217,180.3777,61.0200,200.0},
  1672. {17310,-2350.759766,1464.143433,563.995239,353.1245,180.3777,61.0200,200.0},
  1673. {17310,-2341.835205,1459.266602,565.572937,348.8273,180.3777,61.0200,200.0},
  1674. {17310,-2332.515869,1454.201050,568.071350,344.5301,180.3777,61.0200,200.0},
  1675. {17310,-2323.010254,1448.989502,571.339783,341.9518,180.3777,61.0200,200.0},
  1676. {17310,-2265.086914,1416.517456,559.042419,7.7349,180.3777,61.0200,200.0},
  1677. {17310,-2255.378174,1411.218262,557.088501,12.0321,180.3777,61.0200,200.0},
  1678. {17310,-2246.004150,1406.133179,554.354797,16.3293,180.3777,61.0200,200.0},
  1679. {17310,-2236.555176,1400.978882,550.725891,20.6265,180.3777,61.0200,200.0},
  1680. {17310,-2227.379150,1395.981689,546.311951,24.9237,180.3777,61.0200,200.0},
  1681. {17310,-2218.516113,1391.160034,541.110596,29.2208,180.3777,61.0200,200.0},
  1682. {17310,-2209.909424,1386.509033,535.090881,33.5180,180.3777,61.0200,200.0},
  1683. {17310,-2201.862305,1382.337036,528.876343,29.2208,180.3777,65.3172,200.0},
  1684. {17310,-2193.360107,1378.715210,523.544861,24.9237,180.3777,69.6144,200.0},
  1685. {17310,-2184.057373,1375.576660,518.928162,20.6265,180.3777,73.9116,200.0},
  1686. {17310,-2174.001953,1373.060303,515.083435,16.3293,180.3777,78.2087,200.0},
  1687. {17310,-2163.533936,1371.258179,512.074890,12.0321,180.3777,82.5059,200.0},
  1688. {17310,-2153.203613,1370.332153,509.638153,12.0321,180.3777,86.8031,200.0},
  1689. {17310,-2143.065674,1370.152832,507.247528,12.0321,180.3777,91.1003,200.0},
  1690. {17310,-2133.051758,1370.717651,504.881561,12.0321,180.3777,95.3975,200.0},
  1691. {17310,-2122.959961,1372.069580,502.449005,12.0321,180.3777,99.6947,200.0},
  1692. {17310,-2113.325439,1374.071777,500.105560,12.0321,180.3777,103.9918,200.0},
  1693. {17310,-2103.444580,1376.942627,497.695313,12.0321,180.3777,108.2890,200.0},
  1694. {17310,-2094.037354,1380.476196,495.301666,12.0321,180.3777,112.5862,200.0},
  1695. {17310,-2084.939941,1384.657471,492.915588,12.0321,180.3777,116.8834,200.0},
  1696. {17310,-2076.021240,1389.622314,490.448914,12.0321,180.3777,121.1806,200.0},
  1697. {17310,-2067.898926,1395.109253,488.008911,12.0321,180.3777,127.1967,200.0},
  1698. {17310,-2061.276123,1400.819702,485.624054,12.0321,180.3777,135.7911,200.0},
  1699. {17310,-2055.301758,1407.852661,483.192047,12.0321,180.3777,144.3854,200.0},
  1700. {17310,-2050.485840,1415.614990,480.756104,12.0321,180.3777,152.9798,200.0},
  1701. {17310,-2046.934692,1423.876709,478.329376,12.0321,180.3777,161.5742,200.0},
  1702. {17310,-2044.748291,1432.367554,475.948883,12.0321,180.3777,170.1685,200.0},
  1703. {17310,-2043.833374,1441.097412,473.552765,12.0321,180.3777,178.7629,200.0},
  1704. {17310,-2044.235962,1449.843384,471.187683,12.0321,180.3777,187.3573,200.0},
  1705. {17310,-2045.832031,1459.566895,468.837189,12.0321,180.3777,191.6544,200.0},
  1706. {17310,-2048.149170,1469.737915,466.509430,12.0321,180.3777,193.3734,200.0},
  1707. {17310,-2050.656982,1480.002563,464.421631,10.3132,180.3777,193.3734,200.0},
  1708. {17310,-2052.894531,1489.947632,462.553131,9.4538,180.3777,191.6544,200.0},
  1709. {17310,-2054.978027,1500.714111,460.727142,8.5944,180.3777,189.0762,200.0},
  1710. {17310,-2056.297607,1510.693481,459.015350,8.5944,180.3777,184.7790,200.0},
  1711. {17310,-2056.680176,1520.330688,457.278076,8.5944,180.3777,178.7629,200.0},
  1712. {17310,-2056.045654,1529.679321,455.469696,8.5944,180.3777,171.0280,200.0},
  1713. {17310,-2054.121826,1538.748901,453.705200,8.5944,180.3777,162.4336,200.0},
  1714. {17310,-2050.858398,1547.336304,451.899628,8.5944,180.3777,153.8392,200.0},
  1715. {17310,-2046.322998,1555.382324,450.185760,8.5944,180.3777,145.2449,200.0},
  1716. {17310,-2399.006836,1490.452759,566.780273,8.5944,180.3777,61.0200,200.0},
  1717. {17310,-2039.722290,1565.018188,448.414734,8.5944,180.3777,145.2449,200.0},
  1718. {17310,-2033.165405,1574.617188,446.657410,8.5944,180.3777,145.2449,200.0},
  1719. {17310,-2026.640015,1584.171631,444.909698,8.5944,180.3777,145.2449,200.0},
  1720. {17310,-2019.015869,1577.522827,447.214600,0.0,165.8715,55.0039,200.0},
  1721. {17310,-2028.260010,1583.912109,447.188934,0.0,165.8715,55.0039,200.0},
  1722. {17310,-2035.687500,1589.048584,447.165802,0.0,165.8715,55.0039,200.0},
  1723. {17310,-1981.110962,1648.475586,441.852753,16.3293,180.3777,145.2449,200.0},
  1724. {17310,-1974.754272,1657.743164,438.550140,16.3293,180.3777,145.2449,200.0},
  1725. {17310,-1968.423462,1667.013306,435.248932,16.3293,180.3777,145.2449,200.0},
  1726. {17310,-1962.045288,1676.336792,431.923950,16.3293,180.3777,145.2449,200.0},
  1727. {17310,-2847.057129,2001.198242,740.919373,0.0,180.3777,0.0,200.0},
  1728. {17310,-2847.144287,2012.642090,741.088013,1.7189,180.3777,0.0,200.0},
  1729. {17310,-2847.223877,2024.165161,741.534241,2.5783,180.3777,0.0,200.0},
  1730. {17310,-2847.306152,2030.426758,741.883972,6.8755,180.3777,0.0,200.0},
  1731. {17310,-2846.912109,1978.124146,740.893433,0.0,180.3777,0.0,200.0},
  1732. {17310,-2408.525146,1495.634521,568.725586,12.0321,180.3777,61.0200,200.0},
  1733. {17310,-1987.431152,1639.233887,445.132874,16.3293,180.3777,145.2449,200.0},
  1734. {17310,-2417.851318,1500.697266,571.640747,18.9076,180.3777,61.0200,200.0},
  1735. {17310,-2426.256592,1505.283813,575.418091,24.9237,180.3777,61.0200,200.0},
  1736. {17310,-2847.394775,2038.862915,742.908569,6.8755,180.3777,0.0,200.0},
  1737. {17310,-2847.397461,2048.715576,744.253052,8.5944,180.3777,0.0,200.0},
  1738. {17310,-1955.717285,1685.575195,429.083405,12.0321,180.3777,145.2449,200.0},
  1739. {17310,-1949.775879,1694.255859,427.237305,7.7349,180.3777,145.2449,200.0},
  1740. {17310,-1943.364136,1703.648682,426.121429,3.4377,180.3777,145.2449,200.0},
  1741. {17310,-1936.728149,1713.290649,425.862610,359.1406,180.3777,145.2449,200.0},
  1742. {17310,-1930.170776,1722.782471,426.484772,354.8434,180.3777,145.2449,200.0},
  1743. {17310,-1923.901855,1731.856934,427.922241,350.5462,180.3777,145.2449,200.0},
  1744. {17310,-1917.709106,1740.856323,430.178497,346.2490,180.3777,145.2449,200.0},
  1745. {17310,-1911.851318,1749.414673,432.878113,344.5301,180.3777,145.2449,200.0},
  1746. {17310,-1906.809570,1756.814453,435.463928,342.8113,180.3777,145.2449,200.0},
  1747. {17310,-1901.213257,1765.015503,438.630280,341.9518,180.3777,145.2449,200.0},
  1748. {17310,-1895.341431,1773.589478,442.095093,341.0924,180.3777,145.2449,200.0},
  1749. {17310,-1889.528198,1782.077148,445.689056,340.2330,180.3777,145.2449,200.0},
  1750. {17310,-1884.192627,1789.795410,449.473755,335.9358,180.3777,145.2449,200.0},
  1751. {17310,-1878.590820,1798.046509,454.437714,331.6386,180.3777,145.2449,200.0},
  1752. {17310,-1873.569702,1805.416748,459.651062,327.3414,180.3777,145.2449,200.0},
  1753. {17310,-1868.525879,1812.811035,465.866455,323.0442,180.3777,145.2449,200.0},
  1754. {17310,-1863.987915,1819.426392,472.357635,318.7470,180.3777,145.2449,200.0},
  1755. {17310,-1859.967285,1825.421143,479.147827,314.4499,180.3777,145.2449,200.0},
  1756. {17310,-1856.540527,1830.450562,485.351471,314.4499,180.3777,145.2449,200.0},
  1757. {17310,-1851.919678,1837.305908,493.125488,318.7470,180.3777,145.2449,200.0},
  1758. {17310,-1846.988403,1844.633057,499.708038,327.3414,180.3777,145.2449,200.0},
  1759. {17310,-1841.446655,1852.741333,504.928802,335.9358,180.3777,145.2449,200.0},
  1760. {17310,-1835.621704,1861.122925,508.540710,344.5301,180.3777,145.2449,200.0},
  1761. {17310,-1829.482666,1870.117432,510.616119,353.1245,180.3777,145.2449,200.0},
  1762. {17310,-1823.372925,1879.069824,511.044098,1.7189,180.3777,145.3222,200.0},
  1763. {17310,-1817.168213,1888.122070,509.812622,10.3132,180.3777,145.2449,200.0},
  1764. {17310,-1811.293335,1896.719238,507.010071,18.9076,180.3777,145.2449,200.0},
  1765. {17310,-1805.660767,1905.057007,502.589050,27.5020,180.3777,145.2449,200.0},
  1766. {17310,-1800.387939,1912.776001,496.690735,36.0963,180.3777,145.2449,200.0},
  1767. {17310,-1795.657471,1919.724976,490.016937,40.3935,180.3777,145.2449,200.0},
  1768. {17310,-1791.104736,1926.398804,482.535858,44.6907,180.3777,145.2449,200.0},
  1769. {17310,-1786.977539,1932.517578,474.553833,48.9879,180.3777,145.2449,200.0},
  1770. {17310,-1782.909424,1938.508423,465.799072,51.5662,180.3777,145.2449,200.0},
  1771. {17310,-1778.926758,1944.359131,456.873657,51.5662,180.3777,145.2449,200.0},
  1772. {17310,-1774.942749,1950.231812,447.930023,51.5662,180.3777,145.2449,200.0},
  1773. {17310,-1770.951660,1956.117188,438.950989,51.5662,180.3777,145.2449,200.0},
  1774. {17310,-1767.140869,1961.780518,430.350586,51.5662,180.3777,145.2449,200.0},
  1775. {17310,-1763.246338,1967.497803,421.620544,51.5662,180.3777,145.2449,200.0},
  1776. {17310,-1759.380493,1973.201538,412.930084,51.5662,180.3777,145.2449,200.0},
  1777. {17310,-1755.432251,1979.026611,404.053467,51.5662,180.3777,145.2449,200.0},
  1778. {17310,-1751.325806,1985.010864,394.873901,51.5662,180.3777,145.2449,200.0},
  1779. {17310,-1747.272583,1990.989624,385.784180,51.5662,180.3777,145.2449,200.0},
  1780. {17310,-1743.215332,1996.978516,376.642212,51.5662,180.3777,145.2449,200.0},
  1781. {17310,-1739.439575,2002.541382,368.172760,51.5662,180.3777,145.2449,200.0},
  1782. {17310,-1735.554199,2008.241211,359.434692,51.5662,180.3777,145.2449,200.0},
  1783. {17310,-1731.594360,2014.070190,350.556396,51.5662,180.3777,145.2449,200.0},
  1784. {17310,-1727.533447,2020.002075,341.458923,51.5662,180.3777,145.2449,200.0},
  1785. {17310,-1723.035767,2026.463989,339.942261,232.0480,179.5182,145.2449,200.0},
  1786. {17310,-1719.625977,2031.095337,330.468719,244.9395,179.5182,145.2449,200.0},
  1787. {17310,-1717.705688,2033.666748,319.594513,262.1282,179.5182,145.2449,200.0},
  1788. {17310,-1717.787964,2033.588257,308.639404,279.3169,179.5182,145.2449,200.0},
  1789. {17310,-1719.784302,2030.592041,297.578705,296.5056,179.5182,145.2449,200.0},
  1790. {17310,-1723.075439,2025.839478,289.833252,313.6943,179.5182,145.2449,200.0},
  1791. {17310,-1727.463379,2019.384033,283.893433,330.8830,179.5182,145.2449,200.0},
  1792. {17310,-1733.513550,2010.584473,278.969482,339.4773,179.5182,145.2449,200.0},
  1793.  
  1794. //DeadJump
  1795. {18450,-668.500549,-3053.174316,712.451477,239.6788,0.0,90.2409,200.0},
  1796. {18450,-677.913574,-3053.266357,712.476257,120.3212,0.0,90.2409,200.0},
  1797. {18450,-673.065613,-3088.875000,678.850891,0.0,90.2409,90.2409,200.0},
  1798. {18450,-673.529419,-2984.187012,677.075134,0.0,42.9718,90.2409,200.0},
  1799. {18450,-673.775513,-2925.705078,622.578003,0.0,42.9718,90.2409,200.0},
  1800. {18450,-674.046570,-2867.166748,568.057922,0.0,42.9718,90.2409,200.0},
  1801. {3858,-666.038330,-3013.218262,707.518982,0.0,0.0,45.5501,200.0},
  1802. {3858,-680.633423,-3013.348877,707.519226,0.0,0.0,45.5501,200.0},
  1803. {3858,-673.126282,-3013.295410,713.344299,0.0,0.0,45.5501,200.0},
  1804. {3859,-673.441162,-3013.303223,719.168884,0.0,0.0,287.8073,200.0},
  1805. {18450,-674.288513,-2808.784668,513.668457,0.0,42.9718,90.2409,200.0},
  1806. {18450,-674.421143,-2779.818604,488.442505,0.0,34.3775,90.2409,200.0},
  1807. {18450,-674.408630,-2779.203613,488.907562,0.0,25.7831,90.2409,200.0},
  1808. {18450,-674.418701,-2776.142822,488.103363,0.0,17.1887,90.2409,200.0},
  1809. {18450,-674.437866,-2772.545898,487.582458,0.0,8.5944,90.2409,200.0},
  1810. {18450,-674.444702,-2769.652832,487.562683,0.0,0.0,90.2409,200.0},
  1811. {18450,-674.494324,-2760.623535,488.749420,0.0,351.4056,90.2409,200.0},
  1812. {18450,-674.531494,-2751.302490,492.272278,0.0,342.8113,90.2409,200.0},
  1813. {18450,-674.519348,-2755.725586,491.817932,0.0,334.2169,90.2409,200.0},
  1814. {3858,-674.533386,-2754.397217,495.028503,0.0,0.0,44.6907,200.0},
  1815. {3858,-674.524231,-2750.678223,496.824921,0.0,0.0,44.6907,200.0},
  1816. {3858,-674.533569,-2747.098633,498.554138,0.0,0.0,44.6907,200.0},
  1817. {3858,-674.572754,-2743.490723,500.296967,0.0,0.0,44.6907,200.0},
  1818. {3858,-674.583801,-2740.053955,501.957092,0.0,0.0,44.6907,200.0},
  1819. {3858,-674.625305,-2736.375488,503.734039,0.0,0.0,44.6907,200.0},
  1820. {3858,-674.609436,-2732.942139,505.392517,0.0,0.0,44.6907,200.0},
  1821. {3858,-674.640259,-2729.264893,507.168915,0.0,0.0,44.6907,200.0},
  1822. {3858,-674.667542,-2725.883057,508.802612,0.0,0.0,44.6907,200.0},
  1823. {3858,-674.678467,-2722.069824,510.644562,0.0,0.0,44.6907,200.0},
  1824. {3858,-674.513123,-2757.566162,493.497711,0.0,0.0,44.6907,200.0},
  1825. {3858,-674.384399,-2761.625732,491.886292,0.0,0.0,44.6907,200.0},
  1826. {3858,-674.457397,-2765.704590,491.014099,0.0,0.0,44.6907,200.0},
  1827. {3858,-674.355530,-2769.651855,490.818115,0.0,0.0,44.6907,200.0},
  1828. {3858,-674.466858,-2773.800293,491.258057,0.0,0.0,44.6907,200.0},
  1829. {3858,-674.452271,-2777.473145,492.250336,0.0,0.0,44.6907,200.0},
  1830. {3858,-674.241577,-2780.932373,493.760956,0.0,0.0,44.6907,200.0},
  1831. {1225,-681.339111,-2720.328613,509.942169,0.0,0.0,0.0,200.0},
  1832. {1225,-667.900330,-2720.480957,509.841278,0.0,0.0,0.0,200.0},
  1833. {1225,-674.702637,-2720.291016,509.722565,0.0,0.0,0.0,200.0},
  1834. {1225,-671.487549,-2720.345459,509.689667,0.0,0.0,0.0,200.0},
  1835. {1225,-677.742676,-2720.319092,509.715179,0.0,0.0,0.0,200.0},
  1836. {1225,-676.189026,-2720.296875,509.722656,0.0,0.0,0.0,200.0},
  1837. {1225,-673.092163,-2720.303467,509.713257,0.0,0.0,0.0,200.0},
  1838. {1225,-669.731140,-2720.380859,509.669006,0.0,0.0,0.0,200.0},
  1839. {1225,-679.546631,-2720.325684,509.715637,0.0,0.0,0.0,200.0},
  1840. {2780,-682.418823,-2720.621338,509.620941,0.0,0.0,91.2041,200.0},
  1841. {2780,-667.001709,-2720.437500,509.672913,0.0,0.0,269.8630,200.0},
  1842. {3461,-666.991882,-3013.745850,706.384338,0.0,0.0,0.0,200.0},
  1843. {3461,-679.768921,-3013.793457,706.384338,0.0,0.0,0.0,200.0},
  1844. {2780,-673.357544,-3013.414795,718.614258,0.0,0.0,180.4818,200.0},
  1845.  
  1846. //Derby
  1847. {1225,-1437.6321,1012.5579,1024.0262,0.0,0.0,0.0,300.0},
  1848. {1225,-1411.2072,981.1719,1023.2875,0.0,0.0,0.0,300.0},
  1849. {1225,-1363.4912,1003.5114,1023.5768,0.0,0.0,0.0,300.0},
  1850. {1225,-1511.4346,985.7604,1036.8913,0.0,0.0,0.0,300.0},
  1851. {1225,-1463.9290,935.0095,1035.9970,0.0,0.0,0.0,300.0},
  1852. {1225,-1366.8185,934.3455,1035.7408,0.0,0.0,0.0,300.0},
  1853.  
  1854. //Dirt
  1855. {3515,-1299.7103,-694.8090,1054.3800,0.0,0.0,0.0,300.0},
  1856. {3515,-1304.3872,-697.9171,1054.3800,0.0,0.0,0.0,300.0},
  1857.  
  1858. //UpsideDown
  1859. {18450, 553.5003, -82.5913, 437.7818, 0.0000, 36.9558, 0.0000, 300.0},
  1860. {18450, 616.5524, -82.6003, 390.3616, 0.0000, 36.9558, 0.0000, 300.0},
  1861. {18450, 680.1129, -82.6018, 342.5417, 0.0000, 36.9558, 0.0000, 300.0},
  1862. {18450, 735.1129, -82.5996, 330.5417, 0.0000, 0.0000, 0.0000, 300.0},
  1863. {18450, 742.9346, -82.7075, 331.1572, 0.1509, 351.0000, 359.0474, 300.0},
  1864. {18450, 750.5638, -83.0305, 332.9888, 0.5961, 342.0000, 358.1654, 300.0},
  1865. {18450, 757.8124, -83.5667, 335.9913, 1.3136, 333.0000, 357.4219, 300.0},
  1866. {18450, 764.5022, -84.3127, 340.0908, 2.2677, 324.0000, 356.8788, 300.0},
  1867. {18450, 770.4683, -85.2639, 345.1863, 3.4100, 315.0000, 356.5900, 300.0},
  1868. {18450, 775.5638, -86.4143, 351.1524, 4.6818, 306.0000, 356.5985, 300.0},
  1869. {18450, 779.6633, -87.7573, 357.8421, 6.0157, 297.0000, 356.9348, 300.0},
  1870. {18450, 782.6658, -89.2839, 365.0908, 7.3384, 288.0000, 357.6156, 300.0},
  1871. {18450, 784.4973, -90.9854, 372.7199, 8.5736, 279.0000, 358.6421, 300.0},
  1872. {18450, 785.1129, -92.8508, 380.5417, 9.6450, 270.0000, 0.0000, 300.0},
  1873. {18450, 784.4973, -94.8689, 388.3634, 10.4789, 261.0000, 1.6597, 300.0},
  1874. {18450, 782.6657, -97.0273, 395.9925, 11.0076, 252.0000, 3.5766, 300.0},
  1875. {18450, 779.6633, -99.3120, 403.2412, 11.1719, 243.0000, 5.6924, 300.0},
  1876. {18450, 775.5638, -101.7100, 409.9309, 10.9242, 234.0000, 7.9369, 300.0},
  1877. {18450, 770.4683, -104.2056, 415.8970, 10.2301, 225.0000, 10.2301, 300.0},
  1878. {18450, 764.5022, -106.7842, 420.9925, 9.0707, 216.0000, 12.4848, 300.0},
  1879. {18450, 757.8124, -109.4292, 425.0920, 7.4439, 207.0000, 14.6094, 300.0},
  1880. {18450, 750.5638, -112.1245, 428.0945, 5.3648, 198.0000, 16.5113, 300.0},
  1881. {18450, 742.9346, -114.8535, 429.9261, 2.8667, 189.0000, 18.0999, 300.0},
  1882. {18450, 735.1129, -117.5996, 430.5417, 0.0000, 180.0000, 19.2901, 300.0},
  1883. {18450, 727.2912, -120.3457, 429.9261, 357.1333, 171.0000, 18.0999, 300.0},
  1884. {18450, 719.6620, -123.0747, 428.0945, 354.6352, 162.0000, 16.5113, 300.0},
  1885. {18450, 712.4134, -125.7700, 425.0920, 352.5561, 153.0000, 14.6094, 300.0},
  1886. {18450, 705.7236, -128.4150, 420.9925, 350.9293, 144.0000, 12.4848, 300.0},
  1887. {18450, 699.7576, -130.9937, 415.8970, 349.7699, 135.0000, 10.2301, 300.0},
  1888. {18450, 694.6620, -133.4893, 409.9309, 349.0758, 126.0000, 7.9369, 300.0},
  1889. {18450, 690.5626, -135.8872, 403.2412, 348.8281, 117.0000, 5.6924, 300.0},
  1890. {18450, 687.5601, -138.1719, 395.9925, 348.9924, 108.0000, 3.5766, 300.0},
  1891. {18450, 685.7285, -140.3301, 388.3634, 349.5211, 99.0000, 1.6597, 300.0},
  1892. {18450, 685.1129, -142.3481, 380.5417, 350.3550, 90.0000, 0.0000, 300.0},
  1893. {18450, 685.7285, -144.2139, 372.7199, 351.4264, 81.0000, 358.6421, 300.0},
  1894. {18450, 687.5601, -145.9150, 365.0908, 352.6616, 72.0000, 357.6156, 300.0},
  1895. {18450, 690.5626, -147.4419, 357.8421, 353.9843, 63.0000, 356.9348, 300.0},
  1896. {18450, 694.6620, -148.7847, 351.1524, 355.3182, 54.0000, 356.5985, 300.0},
  1897. {18450, 699.7576, -149.9355, 345.1863, 356.5900, 45.0000, 356.5900, 300.0},
  1898. {18450, 705.7236, -150.8867, 340.0908, 357.7323, 36.0000, 356.8788, 300.0},
  1899. {18450, 712.4134, -151.6323, 335.9913, 358.6864, 27.0000, 357.4219, 300.0},
  1900. {18450, 719.6620, -152.1689, 332.9888, 359.4039, 18.0000, 358.1654, 300.0},
  1901. {18450, 727.2912, -152.4917, 331.1572, 359.8491, 9.0000, 359.0474, 300.0},
  1902. {18450, 697.7601, -82.6326, 336.7147, 0.0000, 16.3293, 0.0000, 300.0},
  1903. {18450, 718.7543, -82.6394, 331.7536, 0.0000, 7.7349, 0.0000, 300.0},
  1904. {18450, 676.1064, -82.6167, 345.8299, 0.0000, 24.0642, 0.0000, 300.0},
  1905. {18450, 677.3790, -82.6135, 345.6038, 0.0000, 28.3614, 0.0000, 300.0},
  1906. {18450, 707.7369, -82.6375, 333.9504, 0.0000, 12.0321, 0.0000, 300.0},
  1907. {18450, 675.0910, -82.6252, 346.9226, 0.0000, 30.9397, 0.0000, 300.0},
  1908. {18450, 692.8816, -82.6294, 338.5391, 0.0000, 19.7670, 0.0000, 300.0},
  1909. {18450, 675.2898, -82.6199, 346.7725, 0.0000, 32.6586, 0.0000, 300.0},
  1910. {18450, 489.9696, -82.5801, 485.5832, 0.0000, 36.9558, 0.0000, 300.0},
  1911. {18450, 426.7872, -82.5884, 533.1097, 0.0000, 36.9558, 0.0000, 300.0},
  1912. {18450, 355.0431, -82.5830, 557.0816, 0.0000, 0.0000, 0.0000, 300.0},
  1913. {18450, 804.9330, -153.8135, 318.8557, 359.8491, 9.0000, 359.0474, 300.0},
  1914. {18450, 804.9330, -153.8135, 318.8557, 0.0000, 0.0000, 0.0000, 300.0},
  1915. {18450, 809.9463, -153.8232, 319.1711, 0.0179, 352.8000, 359.8581, 300.0},
  1916. {18450, 814.8806, -153.8530, 320.1124, 0.0712, 345.6000, 359.7229, 300.0},
  1917. {18450, 819.6580, -153.9019, 321.6647, 0.1580, 338.4000, 359.6010, 300.0},
  1918. {18450, 824.2031, -153.9707, 323.8035, 0.2756, 331.2000, 359.4985, 300.0},
  1919. {18450, 828.4444, -154.0581, 326.4951, 0.4204, 324.0000, 359.4213, 300.0},
  1920. {18450, 832.3149, -154.1646, 329.6970, 0.5876, 316.8000, 359.3743, 300.0},
  1921. {18450, 835.7535, -154.2896, 333.3588, 0.7715, 309.6000, 359.3617, 300.0},
  1922. {18450, 838.7061, -154.4321, 337.4227, 0.9663, 302.4000, 359.3868, 300.0},
  1923. {18450, 841.1260, -154.5918, 341.8246, 1.1649, 295.2000, 359.4518, 300.0},
  1924. {18450, 842.9752, -154.7686, 346.4951, 1.3605, 288.0000, 359.5580, 300.0},
  1925. {18450, 844.2245, -154.9609, 351.3605, 1.5457, 280.8000, 359.7052, 300.0},
  1926. {3095, 855.9197, -152.5977, 390.2198, 1.7189, 0.0000, 0.0000, 300.0},
  1927. {3095, 855.9330, -159.5430, 390.0218, 1.7189, 0.0000, 0.0000, 300.0},
  1928. {18450, 874.5787, -156.8101, 353.1491, 0.0000, 68.7549, 0.0000, 300.0},
  1929. {18450, 916.4086, -156.3423, 255.1765, 356.1113, 54.0000, 357.1747, 300.0},
  1930. {18450, 921.5041, -157.1094, 249.2354, 356.5012, 45.0000, 356.5012, 300.0},
  1931. {18450, 927.4702, -157.8823, 244.1399, 357.0085, 36.0000, 355.8826, 300.0},
  1932. {18450, 934.1599, -158.6606, 240.0404, 357.6253, 27.0000, 355.3393, 300.0},
  1933. {18450, 941.4086, -159.4419, 237.0379, 358.3399, 18.0000, 354.8907, 300.0},
  1934. {18450, 949.0377, -160.2261, 235.2063, 359.1375, 9.0000, 354.5543, 300.0},
  1935. {18450, 956.8594, -161.0112, 234.5908, 0.0000, 0.0000, 354.3450, 300.0},
  1936. {18450, 964.6812, -161.7964, 235.2063, 0.8625, 351.0000, 354.5543, 300.0},
  1937. {18450, 972.3103, -162.5806, 237.0379, 1.6601, 342.0000, 354.8907, 300.0},
  1938. {18450, 979.5590, -163.3618, 240.0404, 2.3747, 333.0000, 355.3393, 300.0},
  1939. {18450, 986.2487, -164.1401, 244.1399, 2.9915, 324.0000, 355.8826, 300.0},
  1940. {18450, 992.2148, -164.9131, 249.2354, 3.4988, 315.0000, 356.5012, 300.0},
  1941. {18450, 997.3103, -165.6802, 255.2015, 3.8887, 306.0000, 357.1747, 300.0},
  1942. {18450, 1001.4098, -166.4399, 261.8912, 4.1569, 297.0000, 357.8820, 300.0},
  1943. {18450, 1004.4123, -167.1914, 269.1399, 4.3026, 288.0000, 358.6020, 300.0},
  1944. {18450, 1006.2438, -167.9336, 276.7690, 4.3286, 279.0000, 359.3144, 300.0},
  1945. {18450, 1006.8594, -168.6650, 284.5908, 4.2412, 270.0000, 0.0000, 300.0},
  1946. {18450, 1006.2438, -169.3843, 292.4125, 4.0494, 261.0000, 0.6414, 300.0},
  1947. {18450, 1004.4122, -170.0908, 300.0416, 3.7647, 252.0000, 1.2233, 300.0},
  1948. {18450, 1001.4098, -170.7837, 307.2903, 3.4011, 243.0000, 1.7329, 300.0},
  1949. {18450, 997.3103, -171.4614, 313.9800, 2.9737, 234.0000, 2.1605, 300.0},
  1950. {18450, 992.2148, -172.1226, 319.9461, 2.4992, 225.0000, 2.4992, 300.0},
  1951. {18450, 986.2487, -172.7671, 325.0416, 1.9944, 216.0000, 2.7450, 300.0},
  1952. {18450, 904.5354, -156.5425, 280.8014, 0.0000, 66.1766, 0.8594, 300.0},
  1953. {18450, 937.0660, -174.0830, 315.6768, 0.0000, 347.1084, 359.1406, 300.0},
  1954. {18450, 889.9211, -174.2622, 302.9003, 357.2414, 128.0914, 1.2981, 300.0},
  1955. {18450, 887.5974, -174.7700, 301.2982, 357.3796, 100.8000, 0.4998, 300.0},
  1956. {18450, 887.1252, -175.2280, 293.7931, 357.7180, 86.4000, 359.8564, 300.0},
  1957. {18450, 888.5343, -175.6279, 286.4063, 358.1878, 72.0000, 359.4112, 300.0},
  1958. {18450, 891.7361, -175.9644, 279.6020, 358.7129, 57.6000, 359.1832, 300.0},
  1959. {18450, 896.5295, -176.2319, 273.8077, 359.2174, 43.2000, 359.1666, 300.0},
  1960. {18450, 902.6133, -176.4258, 269.3876, 359.6328, 28.8000, 359.3321, 300.0},
  1961. {18450, 909.6053, -176.5435, 266.6193, 359.9052, 14.4000, 359.6309, 300.0},
  1962. {18450, 933.2430, -178.1240, 264.5322, 0.0000, 3.4377, 355.7028, 300.0},
  1963. {18450, 978.4335, -181.3286, 262.1100, 0.0000, 0.8594, 357.4217, 300.0},
  1964. {18450, 1037.5753, -183.0098, 262.2126, 0.0000, 358.2811, 0.0000, 300.0},
  1965. {18450, 1180.5320, -183.3281, 228.9525, 0.0000, 18.9076, 0.0000, 300.0},
  1966. {18450, 1254.5227, -183.3042, 203.6059, 0.0000, 18.9076, 0.0000, 300.0},
  1967. {18450, 1328.4685, -183.2905, 178.2718, 0.0000, 18.9076, 0.0000, 300.0},
  1968. {18450, 1400.7626, -183.8584, 153.5043, 0.0000, 18.9076, 359.1406, 300.0},
  1969. {18450, 1391.7327, -183.7959, 157.6969, 358.5001, 15.0000, 359.4021, 300.0},
  1970. {18450, 1396.2087, -183.8931, 156.8038, 359.2271, 7.5000, 359.1293, 300.0},
  1971. {18450, 1400.7626, -183.9839, 156.5043, 0.0000, 0.0000, 358.9526, 300.0},
  1972. {18450, 1405.3164, -184.0747, 156.8038, 0.7729, 352.5000, 359.1293, 300.0},
  1973. {18450, 1409.7925, -184.1719, 157.6969, 1.4999, 345.0000, 359.4021, 300.0},
  1974. {18450, 1414.1140, -184.2813, 159.1685, 2.1696, 337.5000, 359.7622, 300.0},
  1975. {18450, 1418.2074, -184.4092, 161.1935, 2.7717, 330.0000, 0.1993, 300.0},
  1976. {18450, 1422.0023, -184.5610, 163.7370, 3.2979, 322.5000, 0.7020, 300.0},
  1977. {18450, 1425.4341, -184.7422, 166.7556, 3.7416, 315.0000, 1.2584, 300.0},
  1978. {18450, 1428.4441, -184.9570, 170.1977, 4.0980, 307.5000, 1.8555, 300.0},
  1979. {18450, 1430.9807, -185.2095, 174.0043, 4.3643, 300.0000, 2.4803, 300.0},
  1980. {18450, 1433.0006, -185.5034, 178.1104, 4.5395, 292.5000, 3.1197, 300.0},
  1981. {18450, 1434.4694, -185.8408, 182.4457, 4.6244, 285.0000, 3.7609, 300.0},
  1982. {18450, 1435.3618, -186.2231, 186.9359, 4.6216, 277.5000, 4.3915, 300.0},
  1983. {18450, 1435.6627, -186.6519, 191.5043, 4.5355, 270.0000, 5.0000, 300.0},
  1984. {18450, 1435.3671, -187.1265, 196.0728, 4.3718, 262.5000, 5.5756, 300.0},
  1985. {18450, 1434.4799, -187.6465, 200.5630, 4.1376, 255.0000, 6.1086, 300.0},
  1986. {18450, 1433.0164, -188.2095, 204.8982, 3.8411, 247.5000, 6.5910, 300.0},
  1987. {18450, 1431.0017, -188.8135, 209.0043, 3.4914, 240.0000, 7.0158, 300.0},
  1988. {18450, 1428.4703, -189.4546, 212.8110, 3.0985, 232.5000, 7.3776, 300.0},
  1989. {18450, 1425.4656, -190.1289, 216.2531, 2.6726, 225.0000, 7.6726, 300.0},
  1990. {18450, 1422.0389, -190.8306, 219.2717, 2.2242, 217.5000, 7.8986, 300.0},
  1991. {18450, 1418.2490, -191.5552, 221.8152, 1.7638, 210.0000, 8.0550, 300.0},
  1992. {18450, 1414.1608, -192.2964, 223.8401, 1.3018, 202.5000, 8.1427, 300.0},
  1993. {18450, 1409.8442, -193.0469, 225.3117, 0.8478, 195.0000, 8.1641, 300.0},
  1994. {18450, 1405.3732, -193.8008, 226.2049, 0.4111, 187.5000, 8.1227, 300.0},
  1995. {18450, 1400.8242, -194.5503, 226.5043, 0.0000, 180.0000, 8.0237, 300.0},
  1996. {18450, 1396.2751, -195.2886, 226.2049, 359.6218, 172.5000, 7.8729, 300.0},
  1997. {18450, 1391.8038, -196.0083, 225.3117, 359.2826, 165.0000, 7.6773, 300.0},
  1998. {18450, 1387.4869, -196.7021, 223.8401, 358.9875, 157.5000, 7.4443, 300.0},
  1999. {18450, 1383.3983, -197.3643, 221.8152, 358.7401, 150.0000, 7.1821, 300.0},
  2000. {18450, 1379.6079, -197.9873, 219.2717, 358.5428, 142.5000, 6.8991, 300.0},
  2001. {18450, 1376.1804, -198.5654, 216.2531, 358.3965, 135.0000, 6.6036, 300.0},
  2002. {18450, 1373.1749, -199.0938, 212.8110, 358.3008, 127.5000, 6.3039, 300.0},
  2003. {18450, 1370.6425, -199.5664, 209.0043, 358.2543, 120.0000, 6.0079, 300.0},
  2004. {18450, 1368.6267, -199.9805, 204.8983, 358.2540, 112.5000, 5.7232, 300.0},
  2005. {18450, 1367.1620, -200.3325, 200.5630, 358.2963, 105.0000, 5.4565, 300.0},
  2006. {18450, 1366.2734, -200.6191, 196.0728, 358.3762, 97.5000, 5.2138, 300.0},
  2007. {18450, 1365.9763, -200.8398, 191.5043, 358.4881, 90.0000, 5.0000, 300.0},
  2008. {18450, 1366.2756, -200.9937, 186.9359, 358.6260, 82.5000, 4.8191, 300.0},
  2009. {18450, 1367.1664, -201.0801, 182.4457, 358.7830, 75.0000, 4.6739, 300.0},
  2010. {18450, 1368.6332, -201.1016, 178.1104, 358.9524, 67.5000, 4.5661, 300.0},
  2011. {18450, 1399.1293, -199.9961, 106.0779, 358.9524, 66.6405, 4.5661, 300.0},
  2012. {18450, 1422.4006, -199.9336, 57.2685, 358.6856, 63.0000, 1.3302, 300.0},
  2013. {18450, 1425.9048, -200.0088, 51.9167, 358.7703, 54.0000, 1.1066, 300.0},
  2014. {18450, 1429.9801, -200.0581, 47.1438, 358.8936, 45.0000, 0.8936, 300.0},
  2015. {18450, 1434.7513, -200.0850, 43.0674, 359.0540, 36.0000, 0.6980, 300.0},
  2016. {18450, 1440.1012, -200.0923, 39.7878, 359.2491, 27.0000, 0.5262, 300.0},
  2017. {18450, 1445.8981, -200.0854, 37.3858, 359.4751, 18.0000, 0.3844, 300.0},
  2018. {18450, 1451.9990, -200.0679, 35.9205, 359.7273, 9.0000, 0.2780, 300.0},
  2019. {18450, 1458.2539, -200.0459, 35.4281, 0.0000, 0.0000, 0.2118, 300.0},
  2020. {18450, 1464.5088, -200.0239, 35.9205, 0.2727, 351.0000, 0.2780, 300.0},
  2021. {18450, 1470.6097, -200.0063, 37.3858, 0.5249, 342.0000, 0.3844, 300.0},
  2022. {18450, 1476.4066, -199.9995, 39.7878, 0.7509, 333.0000, 0.5262, 300.0},
  2023. {18450, 1481.7565, -200.0068, 43.0674, 0.9460, 324.0000, 0.6980, 300.0},
  2024. {18450, 1486.5277, -200.0337, 47.1438, 1.1064, 315.0000, 0.8936, 300.0},
  2025. {18450, 1490.6030, -200.0830, 51.9167, 1.2297, 306.0000, 1.1066, 300.0},
  2026. {18450, 1493.8820, -200.1582, 57.2685, 1.3144, 297.0000, 1.3302, 300.0},
  2027. {18450, 1496.2838, -200.2622, 63.0674, 1.3605, 288.0000, 1.5579, 300.0},
  2028. {18450, 1497.7495, -200.3965, 69.1707, 1.3688, 279.0000, 1.7832, 300.0},
  2029. {18450, 1503.0677, -200.3877, 75.4281, 1.3411, 270.0000, 2.0000, 300.0},
  2030. {1225, 1502.7780, -201.3359, 115.8307, 0.0000, 0.0000, 0.0000, 300.0},
  2031. {1225, 1503.0697, -206.9048, 115.7001, 0.0000, 0.0000, 0.0000, 300.0},
  2032. {1225, 1502.6503, -195.7656, 115.9611, 0.0000, 0.0000, 0.0000, 300.0},
  2033. {1225, 1502.6545, -198.4053, 115.8828, 0.0000, 0.0000, 0.0000, 300.0},
  2034. {1225, 1502.8709, -204.2427, 115.7626, 0.0000, 0.0000, 0.0000, 300.0},
  2035. {1225, 1502.8073, -202.7759, 115.7925, 0.0000, 0.0000, 0.0000, 300.0},
  2036. {1225, 1502.7211, -199.9233, 115.8638, 0.0000, 0.0000, 0.0000, 300.0},
  2037. {1225, 1502.6077, -197.0635, 115.9155, 0.0000, 0.0000, 0.0000, 300.0},
  2038. {1225, 1502.9508, -205.6172, 115.7304, 0.0000, 0.0000, 0.0000, 300.0},
  2039. {18450, 352.5808, -82.5942, 559.9935, 0.0000, 269.7591, 180.4818, 300.0},
  2040. {18450, 355.0443, -87.4009, 565.2955, 240.5383, 0.0000, 0.0000, 300.0},
  2041. {18450, 355.0446, -77.8848, 565.2695, 120.3212, 0.0000, 0.0000, 300.0},
  2042. {3461, 394.8508, -88.8179, 559.2024, 0.0000, 0.0000, 0.0000, 300.0},
  2043. {3461, 394.8649, -76.4055, 559.2024, 0.0000, 0.0000, 0.0000, 300.0},
  2044. {1217, 391.3192, -88.9509, 558.0488, 0.0000, 0.0000, 0.0000, 300.0},
  2045. {1217, 369.9450, -76.1333, 558.0488, 0.0000, 0.0000, 111.7268, 300.0},
  2046.  
  2047. //Aquapark
  2048. {3886, 270.2389, -1903.4749, -0.0806, 0.0000, 0.0000, 0.0000, 200.0},
  2049. {3886, 270.2288, -1913.9337, -0.0862, 0.0000, 0.0000, 0.0000, 200.0},
  2050. {3886, 270.2347, -1893.0541, -0.0799, 0.0000, 0.0000, 0.0000, 200.0},
  2051. {10830, 269.9148, -1908.1783, 6.2043, 0.0000, 0.0000, 44.6907, 200.0},
  2052. {3886, 292.2678, -1893.0662, -0.0792, 0.0000, 0.0000, 0.0000, 200.0},
  2053. {3886, 292.2609, -1903.5209, -0.0786, 0.0000, 0.0000, 0.0000, 200.0},
  2054. {3886, 292.2617, -1913.9647, -0.0707, 0.0000, 0.0000, 0.0000, 200.0},
  2055. {3886, 247.7213, -1893.0643, -0.1042, 0.0000, 0.0000, 0.0000, 200.0},
  2056. {3886, 247.7234, -1903.5269, -0.1036, 0.0000, 0.0000, 0.0000, 200.0},
  2057. {3886, 247.7287, -1913.9801, -0.1029, 0.0000, 0.0000, 0.0000, 200.0},
  2058. {3886, 292.2758, -1924.4330, -0.0700, 0.0000, 0.0000, 0.0000, 200.0},
  2059. {3886, 270.2150, -1924.3843, -0.0856, 0.0000, 0.0000, 0.0000, 200.0},
  2060. {3886, 247.7223, -1924.4334, -0.1022, 0.0000, 0.0000, 0.0000, 200.0},
  2061. {1461, 267.0533, -1888.0021, 1.1679, 0.0000, 0.0000, 179.5182, 200.0},
  2062. {2406, 294.1964, -1926.4211, 2.0787, 354.8434, 0.0000, 269.7591, 200.0},
  2063. {9958, 240.4881, -2034.7786, 6.5896, 0.0000, 0.0000, 85.9437, 200.0},
  2064. {10794, 65.8584, -2016.4169, 3.5830, 0.0000, 0.0000, 304.1366, 200.0},
  2065. {10795, 64.5922, -2014.5394, 13.6410, 0.0000, 0.0000, 304.1366, 200.0},
  2066. {10793, 23.6355, -1954.1375, 32.1630, 0.0000, 0.0000, 304.1366, 200.0},
  2067. {1655, 176.0548, -1921.3442, 0.6864, 0.0000, 0.0000, 90.2409, 200.0},
  2068. {1655, 135.7287, -1930.6873, 0.6166, 0.0000, 0.0000, 270.7226, 200.0},
  2069. {1655, 257.9556, -2049.8796, 0.6281, 0.0000, 0.0000, 0.0000, 200.0},
  2070. {1655, 223.8711, -2019.2240, 0.6503, 0.0000, 0.0000, 176.1846, 200.0},
  2071. {1655, 338.3709, -1997.5220, 0.6556, 0.0000, 0.0000, 269.7591, 200.0},
  2072. {1655, 399.2716, -1974.7643, 0.5922, 0.0000, 0.0000, 90.2409, 200.0},
  2073. {13641, 307.5326, -2071.2432, 1.1097, 0.0000, 0.0000, 265.4620, 200.0},
  2074. {13641, 307.1726, -2096.5791, 1.1127, 0.0000, 0.0000, 85.9437, 200.0},
  2075. {16084, 320.1997, -1893.7853, -6.4078, 0.0000, 0.0000, 282.6507, 200.0},
  2076. {16367, 181.3391, -1996.0721, 1.7848, 0.0000, 0.0000, 34.3775, 200.0},
  2077. {18568, 303.3840, -2018.6761, 0.6134, 0.0000, 0.0000, 307.5744, 200.0},
  2078. {1631, 228.2651, -2090.0732, -0.1480, 0.0000, 0.0000, 42.9718, 200.0},
  2079. {1655, 205.2732, -2047.9368, 0.6057, 0.0000, 0.0000, 0.0000, 200.0},
  2080. {1655, 331.7858, -1928.8414, 0.6702, 0.0000, 0.0000, 90.2409, 200.0},
  2081. {1655, 246.8055, -2020.8043, 0.6425, 0.0000, 0.0000, 176.1846, 200.0},
  2082. {1655, 213.5373, -2098.1270, 0.6260, 0.0000, 0.0000, 250.8515, 200.0},
  2083. {1655, 140.7392, -2046.2728, 0.6278, 0.0000, 0.0000, 26.6425, 200.0},
  2084. {1655, 215.4995, -1986.5206, 0.5849, 0.0000, 0.0000, 292.2084, 200.0},
  2085. {620, 199.7988, -1942.0209, 0.1403, 0.0000, 0.0000, 0.0000, 200.0},
  2086. {620, 281.7546, -2023.3300, 0.0143, 0.0000, 0.0000, 0.0000, 200.0},
  2087. {620, 360.4266, -1971.8181, 0.0508, 0.0000, 0.0000, 0.0000, 200.0},
  2088. {620, 229.5570, -2069.8955, 0.0486, 0.0000, 0.0000, 0.0000, 200.0},
  2089. {620, 142.1813, -1900.0851, 0.1090, 0.0000, 0.0000, 0.0000, 200.0},
  2090. {620, 172.3031, -1988.1475, 0.0507, 0.0000, 0.0000, 0.0000, 200.0},
  2091. {620, 417.5825, -2059.3003, -0.1046, 0.0000, 0.0000, 0.0000, 200.0},
  2092. {624, 388.7510, -1953.5859, -0.5228, 0.0000, 0.0000, 0.0000, 200.0},
  2093. {624, 305.9245, -1940.3767, -0.6416, 0.0000, 0.0000, 0.0000, 200.0},
  2094. {624, 338.0480, -1897.3988, -0.2437, 0.0000, 0.0000, 0.0000, 200.0},
  2095. {624, 300.8809, -1973.1747, -0.5953, 0.0000, 0.0000, 0.0000, 200.0},
  2096. {624, 332.7998, -2091.1997, -0.5702, 0.0000, 0.0000, 0.0000, 200.0},
  2097. {624, 161.2962, -2035.9625, -0.6495, 0.0000, 0.0000, 0.0000, 200.0},
  2098. {624, 168.8699, -2101.1411, -0.5839, 0.0000, 0.0000, 0.0000, 200.0},
  2099. {624, 61.3932, -1925.4005, -0.6314, 0.0000, 0.0000, 0.0000, 200.0},
  2100. {624, 212.3911, -1977.6418, -0.5524, 0.0000, 0.0000, 0.0000, 200.0},
  2101. {624, 357.6260, -2017.4916, -0.6412, 0.0000, 0.0000, 0.0000, 200.0},
  2102. {3819, 219.0754, -1890.2179, 0.6644, 0.0000, 0.0000, 90.2409, 200.0},
  2103. {1322, 272.1903, -1928.2820, 3.5472, 0.0000, 0.0000, 90.2409, 200.0},
  2104. {2745, 281.4561, -1887.8958, 1.9044, 0.0000, 0.0000, 179.6223, 200.0},
  2105. {2745, 258.5247, -1887.9580, 1.1614, 0.0000, 0.0000, 179.6223, 200.0},
  2106. {3467, 250.2881, -1873.2852, 1.7260, 0.0000, 0.0000, 0.0000, 200.0},
  2107. {8644, 269.9415, -1884.0371, 11.2331, 0.0000, 0.0000, 296.4017, 200.0},
  2108. {14467, 224.2530, -1983.6698, 2.7996, 0.0000, 0.0000, 342.8113, 200.0},
  2109. {1217, 290.9966, -1922.5129, 1.2498, 0.0000, 0.0000, 0.0000, 200.0},
  2110. {1217, 268.9820, -1901.5397, 1.2392, 0.0000, 0.0000, 0.0000, 200.0},
  2111. {1222, 246.2610, -1929.0428, 1.2723, 0.0000, 0.0000, 0.0000, 200.0},
  2112. {1243, 260.7498, -1979.8322, -3.3263, 0.0000, 0.0000, 0.0000, 200.0},
  2113. {3374, 221.2186, -2100.9844, 1.4543, 0.0000, 0.0000, 321.3253, 200.0},
  2114. {3374, 342.2014, -1955.8280, 1.5164, 0.0000, 0.0000, 0.0000, 200.0},
  2115. {3374, 342.5944, -1960.7034, 1.5086, 0.0000, 0.0000, 0.0000, 200.0},
  2116. {3374, 342.0945, -1964.6917, 1.4340, 0.0000, 0.0000, 0.0000, 200.0},
  2117. {3374, 342.7377, -1957.3540, 4.5164, 0.0000, 0.0000, 0.0000, 200.0},
  2118. {3374, 342.5350, -1962.7455, 4.4340, 0.0000, 0.0000, 0.0000, 200.0},
  2119. {3374, 342.4809, -1959.0223, 7.5103, 0.0000, 0.0000, 0.0000, 200.0},
  2120. {3461, 290.3248, -1888.2214, 2.3942, 0.0000, 0.0000, 0.0000, 200.0},
  2121. {3461, 249.5480, -1888.4010, 2.3692, 0.0000, 0.0000, 0.0000, 200.0},
  2122. {3461, 272.1361, -1888.3689, 2.3935, 0.0000, 0.0000, 0.0000, 200.0},
  2123. {7073, 155.2065, -1944.1826, 44.2287, 359.1406, 0.0000, 0.0000, 200.0},
  2124. {7392, 360.5104, -2008.7805, 14.9136, 0.0000, 0.0000, 0.0000, 200.0},
  2125.  
  2126. //PinkAutos
  2127. {1947, -1649.6858, 1215.7523, 29.5857, 0.0000, 0.0000, 0.0000, 200.0},
  2128. {1947, -1649.6665, 1215.7645, 28.9138, 0.0000, 179.5182, 0.0000, 200.0},
  2129. {1947, -1649.8347, 1215.9750, 30.0558, 89.3814, 0.0000, 223.4537, 200.0},
  2130. {1947, -1650.0962, 1216.2134, 29.6552, 0.0000, 181.3412, 0.0000, 200.0},
  2131. {1947, -1649.8882, 1215.9814, 29.2991, 0.0000, 89.3814, 312.7310, 200.0},
  2132. {1947, -1650.8999, 1216.6173, 30.1919, 0.0000, 89.3814, 42.1124, 200.0},
  2133. {1947, -1650.7375, 1216.7817, 29.3974, 0.0000, 0.0000, 0.0000, 200.0},
  2134. {1947, -1650.7305, 1216.8007, 28.8990, 179.5182, 0.0000, 0.0000, 200.0},
  2135. {1947, -1651.4906, 1217.5610, 28.8854, 179.5182, 0.0000, 0.0000, 200.0},
  2136. {1947, -1651.5006, 1217.5453, 29.5751, 0.0000, 0.0000, 0.0000, 200.0},
  2137. {1947, -1652.3896, 1218.3594, 28.8465, 0.0000, 180.3777, 0.0000, 200.0},
  2138. {1947, -1652.3773, 1218.3727, 29.4933, 0.0000, 0.0000, 0.0000, 200.0},
  2139. {1947, -1652.0684, 1218.1385, 29.0357, 219.0523, 2.5783, 48.1285, 200.0},
  2140. {1947, -1651.7605, 1217.8312, 29.5729, 219.0523, 2.5783, 48.1285, 200.0},
  2141. {1947, -1652.3785, 1218.3713, 29.8718, 0.0000, 0.0000, 0.0000, 200.0},
  2142. {1947, -1651.4967, 1217.5398, 29.8625, 0.0000, 0.0000, 0.0000, 200.0},
  2143. {1881, -1653.1226, 1219.0691, 29.8452, 0.0000, 0.0000, 0.0000, 200.0},
  2144. {1881, -1653.1243, 1219.0697, 29.2510, 0.0000, 0.0000, 0.0000, 200.0},
  2145. {1881, -1653.1229, 1219.0704, 28.8573, 0.0000, 180.4818, 0.0000, 200.0},
  2146. {1881, -1653.3141, 1219.2853, 29.6216, 0.0000, 136.6503, 316.1687, 200.0},
  2147. {1881, -1653.4873, 1219.4327, 29.8573, 0.0000, 136.6503, 316.1687, 200.0},
  2148. {1881, -1653.3118, 1219.3082, 29.0896, 0.0000, 45.5501, 314.4499, 200.0},
  2149. {1881, -1653.4657, 1219.4877, 28.8563, 0.0000, 135.6870, 132.2492, 200.0},
  2150. {1881, -1654.1888, 1207.0927, 7.4967, 0.0000, 0.0000, 0.0000, 200.0},
  2151. {1881, -1654.1888, 1207.0919, 8.1467, 0.0000, 0.0000, 0.0000, 200.0},
  2152. {1881, -1654.1906, 1207.0858, 8.8217, 0.0000, 0.0000, 0.0000, 200.0},
  2153. {1881, -1654.2002, 1207.0787, 9.5206, 0.0000, 0.0000, 0.0000, 200.0},
  2154. {1881, -1654.2004, 1207.0829, 10.2024, 0.0000, 0.0000, 0.0000, 200.0},
  2155. {1881, -1654.2089, 1207.0830, 10.9182, 0.0000, 0.0000, 0.0000, 200.0},
  2156. {1881, -1654.2037, 1207.0814, 11.6113, 0.0000, 0.0000, 0.0000, 200.0},
  2157. {1881, -1654.1991, 1207.0873, 12.3154, 0.0000, 0.0000, 0.0000, 200.0},
  2158. {1881, -1666.1558, 1208.0101, 11.8715, 0.0000, 179.5182, 0.0000, 200.0},
  2159. {1881, -1666.1440, 1208.0112, 11.1965, 0.0000, 179.5182, 0.0000, 200.0},
  2160. {1881, -1666.1532, 1208.0018, 10.4965, 0.0000, 179.5182, 0.0000, 200.0},
  2161. {1881, -1646.6730, 1207.1588, 11.7654, 0.0000, 179.5182, 0.0000, 200.0},
  2162. {1881, -1646.6730, 1207.1588, 11.1154, 0.0000, 179.5182, 0.0000, 200.0},
  2163. {1881, -1646.6730, 1207.1588, 10.4154, 0.0000, 179.5182, 0.0000, 200.0},
  2164. {1881, -1646.6730, 1207.1588, 9.7154, 0.0000, 179.5182, 0.0000, 200.0},
  2165. {1881, -1659.9839, 1220.1851, 11.4715, 0.0000, 179.5182, 0.0000, 200.0},
  2166. {1881, -1659.9839, 1220.1851, 10.7965, 0.0000, 179.5182, 0.0000, 200.0},
  2167. {1881, -1659.9839, 1220.1851, 10.1215, 0.0000, 179.5182, 0.0000, 200.0},
  2168. {1881, -1659.9839, 1220.1851, 9.4215, 0.0000, 179.5182, 0.0000, 200.0},
  2169. {1881, -1672.8766, 1207.5503, 19.4076, 0.0000, 179.5182, 0.0000, 200.0},
  2170. {1881, -1672.8766, 1207.5503, 18.7826, 0.0000, 179.5182, 0.0000, 200.0},
  2171. {1881, -1672.8766, 1207.5503, 18.1076, 0.0000, 179.5182, 0.0000, 200.0},
  2172. {1881, -1672.8766, 1207.5503, 17.4076, 0.0000, 179.5182, 0.0000, 200.0},
  2173. {1881, -1672.8766, 1207.5503, 16.7826, 0.0000, 179.5182, 0.0000, 200.0},
  2174. {1881, -1645.8306, 1208.4617, 19.4128, 0.0000, 179.5182, 0.0000, 200.0},
  2175. {1881, -1645.8306, 1208.4617, 18.7128, 0.0000, 179.5182, 0.0000, 200.0},
  2176. {1881, -1645.8306, 1208.4617, 18.0128, 0.0000, 179.5182, 0.0000, 200.0},
  2177. {1881, -1662.9760, 1217.9530, 19.0976, 0.0000, 179.5182, 0.0000, 200.0},
  2178. {1881, -1662.9760, 1217.9530, 18.3976, 0.0000, 179.5182, 0.0000, 200.0},
  2179. {1881, -1662.9760, 1217.9530, 17.7226, 0.0000, 179.5182, 0.0000, 200.0},
  2180. {1881, -1662.9760, 1217.9530, 17.0476, 0.0000, 179.5182, 0.0000, 200.0},
  2181. {1881, -1662.9760, 1217.9530, 16.3476, 0.0000, 179.5182, 0.0000, 200.0},
  2182. {1881, -1662.9760, 1217.9530, 15.6476, 0.0000, 179.5182, 0.0000, 200.0},
  2183. {1881, -1662.9760, 1217.9530, 14.9476, 0.0000, 179.5182, 0.0000, 200.0},
  2184. {1881, -1665.9822, 1227.2225, 19.5154, 0.0000, 179.5182, 0.0000, 200.0},
  2185. {1881, -1665.9822, 1227.2225, 18.8654, 0.0000, 179.5182, 0.0000, 200.0},
  2186. {1881, -1665.9822, 1227.2225, 18.2154, 0.0000, 179.5182, 0.0000, 200.0},
  2187. {1881, -1665.9822, 1227.2225, 17.5154, 0.0000, 179.5182, 0.0000, 200.0},
  2188. {1881, -1653.2655, 1209.6062, 29.0774, 0.0000, 179.5182, 0.0000, 200.0},
  2189. {1881, -1653.2655, 1209.6062, 28.4024, 0.0000, 179.5182, 0.0000, 200.0},
  2190. {1881, -1653.2655, 1209.6062, 27.7524, 0.0000, 179.5182, 0.0000, 200.0},
  2191. {1881, -1653.2655, 1209.6062, 27.0774, 0.0000, 179.5182, 0.0000, 200.0},
  2192. {1881, -1672.3606, 1211.9670, 29.4326, 0.0000, 179.5182, 0.0000, 200.0},
  2193. {1881, -1672.3606, 1211.9670, 28.7576, 0.0000, 179.5182, 0.0000, 200.0},
  2194. {1881, -1672.3606, 1211.9670, 28.0576, 0.0000, 179.5182, 0.0000, 200.0},
  2195. {1881, -1672.3606, 1211.9670, 27.4076, 0.0000, 179.5182, 0.0000, 200.0},
  2196. {1881, -1672.3606, 1211.9670, 26.7326, 0.0000, 179.5182, 0.0000, 200.0},
  2197. {1881, -1667.1294, 1225.0009, 29.3576, 0.0000, 179.5182, 0.0000, 200.0},
  2198. {1881, -1667.1294, 1225.0009, 28.6576, 0.0000, 179.5182, 0.0000, 200.0},
  2199. {1881, -1667.1294, 1225.0009, 27.9326, 0.0000, 179.5182, 0.0000, 200.0},
  2200. {1881, -1667.1294, 1225.0009, 27.2826, 0.0000, 179.5182, 0.0000, 200.0},
  2201. {1881, -1667.1294, 1225.0009, 26.6076, 0.0000, 179.5182, 0.0000, 200.0},
  2202. {1881, -1667.1294, 1225.0009, 25.9326, 0.0000, 179.5182, 0.0000, 200.0},
  2203. {1881, -1667.1294, 1225.0009, 25.2326, 0.0000, 179.5182, 0.0000, 200.0},
  2204. {1881, -1651.5593, 1204.0613, 29.4274, 0.0000, 179.5182, 0.0000, 200.0},
  2205. {1881, -1651.5593, 1204.0613, 28.7274, 0.0000, 179.5182, 0.0000, 200.0},
  2206. {1881, -1651.5593, 1204.0613, 28.0274, 0.0000, 179.5182, 0.0000, 200.0},
  2207. {1881, -1651.5593, 1204.0613, 27.3274, 0.0000, 179.5182, 0.0000, 200.0},
  2208. {1881, -1651.5593, 1204.0613, 26.6274, 0.0000, 179.5182, 0.0000, 200.0},
  2209.  
  2210. //PinkAutosGate
  2211. {2395, -1643.8384, 1202.0573, 9.1000, 0.0000, 0.0000, 73.0521, 200.0},
  2212. {2395, -1643.2853, 1203.9202, 9.1007, 0.0000, 0.0000, 73.0521, 200.0},
  2213. {2395, -1643.4269, 1204.2903, 9.1000, 0.0000, 0.0000, 253.5338, 200.0},
  2214. {2395, -1642.5668, 1207.0223, 9.0978, 0.0000, 0.0000, 252.6744, 200.0},
  2215.  
  2216. //RC War
  2217. {641, -1073.9902, 1071.1613, 1338.7439, 0.0000, 0.0000, 0.0000, 200.0},
  2218. {641, -1081.6746, 1038.0518, 1340.5875, 0.0000, 0.0000, 0.0000, 200.0},
  2219. {641, -1061.4734, 1089.0468, 1339.6709, 0.0000, 0.0000, 0.0000, 200.0},
  2220. {641, -1090.0529, 1082.9315, 1339.1033, 0.0000, 0.0000, 0.0000, 200.0},
  2221. {641, -1109.9817, 1030.9834, 1339.5272, 0.0000, 0.0000, 0.0000, 200.0},
  2222. {641, -1110.4849, 1063.6047, 1339.4166, 0.0000, 0.0000, 0.0000, 200.0},
  2223. {641, -1118.3235, 1098.7742, 1338.5713, 0.0000, 0.0000, 0.0000, 200.0},
  2224. {641, -1053.8347, 1033.0193, 1339.9768, 0.0000, 0.0000, 0.0000, 200.0},
  2225. {641, -1025.0308, 1033.3544, 1338.7333, 0.0000, 0.0000, 0.0000, 200.0},
  2226. {641, -1030.0179, 1046.9231, 1338.9279, 0.0000, 0.0000, 0.0000, 200.0},
  2227. {641, -1015.4229, 1067.6675, 1340.5150, 0.0000, 0.0000, 0.0000, 200.0},
  2228. {641, -1029.4102, 1090.7025, 1339.9523, 0.0000, 0.0000, 0.0000, 200.0},
  2229. {641, -998.6584, 1079.2939, 1338.9645, 0.0000, 0.0000, 0.0000, 200.0},
  2230. {641, -1002.0001, 1035.2861, 1338.7303, 0.0000, 0.0000, 0.0000, 200.0},
  2231. {641, -1013.8643, 1059.3293, 1339.6714, 0.0000, 0.0000, 0.0000, 200.0},
  2232. {641, -1046.8821, 1077.5778, 1340.7780, 0.0000, 0.0000, 0.0000, 200.0},
  2233. {629, -1089.3206, 1048.2192, 1342.2664, 0.0000, 0.0000, 0.0000, 200.0},
  2234. {629, -1077.4580, 1074.9617, 1340.6488, 0.0000, 0.0000, 0.0000, 200.0},
  2235. {629, -1098.9442, 1087.7339, 1340.5997, 0.0000, 0.0000, 0.0000, 200.0},
  2236. {629, -1069.2826, 1024.2207, 1342.1497, 0.0000, 0.0000, 0.0000, 200.0},
  2237. {629, -1039.5999, 1025.6233, 1342.2192, 0.0000, 0.0000, 0.0000, 200.0},
  2238. {629, -1031.6693, 1056.9454, 1342.3436, 0.0000, 0.0000, 0.0000, 200.0},
  2239. {629, -1050.6184, 1088.4027, 1342.0698, 0.0000, 0.0000, 0.0000, 200.0},
  2240. {629, -1022.4520, 1086.6663, 1342.6149, 0.0000, 0.0000, 0.0000, 200.0},
  2241. {629, -1014.9769, 1029.7100, 1341.8173, 0.0000, 0.0000, 0.0000, 200.0},
  2242. {629, -983.3073, 1022.8590, 1340.8964, 0.0000, 0.0000, 0.0000, 200.0},
  2243. {629, -988.6557, 1067.4974, 1341.6897, 0.0000, 0.0000, 0.0000, 200.0},
  2244. {649, -1084.8956, 1094.4368, 1342.8333, 0.0000, 0.0000, 0.0000, 200.0},
  2245. {649, -1090.5927, 1073.4098, 1341.3501, 0.0000, 0.0000, 0.0000, 200.0},
  2246. {649, -1119.3577, 1046.5935, 1342.4301, 0.0000, 0.0000, 0.0000, 200.0},
  2247. {649, -1112.7579, 1078.6885, 1341.0673, 0.0000, 0.0000, 0.0000, 200.0},
  2248. {649, -1078.8275, 1060.7969, 1342.0984, 0.0000, 0.0000, 0.0000, 200.0},
  2249. {649, -1070.7823, 1044.6978, 1342.8344, 0.0000, 0.0000, 0.0000, 200.0},
  2250. {649, -1055.3672, 1020.0800, 1342.3762, 0.0000, 0.0000, 0.0000, 200.0},
  2251. {649, -1050.0206, 1042.6904, 1342.7661, 0.0000, 0.0000, 0.0000, 200.0},
  2252. {649, -1049.0309, 1059.5771, 1342.9418, 0.0000, 0.0000, 0.0000, 200.0},
  2253. {649, -1040.1025, 1043.2434, 1341.0951, 0.0000, 0.0000, 0.0000, 200.0},
  2254. {649, -1024.8245, 1023.4437, 1342.0143, 0.0000, 0.0000, 0.0000, 200.0},
  2255. {649, -1015.6992, 1064.0273, 1342.0839, 0.0000, 0.0000, 0.0000, 200.0},
  2256. {649, -1034.2817, 1080.8636, 1342.2816, 0.0000, 0.0000, 0.0000, 200.0},
  2257. {649, -994.2985, 1090.6820, 1341.4130, 0.0000, 0.0000, 0.0000, 200.0},
  2258. {649, -1015.2496, 1100.0494, 1341.3870, 0.0000, 0.0000, 0.0000, 200.0},
  2259. {649, -1005.9117, 1035.7014, 1340.8318, 0.0000, 0.0000, 0.0000, 200.0},
  2260. {649, -998.4623, 1056.3456, 1341.9082, 0.0000, 0.0000, 0.0000, 200.0},
  2261. {649, -1026.4841, 1072.4093, 1342.7489, 0.0000, 340.2330, 0.0000, 200.0},
  2262. {634, -1071.7224, 1035.3552, 1341.8241, 0.0000, 0.0000, 0.0000, 200.0},
  2263. {759, -1106.6354, 1048.1975, 1341.6804, 0.0000, 0.0000, 0.0000, 200.0},
  2264. {759, -1043.3915, 1035.3157, 1341.7600, 0.0000, 0.0000, 0.0000, 200.0},
  2265. {759, -1051.8734, 1072.8671, 1341.8433, 0.0000, 0.0000, 0.0000, 200.0},
  2266. {759, -1034.3324, 1053.4482, 1341.5880, 0.0000, 0.0000, 0.0000, 200.0},
  2267. {759, -999.7026, 1067.8667, 1341.5931, 0.0000, 0.0000, 0.0000, 200.0},
  2268. {759, -999.7172, 1034.7952, 1340.9933, 0.0000, 0.0000, 0.0000, 200.0},
  2269. {759, -1088.7147, 1089.5488, 1341.5079, 0.0000, 0.0000, 0.0000, 200.0},
  2270. {801, -1119.3312, 1025.2101, 1343.1357, 0.0000, 0.0000, 0.0000, 200.0},
  2271. {801, -1118.9380, 1074.4542, 1341.8248, 0.0000, 0.0000, 0.0000, 200.0},
  2272. {801, -1092.8458, 1080.5485, 1341.0593, 0.0000, 0.0000, 0.0000, 200.0},
  2273. {801, -1071.5767, 1041.8470, 1342.5026, 0.0000, 0.0000, 0.0000, 200.0},
  2274. {801, -1069.9235, 1061.9430, 1342.9897, 0.0000, 0.0000, 0.0000, 200.0},
  2275. {801, -1064.2288, 1082.4772, 1341.3962, 0.0000, 0.0000, 0.0000, 200.0},
  2276. {801, -1052.3169, 1064.1809, 1342.8280, 0.0000, 0.0000, 0.0000, 200.0},
  2277. {801, -1056.1428, 1036.3828, 1342.7827, 0.0000, 0.0000, 0.0000, 200.0},
  2278. {801, -1026.3975, 1062.7870, 1342.5156, 0.0000, 0.0000, 0.0000, 200.0},
  2279. {801, -1037.3619, 1060.8368, 1343.0609, 0.0000, 0.0000, 78.2087, 200.0},
  2280. {801, -1000.8107, 1044.6731, 1341.2979, 0.0000, 0.0000, 78.2087, 200.0},
  2281. {801, -984.4563, 1075.4634, 1342.9285, 0.0000, 0.0000, 78.2087, 200.0},
  2282. {801, -1003.2295, 1095.1791, 1341.1487, 0.0000, 0.0000, 78.2087, 200.0},
  2283.  
  2284. //Drift
  2285. {3461, -295.8668, 1507.2507, 75.9145, 0.0000, 0.0000, 0.0000, 200.0},
  2286. {3461, -308.6350, 1507.3575, 75.8825, 0.0000, 0.0000, 0.0000, 200.0},
  2287. {1238, -313.3524, 1330.0961, 53.4375, 0.0000, 0.0000, 0.0000, 200.0},
  2288. {1238, -314.3377, 1321.4225, 53.0094, 0.0000, 0.0000, 0.0000, 200.0},
  2289. {1238, -318.5569, 1314.3623, 52.5178, 0.0000, 0.0000, 0.0000, 200.0},
  2290. {1238, -427.8438, 1438.6299, 33.6323, 0.0000, 0.0000, 0.0000, 200.0},
  2291. {1238, -446.1413, 1439.9375, 32.7348, 0.0000, 0.0000, 0.0000, 200.0},
  2292. {1238, -436.0765, 1436.0063, 32.6771, 0.0000, 0.0000, 0.0000, 200.0},
  2293. {1238, -441.2039, 1436.8895, 32.5816, 0.0000, 0.0000, 0.0000, 200.0},
  2294. {1238, -431.3879, 1437.1329, 33.3030, 0.0000, 0.0000, 0.0000, 200.0},
  2295. {1238, -395.1136, 1741.7869, 41.2986, 0.0000, 0.0000, 0.0000, 200.0},
  2296. {1238, -393.2950, 1745.4985, 41.7174, 0.0000, 0.0000, 0.0000, 200.0},
  2297. {1238, -391.4860, 1749.1615, 42.1900, 0.0000, 0.0000, 0.0000, 200.0},
  2298. {1238, -529.4755, 2004.2638, 59.7010, 0.0000, 0.0000, 0.0000, 200.0},
  2299. {1238, -534.2675, 2005.2632, 59.5057, 0.0000, 0.0000, 0.0000, 200.0},
  2300. {1238, -540.2000, 2006.3781, 59.5057, 0.0000, 0.0000, 0.0000, 200.0},
  2301. {1238, -547.1054, 2008.6068, 59.5057, 0.0000, 0.0000, 0.0000, 200.0},
  2302. {1238, -554.6213, 2010.9238, 59.7010, 0.0000, 0.0000, 0.0000, 200.0},
  2303. {1238, -562.5608, 2014.8135, 59.7010, 0.0000, 0.0000, 0.0000, 200.0},
  2304. {1238, -887.5656, 1995.8534, 59.6817, 0.0000, 0.0000, 0.0000, 200.0},
  2305. {1238, -1071.6847, 1822.4861, 47.8208, 0.0000, 0.0000, 0.0000, 200.0},
  2306. {1238, -1073.7086, 1825.7908, 47.5834, 0.0000, 0.0000, 0.0000, 200.0},
  2307. {1238, -1075.9608, 1829.1106, 47.3209, 0.0000, 0.0000, 0.0000, 200.0},
  2308. {1238, -1078.1772, 1832.3435, 47.0536, 0.0000, 0.0000, 0.0000, 200.0},
  2309. {3461, -1078.6982, 1832.9752, 48.3333, 0.0000, 0.0000, 0.0000, 200.0},
  2310. {3461, -1071.2137, 1822.0485, 49.1998, 0.0000, 0.0000, 0.0000, 200.0},
  2311.  
  2312. //HideOut
  2313. {3260, -1430.6383, -967.1613, 200.9190, 0.0000, 0.0000, 270.6186, 100.0},
  2314. {3260, -1430.6582, -965.1379, 200.9190, 0.0000, 0.0000, 270.6186, 100.0},
  2315. {3260, -1430.7362, -965.1487, 200.9250, 0.0000, 0.0000, 88.5220, 100.0},
  2316. {3260, -1430.7950, -967.2682, 200.9326, 0.0000, 0.0000, 88.5220, 100.0},
  2317. {3403, -1429.1202, -958.1306, 202.9696, 0.0000, 0.0000, 0.0000, 100.0},
  2318. {3260, -1425.1235, -962.0386, 200.8081, 0.0000, 0.0000, 0.0000, 100.0},
  2319. {3260, -1427.0656, -962.0582, 200.8187, 0.0000, 0.0000, 0.0000, 100.0},
  2320. {3260, -1429.0902, -962.0469, 200.8972, 0.0000, 0.0000, 0.0000, 100.0},
  2321. {3260, -1431.1003, -962.0584, 200.9442, 0.0000, 0.0000, 0.0000, 100.0},
  2322. {3260, -1433.1255, -962.0416, 200.9211, 0.0000, 0.0000, 0.0000, 100.0},
  2323. {3260, -1431.0897, -962.0601, 202.6257, 0.0000, 0.0000, 0.0000, 100.0},
  2324. {3260, -1433.1183, -962.0428, 202.4797, 0.0000, 0.0000, 0.0000, 100.0},
  2325. {3260, -1429.0538, -962.0479, 202.7920, 0.0000, 0.0000, 0.0000, 100.0},
  2326. {3260, -1427.0490, -962.0596, 202.8268, 0.0000, 0.0000, 0.0000, 100.0},
  2327. {3260, -1425.0262, -962.0389, 202.9255, 0.0000, 0.0000, 0.0000, 100.0},
  2328. {3260, -1434.2012, -961.0151, 200.9816, 0.0000, 0.0000, 270.6186, 100.0},
  2329. {3260, -1434.2264, -959.0114, 200.9887, 0.0000, 0.0000, 270.6186, 100.0},
  2330. {3260, -1434.2146, -956.9955, 200.9895, 0.0000, 0.0000, 270.6186, 100.0},
  2331. {3260, -1434.2216, -955.3561, 200.9913, 0.0000, 0.0000, 270.6186, 100.0},
  2332. {3260, -1433.1772, -954.2692, 200.9718, 0.0000, 0.0000, 180.4818, 100.0},
  2333. {3260, -1431.1738, -954.2568, 200.9351, 0.0000, 0.0000, 180.4818, 100.0},
  2334. {3260, -1429.1492, -954.2441, 200.8981, 0.0000, 0.0000, 180.4818, 100.0},
  2335. {3260, -1427.1259, -954.3209, 200.9552, 0.0000, 0.0000, 180.4818, 100.0},
  2336. {3260, -1425.1514, -954.3870, 201.0861, 0.0000, 0.0000, 180.4818, 100.0},
  2337. {3260, -1434.1803, -961.0271, 202.8804, 0.0000, 0.0000, 270.6186, 100.0},
  2338. {3260, -1434.1971, -959.0242, 203.7235, 0.0000, 0.0000, 270.6186, 100.0},
  2339. {3260, -1434.1823, -956.9897, 203.6511, 0.0000, 0.0000, 270.6186, 100.0},
  2340. {3260, -1434.2201, -955.4028, 203.1270, 0.0000, 0.0000, 270.6186, 100.0},
  2341. {3260, -1433.1851, -954.2962, 202.7715, 0.0000, 0.0000, 180.4818, 100.0},
  2342. {3260, -1431.1805, -954.2376, 202.5735, 0.0000, 0.0000, 180.4818, 100.0},
  2343. {3260, -1429.1595, -954.1979, 202.5212, 0.0000, 0.0000, 180.4818, 100.0},
  2344. {3260, -1427.1940, -954.3721, 202.5689, 0.0000, 0.0000, 180.4818, 100.0},
  2345. {3260, -1425.2665, -954.3685, 202.7805, 0.0000, 0.0000, 180.4818, 100.0},
  2346. {3260, -1424.1161, -955.5069, 201.0256, 0.0000, 0.0000, 89.3814, 100.0},
  2347. {3260, -1424.1660, -957.4902, 200.8808, 0.0000, 0.0000, 89.3814, 100.0},
  2348. {3260, -1424.1980, -959.1816, 200.8181, 0.0000, 0.0000, 89.3814, 100.0},
  2349. {3260, -1423.2340, -960.1235, 200.7833, 0.0000, 0.0000, 180.4818, 100.0},
  2350. {3260, -1421.5031, -960.1573, 200.8793, 0.0000, 0.0000, 180.4818, 100.0},
  2351. {3260, -1420.5415, -961.1438, 200.8568, 0.0000, 0.0000, 89.3814, 100.0},
  2352. {3260, -1421.5869, -964.6957, 200.7545, 0.0000, 0.0000, 0.0000, 100.0},
  2353. {3260, -1424.1436, -955.5458, 203.2087, 0.0000, 0.0000, 89.3814, 100.0},
  2354. {3260, -1424.1632, -957.4768, 203.6331, 0.0000, 0.0000, 89.3814, 100.0},
  2355. {3260, -1424.1937, -959.4807, 203.4287, 0.0000, 0.0000, 89.3814, 100.0},
  2356. {3260, -1424.2515, -961.0911, 203.1449, 0.0000, 0.0000, 89.3814, 100.0},
  2357. {1219, -1421.8578, -961.3303, 202.6337, 0.0000, 0.0000, 0.0000, 100.0},
  2358. {1219, -1423.0200, -961.4536, 202.6547, 0.0000, 0.0000, 0.0000, 100.0},
  2359. {1219, -1421.8871, -963.4979, 202.6649, 0.0000, 0.0000, 0.0000, 100.0},
  2360. {1219, -1422.9399, -963.4848, 202.6610, 0.0000, 0.0000, 0.0000, 100.0},
  2361. {3260, -1423.3376, -965.4235, 200.8189, 0.0000, 0.0000, 42.9718, 100.0},
  2362. {3260, -1423.0328, -962.3187, 200.7797, 0.0000, 0.0000, 178.6588, 100.0},
  2363. {1357, -1423.4537, -965.2468, 203.1383, 0.0000, 0.0000, 47.2690, 100.0},
  2364. {1219, -1433.0022, -960.4941, 202.9133, 0.0000, 0.0000, 0.0000, 100.0},
  2365. {1219, -1432.8816, -958.0534, 202.9098, 0.0000, 0.0000, 179.5182, 100.0},
  2366. {1219, -1432.9282, -955.6038, 202.8808, 0.0000, 0.0000, 0.0000, 100.0},
  2367. {1219, -1431.0803, -960.4437, 202.9345, 0.0000, 0.0000, 179.5182, 100.0},
  2368. {1219, -1431.1061, -957.9371, 202.9058, 0.0000, 0.0000, 0.0000, 100.0},
  2369. {14874, -1429.1752, -955.7136, 201.2179, 0.0000, 0.0000, 0.0000, 100.0},
  2370. {1424, -1430.3456, -960.4559, 203.7060, 0.0000, 0.0000, 269.7591, 100.0},
  2371. {2096, -1431.9589, -957.5564, 203.1671, 0.0000, 0.0000, 329.9197, 100.0},
  2372. {1810, -1432.4130, -960.9388, 203.2000, 0.0000, 0.0000, 179.5182, 100.0},
  2373. {2234, -1431.0439, -957.4532, 203.1574, 0.0000, 0.0000, 269.7591, 100.0},
  2374. {2063, -1432.8003, -955.0300, 200.8811, 0.0000, 0.0000, 0.0000, 100.0},
  2375. {1821, -1430.2573, -968.4122, 199.9135, 0.0000, 0.0000, 0.0000, 100.0},
  2376. {1820, -1437.6168, -964.1562, 200.0493, 0.0000, 0.0000, 0.0000, 100.0},
  2377. {1767, -1433.7094, -962.7879, 199.9841, 0.0000, 0.0000, 0.0000, 100.0},
  2378. {1767, -1435.5642, -962.8387, 200.0180, 0.0000, 0.0000, 0.0000, 100.0},
  2379. {1762, -1429.7979, -961.3923, 199.9343, 0.0000, 0.0000, 179.5182, 100.0},
  2380. {1421, -1427.8817, -961.5097, 200.6415, 0.0000, 0.0000, 0.0000, 100.0},
  2381. {1421, -1425.0168, -967.6005, 200.5861, 0.0000, 0.0000, 0.0000, 100.0},
  2382.  
  2383. //Christmas - Dam
  2384. {656, -445.5609, 2192.5825, 42.3179, 0.0000, 0.0000, 103.1324, 300.0},
  2385. {656, -476.7293, 2257.0879, 49.0276, 0.0000, 0.0000, 219.1564, 300.0},
  2386. {654, -476.9188, 2257.2810, 56.0175, 0.0000, 0.0000, 231.0847, 300.0},
  2387. {654, -445.4616, 2192.7434, 49.2783, 0.0000, 0.0000, 103.1327, 300.0},
  2388. {3472, -445.5243, 2192.9797, 42.5302, 0.0000, 0.0000, 0.0000, 300.0},
  2389. {3472, -445.3029, 2192.8391, 44.8189, 0.0000, 0.0000, 162.3295, 300.0},
  2390. {3472, -445.4364, 2192.8997, 49.9608, 0.0000, 0.0000, 248.2732, 300.0},
  2391. {3472, -445.4088, 2192.8972, 47.2941, 0.0000, 0.0000, 80.6831, 300.0},
  2392. {3472, -445.3074, 2192.8242, 52.0845, 0.0000, 0.0000, 166.6266, 300.0},
  2393. {3472, -445.2545, 2192.9895, 54.6541, 0.0000, 0.0000, 339.3735, 300.0},
  2394. {3472, -477.2214, 2257.0522, 49.4339, 0.0000, 0.0000, 223.3495, 300.0},
  2395. {3472, -477.2415, 2257.1404, 51.3832, 0.0000, 0.0000, 42.9718, 300.0},
  2396. {3472, -477.2079, 2257.0752, 53.7986, 0.0000, 0.0000, 21.4859, 300.0},
  2397. {3472, -477.1397, 2257.1675, 55.7717, 0.0000, 0.0000, 107.3254, 300.0},
  2398. {3472, -477.2383, 2257.1982, 58.5797, 0.0000, 0.0000, 16.2255, 300.0},
  2399. {3472, -477.1700, 2257.1340, 61.6158, 0.0000, 0.0000, 196.7071, 300.0},
  2400. {6189, -462.6870, 2255.0525, 26.9817, 5.1566, 10.3132, 25.7831, 300.0},
  2401. {6189, -463.9562, 2138.6887, 32.6042, 351.4056, 2.5783, 325.6225, 300.0},
  2402. {6189, -411.1328, 2221.0701, 23.5738, 356.5623, 1.7189, 285.2290, 300.0},
  2403. {624, -473.5875, 2219.6040, 45.5478, 0.0000, 0.0000, 0.0000, 300.0},
  2404. {624, -464.9716, 2164.8987, 48.4154, 0.0000, 0.0000, 0.0000, 300.0},
  2405. {624, -446.5275, 2133.4875, 45.3613, 0.0000, 0.0000, 0.0000, 300.0},
  2406. {624, -411.7530, 2185.1240, 40.1883, 0.0000, 0.0000, 0.0000, 300.0},
  2407. {624, -400.7138, 2206.2959, 40.7942, 0.0000, 0.0000, 0.0000, 300.0},
  2408. {624, -385.8888, 2243.4290, 40.4332, 0.0000, 0.0000, 0.0000, 300.0}
  2409.  
  2410. };
  2411.  
  2412. enum player_info
  2413. {
  2414. objid[sizeof(Objects)],
  2415. bool:view[sizeof(Objects)]
  2416. }
  2417. new Player[MAX_PLAYERS][player_info];
  2418.  
  2419. //------------------------------------------------------------------------------
  2420.  
  2421. bool:IsInReach(Float:x,Float:y,Float:z,Float:x2,Float:y2,Float:z2,Float:dist)
  2422. {
  2423. x = (x > x2) ? x - x2 : x2 - x;
  2424. if(x > dist) return false;
  2425. y = (y > y2) ? y - y2 : y2 - y;
  2426. if(y > dist) return false;
  2427. z = (z > z2) ? z - z2 : z2 - z;
  2428. if(z > dist) return false;
  2429. return true;
  2430. }
  2431.  
  2432. //------------------------------------------------------------------------------
  2433.  
  2434. new timer;
  2435.  
  2436. public OnFilterScriptInit()
  2437. {
  2438.  
  2439. stunttele = CreateMenu("StuntTeles", 1, 18.0, 102.0, 165.0, 165.0);
  2440. AddMenuItem(stunttele, 0, "Stunt zones1");
  2441. AddMenuItem(stunttele, 0, "Stunt zones2");
  2442. AddMenuItem(stunttele, 0, "Stunt zones3");
  2443. AddMenuItem(stunttele, 0, "DM zones");
  2444. AddMenuItem(stunttele, 0, "Other zones1");
  2445. AddMenuItem(stunttele, 0, "Other zones2");
  2446.  
  2447. StuntZones1 = CreateMenu("StuntZones1", 1, 18.0, 102.0, 165.0, 165.0);
  2448. AddMenuItem(StuntZones1, 0, "Big Jump");
  2449. AddMenuItem(StuntZones1, 0, "Big Jump 2");
  2450. AddMenuItem(StuntZones1, 0, "Los Santos Tower");
  2451. AddMenuItem(StuntZones1, 0, "Building Jump");
  2452. AddMenuItem(StuntZones1, 0, "Mount Chilliad");
  2453. AddMenuItem(StuntZones1, 0, "Way Of God");
  2454. AddMenuItem(StuntZones1, 0, "Wall Ride");
  2455. AddMenuItem(StuntZones1, 0, "Wall Ride 2");
  2456. AddMenuItem(StuntZones1, 0, "Las Vegas Airport");
  2457. AddMenuItem(StuntZones1, 0, "Los Santos Airport");
  2458. AddMenuItem(StuntZones1, 0, "San Fierro Airport");
  2459.  
  2460. StuntZones2 = CreateMenu("StuntZones2", 1, 18.0, 102.0, 165.0, 165.0);
  2461. AddMenuItem(StuntZones2, 0, "Skate Park");
  2462. AddMenuItem(StuntZones2, 0, "HalfPipe");
  2463. AddMenuItem(StuntZones2, 0, "Way To Air");
  2464. AddMenuItem(StuntZones2, 0, "Way To Death");
  2465. AddMenuItem(StuntZones2, 0, "Stadium");
  2466. AddMenuItem(StuntZones2, 0, "HopDeHop");
  2467. AddMenuItem(StuntZones2, 0, "Monster Crash");
  2468. AddMenuItem(StuntZones2, 0, "FreeWay");
  2469. AddMenuItem(StuntZones2, 0, "Way To Chilliad");
  2470. AddMenuItem(StuntZones2, 0, "Dead Jump");
  2471. AddMenuItem(StuntZones2, 0, "BMX Parcour");
  2472.  
  2473. StuntZones3 = CreateMenu("StuntZones3", 1, 18.0, 102.0, 165.0, 165.0);
  2474. AddMenuItem(StuntZones3, 0, "Upside Down");
  2475. AddMenuItem(StuntZones3, 0, "Way To Piramide");
  2476. AddMenuItem(StuntZones3, 0, "NRG Parcour");
  2477. AddMenuItem(StuntZones3, 0, "Roof Stunt");
  2478. AddMenuItem(StuntZones3, 0, "Aqua Park");
  2479. AddMenuItem(StuntZones3, 0, "RollerCoaster");
  2480. AddMenuItem(StuntZones3, 0, "Quad Parcour");
  2481.  
  2482. DMZones = CreateMenu("DMZones", 1, 18.0, 102.0, 165.0, 165.0);
  2483. AddMenuItem(DMZones, 0, "Bloodring Arena");
  2484. AddMenuItem(DMZones, 0, "Air Battle");
  2485. AddMenuItem(DMZones, 0, "Vehicle DM");
  2486. AddMenuItem(DMZones, 0, "Minigun Madness");
  2487. AddMenuItem(DMZones, 0, "Ship Madness");
  2488. AddMenuItem(DMZones, 0, "Glass Madness");
  2489. AddMenuItem(DMZones, 0, "Island DM");
  2490. AddMenuItem(DMZones, 0, "Derby");
  2491. AddMenuItem(DMZones, 0, "RC War");
  2492. AddMenuItem(DMZones, 0, "Watch RC War");
  2493.  
  2494. TuneGarages = CreateMenu("TuneGarages", 1, 18.0, 102.0, 165.0, 165.0);
  2495. AddMenuItem(TuneGarages, 0, "Tune Garage 1");
  2496. AddMenuItem(TuneGarages, 0, "Tune Garage 2");
  2497. AddMenuItem(TuneGarages, 0, "Tune Garage 3");
  2498. AddMenuItem(TuneGarages, 0, "Tune Garage 4");
  2499.  
  2500. TrainStations = CreateMenu("TrainStations", 1, 18.0, 102.0, 165.0, 165.0);
  2501. AddMenuItem(TrainStations, 0, "LS Train Station");
  2502. AddMenuItem(TrainStations, 0, "SF Train Station");
  2503. AddMenuItem(TrainStations, 0, "LV Train Station 1");
  2504. AddMenuItem(TrainStations, 0, "LV Train Station 2");
  2505.  
  2506. TruckStops = CreateMenu("TruckStops", 1, 18.0, 102.0, 165.0, 165.0);
  2507. AddMenuItem(TruckStops,0,"LasVegas Truck Stop");
  2508. AddMenuItem(TruckStops,0,"Chilliad Truck Stop");
  2509. AddMenuItem(TruckStops,0,"Dam Truck Stop");
  2510.  
  2511. OtherZones1 = CreateMenu("OtherZones1", 1, 18.0, 102.0, 165.0, 165.0);
  2512. AddMenuItem(OtherZones1, 0, "Tune Garages");
  2513. AddMenuItem(OtherZones1, 0, "Train Stations");
  2514. AddMenuItem(OtherZones1, 0, "Truck Stops");
  2515. AddMenuItem(OtherZones1, 0, "AA");
  2516. AddMenuItem(OtherZones1, 0, "Home");
  2517. AddMenuItem(OtherZones1, 0, "Drag Race");
  2518. AddMenuItem(OtherZones1, 0, "Karting");
  2519. AddMenuItem(OtherZones1, 0, "Trampoline");
  2520. AddMenuItem(OtherZones1, 0, "Dirt");
  2521. AddMenuItem(OtherZones1, 0, "AdminCastle");
  2522. AddMenuItem(OtherZones1, 0, "PinkAutos");
  2523.  
  2524. OtherZones2 = CreateMenu("OtherZones2", 1, 18.0, 102.0, 165.0, 165.0);
  2525. AddMenuItem(OtherZones2, 0, "Drift");
  2526. AddMenuItem(OtherZones2, 0, "Bounce");
  2527. AddMenuItem(OtherZones2, 0, "Car Sumo");
  2528.  
  2529. print(" Loaded successful.");
  2530. timer = SetTimer("Timer",1000,1);
  2531. return 1;
  2532. }
  2533.  
  2534. public OnFilterScriptExit()
  2535. {
  2536. for(new i = 0; i < MAX_PLAYERS; i++)
  2537. {
  2538. for(new o = 0; o < sizeof(Objects); o++)
  2539. {
  2540. if(Player[i][view][o])
  2541. {
  2542. Player[i][view][o] = false;
  2543. DestroyPlayerObject(i,Player[i][objid][o]);
  2544. }
  2545. }
  2546. }
  2547. KillTimer(timer);
  2548. }
  2549.  
  2550. //------------------------------------------------------------------------------
  2551.  
  2552. public OnPlayerConnect(playerid)
  2553. {
  2554. for(new i = 0; i < sizeof(Objects); i++) Player[playerid][view][i] = false;
  2555. }
  2556.  
  2557. public OnPlayerDisconnect(playerid)
  2558. {
  2559. for(new i = 0; i < sizeof(Objects); i++)
  2560. {
  2561. if(Player[playerid][view][i])
  2562. {
  2563. Player[playerid][view][i] = false;
  2564. DestroyPlayerObject(playerid,Player[playerid][objid][i]);
  2565. }
  2566. }
  2567. }
  2568.  
  2569. //------------------------------------------------------------------------------
  2570.  
  2571. public Timer()
  2572. {
  2573. for(new i = 0; i < MAX_PLAYERS; i++)
  2574. if(IsPlayerConnected(i))
  2575. PlayerObjectUpdate(i);
  2576. }
  2577.  
  2578. PlayerObjectUpdate(playerid)
  2579. {
  2580. new Float:pos[3];
  2581. GetPlayerPos(playerid,pos[0],pos[1],pos[2]);
  2582. for(new i = 0; i < sizeof(Objects); i++)
  2583. {
  2584. if(!Player[playerid][view][i])
  2585. {
  2586. if(IsInReach(pos[0],pos[1],pos[2],Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][viewdist]))
  2587. {
  2588. Player[playerid][view][i] = true;
  2589. Player[playerid][objid][i] = CreatePlayerObject(playerid,Objects[i][modelid],Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][orx],Objects[i][ory],Objects[i][orz]);
  2590. }
  2591. } else if(!IsInReach(pos[0],pos[1],pos[2],Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][viewdist]))
  2592. {
  2593. Player[playerid][view][i] = false;
  2594. DestroyPlayerObject(playerid,Player[playerid][objid][i]);
  2595. }
  2596. }
  2597. }
  2598.  
  2599. public SetPlayerPosWithObjects(playerid,Float:x,Float:y,Float:z)
  2600. {
  2601. for(new i = 0; i < sizeof(Objects); i++)
  2602. {
  2603. if(!Player[playerid][view][i])
  2604. {
  2605. if(IsInReach(x,y,z,Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][viewdist]))
  2606. {
  2607. Player[playerid][view][i] = true;
  2608. Player[playerid][objid][i] = CreatePlayerObject(playerid,Objects[i][modelid],Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][orx],Objects[i][ory],Objects[i][orz]);
  2609. }
  2610. } else if(!IsInReach(x,y,z,Objects[i][ox],Objects[i][oy],Objects[i][oz],Objects[i][viewdist]))
  2611. {
  2612. Player[playerid][view][i] = false;
  2613. DestroyPlayerObject(playerid,Player[playerid][objid][i]);
  2614. }
  2615. }
  2616. SetPlayerPos(playerid,Float:x,Float:y,Float:z);
  2617. }
  2618.  
  2619. public OnPlayerSpawn(playerid)
  2620. PlayerObjectUpdate(playerid);
  2621.  
  2622. public OnPlayerSelectedMenuRow(playerid, row)
  2623. {
  2624. new Menu:CurrentMenu = GetPlayerMenu(playerid);
  2625.  
  2626. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2627.  
  2628. if(CurrentMenu == stunttele)
  2629. {
  2630. switch(row)
  2631. {
  2632. case 0: //Stunt zones 1
  2633. {
  2634. ShowMenuForPlayer(StuntZones1, playerid);
  2635. }
  2636. case 1: //Stunt zones 2
  2637. {
  2638. ShowMenuForPlayer(StuntZones2, playerid);
  2639. }
  2640. case 2: //Stunt zones 3
  2641. {
  2642. ShowMenuForPlayer(StuntZones3, playerid);
  2643. }
  2644. case 3: //DMZones
  2645. {
  2646. ShowMenuForPlayer(DMZones, playerid);
  2647. }
  2648. case 4: //OtherZones1
  2649. {
  2650. ShowMenuForPlayer(OtherZones1, playerid);
  2651. }
  2652. case 5: //OtherZones2
  2653. {
  2654. ShowMenuForPlayer(OtherZones2, playerid);
  2655. }
  2656. }
  2657. }
  2658.  
  2659. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2660.  
  2661. if(CurrentMenu == StuntZones1)
  2662. {
  2663. switch(row)
  2664. {
  2665. case 0: //BigJump
  2666. {
  2667. NormalTele(playerid, "BigJump", -594.1223,904.4135,432.5000, 135.0000, -594.1223,904.4135,432.5000, 135.0000, 0);
  2668. }
  2669. case 1: //BigJump2
  2670. {
  2671. NormalTele(playerid, "BigJump2", -639.9559,2328.1963,135.0000, 180.000, -662.6028,2306.1809,136.0709, 90.0000, 0);
  2672. }
  2673. case 2: //LSTower
  2674. {
  2675. NormalTele(playerid, "LSTower", 1537.1813,-1364.6439,1882.5000, 341.3670, 1541.3605,-1363.4252,1882.5000, 0.0000, 0);
  2676. }
  2677. case 3: //BuildingJump
  2678. {
  2679. SpeceficTele(playerid, "BuildingJump",-2882.8174,-3074.8611,83.0000, 180.0000, -2882.8174,-3074.8611,81.0000, 180.0000, 0, 461);
  2680. }
  2681. case 4: //Chilliad
  2682. {
  2683. NormalTele(playerid, "Chilliad", -2338.1836, -1631.0298, 483.7010, 244.0000, -2334.8801, -1646.7010, 483.7031, 23.0000, 0);
  2684. }
  2685. case 5: //WayOfGod
  2686. {
  2687. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2688. //NormalTele(playerid, "WayOfGod", 239.2802, 1561.3365, 586.2000, 74.9583, 283.7652, 1541.8972, 585.7000, 61.3804, 0);
  2689. }
  2690. case 6: //Wall Ride
  2691. {
  2692. SpeceficTele(playerid, "Wallride",-803.5533,1833.4768,7.0000, 90.0000, -803.5533,1833.4768,7.0000, 90.0000, 0, 522);
  2693. }
  2694. case 7: //Wall Ride 2
  2695. {
  2696. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2697. //SpeceficTele(playerid, "Wallride2",3468.2820,-2980.2456,3.2360, 270.0000, 3428.8757,-2977.2693,3.50905, 250.0000, 0, 411);
  2698. }
  2699. case 8: //LVAirport
  2700. {
  2701. OnlyPlayerTele(playerid, "LVAirport", 1299.8621,1378.2822,10.3751, 0.0000, 0);
  2702. }
  2703. case 9: //LSAirport
  2704. {
  2705. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2706. //NormalTele(playerid, "LSAirport", 2058.7854,-2643.9578,13.5469, 0.0000, 2057.2808,-2648.0261,13.5469, 0.0000, 0);
  2707. }
  2708. case 10: //SFAirport
  2709. {
  2710. NormalTele(playerid, "SFAirport", -1373.3844,-258.4916,14.0000, 315.0000, -1373.3844,-258.4916,14.0000, 315.0000, 0);
  2711. }
  2712. }
  2713. }
  2714.  
  2715. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2716.  
  2717. if(CurrentMenu == StuntZones2)
  2718. {
  2719. switch(row)
  2720. {
  2721. case 0: //Skate park
  2722. {
  2723. OnlyPlayerTele(playerid, "SkatePark", 1920.3247,-1402.8632,13.5703, 0.0000, 0);
  2724. }
  2725. case 1: //HalfPipe
  2726. {
  2727. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2728. //NormalTele(playerid, "HalfPipe", 1296.5239,4289.1680,113.5000, 270.000, 1292.0472,4289.2334,112.0000, 270.0000, 0);
  2729. }
  2730. case 2: //WayToAir
  2731. {
  2732. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2733. /*DMZone[playerid] = 0;
  2734. ResetPlayerWeapons(playerid);
  2735. TogglePlayerControllable(playerid, 1);
  2736. new WayToAir[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(2);
  2737. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  2738. if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
  2739. {
  2740. if (RandomSpawn == 0)
  2741. {
  2742. SetVehiclePos(GetPlayerVehicleID(playerid),2225.6536,-584.7317,366.0000);
  2743. SetVehicleZAngle(GetPlayerVehicleID(playerid),353.000);
  2744. SetCameraBehindPlayer(playerid);
  2745. LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  2746. }
  2747. else if (RandomSpawn == 1)
  2748. {
  2749. SetVehiclePos(GetPlayerVehicleID(playerid),2235.2749,-585.7139,366.0000);
  2750. SetVehicleZAngle(GetPlayerVehicleID(playerid),353.000);
  2751. SetCameraBehindPlayer(playerid);
  2752. LinkVehicleToInterior(GetPlayerVehicleID(playerid),0);
  2753. }
  2754. }
  2755. else
  2756. {
  2757. InCar[playerid] = false;
  2758. SetPlayerPos(playerid,2230.0342,-588.9874,364.2000);
  2759. SetPlayerFacingAngle(playerid,355.0000);
  2760. SetCameraBehindPlayer(playerid);
  2761. }
  2762. SetPlayerInterior(playerid, 0);
  2763. SendClientMessage(playerid, COLOR_BASIC, "You have been teleportated to -WayToAir-");
  2764. format(WayToAir, sizeof(WayToAir), "%s has teleported to /WayToAir", playerName);
  2765. for(new i=0; i<MAX_PLAYERS; i++)
  2766. {
  2767. if(IsPlayerConnected(i))
  2768. {
  2769. if(ReceiveInfo[i] == true)
  2770. {
  2771. SendClientMessage(i, COLOR_GREY, WayToAir);
  2772. }
  2773. }
  2774. }*/
  2775. }
  2776. case 3: //WayToDeath
  2777. {
  2778. SpeceficTele(playerid, "WayToDeath",996.6433,2787.8489,1067.7532, 90.0000, 1065.7683,2781.0957,1070.5000, 55.0000, 0, 541);
  2779. }
  2780. case 4: //Stadium
  2781. {
  2782. NormalTele(playerid, "Stadium", -1478.6078,1646.1399,1052.5313, 208.5000, -1486.8704,1642.6029,1060.6719, 180.0000, 14);
  2783. }
  2784. case 5: //HopDeHop
  2785. {
  2786. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2787. //SpeceficTele(playerid, "HopDeHop",331.9420,-1288.7561,53.9099, 207.0075, 330.0904,-1284.5708,54.3445, 208.7554, 0, 522);
  2788. }
  2789. case 6: //MonsterCrash
  2790. {
  2791. SpeceficTele(playerid, "MonsterCrash",-2383.9839,2909.5325,362.3510, 180.0000, -2379.1731,2956.5103,361.9797, 150.0000, 0, 444);
  2792. }
  2793. case 7: //FreeWay
  2794. {
  2795. SpeceficTele(playerid, "FreeWay",-2847.1392,2185.9849,799.5908, 180.0000, -2838.7273,2199.9253,801.7857, 145.0000, 0, 568);
  2796. }
  2797. case 8: //WayToChilliad
  2798. {
  2799. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2800. //NormalTele(playerid, "WayToChilliad", -3163.3479,-1226.1855,1398.5236, 243.4468, -3217.4053,-1204.3394,1398.6516, 277.6004, 0);
  2801. }
  2802. case 9: //DeadJump
  2803. {
  2804. NormalTele(playerid, "DeadJump", -673.3708,-3024.7944,705.3344, 0.0000, -678.4291,-3077.5681,705.6073, 336.8739, 0);
  2805. }
  2806. case 10: //BMX Parcour
  2807. {
  2808. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2809. //SpeceficTele(playerid, "BMXParcour",1475.2362,-1333.6462,163.2656, 0.0000, 1473.0088,-1359.2314,163.7558, 341.8031, 0, 481);
  2810. }
  2811. }
  2812. }
  2813.  
  2814. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2815.  
  2816. if(CurrentMenu == StuntZones3)
  2817. {
  2818. switch(row)
  2819. {
  2820.  
  2821. case 0: //Upside Down
  2822. {
  2823. SpeceficTele(playerid, "UpsideDown",391.1825,-82.5999,558.1525, 270.0000, 355.8427,-78.0696,558.4254, 244.6733, 0, 411);
  2824. }
  2825. case 1: //Way To Piramide
  2826. {
  2827. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2828. //NormalTele(playerid, "WayToPiramide", 2894.4275,1283.5056,730.8865, 90.0000, 2938.7502,1277.3365,731.3615, 66.0000, 0);
  2829. }
  2830. case 2: //NRG Parcour
  2831. {
  2832. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2833. //SpeceficTele(playerid, "NRGParcour",2555.1616,-1411.6984,34.2195, 23.5451, 2555.4250,-1424.5944,34.6545, 31.8932, 0, 522);
  2834. }
  2835. case 3: //RoofStunt
  2836. {
  2837. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2838. //SpeceficTele(playerid, "RoofStunt",-1775.5356,579.0707,234.8906, 94.5604, -1773.7069,572.0452,234.8874, 74.1936, 0, 522);
  2839. }
  2840. case 4: //AquaPark
  2841. {
  2842. OnlyPlayerTele(playerid, "AquaPark", 284.4926,-1863.2415,2.8927, 151.0337, 0);
  2843. return 1;
  2844. }
  2845. case 5: //RollerCoaster
  2846. {
  2847. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2848. //SpeceficTele(playerid, "RollerCoaster",1995.2173,938.3616,273.2331, 359.9258, 1989.4508,914.0922,275.6952, 354.6008, 0, 411);
  2849. }
  2850. case 6: //Quad Parcour
  2851. {
  2852. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  2853. //SpeceficTele(playerid, "QuadParcour",171.3088,-1790.5005,3.5084, 270.6771, 169.9782,-1794.1268,4.1376, 349.5647, 0, 471);
  2854. }
  2855.  
  2856. }
  2857. }
  2858.  
  2859. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2860.  
  2861. if(CurrentMenu == TrainStations)
  2862. {
  2863. switch(row)
  2864. {
  2865. case 0: //LS
  2866. {
  2867. OnlyPlayerTele(playerid, "LSStation", 1734.6804,-1944.9839,13.5646, 126.6849, 0);
  2868. }
  2869. case 1: //SF
  2870. {
  2871. OnlyPlayerTele(playerid, "SFStation", -1965.7423,161.1771,27.6875, 252.6458, 0);
  2872. }
  2873. case 2: //LV1
  2874. {
  2875. OnlyPlayerTele(playerid, "LVStation1", 1430.7799,2653.1604,11.3926, 204.4157, 0);
  2876. }
  2877. case 3: //LV2
  2878. {
  2879. OnlyPlayerTele(playerid, "LVStation2", 2848.7876,1293.9376,11.3906, 238.8593, 0);
  2880. }
  2881. }
  2882. }
  2883.  
  2884. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2885.  
  2886. if(CurrentMenu == TuneGarages)
  2887. {
  2888. switch(row)
  2889. {
  2890. case 0: //TuneGarage1
  2891. {
  2892. NormalTele(playerid, "Tune1", -1935.9851,231.7287,34.1563, 0.0000, -1935.9851,231.7287,34.1563, 0.0000, 0);
  2893. }
  2894. case 1: //TuneGarage2
  2895. {
  2896. NormalTele(playerid, "Tune2", -2709.7312,217.4238,4.1797, 90.0000, -2709.7312,217.4238,4.1797, 90.0000, 0);
  2897. }
  2898. case 2: //TuneGarage3
  2899. {
  2900. NormalTele(playerid, "Tune3", 2386.8020,1036.3203,10.8203, 0.0000, 2386.8020,1036.3203,10.8203, 0.0000, 0);
  2901. }
  2902. case 3: //TuneGarage4
  2903. {
  2904. NormalTele(playerid, "Tune4", 2644.9768,-2030.9032,13.5540, 180.0000, 2644.9768,-2030.9032,13.5540, 180.0000, 0);
  2905. }
  2906. }
  2907. }
  2908.  
  2909. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2910.  
  2911. if(CurrentMenu == DMZones)
  2912. {
  2913. switch(row)
  2914. {
  2915. case 0: //BloodringArena
  2916. {
  2917. SpeceficTele(playerid, "BloodringArena",1158.0044,-2103.5696,500.0000, 0.0000, 1160.5853,-2103.3530,497.0000, 0.0000, 0, 504);
  2918. }
  2919. case 1: //Air Battle
  2920. {
  2921. OnlyPlayerTele(playerid, "AirBattle", 290.8786,1920.0966,17.6406, 270.0000, 0);
  2922. }
  2923. case 2: //VehicleDM
  2924. {
  2925. SendClientMessage(playerid, COLOR_GREY, "This deathmatch has been deleted");
  2926. //NormalTele(playerid, "VehicleDM", 2010.2626,-17.6970,8.0000, 196.7243, 2018.3121,-11.5412,4.4505, 170.0000, 0);
  2927. }
  2928. case 3: //Minigun Madness
  2929. {
  2930. ResetPlayerWeapons(playerid);
  2931. TogglePlayerControllable(playerid, 1);
  2932. new MinigunMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(6);
  2933. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  2934. if (RandomSpawn == 0)
  2935. {
  2936. SetPlayerPos(playerid, 2595.3945,2758.7642,23.8222);
  2937. SetPlayerFacingAngle(playerid, 247.9706);
  2938. SetCameraBehindPlayer(playerid);
  2939. }
  2940. if (RandomSpawn == 1)
  2941. {
  2942. SetPlayerPos(playerid, 2600.9648,2726.4263,23.8222);
  2943. SetPlayerFacingAngle(playerid, 329.4380);
  2944. SetCameraBehindPlayer(playerid);
  2945. }
  2946. if (RandomSpawn == 2)
  2947. {
  2948. SetPlayerPos(playerid, 2639.5300,2729.5732,23.8222);
  2949. SetPlayerFacingAngle(playerid, 46.8321);
  2950. SetCameraBehindPlayer(playerid);
  2951. }
  2952. if (RandomSpawn == 3)
  2953. {
  2954. SetPlayerPos(playerid, 2642.3181,2757.0920,23.8222);
  2955. SetPlayerFacingAngle(playerid, 121.7195);
  2956. SetCameraBehindPlayer(playerid);
  2957. }
  2958. if (RandomSpawn == 4)
  2959. {
  2960. SetPlayerPos(playerid, 2649.0498,2780.8462,19.3222);
  2961. SetPlayerFacingAngle(playerid, 196.2701);
  2962. SetCameraBehindPlayer(playerid);
  2963. }
  2964. if (RandomSpawn == 5)
  2965. {
  2966. SetPlayerPos(playerid, 2607.4639,2732.1467,36.5386);
  2967. SetPlayerFacingAngle(playerid, 255.2007);
  2968. SetCameraBehindPlayer(playerid);
  2969. }
  2970. GivePlayerWeapon(playerid, 38, 2000);
  2971. SetPlayerInterior(playerid, 0);
  2972. SendClientMessage(playerid, COLOR_BASIC, "You have been teleportated to -MinigunMadness-");
  2973. SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH MINIGUN OUTSIDE -MINIGUNMADNESS- WIL RESULT IN KICK OR BAN!!!");
  2974. format(MinigunMadness, sizeof(MinigunMadness), "%s has teleported to /MinigunMadness", playerName);
  2975. for(new i=0; i<MAX_PLAYERS; i++)
  2976. {
  2977. if(IsPlayerConnected(i))
  2978. {
  2979. SendClientMessage(i, COLOR_GREY, MinigunMadness);
  2980. }
  2981. }
  2982. }
  2983. case 4: //Ship Madness
  2984. {
  2985. ResetPlayerWeapons(playerid);
  2986. TogglePlayerControllable(playerid, 1);
  2987. new ShipMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(9);
  2988. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  2989. if (RandomSpawn == 0)
  2990. {
  2991. SetPlayerPos(playerid, -2473.3635,1552.3779,33.2273);
  2992. SetPlayerFacingAngle(playerid, 162.4520);
  2993. SetCameraBehindPlayer(playerid);
  2994. }
  2995. if (RandomSpawn == 1)
  2996. {
  2997. SetPlayerPos(playerid, -2464.5215,1531.9247,17.3281);
  2998. SetPlayerFacingAngle(playerid, 356.1172);
  2999. SetCameraBehindPlayer(playerid);
  3000. }
  3001. if (RandomSpawn == 2)
  3002. {
  3003. SetPlayerPos(playerid, -2460.7542,1551.8220,23.1406);
  3004. SetPlayerFacingAngle(playerid, 179.0821);
  3005. SetCameraBehindPlayer(playerid);
  3006. }
  3007. if (RandomSpawn == 3)
  3008. {
  3009. SetPlayerPos(playerid, -2444.2595,1530.2435,20.2344);
  3010. SetPlayerFacingAngle(playerid, 340.1136);
  3011. SetCameraBehindPlayer(playerid);
  3012. }
  3013. if (RandomSpawn == 4)
  3014. {
  3015. SetPlayerPos(playerid, -2401.1440,1532.8340,26.0469);
  3016. SetPlayerFacingAngle(playerid, 17.7140);
  3017. SetCameraBehindPlayer(playerid);
  3018. }
  3019. if (RandomSpawn == 5)
  3020. {
  3021. SetPlayerPos(playerid, -2374.3948,1535.5518,26.0469);
  3022. SetPlayerFacingAngle(playerid, 57.7976);
  3023. SetCameraBehindPlayer(playerid);
  3024. }
  3025. if (RandomSpawn == 6)
  3026. {
  3027. SetPlayerPos(playerid, -2359.6692,1561.0190,26.0469);
  3028. SetPlayerFacingAngle(playerid, 162.1386);
  3029. SetCameraBehindPlayer(playerid);
  3030. }
  3031. if (RandomSpawn == 7)
  3032. {
  3033. SetPlayerPos(playerid, -2382.4871,1547.8801,10.8281);
  3034. SetPlayerFacingAngle(playerid, 108.2448);
  3035. SetCameraBehindPlayer(playerid);
  3036. }
  3037. if (RandomSpawn == 8)
  3038. {
  3039. SetPlayerPos(playerid, -2422.0405,1551.3163,7.9219);
  3040. SetPlayerFacingAngle(playerid, 143.3385);
  3041. SetCameraBehindPlayer(playerid);
  3042. }
  3043. GivePlayerWeapon(playerid, 4, 1);
  3044. GivePlayerWeapon(playerid, 24, 47);
  3045. GivePlayerWeapon(playerid, 26, 44);
  3046. SetPlayerInterior(playerid, 0);
  3047. SendClientMessage(playerid, COLOR_BASIC, "You have been teleportated to -ShipMadness-");
  3048. SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -SHIPMADNESS- WIL RESULT IN KICK OR BAN!!!");
  3049. format(ShipMadness, sizeof(ShipMadness), "%s has teleported to /ShipMadness", playerName);
  3050. for(new i=0; i<MAX_PLAYERS; i++)
  3051. {
  3052. if(IsPlayerConnected(i))
  3053. {
  3054. SendClientMessage(i, COLOR_GREY, ShipMadness);
  3055. }
  3056. }
  3057. }
  3058. case 5: //Glass Madness
  3059. {
  3060. ResetPlayerWeapons(playerid);
  3061. TogglePlayerControllable(playerid, 1);
  3062. new GlassMadness[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(8);
  3063. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  3064. if (RandomSpawn == 0)
  3065. {
  3066. SetPlayerPos(playerid, -33.6020,1507.4240,95.4173);
  3067. SetPlayerFacingAngle(playerid, 325.6300);
  3068. SetCameraBehindPlayer(playerid);
  3069. }
  3070. if (RandomSpawn == 1)
  3071. {
  3072. SetPlayerPos(playerid, -12.6829,1507.4701,95.4341);
  3073. SetPlayerFacingAngle(playerid, 40.2041);
  3074. SetCameraBehindPlayer(playerid);
  3075. }
  3076. if (RandomSpawn == 2)
  3077. {
  3078. SetPlayerPos(playerid, -12.6831,1544.3137,95.4309);
  3079. SetPlayerFacingAngle(playerid, 146.1118);
  3080. SetCameraBehindPlayer(playerid);
  3081. }
  3082. if (RandomSpawn == 3)
  3083. {
  3084. SetPlayerPos(playerid, -32.7342,1543.9973,95.4126);
  3085. SetPlayerFacingAngle(playerid, 220.0591);
  3086. SetCameraBehindPlayer(playerid);
  3087. }
  3088. if (RandomSpawn == 4)
  3089. {
  3090. SetPlayerPos(playerid, -23.6215,1545.4828,95.4222);
  3091. SetPlayerFacingAngle(playerid, 181.8555);
  3092. SetCameraBehindPlayer(playerid);
  3093. }
  3094. if (RandomSpawn == 5)
  3095. {
  3096. SetPlayerPos(playerid, -11.9289,1525.8883,95.4330);
  3097. SetPlayerFacingAngle(playerid, 89.4213);
  3098. SetCameraBehindPlayer(playerid);
  3099. }
  3100. if (RandomSpawn == 6)
  3101. {
  3102. SetPlayerPos(playerid, -23.4273,1505.9843,95.4257);
  3103. SetPlayerFacingAngle(playerid, 359.8071);
  3104. SetCameraBehindPlayer(playerid);
  3105. }
  3106. if (RandomSpawn == 7)
  3107. {
  3108. SetPlayerPos(playerid, -34.1823,1525.6079,95.4088);
  3109. SetPlayerFacingAngle(playerid, 270.5063);
  3110. SetCameraBehindPlayer(playerid);
  3111. }
  3112. GivePlayerWeapon(playerid, 29, 130);
  3113. SetPlayerInterior(playerid, 0);
  3114. SendClientMessage(playerid, COLOR_BASIC, "You have been teleportated to -GlassMadness-");
  3115. SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -GLASSMADNESS- WIL RESULT IN KICK OR BAN!!!");
  3116. format(GlassMadness, sizeof(GlassMadness), "%s has teleported to /GlassMadness", playerName);
  3117. for(new i=0; i<MAX_PLAYERS; i++)
  3118. {
  3119. if(IsPlayerConnected(i))
  3120. {
  3121. SendClientMessage(i, COLOR_GREY, GlassMadness);
  3122. }
  3123. }
  3124. }
  3125. case 6: //Island DM
  3126. {
  3127. SendClientMessage(playerid, COLOR_GREY, "This deathmatch has been deleted");
  3128. /*ResetPlayerWeapons(playerid);
  3129. TogglePlayerControllable(playerid, 1);
  3130. new IslandDM[128], playerName[MAX_PLAYER_NAME], RandomSpawn = random(5);
  3131. GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
  3132. DMZone[playerid] = 4;
  3133. if (RandomSpawn == 0)
  3134. {
  3135. InCar[playerid] = false;
  3136. SetPlayerPos(playerid, 3767.7358,-1813.6943,19.8772);
  3137. SetPlayerFacingAngle(playerid, 179.3254);
  3138. SetCameraBehindPlayer(playerid);
  3139. }
  3140. if (RandomSpawn == 1)
  3141. {
  3142. InCar[playerid] = false;
  3143. SetPlayerPos(playerid, 3828.8596,-1906.2285,15.4382);
  3144. SetPlayerFacingAngle(playerid, 52.7610);
  3145. SetCameraBehindPlayer(playerid);
  3146. }
  3147. if (RandomSpawn == 2)
  3148. {
  3149. InCar[playerid] = false;
  3150. SetPlayerPos(playerid, 3803.5884,-1965.7352,13.8772);
  3151. SetPlayerFacingAngle(playerid, 46.7841);
  3152. SetCameraBehindPlayer(playerid);
  3153. }
  3154. if (RandomSpawn == 3)
  3155. {
  3156. InCar[playerid] = false;
  3157. SetPlayerPos(playerid, 3688.8562,-1957.8295,14.8801);
  3158. SetPlayerFacingAngle(playerid, 331.2935);
  3159. SetCameraBehindPlayer(playerid);
  3160. }
  3161. if (RandomSpawn == 4)
  3162. {
  3163. InCar[playerid] = false;
  3164. SetPlayerPos(playerid, 3652.4124,-1876.3260,20.8859);
  3165. SetPlayerFacingAngle(playerid, 222.2524);
  3166. SetCameraBehindPlayer(playerid);
  3167. }
  3168. DynUpdateStart(playerid);
  3169. GivePlayerWeapon(playerid, 4, 1);
  3170. GivePlayerWeapon(playerid, 24, 47);
  3171. GivePlayerWeapon(playerid, 26, 44);
  3172. SetPlayerInterior(playerid, 0);
  3173. SendClientMessage(playerid, COLOR_BASIC, "You have been teleportated to -Island DM-");
  3174. SendClientMessage(playerid, COLOR_RED, "SHOOTING WITH WEAPONS OUTSIDE -ISLAND DM- WIL RESULT IN KICK OR BAN!!!");
  3175. format(IslandDM, sizeof(IslandDM), "%s has teleported to /IslandDM", playerName);
  3176. for(new i=0; i<MAX_PLAYERS; i++)
  3177. {
  3178. if(IsPlayerConnected(i))
  3179. {
  3180. if(ReceiveInfo[i] == true)
  3181. {
  3182. SendClientMessage(i, COLOR_GREY, IslandDM);
  3183. }
  3184. }
  3185. }*/
  3186. }
  3187. case 7: //Derby
  3188. {
  3189. NormalTele(playerid, "Derby", -1441.9851,937.9876,1036.3468, 279.2885, -1424.1138,930.0392,1036.4016, 354.8884, 15);
  3190. }
  3191. case 8: //RC War
  3192. {
  3193. OnlyPlayerTele(playerid, "RCWar", -1130.8673,1034.7043,1345.7231, 243.5756, 10);
  3194. }
  3195. case 9: //Watch RC War
  3196. {
  3197. OnlyPlayerTele(playerid, "WatchRCWar", -1136.3916,1023.5286,1358.9141, 213.5151, 10);
  3198. }
  3199. }
  3200. }
  3201.  
  3202. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  3203.  
  3204. if(CurrentMenu == OtherZones1)
  3205. {
  3206. switch(row)
  3207. {
  3208. case 0: //TuneGarages
  3209. {
  3210. ShowMenuForPlayer(TuneGarages, playerid);
  3211. }
  3212. case 1: //TrainStations
  3213. {
  3214. ShowMenuForPlayer(TrainStations, playerid);
  3215. }
  3216. case 2: //TruckStops
  3217. {
  3218. ShowMenuForPlayer(TruckStops, playerid);
  3219. }
  3220. case 3: //AA
  3221. {
  3222. NormalTele(playerid, "AA", 402.8024,2534.6926,16.700, 150.000, 411.1637,2539.2366,16.5473, 90.0000, 0);
  3223. }
  3224. case 4: //Home
  3225. {
  3226. NormalTele(playerid, "Home", -468.3654,2208.0317,46.4776, 115.0000, -468.3654,2208.0317,46.4776, 115.0000, 0);
  3227. }
  3228. case 5: //DragRace
  3229. {
  3230. NormalTele(playerid, "DragRace", 1031.1125,-2297.4236,12.8004, 60.0000, 1031.1125,-2297.4236,12.8004, 60.0000, 0);
  3231. }
  3232. case 6: //Karting
  3233. {
  3234. SpeceficTele(playerid, "Karting",2888.9099,1028.5667,17.0000, 0.0000, 2888.9377,1026.1427,13.4755, 0.0000, 0, 571);
  3235. }
  3236. case 7: //Trampoline
  3237. {
  3238. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  3239. //NormalTele(playerid, "Trampoline", 2250.6528,338.8527,526.0000, 180.0000, 2217.9050,330.7018,523.0000, 240.0000, 0);
  3240. }
  3241. case 8: //Dirt
  3242. {
  3243. NormalTele(playerid, "Dirt", -1299.6615,-700.7803,1056.2037, 31.1929, -1295.2308,-694.4233,1056.4128, 55.7578, 4);
  3244. }
  3245. case 9: //AdminCastle
  3246. {
  3247. NormalTele(playerid, "AdminCastle", -2891.6179,-76.7571,4.0496, 69.4484, -2899.2368,-76.9977,4.1619, 52.9987, 0);
  3248. }
  3249. case 10: //PinkAutos
  3250. {
  3251. NormalTele(playerid, "PinkAutos", -1623.2146,1227.1677,7.0391, 114.0600, -1620.0802,1221.2664,7.1875, 107.4800, 0);
  3252. }
  3253. }
  3254. }
  3255.  
  3256. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  3257.  
  3258. if(CurrentMenu == OtherZones2)
  3259. {
  3260. switch(row)
  3261. {
  3262. case 0: //Drift
  3263. {
  3264. OnlyPlayerTele(playerid, "Drift", -309.9550,1560.8075,75.3594, 250.5937, 0);
  3265. }
  3266. case 1: //Bounce
  3267. {
  3268. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  3269. //NormalTele(playerid, "Bounce", 2973.1985,-2725.4814,9.2444, 209.1594, 2961.0505,-2715.2512,8.8731, 208.6876, 0);
  3270. }
  3271. case 2: //CarSumo
  3272. {
  3273. SendClientMessage(playerid, COLOR_GREY, "This stunt has been deleted");
  3274. //SpeceficTele(playerid, "CarSumo",-2333.3159,4050.5703,11.7308, 180.0000, -2335.2354,4075.6289,11.7308, 180.0000, 0, 444);
  3275. }
  3276. }
  3277. }
  3278.  
  3279. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  3280.  
  3281. if(CurrentMenu == TruckStops)
  3282. {
  3283. switch(row)
  3284. {
  3285. case 0: //LasVegas Truck Stop
  3286. {
  3287. OnlyPlayerTele(playerid, "LVTruckStop", 661.4391,1718.3545,7.1875, 117.5748, 0);
  3288. }
  3289. case 1: //Chilliad Truck Stop
  3290. {
  3291. OnlyPlayerTele(playerid, "CTruckStop", -1560.8802,-2735.1248,48.7435, 223.5058, 0);
  3292. }
  3293. case 2: //Dam Truck Stop
  3294. {
  3295. OnlyPlayerTele(playerid, "DTruckStop", -314.5585,1773.8600,43.6406, 192.1722, 0);
  3296. }
  3297. }
  3298. }
  3299.  
  3300. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  3301.  
  3302.  
  3303. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  3304.  
  3305. public OnPlayerExitedMenu(playerid)
  3306. {
  3307. TogglePlayerControllable(playerid,0);
  3308. return 1;
  3309. }
  3310.  
  3311. public OnPlayerCommandText(playerid, cmdtext[])
  3312. {
  3313. if(strcmp(cmdtext, "/stunttele", true) == 0)
  3314. {
  3315. ShowMenuForPlayer(stunttele, playerid);
  3316. TogglePlayerControllable(playerid, 0);
  3317. return 1;
  3318. }
  3319. return 0;
  3320. }
  3321.  
  3322. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement