Advertisement
astronaut32

SATTELITE

Jul 4th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 79.99 KB | None | 0 0
  1.  
  2.  
  3. local User=Game:service'Players'.LocalPlayer;
  4. local Char=User.Character;
  5. local Tool;
  6.  
  7.  
  8.  
  9. local CurrentTool;
  10. local Tools={};
  11. local Pos=0;
  12.  
  13.  
  14.  
  15. local CreateTool=function(Source)
  16. local Thread=coroutine.create(function()
  17. local Bin=loadstring(Source)();
  18. if(Bin~=nil)then
  19. Tools[#Tools+1]=Bin;
  20. Bin.Parent=Tool;
  21. end;
  22. end);
  23. local Load,Error=coroutine.resume(Thread);
  24. if(Load==false)then
  25. print(Error);
  26. end;
  27. end;
  28. local Update=function(Integer)
  29. Pos=Pos+Integer;
  30. Pos=Pos>#Tools and 0 or Pos<0 and#Tools or Pos;
  31. if(CurrentTool~=nil)then
  32. CurrentTool.Parent=Tool;
  33. end;
  34. if(Pos~=0)then
  35. CurrentTool=Tools[Pos];
  36. CurrentTool.Parent=User.Backpack;
  37. else
  38. CurrentTool=nil;
  39. end;
  40. end;
  41.  
  42.  
  43.  
  44.  
  45. Tool=Instance.new'HopperBin';
  46. Tool.Name='The One Tool';
  47. Tool.Selected:connect(function(Mouse)
  48. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  49. Mouse.Button1Down:connect(function()
  50. Update(1);
  51. end);
  52. Mouse.KeyDown:connect(function(Key)
  53. if(Key=='q')then
  54. Update(-1);
  55. elseif(Key=='e')then
  56. Update(1);
  57. end;
  58. end);
  59. end);
  60.  
  61.  
  62. CreateTool[===[--Force Bubble
  63. local User=Game:service'Players'.LocalPlayer;
  64.  
  65. for i,v in next,{User.Backpack;User.Character;}do
  66. for i,v in next,v:children()do
  67. if(v.Name=='Force Bubble')then
  68. v.Parent=nil;
  69. end;
  70. end;
  71. end;
  72.  
  73. local Part=Instance.new'Part';
  74. local Body=Instance.new'RocketPropulsion';
  75. local Bin=Instance.new'HopperBin';
  76. Bin.Name='Force Bubble';
  77. Bin.Selected:connect(function(Mouse)
  78. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  79. Mouse.Button1Down:connect(function()
  80. local Stop;
  81. for i,v in next,User.Character:children()do
  82. if(v.Name=='Force Bubble')then
  83. v.Parent=nil;
  84. Stop=true;
  85. end;
  86. end;
  87.  
  88. if(Stop)then
  89. return nil;
  90. end;
  91.  
  92. Part.Name='Force Bubble';
  93. Part.Shape=0;
  94. Part.TopSurface=0;
  95. Part.BottomSurface=0;
  96. Part.Transparency=.7;
  97. Part.CanCollide=false;
  98. Part.Parent=User.Character;
  99. Part.CFrame=User.Character.Torso.CFrame;
  100. Part.Size=Vector3.new(12,12,12);
  101. Part.BrickColor=BrickColor.Blue();
  102.  
  103. Body.Target=User.Character.Torso;
  104. Body.MaxThrust=1e+008;
  105. Body.MaxSpeed=100;
  106. Body.ThrustD=10;
  107. Body.ThrustP=80;
  108. Body.Parent=Part;
  109. Body.TurnP=0;
  110. Body:Fire();
  111. end);
  112. end);
  113. Part.Touched:connect(function(Hit)
  114. if(Hit.Anchored~=true and Hit:GetMass()<1000 and User.Character:IsAncestorOf(Hit)==false)then
  115. Hit.Parent=nil;
  116. end;
  117. end);
  118. return Bin;
  119. ]===];
  120. CreateTool[===[
  121. local Bin=Instance.new'HopperBin';
  122. Bin.Name='Avada Kedavra';
  123. Bin.Selected:connect(function(Mouse)
  124. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  125. Mouse.Button1Down:connect(function()
  126. if(Mouse.Target~=nil)then
  127. for i,v in next,Workspace:children()do
  128. if(v:IsAncestorOf(Mouse.Target))then
  129. for i,v in next,v:children()do
  130. if(v.className=='Humanoid')then
  131. v.Health=0;
  132. elseif(v.className=='Hat')then
  133. v.Parent=nil;
  134. end;
  135. end;
  136. end;
  137. end;
  138. end;
  139. end);
  140. end);
  141. return Bin;
  142. ]===];
  143. CreateTool[===[
  144. local bin=Instance.new'HopperBin';
  145. bin.Name='Construct Additional Pylon';
  146.  
  147. local part = Instance.new("Part")
  148. part.Transparency = .3
  149. part.BrickColor = BrickColor.new(102)
  150. part.Anchored = true
  151.  
  152. local ring = Instance.new("Part")
  153. ring.BrickColor = BrickColor.Yellow()
  154. ring.Anchored = true
  155. local height = 14
  156. local maxWidth = 8
  157.  
  158.  
  159. local ringHeight = height / 6
  160. local ringBegin = height / 2 - ringHeight / 2
  161. local ringEnd = height / 2 + ringHeight / 2
  162. local model,base;
  163. local function stick(x, y)
  164. local weld = Instance.new("Weld",model)
  165. weld.Part0 = x
  166. weld.Part1 = y
  167.  
  168. local HitPos = x.Position
  169. local CJ = CFrame.new(HitPos)
  170. local C0 = x.CFrame:inverse() *CJ
  171. local C1 = y.CFrame:inverse() * CJ
  172.  
  173. weld.C0 = C0
  174. weld.C1 = C1
  175. end
  176. local function getWidth(i)
  177. if(i < height / 2) then return math.sqrt(i) / math.sqrt(height) * maxWidth end
  178. return math.sqrt(height - i) / math.sqrt(height) * maxWidth
  179. end
  180. local function spawnCircle(diameter, height, offset, model)
  181. for i=-diameter / 2,diameter / 2 do
  182. local obj = part:clone()
  183. obj.Position = offset + Vector3.new(0,height,0) + Vector3.new(i,0,0)
  184. obj.Size = Vector3.new(1,1,math.sqrt(diameter * diameter - i * i))
  185. obj.Parent = model
  186. wait(.02)
  187. end
  188. end
  189. local function spawnBorder(diameter, height, offset, model)
  190. for i=-diameter / 2,diameter / 2 do
  191. obj = ring:clone()
  192. obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) + Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0))
  193. obj.Size = Vector3.new(1,1,1)
  194. obj.Parent = model
  195. obj = ring:clone()
  196. obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) - Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0))
  197. obj.Size = Vector3.new(1,1,1)
  198. obj.Parent = model
  199. wait(.02)
  200. end
  201. end
  202. local function spawnHouse(offset)
  203. model = Instance.new("Model")
  204. model.Name = "Pylon" .. math.random(1,50000)
  205. model.Parent = game.Workspace
  206. base = Instance.new("Part")
  207. base.Name = "Base"
  208. base.Parent = model
  209. base.Anchored = true
  210. base.Transparency = 1
  211. base.Position = offset
  212. for i=1,height do
  213. width = getWidth(i)
  214. spawnCircle(width,i, offset,model)
  215. end
  216. for i=ringBegin,ringEnd do
  217. spawnBorder(maxWidth + 2, i, offset,model)
  218. end
  219. children = model:children()
  220. for i=1,#children do
  221. if(children[i].Name ~= "Base" and children[i].className == "Part") then stick(base,children[i]) end
  222. children[i].Anchored = false
  223. end
  224. end
  225. local function onButton1Down(mouse)
  226. mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"
  227. print("trigger")
  228. spawnHouse(mouse.Hit.p)
  229. print("spawned")
  230. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  231. end
  232. function onSelected(mouse)
  233. print("Action Tool Selected")
  234. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  235. while(true)do
  236. mouse.Button1Down:wait();
  237. onButton1Down(mouse)
  238. end;
  239. end
  240. bin.Selected:connect(onSelected)
  241. return bin;
  242. ]===];
  243. CreateTool[===[
  244. local bin = Instance.new'HopperBin';
  245. bin.Name='Fire Shield';
  246. function getX(t)
  247. return 41 * math.cos(t) - 18 * math.sin(t) - 83 * math.cos(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t)
  248. end
  249. function getY(t)
  250. return 36 * math.cos(t) + 27 * math.sin(t) - 113 * math.cos(2 * t) + 30 * math.sin(2 * t) + 11 * math.cos(3 * t) - 27 * math.sin(3 * t)
  251. end
  252. function getZ(t)
  253. return 45 * math.sin(t) - 30 * math.cos(2 * t) + 113 * math.sin(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t)
  254. end
  255. local template = Instance.new("Explosion")
  256. template.BlastRadius = 3
  257. local template2 = Instance.new("Explosion")
  258. template2.BlastRadius = 3
  259. spew = false
  260. function onButton1Down(mouse)
  261. local player = game.Players.LocalPlayer
  262. if player == nil then return end
  263. spew = spew==false
  264. i = 0
  265. coroutine.wrap(function()
  266. while spew do
  267. i = i + .15
  268. part = template;
  269. part.Parent=nil;
  270. part.Position = player.Character.Torso.Position + Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5)
  271. part.Parent = game.Workspace
  272. part = template2;
  273. part.Parent=nil;
  274. part.Position = player.Character.Torso.Position - Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5)
  275. part.Parent = game.Workspace
  276. wait(.025)
  277. end
  278. return true;
  279. end)()
  280. end
  281. function onSelected(mouse)
  282. print("select")
  283. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  284. while(mouse)do
  285. mouse.Button1Down:wait();
  286. wait(.025)
  287. onButton1Down(mouse);
  288. end;
  289. end
  290. bin.Selected:connect(onSelected)
  291. return bin;
  292. ]===];
  293. CreateTool[===[
  294. local Sound=Instance.new'Sound';
  295. Sound.SoundId='http://www.roblox.com/asset/?id=1079802';
  296. local Bin=Instance.new'HopperBin';
  297. Bin.Name='Katon Goukakyou No Jutsu';
  298. Bin.Selected:connect(function(Mouse)
  299. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  300. Mouse.Button1Down:connect(function()
  301. local Head=Game:service'Players'.LocalPlayer.Character.Head;
  302. local Start=Head.Position;
  303. local Unit=(Mouse.Hit.p-Start).Unit;
  304. local Explosion=Instance.new'Explosion';
  305. Explosion.BlastPressure=1000000;
  306. Explosion.BlastRadius=10;
  307.  
  308. Sound.Parent=Head;
  309. Sound:play();
  310. for i=0,75 do
  311. Explosion.Parent=nil;
  312. Explosion.Position=Start+Unit*20+i*Unit*i/25;
  313. Explosion.Parent=Workspace;
  314. wait(.05)
  315. end
  316. end);
  317. end);
  318. return Bin;
  319. ]===];
  320. CreateTool[===[
  321. local Part=Instance.new'Part';
  322. Part.formFactor=0;
  323. Part.Anchored=true;
  324. Part.Transparency=1;
  325. Part.Size=Vector3.new();
  326. local Sound=Instance.new'Sound';
  327. Sound.Looped=true;
  328. Sound.SoundId='rbxasset://sounds/Rocket whoosh 01.wav';
  329. local Explosion=Instance.new'Explosion';
  330. Explosion.BlastPressure=1000000;
  331. Explosion.BlastRadius=2;
  332. local Explosion2=Instance.new'Explosion';
  333. Explosion2.BlastPressure=1000000;
  334. Explosion2.BlastRadius=2;
  335. local Bin=Instance.new'HopperBin';
  336. Bin.Name='SpinFire';
  337. Bin.Selected:connect(function(Mouse)
  338. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  339. while(Mouse)do
  340. Mouse.Button1Down:wait();
  341. Part.Parent=Workspace;
  342. Sound.Parent=Part;
  343. Sound:play();
  344.  
  345. look = CFrame.new(Game:service'Players'.LocalPlayer.Character.Head.Position,Mouse.Hit.p);
  346.  
  347. for i=0,75 do
  348. Explosion.Parent=nil;
  349. Explosion2.Parent=nil;
  350. x = math.sin(i / 3) * 8 * (75 - i) / 75
  351. y = math.cos(i / 3) * 8 * (75 - i) / 75
  352. helix = look * CFrame.new(x,y,-i)
  353. Explosion.Parent=Workspace;
  354. Explosion.Position=helix.p;
  355. x = -math.sin(i / 3) * 8 * (75 - i) / 75
  356. y = -math.cos(i / 3) * 8 * (75 - i) / 75
  357. helix = look * CFrame.new(x,y,-i)
  358. Explosion2.Parent=Workspace;
  359. Explosion2.Position=helix.p;
  360. Part.CFrame=helix;
  361. wait(.02)
  362. end
  363.  
  364. Sound:pause();
  365. Part.Parent=nil;
  366. Sound.Parent=nil;
  367. end;
  368. end);
  369. return Bin;
  370. ]===];
  371. CreateTool[===[
  372. local Sound;
  373. local Bin=Instance.new'HopperBin';
  374. Bin.Name='Teleport';
  375. Bin.Selected:connect(function(Mouse)
  376. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  377. Mouse.Button1Down:connect(function()
  378. if(Mouse.Target~=nil)then
  379. Sound:play();
  380. Game:service'Players'.LocalPlayer.Character.Torso.CFrame=CFrame.new(0,4,0)+Mouse.Hit.p;
  381. end;
  382. end);
  383. end);
  384. Sound=Instance.new('Sound',Game:service'Players'.LocalPlayer.Character.Head);
  385. Sound.SoundId='http://www.roblox.com/asset/?id=1079839';
  386. Sound.Volume=.3;
  387. return Bin;
  388. ]===];
  389. CreateTool[===[
  390. local Bin=Instance.new'HopperBin';
  391. Bin.Name='Hat Jacker';
  392. Bin.Selected:connect(function(Mouse)
  393. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  394. Mouse.Button1Down:connect(function()
  395. if(Mouse.Target~=nil and Mouse.Target.Parent.className=='Hat')then
  396. Mouse.Target.Parent=Game:service'Players'.LocalPlayer.Character;
  397. end;
  398. end);
  399. end);
  400. return Bin;
  401. ]===];
  402. CreateTool[===[
  403. local S='Size';
  404. local C='CFrame';
  405. local B='BrickColor';
  406. local N=function(Char)
  407. return BrickColor.new(string.byte(Char));
  408. end;
  409. local Z=Vector3.new;
  410. local W=function()
  411. Wait(0);
  412. end;
  413. local Bin=Instance.new'HopperBin';
  414. Bin.Name='House Spawn';
  415. Bin.Selected:connect(function(Mouse)
  416. while(true)do
  417. Mouse.Button1Down:wait();
  418. local MousePos=Mouse.Hit.p;
  419. local Model=Instance.new('Model',Workspace);
  420. Model.Name='House';
  421. local V=function()
  422. W();
  423. local Part=Instance.new('Part',Model);
  424. Part.Anchored=true;
  425. return Part;
  426. end;
  427. local F=function(...)
  428. return CFrame.new(...)+MousePos;
  429. end;
  430. P=V();P[S]=Z(7,2.40,2);P[C]=F(-24.5,14.40,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  431. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,9.60,23,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  432. P=V();P[S]=Z(12,1.20,6);P[C]=F(25,22.20,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  433. P=V();P[S]=Z(12,1.20,6);P[C]=F(27,21,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  434. P=V();P[S]=Z(6,1.20,6);P[C]=F(25,22.20,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  435. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,-25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  436. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,14.40,-23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  437. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,-19,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  438. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,-17,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  439. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,14.40,-17.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  440. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,-11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  441. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,-5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  442. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,13,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  443. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,19,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  444. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  445. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,14.40,-0.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  446. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,14.40,4.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  447. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,14.40,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  448. P=V();P[S]=Z(4,2.40,2);P[C]=F(27,14.40,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  449. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,17,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  450. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  451. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  452. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,-1,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  453. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,-7,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  454. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,16.80,-13,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  455. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,1,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  456. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,7,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  457. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,7.20,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  458. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,7.20,-23.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  459. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,7.20,-4.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  460. P=V();P[S]=Z(4,2.40,2);P[C]=F(27,7.20,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  461. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,9.60,-23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  462. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,12,-23.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  463. P=V();P[S]=Z(7,2.40,2);P[C]=F(27,7.20,18.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  464. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,7.20,0.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  465. P=V();P[S]=Z(4,2.40,2);P[C]=F(27,9.60,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  466. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,12,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  467. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,9.60,-0.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  468. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,9.60,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  469. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,9.60,4.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  470. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,9.60,-17.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  471. P=V();P[S]=Z(4,2.40,2);P[C]=F(27,12,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  472. P=V();P[S]=Z(7,2.40,2);P[C]=F(27,12,18.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  473. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,12,0.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  474. P=V();P[S]=Z(5,2.40,2);P[C]=F(27,12,-4.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  475. P=V();P[S]=Z(6,2.40,2);P[C]=F(25,4.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  476. P=V();P[S]=Z(5,2.40,2);P[C]=F(23.5,7.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  477. P=V();P[S]=Z(7,2.40,2);P[C]=F(27,9.60,24.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  478. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  479. P=V();P[S]=Z(5,2.40,2);P[C]=F(23.5,12,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  480. P=V();P[S]=Z(6,2.40,2);P[C]=F(23,9.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  481. P=V();P[S]=Z(6,2.40,2);P[C]=F(23,14.40,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  482. P=V();P[S]=Z(6,2.40,2);P[C]=F(25,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  483. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,12,25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  484. P=V();P[S]=Z(7,2.40,2);P[C]=F(27,14.40,24.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  485. P=V();P[S]=Z(6,2.40,2);P[C]=F(23,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  486. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,-25,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  487. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  488. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,17,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  489. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  490. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,-1,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  491. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,-7,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  492. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,-13,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  493. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,-19,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  494. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  495. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,12,23.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  496. P=V();P[S]=Z(6,1.20,6);P[C]=F(25,22.20,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  497. P=V();P[S]=Z(2,1.20,2);P[C]=F(23,21,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  498. P=V();P[S]=Z(8,2.40,2);P[C]=F(18,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  499. P=V();P[S]=Z(12,1.20,6);P[C]=F(23,23.39,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  500. P=V();P[S]=Z(2,1.20,2);P[C]=F(19,23.39,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  501. P=V();P[S]=Z(6,1.20,6);P[C]=F(21,24.60,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  502. P=V();P[S]=Z(12,1.20,6);P[C]=F(27,21,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  503. P=V();P[S]=Z(12,1.20,6);P[C]=F(19,25.80,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  504. P=V();P[S]=Z(12,1.20,6);P[C]=F(25,22.20,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  505. P=V();P[S]=Z(12,1.20,6);P[C]=F(21,24.60,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  506. P=V();P[S]=Z(12,1.20,6);P[C]=F(17,27,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  507. P=V();P[S]=Z(12,1.20,6);P[C]=F(19,25.80,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  508. P=V();P[S]=Z(12,1.20,6);P[C]=F(25,22.20,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  509. P=V();P[S]=Z(12,1.20,6);P[C]=F(23,23.39,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  510. P=V();P[S]=Z(12,1.20,6);P[C]=F(17,27,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  511. P=V();P[S]=Z(12,1.20,6);P[C]=F(19,25.80,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  512. P=V();P[S]=Z(12,1.20,6);P[C]=F(25,22.20,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  513. P=V();P[S]=Z(12,1.20,6);P[C]=F(21,24.60,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  514. P=V();P[S]=Z(12,1.20,6);P[C]=F(21,24.60,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  515. P=V();P[S]=Z(12,1.20,6);P[C]=F(23,23.39,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  516. P=V();P[S]=Z(12,1.20,6);P[C]=F(17,27,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  517. P=V();P[S]=Z(12,1.20,6);P[C]=F(19,25.80,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  518. P=V();P[S]=Z(12,1.20,6);P[C]=F(23,23.39,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  519. P=V();P[S]=Z(12,1.20,6);P[C]=F(15,28.20,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  520. P=V();P[S]=Z(12,1.20,6);P[C]=F(21,24.60,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  521. P=V();P[S]=Z(6,1.20,6);P[C]=F(17,27,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  522. P=V();P[S]=Z(2,1.20,2);P[C]=F(19,23.39,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  523. P=V();P[S]=Z(6,1.20,6);P[C]=F(21,24.60,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  524. P=V();P[S]=Z(12,1.20,6);P[C]=F(17,27,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  525. P=V();P[S]=Z(2,1.20,2);P[C]=F(15,25.80,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  526. P=V();P[S]=Z(12,1.20,6);P[C]=F(15,28.20,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  527. P=V();P[S]=Z(12,1.20,6);P[C]=F(19,25.80,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  528. P=V();P[S]=Z(2,1.20,2);P[C]=F(23,21,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  529. P=V();P[S]=Z(8,2.40,2);P[C]=F(18,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  530. P=V();P[S]=Z(12,1.20,6);P[C]=F(23,23.39,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  531. P=V();P[S]=Z(6,2.40,2);P[C]=F(15,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  532. P=V();P[S]=Z(6,2.40,2);P[C]=F(17,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  533. P=V();P[S]=Z(4,1.20,2);P[C]=F(11,15,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'&';
  534. P=V();P[S]=Z(6,2.40,2);P[C]=F(13,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  535. P=V();P[S]=Z(2,2.40,2);P[C]=F(13,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  536. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,19.20,-23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  537. P=V();P[S]=Z(6,1.20,2);P[C]=F(11,0.60,34.99,1,0,0,0,1,0,0,0,1);P[B]=N'Ç';
  538. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,1.20,32.99,1,0,0,0,1,0,0,0,1);P[B]=N'Ç';
  539. P=V();P[S]=Z(6,2.40,4);P[C]=F(11,2.40,30,1,0,0,0,1,0,0,0,1);P[B]=N'Ç';
  540. P=V();P[S]=Z(6,1.20,4);P[C]=F(11,4.20,28,1,0,0,0,1,0,0,0,1);P[B]=N'Ç';
  541. P=V();P[S]=Z(6,2.40,2);P[C]=F(19,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  542. P=V();P[S]=Z(1,2.40,2);P[C]=F(15.5,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  543. P=V();P[S]=Z(6,2.40,2);P[C]=F(18,7.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  544. P=V();P[S]=Z(5,2.40,2);P[C]=F(17.5,9.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  545. P=V();P[S]=Z(6,2.40,2);P[C]=F(18,12,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  546. P=V();P[S]=Z(1,8.40,2);P[C]=F(14.5,7.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'&';
  547. P=V();P[S]=Z(5,2.40,2);P[C]=F(17.5,14.40,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  548. P=V();P[S]=Z(2,1.20,2);P[C]=F(14,15,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  549. P=V();P[S]=Z(1,2.40,2);P[C]=F(14.5,13.19,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  550. P=V();P[S]=Z(1,2.40,2);P[C]=F(13.5,13.19,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'&';
  551. P=V();P[S]=Z(6,2.40,2);P[C]=F(19,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  552. P=V();P[S]=Z(6,2.40,2);P[C]=F(25,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  553. P=V();P[S]=Z(6,2.40,2);P[C]=F(23,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  554. P=V();P[S]=Z(6,2.40,2);P[C]=F(25,7.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  555. P=V();P[S]=Z(7,2.40,2);P[C]=F(24.5,9.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  556. P=V();P[S]=Z(6,2.40,2);P[C]=F(25,12,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  557. P=V();P[S]=Z(7,2.40,2);P[C]=F(24.5,14.40,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  558. P=V();P[S]=Z(6,2.40,2);P[C]=F(23,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  559. P=V();P[S]=Z(10,2.40,2);P[C]=F(17,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  560. P=V();P[S]=Z(6,2.40,2);P[C]=F(17,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  561. P=V();P[S]=Z(6,2.40,2);P[C]=F(18,9.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  562. P=V();P[S]=Z(7,2.40,2);P[C]=F(18.5,12,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  563. P=V();P[S]=Z(6,2.40,2);P[C]=F(18,14.40,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  564. P=V();P[S]=Z(7,2.40,2);P[C]=F(18.5,7.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  565. P=V();P[S]=Z(6,2.40,2);P[C]=F(17,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  566. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,4.80,23,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  567. P=V();P[S]=Z(2,2.40,1);P[C]=F(11,19.20,-27.5,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  568. P=V();P[S]=Z(6,2.40,2);P[C]=F(7,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  569. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  570. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  571. P=V();P[S]=Z(6,2.40,2);P[C]=F(1,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  572. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  573. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  574. P=V();P[S]=Z(4,2.40,2);P[C]=F(5,7.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  575. P=V();P[S]=Z(5,2.40,2);P[C]=F(0.5,7.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  576. P=V();P[S]=Z(5,2.40,2);P[C]=F(-0.5,9.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  577. P=V();P[S]=Z(5,2.40,2);P[C]=F(4.5,9.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  578. P=V();P[S]=Z(5,2.40,2);P[C]=F(0.5,12,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  579. P=V();P[S]=Z(5,2.40,2);P[C]=F(-0.5,14.40,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  580. P=V();P[S]=Z(4,2.40,2);P[C]=F(5,12,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  581. P=V();P[S]=Z(5,2.40,2);P[C]=F(4.5,14.40,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  582. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  583. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  584. P=V();P[S]=Z(8,2.40,2);P[C]=F(-6,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  585. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  586. P=V();P[S]=Z(5,2.40,2);P[C]=F(-4.5,7.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  587. P=V();P[S]=Z(4,2.40,2);P[C]=F(-5,9.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  588. P=V();P[S]=Z(5,2.40,2);P[C]=F(-4.5,12,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  589. P=V();P[S]=Z(4,2.40,2);P[C]=F(-5,14.40,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  590. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  591. P=V();P[S]=Z(2,2.40,2);P[C]=F(-13,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  592. P=V();P[S]=Z(2,2.40,1);P[C]=F(-11,19.20,-27.5,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  593. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  594. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  595. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  596. P=V();P[S]=Z(5,2.40,2);P[C]=F(-17.5,9.60,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  597. P=V();P[S]=Z(5,2.40,2);P[C]=F(-17.5,14.40,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  598. P=V();P[S]=Z(6,2.40,2);P[C]=F(-18,12,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  599. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  600. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  601. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  602. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  603. P=V();P[S]=Z(2,1.20,2);P[C]=F(15,25.80,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  604. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  605. P=V();P[S]=Z(6,2.40,2);P[C]=F(15,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  606. P=V();P[S]=Z(6,2.40,2);P[C]=F(9,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  607. P=V();P[S]=Z(6,2.40,2);P[C]=F(3,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  608. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  609. P=V();P[S]=Z(6,2.40,2);P[C]=F(-3,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  610. P=V();P[S]=Z(6,1.20,6);P[C]=F(17,27,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  611. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,21.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  612. P=V();P[S]=Z(2,1.20,2);P[C]=F(-23,21,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  613. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,26.39,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  614. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,26.39,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  615. P=V();P[S]=Z(2,1.20,2);P[C]=F(11,28.20,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  616. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  617. P=V();P[S]=Z(6,1.20,6);P[C]=F(13,29.39,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  618. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,26.39,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  619. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,26.39,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  620. P=V();P[S]=Z(6,2.40,2);P[C]=F(-9,24,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  621. P=V();P[S]=Z(6,2.40,2);P[C]=F(1,28.80,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  622. P=V();P[S]=Z(6,2.40,2);P[C]=F(7,28.80,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  623. P=V();P[S]=Z(4,2.40,2);P[C]=F(-12,26.39,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  624. P=V();P[S]=Z(2,1.20,2);P[C]=F(-15,25.80,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  625. P=V();P[S]=Z(6,1.20,6);P[C]=F(-21,24.60,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  626. P=V();P[S]=Z(2,1.20,2);P[C]=F(-19,23.39,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  627. P=V();P[S]=Z(2,1.20,2);P[C]=F(3,33,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  628. P=V();P[S]=Z(6,1.20,6);P[C]=F(5,34.20,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  629. P=V();P[S]=Z(12,1.20,6);P[C]=F(15,28.20,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  630. P=V();P[S]=Z(6,1.20,6);P[C]=F(9,31.80,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  631. P=V();P[S]=Z(12,1.20,6);P[C]=F(11,30.60,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  632. P=V();P[S]=Z(6,2.40,2);P[C]=F(3,31.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  633. P=V();P[S]=Z(4,2.40,2);P[C]=F(0,33.60,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  634. P=V();P[S]=Z(6,2.40,2);P[C]=F(-3,31.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  635. P=V();P[S]=Z(2,1.20,2);P[C]=F(7,30.60,-27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  636. P=V();P[S]=Z(12,1.20,6);P[C]=F(7,33,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  637. P=V();P[S]=Z(8,2.40,2);P[C]=F(-6,28.80,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  638. P=V();P[S]=Z(2,1.20,2);P[C]=F(-7,30.60,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  639. P=V();P[S]=Z(6,1.20,6);P[C]=F(-5,34.20,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  640. P=V();P[S]=Z(6,1.20,6);P[C]=F(-9,31.80,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  641. P=V();P[S]=Z(2,1.20,2);P[C]=F(-3,33,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  642. P=V();P[S]=Z(6,1.20,6);P[C]=F(-13,29.39,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  643. P=V();P[S]=Z(6,1.20,6);P[C]=F(-17,27,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  644. P=V();P[S]=Z(2,1.20,2);P[C]=F(-11,28.20,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  645. P=V();P[S]=Z(12,1.20,6);P[C]=F(13,29.39,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  646. P=V();P[S]=Z(6,1.20,8);P[C]=F(0,36.60,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  647. P=V();P[S]=Z(12,1.20,6);P[C]=F(15,28.20,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  648. P=V();P[S]=Z(12,1.20,6);P[C]=F(13,29.39,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  649. P=V();P[S]=Z(12,1.20,6);P[C]=F(15,28.20,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  650. P=V();P[S]=Z(12,1.20,6);P[C]=F(13,29.39,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  651. P=V();P[S]=Z(12,1.20,6);P[C]=F(11,30.60,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  652. P=V();P[S]=Z(12,1.20,6);P[C]=F(13,29.39,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  653. P=V();P[S]=Z(12,1.20,6);P[C]=F(11,30.60,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  654. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  655. P=V();P[S]=Z(6,2.40,2);P[C]=F(11,26.39,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  656. P=V();P[S]=Z(6,2.40,2);P[C]=F(9,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  657. P=V();P[S]=Z(4,2.40,2);P[C]=F(5,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  658. P=V();P[S]=Z(1,2.40,2);P[C]=F(8.5,13.19,27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  659. P=V();P[S]=Z(1,2.40,2);P[C]=F(7.5,13.19,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  660. P=V();P[S]=Z(2,1.20,2);P[C]=F(8,15,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  661. P=V();P[S]=Z(6,2.40,2);P[C]=F(7,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  662. P=V();P[S]=Z(2,2.40,1);P[C]=F(11,19.20,27.5,1,0,0,0,1,0,0,0,1);P[B]=N'';
  663. P=V();P[S]=Z(5,2.40,2);P[C]=F(4.5,7.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  664. P=V();P[S]=Z(1,8.40,2);P[C]=F(7.5,7.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  665. P=V();P[S]=Z(3,2.40,2);P[C]=F(5.5,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  666. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,7.20,23.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  667. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,25,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  668. P=V();P[S]=Z(12,1.20,6);P[C]=F(11,30.60,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  669. P=V();P[S]=Z(6,1.20,6);P[C]=F(13,29.39,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  670. P=V();P[S]=Z(6,1.20,6);P[C]=F(9,31.80,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  671. P=V();P[S]=Z(2,1.20,2);P[C]=F(11,28.20,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  672. P=V();P[S]=Z(64,1.20,64);P[C]=F(0,0.60,0,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  673. P=V();P[S]=Z(52,1.20,52);P[C]=F(0,4.20,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'f';
  674. P=V();P[S]=Z(56,2.40,56);P[C]=F(0,2.40,0,1,0,0,0,1,0,0,0,1);P[B]=N'';
  675. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,-23,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  676. P=V();P[S]=Z(7,2.40,2);P[C]=F(-27,7.20,-18.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  677. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,9.60,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  678. P=V();P[S]=Z(7,2.40,2);P[C]=F(-27,12,-18.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  679. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,14.40,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  680. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,-19,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  681. P=V();P[S]=Z(6,2.40,2);P[C]=F(-23,19.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  682. P=V();P[S]=Z(6,2.40,2);P[C]=F(-25,16.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  683. P=V();P[S]=Z(6,2.40,2);P[C]=F(-18,7.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  684. P=V();P[S]=Z(5,2.40,2);P[C]=F(-23.5,7.20,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  685. P=V();P[S]=Z(5,2.40,2);P[C]=F(-23.5,12,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  686. P=V();P[S]=Z(6,2.40,2);P[C]=F(-23,9.60,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  687. P=V();P[S]=Z(6,2.40,2);P[C]=F(-23,14.40,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  688. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,4.80,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  689. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,-25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  690. P=V();P[S]=Z(6,2.40,2);P[C]=F(-25,4.80,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  691. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,7.20,-25,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  692. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,12,-25,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  693. P=V();P[S]=Z(7,2.40,2);P[C]=F(-27,14.40,-24.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  694. P=V();P[S]=Z(7,2.40,2);P[C]=F(-27,9.60,-24.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  695. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,-23,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  696. P=V();P[S]=Z(12,1.20,6);P[C]=F(-27,21,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  697. P=V();P[S]=Z(6,1.20,6);P[C]=F(-25,22.20,-27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  698. P=V();P[S]=Z(12,1.20,6);P[C]=F(-25,22.20,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  699. P=V();P[S]=Z(12,1.20,6);P[C]=F(-23,23.39,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  700. P=V();P[S]=Z(12,1.20,6);P[C]=F(-11,30.60,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  701. P=V();P[S]=Z(12,1.20,6);P[C]=F(-19,25.80,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  702. P=V();P[S]=Z(12,1.20,6);P[C]=F(-15,28.20,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  703. P=V();P[S]=Z(12,1.20,6);P[C]=F(-17,27,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  704. P=V();P[S]=Z(12,1.20,6);P[C]=F(-21,24.60,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  705. P=V();P[S]=Z(12,1.20,6);P[C]=F(3,35.40,-24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  706. P=V();P[S]=Z(12,1.20,4);P[C]=F(0,37.79,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  707. P=V();P[S]=Z(12,1.20,6);P[C]=F(9,31.80,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  708. P=V();P[S]=Z(12,1.20,6);P[C]=F(5,34.20,-18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  709. P=V();P[S]=Z(12,1.20,6);P[C]=F(-3,35.40,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  710. P=V();P[S]=Z(12,1.20,6);P[C]=F(-7,33,-24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  711. P=V();P[S]=Z(12,1.20,6);P[C]=F(-9,31.80,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  712. P=V();P[S]=Z(12,1.20,6);P[C]=F(-13,29.39,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  713. P=V();P[S]=Z(12,1.20,8);P[C]=F(0,36.60,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  714. P=V();P[S]=Z(12,1.20,6);P[C]=F(9,31.80,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  715. P=V();P[S]=Z(12,1.20,6);P[C]=F(11,30.60,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  716. P=V();P[S]=Z(12,1.20,6);P[C]=F(7,33,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  717. P=V();P[S]=Z(12,1.20,6);P[C]=F(-5,34.20,-18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  718. P=V();P[S]=Z(12,1.20,6);P[C]=F(5,34.20,-6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  719. P=V();P[S]=Z(12,1.20,6);P[C]=F(9,31.80,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  720. P=V();P[S]=Z(12,1.20,6);P[C]=F(7,33,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  721. P=V();P[S]=Z(12,1.20,6);P[C]=F(5,34.20,6,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  722. P=V();P[S]=Z(12,1.20,6);P[C]=F(9,31.80,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  723. P=V();P[S]=Z(12,1.20,6);P[C]=F(3,35.40,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  724. P=V();P[S]=Z(6,2.40,2);P[C]=F(3,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  725. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  726. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  727. P=V();P[S]=Z(12,1.20,6);P[C]=F(7,33,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  728. P=V();P[S]=Z(5,2.40,2);P[C]=F(-0.5,7.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  729. P=V();P[S]=Z(5,2.40,2);P[C]=F(0.5,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  730. P=V();P[S]=Z(5,2.40,2);P[C]=F(4.5,12,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  731. P=V();P[S]=Z(8,2.40,2);P[C]=F(6,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  732. P=V();P[S]=Z(4,2.40,2);P[C]=F(5,14.40,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  733. P=V();P[S]=Z(5,2.40,2);P[C]=F(-0.5,12,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  734. P=V();P[S]=Z(5,2.40,2);P[C]=F(0.5,14.40,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  735. P=V();P[S]=Z(6,2.40,2);P[C]=F(1,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  736. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  737. P=V();P[S]=Z(6,2.40,2);P[C]=F(1,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  738. P=V();P[S]=Z(6,2.40,2);P[C]=F(27,7.20,25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  739. P=V();P[S]=Z(12,1.20,6);P[C]=F(27,21,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  740. P=V();P[S]=Z(6,2.40,2);P[C]=F(7,28.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  741. P=V();P[S]=Z(6,2.40,2);P[C]=F(5,26.39,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  742. P=V();P[S]=Z(6,1.20,6);P[C]=F(5,34.20,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  743. P=V();P[S]=Z(12,1.20,6);P[C]=F(5,34.20,18,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  744. P=V();P[S]=Z(6,2.40,2);P[C]=F(1,28.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  745. P=V();P[S]=Z(2,1.20,2);P[C]=F(3,33,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  746. P=V();P[S]=Z(12,1.20,6);P[C]=F(7,33,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  747. P=V();P[S]=Z(2,1.20,2);P[C]=F(7,30.60,27,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  748. P=V();P[S]=Z(6,2.40,2);P[C]=F(3,31.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  749. P=V();P[S]=Z(12,1.20,6);P[C]=F(3,35.40,24,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  750. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,-11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  751. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,-11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  752. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,-17,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  753. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,-13,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  754. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,-7,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  755. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,-17,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  756. P=V();P[S]=Z(12,1.20,6);P[C]=F(-27,21,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  757. P=V();P[S]=Z(12,1.20,6);P[C]=F(-19,25.80,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  758. P=V();P[S]=Z(12,1.20,6);P[C]=F(-21,24.60,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  759. P=V();P[S]=Z(12,1.20,6);P[C]=F(-23,23.39,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  760. P=V();P[S]=Z(12,1.20,6);P[C]=F(-15,28.20,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  761. P=V();P[S]=Z(12,1.20,6);P[C]=F(-17,27,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  762. P=V();P[S]=Z(12,1.20,6);P[C]=F(3,35.40,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  763. P=V();P[S]=Z(12,1.20,4);P[C]=F(0,37.79,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  764. P=V();P[S]=Z(12,1.20,6);P[C]=F(-3,35.40,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  765. P=V();P[S]=Z(12,1.20,6);P[C]=F(-11,30.60,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  766. P=V();P[S]=Z(12,1.20,6);P[C]=F(-7,33,-12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  767. P=V();P[S]=Z(12,1.20,6);P[C]=F(-9,31.80,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  768. P=V();P[S]=Z(12,1.20,6);P[C]=F(-13,29.39,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  769. P=V();P[S]=Z(12,1.20,6);P[C]=F(3,35.40,0,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  770. P=V();P[S]=Z(12,1.20,8);P[C]=F(0,36.60,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  771. P=V();P[S]=Z(12,1.20,6);P[C]=F(-3,35.40,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  772. P=V();P[S]=Z(12,1.20,6);P[C]=F(-5,34.20,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  773. P=V();P[S]=Z(6,2.40,2);P[C]=F(-3,31.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  774. P=V();P[S]=Z(6,1.20,8);P[C]=F(0,36.60,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  775. P=V();P[S]=Z(12,1.20,8);P[C]=F(0,36.60,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  776. P=V();P[S]=Z(12,1.20,8);P[C]=F(0,36.60,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  777. P=V();P[S]=Z(2,1.20,2);P[C]=F(-3,33,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  778. P=V();P[S]=Z(6,1.20,6);P[C]=F(-5,34.20,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  779. P=V();P[S]=Z(12,1.20,4);P[C]=F(0,37.79,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  780. P=V();P[S]=Z(12,1.20,4);P[C]=F(0,37.79,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  781. P=V();P[S]=Z(12,1.20,6);P[C]=F(-5,34.20,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  782. P=V();P[S]=Z(12,1.20,6);P[C]=F(-3,35.40,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  783. P=V();P[S]=Z(12,1.20,4);P[C]=F(0,37.79,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  784. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,26.39,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  785. P=V();P[S]=Z(6,2.40,2);P[C]=F(-9,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  786. P=V();P[S]=Z(6,2.40,2);P[C]=F(-3,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  787. P=V();P[S]=Z(6,2.40,2);P[C]=F(-1,26.39,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  788. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  789. P=V();P[S]=Z(8,2.40,2);P[C]=F(-6,28.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  790. P=V();P[S]=Z(12,1.20,6);P[C]=F(-3,35.40,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  791. P=V();P[S]=Z(2,1.20,2);P[C]=F(-7,30.60,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  792. P=V();P[S]=Z(12,1.20,6);P[C]=F(-7,33,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  793. P=V();P[S]=Z(12,1.20,6);P[C]=F(-5,34.20,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  794. P=V();P[S]=Z(4,2.40,2);P[C]=F(0,33.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  795. P=V();P[S]=Z(4,2.40,2);P[C]=F(-5,7.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  796. P=V();P[S]=Z(6,2.40,2);P[C]=F(-5,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  797. P=V();P[S]=Z(5,2.40,2);P[C]=F(-4.5,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  798. P=V();P[S]=Z(4,2.40,2);P[C]=F(-5,12,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  799. P=V();P[S]=Z(6,2.40,2);P[C]=F(-11,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  800. P=V();P[S]=Z(6,2.40,2);P[C]=F(-7,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  801. P=V();P[S]=Z(6,2.40,2);P[C]=F(-11,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  802. P=V();P[S]=Z(5,2.40,2);P[C]=F(-4.5,14.40,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  803. P=V();P[S]=Z(6,2.40,2);P[C]=F(-5,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  804. P=V();P[S]=Z(12,1.20,6);P[C]=F(27,21,-12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  805. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,25,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  806. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,38.40,21,1,0,0,0,1,0,0,0,1);P[B]=N'';
  807. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,9.60,0.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  808. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,1,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  809. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,7.20,4.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  810. P=V();P[S]=Z(4,2.40,2);P[C]=F(-27,9.60,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  811. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,12,4.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  812. P=V();P[S]=Z(4,2.40,2);P[C]=F(-27,14.40,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  813. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  814. P=V();P[S]=Z(4,2.40,2);P[C]=F(-27,7.20,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  815. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,9.60,-4.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  816. P=V();P[S]=Z(4,2.40,2);P[C]=F(-27,12,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  817. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,14.40,-4.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  818. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  819. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,-5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  820. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,7.20,-0.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  821. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,12,-0.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  822. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,14.40,0.5,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  823. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,1,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  824. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,-1,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  825. P=V();P[S]=Z(12,1.20,6);P[C]=F(-25,22.20,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  826. P=V();P[S]=Z(12,1.20,6);P[C]=F(-27,21,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  827. P=V();P[S]=Z(12,1.20,6);P[C]=F(-25,22.20,-6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  828. P=V();P[S]=Z(12,1.20,6);P[C]=F(-23,23.39,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  829. P=V();P[S]=Z(12,1.20,6);P[C]=F(-19,25.80,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  830. P=V();P[S]=Z(12,1.20,6);P[C]=F(-19,25.80,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  831. P=V();P[S]=Z(12,1.20,6);P[C]=F(-21,24.60,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  832. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  833. P=V();P[S]=Z(12,1.20,6);P[C]=F(-11,30.60,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  834. P=V();P[S]=Z(12,1.20,6);P[C]=F(-17,27,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  835. P=V();P[S]=Z(12,1.20,6);P[C]=F(-15,28.20,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  836. P=V();P[S]=Z(2,1.20,2);P[C]=F(-19,23.39,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  837. P=V();P[S]=Z(12,1.20,6);P[C]=F(-17,27,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  838. P=V();P[S]=Z(12,1.20,6);P[C]=F(-19,25.80,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  839. P=V();P[S]=Z(12,1.20,6);P[C]=F(-15,28.20,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  840. P=V();P[S]=Z(12,1.20,6);P[C]=F(-13,29.39,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  841. P=V();P[S]=Z(6,1.20,6);P[C]=F(-17,27,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  842. P=V();P[S]=Z(12,1.20,6);P[C]=F(-15,28.20,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  843. P=V();P[S]=Z(12,1.20,6);P[C]=F(-7,33,0,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  844. P=V();P[S]=Z(12,1.20,6);P[C]=F(-13,29.39,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  845. P=V();P[S]=Z(4,2.40,2);P[C]=F(-12,26.39,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  846. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,21.60,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  847. P=V();P[S]=Z(12,1.20,6);P[C]=F(-9,31.80,6,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  848. P=V();P[S]=Z(12,1.20,6);P[C]=F(-7,33,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  849. P=V();P[S]=Z(12,1.20,6);P[C]=F(-9,31.80,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  850. P=V();P[S]=Z(12,1.20,6);P[C]=F(-11,30.60,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  851. P=V();P[S]=Z(12,1.20,6);P[C]=F(-11,30.60,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  852. P=V();P[S]=Z(6,1.20,6);P[C]=F(-9,31.80,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  853. P=V();P[S]=Z(2,1.20,2);P[C]=F(-15,25.80,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  854. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  855. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  856. P=V();P[S]=Z(4,2.40,2);P[C]=F(-14,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  857. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  858. P=V();P[S]=Z(7,2.40,2);P[C]=F(-18.5,7.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  859. P=V();P[S]=Z(6,2.40,2);P[C]=F(-25,7.20,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  860. P=V();P[S]=Z(6,2.40,2);P[C]=F(-18,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  861. P=V();P[S]=Z(7,2.40,2);P[C]=F(-24.5,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  862. P=V();P[S]=Z(7,2.40,2);P[C]=F(-18.5,12,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  863. P=V();P[S]=Z(6,2.40,2);P[C]=F(-18,14.40,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  864. P=V();P[S]=Z(2,2.40,1);P[C]=F(-11,19.20,27.5,1,0,0,0,1,0,0,0,1);P[B]=N'';
  865. P=V();P[S]=Z(6,2.40,2);P[C]=F(-23,4.80,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  866. P=V();P[S]=Z(12,1.20,6);P[C]=F(27,21,12,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  867. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,24,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  868. P=V();P[S]=Z(6,1.20,6);P[C]=F(-13,29.39,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  869. P=V();P[S]=Z(2,1.20,2);P[C]=F(-11,28.20,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  870. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,14.40,23,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  871. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,7,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  872. P=V();P[S]=Z(12,1.20,6);P[C]=F(-27,21,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  873. P=V();P[S]=Z(12,1.20,6);P[C]=F(-23,23.39,12,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  874. P=V();P[S]=Z(2,1.20,2);P[C]=F(-23,21,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  875. P=V();P[S]=Z(12,1.20,6);P[C]=F(-25,22.20,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  876. P=V();P[S]=Z(12,1.20,6);P[C]=F(-27,21,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  877. P=V();P[S]=Z(12,1.20,6);P[C]=F(-23,23.39,24,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  878. P=V();P[S]=Z(12,1.20,6);P[C]=F(-21,24.60,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  879. P=V();P[S]=Z(6,1.20,6);P[C]=F(-25,22.20,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  880. P=V();P[S]=Z(6,1.20,6);P[C]=F(-21,24.60,27,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  881. P=V();P[S]=Z(6,2.40,2);P[C]=F(-25,19.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  882. P=V();P[S]=Z(6,2.40,2);P[C]=F(-23,16.80,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  883. P=V();P[S]=Z(6,2.40,2);P[C]=F(-25,12,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  884. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,13,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  885. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,7,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  886. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  887. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,13,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  888. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,19.20,17,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  889. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,14.40,17.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  890. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,16.80,19,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  891. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,4.80,19,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  892. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,12,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  893. P=V();P[S]=Z(5,2.40,2);P[C]=F(-27,9.60,17.5,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  894. P=V();P[S]=Z(6,2.40,2);P[C]=F(-27,7.20,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  895. P=V();P[S]=Z(2,1.20,2);P[C]=F(-27,15,8,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  896. P=V();P[S]=Z(8,1.20,3);P[C]=F(27.5,6.59,11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'&';
  897. P=V();P[S]=Z(1,4.80,2);P[C]=F(27,9.60,7.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  898. P=V();P[S]=Z(2,1.20,2);P[C]=F(27,15,8,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  899. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,7.5,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  900. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,8.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  901. P=V();P[S]=Z(1,4.80,2);P[C]=F(27,9.60,14.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  902. P=V();P[S]=Z(4,1.20,2);P[C]=F(27,15,11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'&';
  903. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,13.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  904. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,14.5,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  905. P=V();P[S]=Z(2,1.20,2);P[C]=F(27,15,14,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  906. P=V();P[S]=Z(8,1.20,3);P[C]=F(27.5,6.59,-11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'&';
  907. P=V();P[S]=Z(1,4.80,2);P[C]=F(27,9.60,-14.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  908. P=V();P[S]=Z(2,1.20,2);P[C]=F(27,15,-14,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  909. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,-14.5,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  910. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,-13.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  911. P=V();P[S]=Z(1,4.80,2);P[C]=F(27,9.60,-7.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  912. P=V();P[S]=Z(4,1.20,2);P[C]=F(27,15,-11,0,0,-1,0,1,-0,1,0,-0);P[B]=N'&';
  913. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,-8.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  914. P=V();P[S]=Z(1,2.40,2);P[C]=F(27,13.20,-7.5,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  915. P=V();P[S]=Z(2,1.20,2);P[C]=F(27,15,-8,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  916. P=V();P[S]=Z(8,1.20,3);P[C]=F(11,6.59,-27.5,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  917. P=V();P[S]=Z(1,4.80,2);P[C]=F(7.5,9.60,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  918. P=V();P[S]=Z(2,1.20,2);P[C]=F(8,15,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  919. P=V();P[S]=Z(1,2.40,2);P[C]=F(7.5,13.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  920. P=V();P[S]=Z(1,2.40,2);P[C]=F(8.5,13.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  921. P=V();P[S]=Z(1,4.80,2);P[C]=F(14.5,9.60,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  922. P=V();P[S]=Z(4,1.20,2);P[C]=F(11,15,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  923. P=V();P[S]=Z(1,2.40,2);P[C]=F(13.5,13.20,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  924. P=V();P[S]=Z(1,2.40,2);P[C]=F(14.5,13.20,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  925. P=V();P[S]=Z(2,1.20,2);P[C]=F(14,15,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  926. P=V();P[S]=Z(8,1.20,3);P[C]=F(-11,6.59,-27.5,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  927. P=V();P[S]=Z(1,4.80,2);P[C]=F(-14.5,9.60,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  928. P=V();P[S]=Z(2,1.20,2);P[C]=F(-14,15,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  929. P=V();P[S]=Z(1,2.40,2);P[C]=F(-14.5,13.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  930. P=V();P[S]=Z(1,2.40,2);P[C]=F(-13.5,13.20,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  931. P=V();P[S]=Z(1,4.80,2);P[C]=F(-7.5,9.60,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  932. P=V();P[S]=Z(4,1.20,2);P[C]=F(-11,15,-27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  933. P=V();P[S]=Z(1,2.40,2);P[C]=F(-8.5,13.20,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  934. P=V();P[S]=Z(1,2.40,2);P[C]=F(-7.5,13.20,-27,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  935. P=V();P[S]=Z(2,1.20,2);P[C]=F(-8,15,-27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  936. P=V();P[S]=Z(8,1.20,3);P[C]=F(-27.5,6.59,-11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'&';
  937. P=V();P[S]=Z(1,4.80,2);P[C]=F(-27,9.60,-7.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  938. P=V();P[S]=Z(2,1.20,2);P[C]=F(-27,15,-8,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  939. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,-7.5,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  940. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,-8.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  941. P=V();P[S]=Z(1,4.80,2);P[C]=F(-27,9.60,-14.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  942. P=V();P[S]=Z(4,1.20,2);P[C]=F(-27,15,-11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'&';
  943. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,-13.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  944. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,-14.5,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  945. P=V();P[S]=Z(2,1.20,2);P[C]=F(-27,15,-14,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  946. P=V();P[S]=Z(8,1.20,3);P[C]=F(-11,6.59,27.5,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'&';
  947. P=V();P[S]=Z(1,4.80,2);P[C]=F(-7.5,9.60,27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  948. P=V();P[S]=Z(2,1.20,2);P[C]=F(-8,15,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  949. P=V();P[S]=Z(1,2.40,2);P[C]=F(-7.5,13.20,27,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  950. P=V();P[S]=Z(1,2.40,2);P[C]=F(-8.5,13.20,27,-1,0,0,0,1,0,0,0,-1);P[B]=N'&';
  951. P=V();P[S]=Z(1,4.80,2);P[C]=F(-14.5,9.60,27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  952. P=V();P[S]=Z(4,1.20,2);P[C]=F(-11,15,27,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'&';
  953. P=V();P[S]=Z(1,2.40,2);P[C]=F(-13.5,13.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'&';
  954. P=V();P[S]=Z(1,2.40,2);P[C]=F(-14.5,13.20,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  955. P=V();P[S]=Z(2,1.20,2);P[C]=F(-14,15,27,1,0,0,0,1,0,0,0,1);P[B]=N'';
  956. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,31.20,21,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  957. P=V();P[S]=Z(2,1.20,2);P[C]=F(-17,29.39,21,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  958. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,28.80,19,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  959. P=V();P[S]=Z(2,1.20,2);P[C]=F(-17,29.39,15,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  960. P=V();P[S]=Z(2,2.40,2);P[C]=F(-19,28.80,15,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  961. P=V();P[S]=Z(6,1.20,2);P[C]=F(-13,45.00,17,0,0,-1,0,1,0,1,0,0);P[B]=N'?';
  962. P=V();P[S]=Z(8,1.20,2);P[C]=F(-13,31.80,18,0,0,-1,0,1,-0,1,0,-0);P[B]=N'';
  963. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,36.00,17,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  964. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,40.80,17,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  965. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,38.40,19,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  966. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,43.20,19,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  967. P=V();P[S]=Z(6,2.40,2);P[C]=F(-13,33.60,19,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  968. P=V();P[S]=Z(4,2.40,2);P[C]=F(-19,31.20,18,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  969. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,31.20,15,-1,0,-0,-0,1,-0,-0,0,-1);P[B]=N'';
  970. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,33.60,21,1,0,0,0,1,0,0,0,1);P[B]=N'';
  971. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,33.60,17,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  972. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,33.60,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  973. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,36.00,21,1,0,0,0,1,0,0,0,1);P[B]=N'';
  974. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,36.00,19,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  975. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,36.00,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  976. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,38.40,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  977. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,43.20,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  978. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,7.5,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  979. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,8.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  980. P=V();P[S]=Z(4,1.20,2);P[C]=F(-27,15,11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'&';
  981. P=V();P[S]=Z(1,4.80,2);P[C]=F(-27,9.60,7.5,0,0,-1,0,1,0,1,0,0);P[B]=N'&';
  982. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,13.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  983. P=V();P[S]=Z(1,2.40,2);P[C]=F(-27,13.20,14.5,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  984. P=V();P[S]=Z(2,1.20,2);P[C]=F(-27,15,14,-0,0,1,-0,1,0,-1,0,0);P[B]=N'';
  985. P=V();P[S]=Z(1,4.80,2);P[C]=F(-27,9.60,14.5,0,0,1,0,1,0,-1,0,0);P[B]=N'&';
  986. P=V();P[S]=Z(8,1.20,3);P[C]=F(-27.5,6.59,11,-0,0,1,-0,1,0,-1,0,0);P[B]=N'&';
  987. P=V();P[S]=Z(6,1.20,2);P[C]=F(-19,45.00,19,0,0,-1,0,1,0,1,0,0);P[B]=N'?';
  988. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,43.20,17,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  989. P=V();P[S]=Z(6,1.20,2);P[C]=F(-17,45.00,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'?';
  990. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,43.20,21,1,0,0,0,1,0,0,0,1);P[B]=N'';
  991. P=V();P[S]=Z(6,1.20,2);P[C]=F(-15,45.00,21,1,0,0,0,1,0,0,0,1);P[B]=N'?';
  992. P=V();P[S]=Z(6,2.40,2);P[C]=F(-17,40.80,15,-1,0,0,0,1,0,0,0,-1);P[B]=N'';
  993. P=V();P[S]=Z(6,2.40,2);P[C]=F(-15,40.80,21,1,0,0,0,1,0,0,0,1);P[B]=N'';
  994. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,40.80,19,0,0,-1,0,1,0,1,0,0);P[B]=N'';
  995. P=V();P[S]=Z(6,2.40,2);P[C]=F(-19,38.40,17,0,0,1,0,1,0,-1,0,0);P[B]=N'';
  996. for i,Main in next,Model:children()do
  997. if(Main.className=='Part'and Main.BrickColor.Number==28)then
  998. for i,v in next,Model:children()do
  999. if(v.className=='Part')then
  1000. local Weld=Instance.new('Weld',Model);
  1001. local HitPos=Main.Position;
  1002. local CJ=CFrame.new(HitPos);
  1003. local C0=Main.CFrame:inverse()*CJ;
  1004. local C1=v.CFrame:inverse()*CJ;
  1005. Weld.C0=C0;
  1006. Weld.C1=C1;
  1007. Weld.Part0=Main;
  1008. Weld.Part1=v;
  1009. v.Anchored=false;
  1010. end;
  1011. end;
  1012. Main.Anchored=false;
  1013. break;
  1014. end;
  1015. end;
  1016. end;
  1017. end);
  1018. return Bin;
  1019. ]===];
  1020. CreateTool[===[
  1021. local Char=Game:service'Players'.LocalPlayer.Character;
  1022. local Bin=Instance.new'HopperBin';
  1023. Bin.Name='Satellite-Fire';
  1024. local Satellite=Char:FindFirstChild'Satellite'or Instance.new('Part',Char);
  1025. for i,v in next,Satellite:children()do v.Parent=nil;end;--ClearAllChildren is not trusted :3
  1026. Satellite.formFactor=1;
  1027. Satellite.Name='Satellite';
  1028. Satellite.Size=Vector3.new(5,16.8,5);
  1029. Satellite.Position=Char.Torso.Position+Vector3.new(10,25,10);
  1030. Satellite:BreakJoints();
  1031. local Seat=Instance.new('Seat',Satellite);
  1032. Seat.Name='Seat';
  1033. Seat.formFactor=0;
  1034. Seat.TopSurface=0;
  1035. Seat.Transparency=1;
  1036. Seat.BottomSurface=0;
  1037. Seat.Size=Vector3.new(2,2,4);
  1038. Seat.CFrame=Satellite.CFrame;
  1039. Seat.BrickColor=BrickColor.new();
  1040. Seat:BreakJoints();
  1041. local Weld=Instance.new('Weld',Satellite);
  1042. Weld.Part0=Satellite;
  1043. Weld.Part1=Seat;
  1044. Weld.Name='SeatWeld';
  1045. Weld.C0=CFrame.Angles(math.rad(90),0,0);
  1046. Weld.C1=CFrame.new(0,0,-(Satellite.Size.Y/2+1));
  1047. local Mesh=Instance.new('SpecialMesh',Satellite);
  1048. Mesh.TextureId='http://www.roblox.com/Asset/?id=1064329';
  1049. Mesh.MeshId='http://www.roblox.com/Asset/?id=1064328'
  1050. Mesh.Scale=Vector3.new(.25,.25,.25);
  1051. local Sound=Instance.new('Sound',Satellite);
  1052. Sound.SoundId='http://www.roblox.com/asset/?id=1616554';
  1053. Sound.Name='Shot';
  1054. Sound.Volume=1;
  1055. local Sparkles=Instance.new('Sparkles',Satellite);
  1056. Sparkles.SparkleColor=Color3.new(1,1,1);
  1057. local BodyGyro=Instance.new('BodyGyro',Satellite);
  1058. BodyGyro.maxTorque=Vector3.new(0,4e5,4e5);
  1059. BodyGyro.P=3000;
  1060. BodyGyro.D=500;
  1061. local BodyPosition=Instance.new('BodyPosition',Satellite);
  1062. BodyPosition.position=Char.Torso.Position+Vector3.new(10,25,10);
  1063. BodyPosition.maxForce=Vector3.new(4e6,4e6,4e6);
  1064. BodyPosition.D=1250;
  1065. BodyPosition.P=1e4;
  1066. ]===];
  1067. CreateTool[===[
  1068. local Char=Game:service'Players'.LocalPlayer.Character;
  1069. local Bin=Instance.new'HopperBin'
  1070. Bin.Name='Satellite-Move';
  1071. local Satellite;
  1072.  
  1073. coroutine.wrap(function()
  1074. while(Char.Parent~=0 and Char:FindFirstChild'Satellite'==nil)do
  1075. Wait();
  1076. end;
  1077. Satellite=Char.Satellite;
  1078. end)();
  1079.  
  1080. Bin.Selected:connect(function(Mouse)
  1081. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  1082. Mouse.Button1Down:connect(function()Wait();
  1083. target=Mouse.Hit.p
  1084. home=Char.Torso.Position
  1085. dir=(target - home).unit
  1086. pos=home + dir * math.random(0,200)
  1087. Satellite.CFrame = CFrame.new(pos);
  1088. Satellite.BodyPosition.position = pos
  1089. end);
  1090. end);
  1091. return Bin;
  1092. ]===];
  1093. CreateTool[===[
  1094. local User=Game:service'Players'.LocalPlayer;
  1095. local Run=Game:service'RunService';
  1096. local Debris=Game:service'Debris';
  1097. local Char=User.Character;
  1098. coroutine.wrap(function()
  1099. while(Char.Parent~=0 and Char:FindFirstChild'Satellite'==nil)do
  1100. Wait();
  1101. end;
  1102. Satellite=Char.Satellite;
  1103. end)();
  1104. local Seat=Satellite.Seat;
  1105. local SeatWeld=Satellite.SeatWeld;
  1106. local CreateSound=function(Pitch,Volume,Id,Looped,Parent,Name)
  1107. local Sound=Instance.new('Sound',Parent);
  1108. Sound.SoundId='http://www.roblox.com/Asset?ID='..Id;
  1109. Sound.Name=Name or'Sound';
  1110. Sound.Volume=Volume;
  1111. Sound.Looped=Looped;
  1112. Sound.Pitch=Pitch;
  1113. return Sound;
  1114. end;
  1115. local Lazer1=Instance.new'Part';
  1116. Lazer1.formFactor=0;
  1117. Lazer1.TopSurface=0;
  1118. Lazer1.Anchored=true;
  1119. Lazer1.BottomSurface=0;
  1120. Lazer1.Transparency=.5;
  1121. Lazer1.Size=Vector3.new();
  1122. Lazer1.BrickColor=BrickColor.Red();
  1123. local Lazer1Mesh=Instance.new('CylinderMesh',Lazer1);
  1124. local Lazer2=Instance.new'Part';
  1125. Lazer2.formFactor=0;
  1126. Lazer2.TopSurface=0;
  1127. Lazer2.Anchored=true;
  1128. Lazer2.BottomSurface=0;
  1129. Lazer2.Transparency=.5;
  1130. Lazer2.Size=Vector3.new();
  1131. Lazer2.BrickColor=BrickColor.Black();
  1132. local Lazer2Mesh=Instance.new('CylinderMesh',Lazer2);
  1133.  
  1134. local ExplosionSoundPart=Instance.new'Part';
  1135. ExplosionSoundPart.formFactor=0;
  1136. ExplosionSoundPart.Anchored=true;
  1137. ExplosionSoundPart.Transparency=1;
  1138. ExplosionSoundPart.CanCollide=false;
  1139. ExplosionSoundPart.Size=Vector3.new();
  1140.  
  1141. local PoweringUpSound=CreateSound(1,.3,87767831,true,Satellite,'PoweringUpSound');
  1142. local ExplosionSound=CreateSound(1,1,87784452,false,Satellite,'ExplosionSound');
  1143. local PostShotSound=CreateSound(1,.5,87767777,false,Satellite,'PostShotSound');
  1144. local LaunchSound=CreateSound(1,.5,87767539,false,Satellite,'LaunchSound');
  1145. local PewSound=CreateSound(.6,1,13775494,false,Satellite,'PewSound');
  1146. local Cast=CreateSound(1,1,2101137,false,Satellite,'Cast');
  1147. local PewExplosion=CreateSound(2,1,0,false,nil,'PewExplosion');
  1148. PewExplosion.SoundId='rbxasset://sounds\\Rocket shot.wav';
  1149. local Speed=20;
  1150. local exp={};
  1151. local StartAt=13;
  1152. for i=StartAt,100,2 do
  1153. exp[i]=Instance.new'Explosion';
  1154. end;
  1155. fire=function(sattarget)
  1156. Shooting=true;
  1157. Satellite.BodyGyro.cframe=CFrame.new(Satellite.Position,sattarget)*CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2);
  1158. Satellite.Shot:play();
  1159. Wait(2);
  1160. dir=(sattarget-Satellite.Position).unit;
  1161. maxSize=25
  1162. minSize=5
  1163. model=Instance.new('Model',Workspace);
  1164. for i=StartAt,100,2 do
  1165. exp[i].Position = i * dir * 2 + Satellite.Position
  1166. exp[i].BlastRadius = i / 100 * (maxSize - minSize) + minSize
  1167. exp[i].Parent=model
  1168. end
  1169. Shooting=nil;
  1170. end
  1171. local RayCasting=function(Start,Target,Ignore)
  1172. local MAGNITUDE=(Start-Target).Magnitude;
  1173. MAGNITUDE=MAGNITUDE<1000 and MAGNITUDE or 999;
  1174. return Workspace:FindPartOnRay(Ray.new(Start,((Target-Start).Unit).Unit*MAGNITUDE),Ignore);
  1175. end;
  1176. local Bin=Instance.new'HopperBin';
  1177. Bin.Name='Satellite-Controller';
  1178. Bin.Selected:connect(function(Mouse)
  1179. Flying=false;
  1180. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  1181. Mouse.Button1Down:connect(function()
  1182. for i,v in next,User.Character:children()do
  1183. if(v.className=='Humanoid')then
  1184. if(v.Health==0)then
  1185. return nil;
  1186. end;
  1187. end;
  1188. end;
  1189. if(Flying==false)then
  1190. Flying=true;
  1191. if(Seat.Parent~=Satellite)then
  1192. Seat.Parent=Satellite;
  1193. Seat:BreakJoints();
  1194. end;
  1195. SeatWeld.Parent=Satellite;
  1196. SeatWeld.Part0=Satellite;
  1197. SeatWeld.Part1=Seat;
  1198. User.Character.Torso.CFrame=Seat.CFrame;
  1199. while(Flying)do
  1200. if(Shooting==nil)then
  1201. target=Mouse.Hit.p;
  1202. Satellite.BodyGyro.cframe=CFrame.new(Satellite.Position,target)*CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2);
  1203. home=Satellite.Position;
  1204. dir=(target-home).Unit;
  1205. pos=home+dir*Speed;
  1206. Satellite.BodyPosition.position=pos;
  1207. end;
  1208. Wait();
  1209. end;
  1210. end;
  1211. end);
  1212. Mouse.Button1Up:connect(function()
  1213. Flying=false;
  1214. end);
  1215. coroutine.wrap(function()
  1216. while(User.Parent)do
  1217. local Key=Mouse.KeyDown:wait();
  1218. if(Key=='f')then
  1219. if(Shooting==nil)then
  1220. fire(Mouse.Hit.p);
  1221. end;
  1222. elseif(Key=='q')then
  1223. Speed=Speed-1;
  1224. Speed=Speed<0 and 0 or Speed;
  1225. elseif(Key=='e')then
  1226. Speed=Speed+1;
  1227. Speed=Speed>20 and 20 or Speed;
  1228. elseif(Key=='t')then
  1229. SpeedShot=true;
  1230. Cast:play();
  1231. target=Mouse.Hit.p;
  1232. Satellite.BodyGyro.cframe=CFrame.new(Satellite.Position,target)*CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2);
  1233. Wait(1);
  1234. while(SpeedShot)do
  1235. local Part;
  1236. local Pos=Mouse.Hit.p;
  1237. local satPos=Satellite.Position;
  1238. local dir=(Pos-satPos).Unit;
  1239. Satellite.BodyGyro.cframe=CFrame.new(satPos,Pos)*CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2);
  1240. local Rotate=Satellite.BodyGyro.cframe-Satellite.BodyGyro.cframe.p;
  1241. if(_Recycle==nil)then
  1242. _Recycle=Instance.new'Model';
  1243. end;
  1244. if(_FreeParts==nil)then
  1245. _FreeParts={};
  1246. end;
  1247. if(_FreeParts[#_FreeParts]~=nil)then
  1248. Part=_FreeParts[#_FreeParts];
  1249. _FreeParts[#_FreeParts]=nil;
  1250. else
  1251. Part=Instance.new'Part';
  1252. end;
  1253. Part.formFactor=3;
  1254. Part.Anchored=true;
  1255. Part.Transparency=.5;
  1256. Part.CFrame=Satellite.CFrame;
  1257. Part.Size=Vector3.new(.5,10,.5);
  1258. Part.BrickColor=BrickColor.Blue();
  1259. Part.Parent=Char;
  1260. Part:BreakJoints();
  1261. pcall(coroutine.wrap(function()
  1262. Debris:AddItem(Part,10);
  1263. local i=0;
  1264. local NewPos;
  1265. local Hit,Pos;
  1266. while(Part.Parent~=nil)do
  1267. i=i+1;
  1268. NewPos=Rotate+i*dir*20+satPos;
  1269. Hit,Pos=RayCasting(Part.Position,NewPos.p,Char);
  1270. if(Hit~=nil)then
  1271. Part.CFrame=CFrame.new(Pos);
  1272. PewExplosion.Parent=Part;
  1273. PewExplosion:play();
  1274. local Explosion=Instance.new'Explosion';
  1275. Explosion.BlastPressure=1000000;
  1276. Explosion.Position=Pos;
  1277. Explosion.Parent=Workspace;
  1278. break;
  1279. end;
  1280. Part.CFrame=NewPos;
  1281. Run.Stepped:wait();
  1282. end;
  1283. Part.Parent=_Recycle;
  1284. _FreeParts[#_FreeParts]=Part;
  1285. end));
  1286. PewSound:play();
  1287. Wait(.1);
  1288. end;
  1289. elseif(Key=='r')then
  1290. PoweringUpSound:play();
  1291. Aim=true;
  1292. Lazer1.Parent=Satellite;
  1293. while(Aim)do
  1294. for a=0,1 do
  1295. if(Aim~=true)then
  1296. break;
  1297. end;
  1298. for b=0,1,.05 do
  1299. if(Aim~=true)then
  1300. break;
  1301. end;
  1302. target=Mouse.Hit.p;
  1303. from=Satellite.Position;
  1304. Satellite.BodyGyro.cframe=CFrame.new(Satellite.Position,target)*CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2);
  1305. Hit,target=RayCasting(from,target,Char);
  1306. Lazer1.CFrame=CFrame.new(from,target)*CFrame.new(0,0,-(from-target).Magnitude/2)*CFrame.Angles(math.rad(90),0,0);
  1307. Lazer1Mesh.Scale=Vector3.new(a==0 and .5+b or 1.5-b,(from-target).Magnitude,a==0 and .5+b or 1.5-b);
  1308. Lazer1.Transparency=a==0 and b or 1-b;
  1309. Wait();
  1310. end;
  1311. end;
  1312. end;
  1313. Lazer1.Parent=nil;
  1314. Wait(.2);
  1315. PoweringUpSound:pause();
  1316. Shooting=true;
  1317. PostShotSound:play();
  1318. Wait(1.2);
  1319. LaunchSound:play();
  1320. Wait(.3);
  1321. exp[15].Parent=Workspace;
  1322. exp[15].Position=target;
  1323. exp[15].BlastRadius=50;
  1324.  
  1325. ExplosionSound.Parent=ExplosionSoundPart;
  1326. ExplosionSoundPart.Position=exp[15].Position;
  1327. ExplosionSoundPart.Parent=exp[15];
  1328. ExplosionSound:play();
  1329.  
  1330. Hit,target=RayCasting(from,target,Char);
  1331.  
  1332. home=Satellite.Position;
  1333. dir=(target-home).Unit;
  1334. pos=home-dir*20;
  1335. Satellite.BodyPosition.position=pos;
  1336.  
  1337. Lazer2.Parent=Satellite;
  1338. Lazer2.Transparency=0;
  1339. for i=0,1,.2 do
  1340. from=Satellite.Position;
  1341. Lazer2.CFrame=CFrame.new(from,target)*CFrame.new(0,0,-(from-target).Magnitude/2)*CFrame.Angles(math.rad(90),0,0);
  1342. Lazer2.Transparency=i;i=i*2;
  1343. Lazer2Mesh.Scale=Vector3.new(2+i,(from-target).Magnitude,2+i);
  1344. Wait(.1);
  1345. end;
  1346. Lazer2.Parent=nil;
  1347. Shooting=nil;
  1348. end;
  1349. end;
  1350. end)();
  1351. coroutine.wrap(function()
  1352. while(Mouse)do
  1353. local Key=Mouse.KeyUp:wait();
  1354. if(Key=='r')then
  1355. Aim=false;
  1356. elseif(Key=='t')then
  1357. SpeedShot=false;
  1358. end;
  1359. end;
  1360. end)();
  1361. Bin.Deselected:wait();
  1362. PoweringUpSound:pause();
  1363. SpeedShot=false;
  1364. Flying=false;
  1365. Aim=false;
  1366. end);
  1367. return Bin;
  1368. ]===];
  1369. CreateTool[===[
  1370. local User=Game:service'Players'.LocalPlayer;
  1371. local Bin=Instance.new'HopperBin';
  1372. Bin.Name='No Tools';
  1373. Bin.Selected:connect(function(Mouse)
  1374. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  1375. while(Mouse)do
  1376. Mouse.Button1Down:wait();
  1377. for i,v in next,User:children()do
  1378. if(v.className=='Backpack')then
  1379. local Backpack=v;
  1380. for i,v in next,Backpack:children()do
  1381. if(v~=Bin and v.Name~='The One Tool')then
  1382. v.Parent=nil;
  1383. else
  1384. Delay(v==Bin and .2 or 0,function()
  1385. v.Parent=nil;
  1386. v.Parent=Backpack;
  1387. end);
  1388. end;
  1389. end;
  1390. end;
  1391. end;
  1392. end;
  1393. end);
  1394. return Bin;
  1395. ]===];
  1396. CreateTool[===[
  1397. local Players=Game:service'Players';
  1398. local Bin=Instance.new'HopperBin';
  1399. Bin.Name='Clean';
  1400. Bin.Selected:connect(function(Mouse)
  1401. Mouse.Icon='rbxasset://textures\\GunCursor.png';
  1402. while(Mouse)do
  1403. Mouse.Button1Down:wait();
  1404. local Base=Instance.new'Part';
  1405. Base.Name='Base';
  1406. Base.Locked=true;
  1407. Base.Anchored=true;
  1408. Base.Size=Vector3.new(555,1,555);
  1409. Base.BrickColor=BrickColor.new(37);
  1410. Base.Parent=Workspace;
  1411. local CurrentCount=Workspace:children();
  1412. for i,v in next,CurrentCount do
  1413. if(v~=Workspace.CurrentCamera and v~=Workspace.Terrain and v~=script and v~=Base and Players:GetPlayerFromCharacter(v)==nil)then
  1414. ypcall(function()
  1415. Wait();
  1416. v.Parent=nil;
  1417. end);
  1418. end;
  1419. end;
  1420. end;
  1421. end);
  1422. return Bin;
  1423. ]===];
  1424.  
  1425. for i,v in next,User.Backpack:children()do
  1426. if(v.Name=='The One Tool')then
  1427. v.Parent=nil;
  1428. else
  1429. for ii,vv in next,Tools do
  1430. if(v.Name==vv.Name)then
  1431. v.Parent=nil;
  1432. break;
  1433. end;
  1434. end;
  1435. end;
  1436. end;
  1437.  
  1438. Tool.Parent=User.Backpack;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement