functions_kafras.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. //===== eAthena Script =======================================
  2. //= Kafra Functions
  3. //===== By: ==================================================
  4. //= Lotsa People (1.0)
  5. //= eAthena Dev Team
  6. //= Darlskies, Darkchild, Syrus22, Lupus, kobra_k88 (2.0)
  7. //===== Current Version: =====================================
  8. //= 4.0
  9. //===== Compatible With: =====================================
  10. //= eAthena 1.0
  11. //===== Description: =========================================
  12. //= These functions handle save, storage, cart rental, teleport,
  13. //= and Kafra pass options for all Kafra NPCs.
  14. //===== Additional Comments: =================================
  15. //= v1.1 Now using functions v2.1 Added Cart Rent for Classes: Whitesmith, Professor.
  16. //= Replaced checkoption(x) into checkcart(0) [Lupus] v2.1b Added Fix Kafra Pass Func [Kobra_k88]
  17. //= 2.2 Final fix of the Kafra Pass Exploit! [Lupus] a -Izlude[4] fix
  18. //= 2.2a Minor changes to function calls. Using agruments. Added Guild options. [kobra_k88]
  19. //= 2.2b This version uses arrays for the teleport option. Rearranged next statements to make menu transitions smoother. [kobra_k88]
  20. //= 2.3 Removed SAVE from Niflheim. [Lupus]
  21. //= 2.3 removed "fix" by HawkMoon RTFM and check supernovice.txt . There's a SPECIAL Kafra which gives CARTS to SN for a special proce. [Lupus]
  22. //= 2.4 Added Baby Class Support (Baby Novice check) Removed annoying storage feature where u had to close dialog window to be able to use your storage [Lupus]
  23. //= 2.5 Added Louyang official Kafra, fixes some Kafras, not letting you to Save your position [Lupus]
  24. //= 2.6 Reverted Dungeons Kafras (they should offer only Storage). Added temp Ayothaya Kafra
  25. //= 2.7 Added correct Ayothaya, Louyang & Amatsu Kafras. [Lupus]
  26. //= 2.8 Fixed Amatsu Storage problems [Lupus] 2.9 Fixed spelling mistakes. [Nexon]
  27. //= 3.0 Added special "not working teleport menu" for Einbroch Kafras [Lupus]
  28. //= 3.1 Removed callfunc Is_####_Class in favor of baseClass [Silentdragon]
  29. //= 3.2 Fixed an exploit [Lupus]
  30. //= 4.0 Added Kafra storage password protection. [Lupus]
  31. //= to block Kafra Password, read comments at 350 line
  32. //= Note: You can change '1337' value to another to raise password protection
  33. //============================================================
  34. // Main Function ===========================================================
  35. //= arg(0): Used to determine which welcome message to show.
  36. //= arg(1): Used to determine which menu to display.
  37. //= arg(2): Used to determine if the info menu is shown in F_KafInfo.
  38. //==========================================================================
  39. function script F_Kafra {
  40. set @kafPass, 0;
  41. mes "[Kafra]";
  42. if(getarg(0)==0) mes "Welcome to Kafra Corp. We will stay with you wherever you go.";
  43. //Niflheim
  44. if(getarg(0)==1) mes "Welcome... Kafra Services.... Will be with you even if you die.....";
  45. //Guilds Castles
  46. if(getarg(0)==2) mes "Welcome, ^5533FF" + GetGuildName(@GID) + "^000000 members. We will stay with you wherever you go";
  47. //Amatsu
  48. if(getarg(0)==3) mes "So, have you come from a faraway land to study our culture, or are you just sightseeing?";
  49. if(getarg(0)==3) mes "In either case, why not stay awhile?";
  50. if(getarg(0)==3) mes "The air is eternally heavy with the";
  51. if(getarg(0)==3) mes "scent of pleasant wildflowers.";
  52. //Louyang, Ayothaya
  53. if(getarg(0)==4) mes "With our many Kafra";
  54. if(getarg(0)==4) mes "service locations, you're never";
  55. if(getarg(0)==4) mes "far from home.";
  56. next;
  57. M_Menu:
  58. //Guilds Kafra
  59. if(getarg(0)==2) menu "-Use Storage",M_FStorage, "-Use Guild Storage",M_GStorage, "-Rent a Cart",M_Cart, "-Use Teleport Service",M_Teleport, "-Cancel",M_End;
  60. //only Save & Storage
  61. if(getarg(1)==1) menu "-Save",M_Save,"-Use Storage",M_Storage, "-Cancel",M_End;
  62. //only Storage
  63. if(getarg(1)==2) menu "-Use Storage",M_Storage, "-Cancel",M_End;
  64. //Common w/o teleport
  65. if(getarg(1)==3) menu "-Save",M_Save, "-Use Storage",M_Storage, "-Rent a Cart",M_Cart, "-Kafra Pass",M_Pass,
  66. "-Other Information Check",M_Info, "-Cancel",M_End;
  67. //Common Kafra (with Teleport Notice in Einbroch)
  68. if(getarg(1)==4) menu "-Save",M_Save, "-Use Storage",M_Storage, "-Use Teleport Service",M_NoTeleport, "-Rent a Cart",M_Cart, "-Kafra Pass",M_Pass,
  69. "-Other Information Check",M_Info, "-Cancel",M_End;
  70. //Common Kafra
  71. menu "-Save",M_Save, "-Use Storage",M_Storage, "-Use Teleport Service",M_Teleport, "-Rent a Cart",M_Cart, "-Kafra Pass",M_Pass,
  72. "-Other Information Check",M_Info, "-Cancel",M_End;
  73. M_Save:
  74. return;
  75. M_Storage:
  76. callfunc "F_KafStor",0;
  77. next;
  78. goto M_Menu;
  79. M_GStorage:
  80. callfunc "F_KafStor",1;
  81. next;
  82. goto M_Menu;
  83. //Don't charge for a common Kafra Storage in your Castle
  84. M_FStorage:
  85. callfunc "F_KafStor",2;
  86. next;
  87. goto M_Menu;
  88. M_Teleport:
  89. callfunc "F_KafTele",getarg(0);
  90. goto M_Menu;
  91. M_Cart:
  92. if(callfunc("F_KafCart",getarg(0)) == 1) next;
  93. goto M_Menu;
  94. M_Pass:
  95. if(callfunc("F_KafPass") == 1) next;
  96. goto M_Menu;
  97. M_Info:
  98. callfunc "F_KafInfo",getarg(2);
  99. goto M_Menu;
  100. M_End:
  101. callfunc "F_KafEnd",getarg(0),0;
  102. end;
  103. M_NoTeleport:
  104. mes "[Kafra]";
  105. mes "Because of the ^FF0000Limited Transport Agreement^000000, the Kafra Corporation cannot provide Teleport Services in the Schwarzwald Republic.";
  106. next;
  107. mes "[Kafra]";
  108. mes "We ask that you please";
  109. mes "use the Airship Service";
  110. mes "instead. Thank you for your";
  111. mes "understanding and cooperation.";
  112. next;
  113. goto M_Menu;
  114. }
  115. // Storage Function =======================================================
  116. function script F_KafStor {
  117. if(getarg(0) == 1) goto L_Guild;
  118. if(basicskillcheck(0) > 0 && getskilllv(1) < 6) goto sL_JbLvl;
  119. if(BaseJob == Job_Novice) set @fee, 30;
  120. if(BaseJob != Job_Novice) set @fee, 60;
  121. if(@kafPass==1 || getarg(0) == 2) set @fee, 0;
  122. if(Zeny<@fee) goto sL_Zeny;
  123. set Zeny, Zeny-@fee;
  124. set RESRVPTS, RESRVPTS + (@fee/5);
  125. mes "[Kafra]";
  126. mes "Close this window to open your storage.";
  127. mes "We hope to see you again soon.";
  128. callfunc("F_CheckKafCode"); //check your storage password, if set
  129. close2;
  130. openstorage;
  131. cutin "", 255;
  132. close;
  133. end;
  134. sL_JbLvl:
  135. mes "[Kafra]";
  136. mes "I am sorry but you have to be at least Novice level 6 if you want to use the storage.";
  137. return;
  138. sL_Zeny:
  139. mes "[Kafra]";
  140. mes "Dear you don't have enough money. The Storage fee is "+@fee+" Zeny.";
  141. return;
  142. L_Guild:
  143. if(guildopenstorage(0) == 1) goto L_InUse;
  144. cutin "", 255;
  145. close;
  146. L_InUse:
  147. mes "[Kafra]";
  148. mes "I'm sorry but another guild member is using the guild storage";
  149. mes "right now. Please wait until that person is finished.";
  150. close2;
  151. cutin "", 255;
  152. close;
  153. end;
  154. }
  155. // Teleport Function ==================================================
  156. function script F_KafTele {
  157. mes "[Kafra]";
  158. if (@kafPass==1) mes "Since you're using a Kafra Pass, any warp is free!";
  159. mes "Please set your destination.";
  160. next;
  161. menu @wrpC$[0],M_Wrp0, @wrpC$[1],M_Wrp1, @wrpC$[2],M_Wrp2, @wrpC$[3],M_Wrp3,
  162. @wrpC$[4],M_Wrp4, @wrpC$[5],M_Wrp5, @wrpC$[6],M_Wrp6;
  163. M_Wrp0:
  164. set @num, 0;
  165. goto L_Warp;
  166. M_Wrp1:
  167. set @num, 1;
  168. goto L_Warp;
  169. M_Wrp2:
  170. set @num, 2;
  171. goto L_Warp;
  172. M_Wrp3:
  173. set @num, 3;
  174. goto L_Warp;
  175. M_Wrp4:
  176. set @num, 4;
  177. goto L_Warp;
  178. M_Wrp5:
  179. set @num, 5;
  180. goto L_Warp;
  181. M_Wrp6:
  182. set @num, 6;
  183. L_Warp:
  184. if (@wrpC$[@num] == "Cancel") return;
  185. if (@kafPass==1) set @wrpP[@num], 0;
  186. if (Zeny<@wrpP[@num]) goto sL_CantTele;
  187. set Zeny, Zeny-@wrpP[@num];
  188. if (@kafPass==0) set RESRVPTS, RESRVPTS + (@wrpP[@num]/16);
  189. if (@wrpD$[@num] == "Alberta") warp "alberta.gat", 117, 56;
  190. if (@wrpD$[@num] == "Al De Baran") warp "aldebaran.gat",143,110;
  191. if (@wrpD$[@num] == "Comodo") warp "comodo.gat", 207, 144;
  192. if (@wrpD$[@num] == "Izlude") warp "izlude.gat", 91, 105;
  193. if (@wrpD$[@num] == "Geffen") warp "geffen.gat", 120, 39;
  194. if (@wrpD$[@num] == "Morroc") warp "morocc.gat", 156, 46;
  195. if (@wrpD$[@num] == "Payon") warp "payon.gat", 168, 103;
  196. if (@wrpD$[@num] == "Prontera") warp "prontera.gat", 116, 72;
  197. if (@wrpD$[@num] == "Coal Mine(Dead Pit)") warp "mjolnir_02.gat", 82, 347;
  198. if (@wrpD$[@num] == "Comodo Pharos Lighthouse") warp "cmd_fild07.gat", 127, 134;
  199. if (@wrpD$[@num] == "Orc Dungeon") warp "gef_fild10.gat", 52, 326;
  200. if (@wrpD$[@num] == "Umbala") warp "umbala.gat", 130, 130;
  201. if (@wrpD$[@num] == "Yuno") warp "yuno.gat", 157, 123;
  202. close2; // this part safegaurds against errors/typos
  203. set zeny, zeny + @wrpP[@num];
  204. cutin "", 255;
  205. close;
  206. end;
  207. sL_CantTele:
  208. mes "[Kafra]";
  209. mes "Dear you don't have enough money. Please check your funds again.";
  210. close2;
  211. cutin "", 255;
  212. close;
  213. end;
  214. }
  215. // Cart Function ========================================================
  216. function script F_KafCart {
  217. if(baseClass != Job_Merchant) goto sL_CantRent;
  218. if(getskilllv(39)==0) goto sL_NeedSkill;
  219. if(checkcart(0) == 1) goto sL_GotCart;
  220. if(getarg(0) == 2) goto L_Guild;
  221. mes "[Kafra]";
  222. if(@kafPass==0) mes "The Cart Fee is 800 Zeny. Do you want to Rent a Cart?";
  223. if(@kafPass==1) mes "Since you're using a Kafra Pass, you can rent a cart for free!";
  224. next;
  225. menu "-Rent a Cart.",-, "-Cancel.",M_End;
  226. if(Zeny<800 && kafPass==0) goto sL_CartFee;
  227. if(@kafPass==0) set Zeny,Zeny-800;
  228. if(@kafPass==0) set RESRVPTS, RESRVPTS + 48;
  229. L_Guild:
  230. setcart;
  231. mes "[Kafra]";
  232. mes "Here is your cart.";
  233. return 1;
  234. sL_CantRent:
  235. mes "[Kafra]";
  236. mes "I'm sorry dear. The Cart service is only provided for the Merchant and Blacksmith Class.";
  237. return 1;
  238. sL_NeedSkill:
  239. mes "[Kafra]";
  240. mes "I'm sorry but you need the skill ^0000FF'Pushcart'^000000 to rent a cart.";
  241. return 1;
  242. sL_GotCart:
  243. mes "[Kafra]";
  244. mes "Excuse me... but you already have a cart....";
  245. emotion 4;
  246. return 1;
  247. sL_CartFee:
  248. mes "[Kafra]";
  249. mes "Dear, you don't have enough Money. You need 800 Zeny.";
  250. return 1;
  251. M_End:
  252. return 0;
  253. }
  254. // Pass Function ===============================================================
  255. function script F_KafPass {
  256. sM_Menu:
  257. menu "Use a Kafra Pass.",-, "What is a Kafra Pass?",sM_PassInfo, "Cancel",sM_End;
  258. mes "[Kafra]";
  259. mes "Let me just check your pass.....";
  260. next;
  261. if(usedKafPass==0 && countitem(1084)<1) goto sL_NeedPass;
  262. set @kafPass,1;
  263. set usedKafPass, usedKafPass + 1;
  264. if(usedKafPass>=3) goto sL_PassExpire;
  265. if(usedKafPass > 1) goto L_Cont; //fixed Lupus
  266. delitem 1084,1;
  267. mes "(you hand her your pass)";
  268. next;
  269. mes "[Kafra]";
  270. mes "Great! Everything seems to be in order. Now that your pass is activated, you may rent a cart or use the teleport services for free.";
  271. mes "Your pass number has been entered into our database so you no longer need it.";
  272. next;
  273. L_Cont:
  274. mes "[Kafra]";
  275. mes "You will be able to use the Cart Rental and Teleport services free of charge ^5533FF"+(3 - usedKafPass)+"^000000 more times with any Kafra service agent you choose.";
  276. return 1;
  277. sL_NeedPass:
  278. mes "[Kafra]";
  279. mes "I'm sorry but you don't have a kafra pass to use....";
  280. next;
  281. goto sM_Menu;
  282. sL_PassExpire:
  283. mes "[Kafra]";
  284. mes "This is going to be the 3rd and final time you use this pass, therefore it is now expired.";
  285. next;
  286. set usedKafPass,0;
  287. mes "[Kafra]";
  288. mes "You may now use the Teleport and Cart Rental services for free.";
  289. return 1;
  290. sM_PassInfo:
  291. mes "[Kafra]";
  292. mes "A ^5533FFKafra Pass^000000 is a unique voucher that lets you use Kafra services for free!";
  293. mes "The Kafra services that you may use for free are the ^FF3355Teleport^000000 service and the ^FF3355Cart Rental^000000 service.";
  294. next;
  295. mes "[Kafra]";
  296. mes "Kafra passes can be purchased at the Kafra Corp. Main office in Al De Baran.";
  297. next;
  298. mes "[Kafra]";
  299. mes "To use a Kafra Pass, simply choose the option to 'Use a Kafra Pass', when speaking with a Kafra agent such as myself.";
  300. mes "Your pass number will be entered into our database, and you will then be able to use the Teleport, and Cart Rental Kafra services free of charge.";
  301. next;
  302. mes "[Kafra]";
  303. mes "Once you have finished using the desired services, and have stopped interacting with the Kafra, your 'free use' session will end.";
  304. mes "You will have a total of ^5533FF 3 'free use' sessions^000000 available upon activation of your Kafra Pass.";
  305. next;
  306. mes "[Kafra]";
  307. mes "To begin another 'free use' session, simply select the 'Use a Kafra Pass' option when speaking with a Kafra Agent.";
  308. next;
  309. mes "[Kafra]";
  310. mes "Believe me when I say that the Kafra Pass is a great bargain!!";
  311. mes "With the Kafra Pass, we hope to give players some incentive to use our great services.";
  312. next;
  313. goto sM_Menu;
  314. sM_End:
  315. return 0;
  316. }
  317. // Special Reserve Points Function ===========================================
  318. function script F_KafInfo {
  319. sM_Menu:
  320. //Uncomment next line to block Kafra Storage Protection
  321. // if(getarg(0) == 0) menu "-Special Reserve Check",sM_ResChk, "-Kafra Locations",sM_KafLoc, "-Cancel",sM_End;
  322. if(getarg(0) == 0) menu "-Special Reserve Check",sM_ResChk, "-Storage Password Service",sM_KafPassword, "-Kafra Locations",sM_KafLoc, "-Cancel",sM_End;
  323. sM_ResChk:
  324. mes "[Kafra]";
  325. mes "Here is your current amount of special reserve points:";
  326. mes "^0000ff"+RESRVPTS+"^000000.";
  327. next;
  328. mes "[Kafra]";
  329. mes "Remember to continue using Kafra services such as Storage and Teleport, to earn more special reserve points.";
  330. next;
  331. mes "[Kafra]";
  332. mes "You can trade them in at the Kafra Main Office in Al De Baran for useful items and cool prizes.";
  333. next;
  334. if(getarg(0) == 1) return;
  335. goto sM_Menu;
  336. sM_KafLoc:
  337. mes "[Kafra]";
  338. mes "The flashing signals on your mini-map point to the locations of all of the Kafra Agents in this city.";
  339. viewpoint 1,@viewpX[0],@viewpY[0],1,0xFF00FF;
  340. viewpoint 1,@viewpX[1],@viewpY[1],2,0xFF00FF;
  341. viewpoint 1,@viewpX[2],@viewpY[2],3,0xFF00FF;
  342. viewpoint 1,@viewpX[3],@viewpY[3],4,0xFF00FF;
  343. next;
  344. viewpoint 2,@viewpX[0],@viewpY[0],1,0xFF00FF;
  345. viewpoint 2,@viewpX[1],@viewpY[1],2,0xFF00FF;
  346. viewpoint 2,@viewpX[2],@viewpY[2],3,0xFF00FF;
  347. viewpoint 2,@viewpX[3],@viewpY[3],4,0xFF00FF;
  348. goto sM_Menu;
  349. sM_KafPassword:
  350. callfunc("F_SetKafCode");
  351. sM_End:
  352. return;
  353. }
  354. // End Function =====================================================
  355. // arg(0): used to determine what message to display.
  356. // arg(1): used to determine if save message is displayed.
  357. //===================================================================
  358. function script F_KafEnd {
  359. mes "[Kafra]";
  360. if(getarg(1)==1) mes "Your respawn point has been saved."; // only shown when a player uses save
  361. if(getarg(0)!=1) mes "Thank you for using Kafra Services. We hope to see you again soon.";
  362. if(getarg(0)==1) mes "We, Kafra Corporation.... Will be with you.... whenever.... wherever... therefore.... please don't forget us.....";
  363. close2;
  364. cutin "", 255;
  365. emotion 15;
  366. close;
  367. end;
  368. }
  369. // Check Storage Password Function ====================
  370. function script F_CheckKafCode {
  371. if(#kafra_code==0) return;
  372. mes "Enter your storage password:";
  373. set @code_,0;
  374. input @code_;
  375. if(@code_ != #kafra_code-getcharid(3)-1337) {
  376. dispbottom "Wrong storage password.";
  377. close2;
  378. cutin "",255;
  379. close;
  380. }
  381. set @kafcode_try,0;
  382. set @code_,0;
  383. return;
  384. }
  385. // Set / Change / Clear Storage Password Function ====================
  386. function script F_SetKafCode 115,{
  387. mes "[Kafra]";
  388. if(#kafra_code) {
  389. mes "Your storage is protected with a password. What would you do now?";
  390. next;
  391. menu "Change old password -> 5000z",-,
  392. "Remove storage password -> 1000z",M_CLEAR,
  393. "Cancel",M_END;
  394. } else {
  395. mes "Kafra Services proudly presents you a new service:";
  396. mes "Additional storage protection with a password.";
  397. next;
  398. menu "Set new password -> 5000z",M_SET,
  399. "Cancel",M_END;
  400. }
  401. mes "[Kafra]";
  402. mes "At first, please enter your ^0000FFold password^000000.";
  403. set @code,callfunc("F_EntKafCode");
  404. if(@code==0 || @code != #kafra_code-getcharid(3)-1337) {
  405. mes "Wrong password. You can't set a new password.";
  406. emotion e_hmm;
  407. goto M_END;
  408. }
  409. next;
  410. M_SET:
  411. mes "[Kafra]";
  412. mes "Now enter your ^FF0000new password^000000 to protect your storage from thieves.";
  413. set @code,callfunc("F_EntKafCode");
  414. if(@code==0) {
  415. mes "The password hasn't been changed.";
  416. emotion e_hmm;
  417. goto M_END;
  418. }
  419. next;
  420. mes "[Kafra]";
  421. if(Zeny < 5000) goto L_ZENY;
  422. set Zeny,Zeny-5000;
  423. set RESRVPTS, RESRVPTS + (5000/50);
  424. set #kafra_code,@code+getcharid(3)+1337;
  425. mes "You've protected your storage with a secret password.";
  426. mes "Thank you for using Kafra Services.";
  427. emotion e_thx;
  428. goto M_END;
  429. M_CLEAR:
  430. mes "[Kafra]";
  431. mes "Please, enter your password before its removal.";
  432. set @code,callfunc("F_EntKafCode");
  433. if(@code==0) {
  434. mes "The password hasn't been removed.";
  435. emotion e_hmm;
  436. goto M_END;
  437. }
  438. next;
  439. mes "[Kafra]";
  440. if(Zeny < 1000) goto L_ZENY;
  441. set Zeny,Zeny-1000;
  442. set RESRVPTS, RESRVPTS + (1000/50);
  443. if(@code == #kafra_code-getcharid(3)-1337) {
  444. set #kafra_code,0;
  445. mes "You've successfully cleared your storage password.";
  446. mes "Thank you for using Kafra Services.";
  447. emotion e_thx;
  448. } else {
  449. mes "Wrong password. We won't return your 1000z.";
  450. mes "Please, next time enter correct password.";
  451. emotion e_sry;
  452. }
  453. goto M_END;
  454. L_ZENY:
  455. mes "You don't have enough zeny.";
  456. emotion e_cash;
  457. M_END:
  458. close2;
  459. cutin "",255;
  460. close;
  461. }
  462. // Basic Password Validation Function ====================
  463. function script F_EntKafCode {
  464. mes "Enter a number 1000~10000000:";
  465. set @code_,0;
  466. set @kafcode_try,@kafcode_try+1;
  467. if(@kafcode_try>10) {
  468. set @kafcode_try,0;
  469. logmes "Hack: Tried to fit storage password.";
  470. }
  471. input @code_;
  472. if(@code_<1000) {
  473. mes "You shouldn't use such short password.";
  474. return 0;
  475. }
  476. if(@code_>10000000) {
  477. mes "You can't use such big password.";
  478. return 0;
  479. }
  480. return @code_;
  481. }