@maka/maka-cli 4.7.14 → 4.7.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/.vs/maka-cli-src/FileContentIndex/79ef20d9-272b-4d5b-9ece-bc61eda1bad6.vsidx +0 -0
  2. package/.vs/slnx.sqlite +0 -0
  3. package/bundle/obf/package.json +1 -2
  4. package/bundle/obf/src/command.js +1 -1
  5. package/bundle/obf/src/commands/_index.js +1 -1
  6. package/bundle/obf/src/commands/ai.js +1 -1
  7. package/bundle/obf/src/commands/aws/_index.js +1 -1
  8. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  9. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/build/_index.js +1 -1
  22. package/bundle/obf/src/commands/build/build.js +1 -1
  23. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  24. package/bundle/obf/src/commands/create.js +1 -1
  25. package/bundle/obf/src/commands/debug.js +1 -1
  26. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  27. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  28. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  29. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/_index.js +1 -1
  31. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/play.command.js +1 -1
  33. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  66. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  67. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  69. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  70. package/bundle/obf/src/commands/generate.js +1 -1
  71. package/bundle/obf/src/commands/get/_index.js +1 -1
  72. package/bundle/obf/src/commands/get/get.command.js +1 -1
  73. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  75. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  76. package/bundle/obf/src/commands/help.js +1 -1
  77. package/bundle/obf/src/commands/install.js +1 -1
  78. package/bundle/obf/src/commands/jsdoc.js +1 -1
  79. package/bundle/obf/src/commands/lint.js +1 -1
  80. package/bundle/obf/src/commands/login.js +1 -1
  81. package/bundle/obf/src/commands/logout.js +1 -1
  82. package/bundle/obf/src/commands/logs.js +1 -1
  83. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  84. package/bundle/obf/src/commands/murder.js +1 -1
  85. package/bundle/obf/src/commands/proxy.js +1 -1
  86. package/bundle/obf/src/commands/reconfig.js +1 -1
  87. package/bundle/obf/src/commands/run/_index.js +1 -1
  88. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  89. package/bundle/obf/src/commands/run/run.command.js +1 -1
  90. package/bundle/obf/src/commands/set/_index.js +1 -1
  91. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  92. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  93. package/bundle/obf/src/commands/set/set.command.js +1 -1
  94. package/bundle/obf/src/commands/ssh.js +1 -1
  95. package/bundle/obf/src/commands/ssl.js +1 -1
  96. package/bundle/obf/src/commands/test.js +1 -1
  97. package/bundle/obf/src/commands/version.js +1 -1
  98. package/bundle/obf/src/error.js +1 -1
  99. package/bundle/obf/src/exec.js +1 -1
  100. package/bundle/obf/src/generator.js +1 -1
  101. package/bundle/obf/src/generators/_index.js +1 -1
  102. package/bundle/obf/src/generators/api.js +1 -1
  103. package/bundle/obf/src/generators/collection.js +1 -1
  104. package/bundle/obf/src/generators/component.js +1 -1
  105. package/bundle/obf/src/generators/config.js +1 -1
  106. package/bundle/obf/src/generators/dbc.js +1 -1
  107. package/bundle/obf/src/generators/dockerfile.js +1 -1
  108. package/bundle/obf/src/generators/hook.js +1 -1
  109. package/bundle/obf/src/generators/kits/_index.js +1 -1
  110. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  111. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  112. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  113. package/bundle/obf/src/generators/kits/kit.js +1 -1
  114. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  115. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  116. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  117. package/bundle/obf/src/generators/layout.js +1 -1
  118. package/bundle/obf/src/generators/maka.gen.js +1 -1
  119. package/bundle/obf/src/generators/methods.js +1 -1
  120. package/bundle/obf/src/generators/package.js +1 -1
  121. package/bundle/obf/src/generators/page.js +1 -1
  122. package/bundle/obf/src/generators/publish.js +1 -1
  123. package/bundle/obf/src/generators/route.js +1 -1
  124. package/bundle/obf/src/generators/service.js +1 -1
  125. package/bundle/obf/src/generators/services/_index.js +1 -1
  126. package/bundle/obf/src/generators/services/openssl.js +1 -1
  127. package/bundle/obf/src/generators/services/translation.js +1 -1
  128. package/bundle/obf/src/maka.js +1 -1
  129. package/bundle/obf/src/tool.js +1 -1
  130. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  131. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  132. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  133. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  134. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  136. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  137. package/bundle/obf/src/tools/https/https.class.js +1 -1
  138. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  139. package/bundle/obf/src/tools/log/log.class.js +1 -1
  140. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  141. package/bundle/obf/src/tools/options/options.class.js +1 -1
  142. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  143. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  144. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  145. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  146. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  147. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  148. package/package.json +1 -2
  149. package/.vs/maka-cli-src/FileContentIndex/4c0a1daa-da96-4fc9-bf6f-ad5a9148b26c.vsidx +0 -0
@@ -1 +1 @@
1
- var a53j=a53d;(function(a,b){var f=a53d,c=a();while(!![]){try{var d=-parseInt(f(0xee))/0x1+-parseInt(f(0xdf))/0x2*(-parseInt(f(0xc5))/0x3)+parseInt(f(0xe7))/0x4+parseInt(f(0xb6))/0x5+parseInt(f(0xc9))/0x6*(-parseInt(f(0xc4))/0x7)+parseInt(f(0xe3))/0x8*(-parseInt(f(0xcc))/0x9)+-parseInt(f(0xcd))/0xa*(-parseInt(f(0xe8))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a53c,0x53389));var a53b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a53d;if(c){var e=c[g(0xeb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a53a=a53b(this,function(){var h=a53d;return a53a['toString']()[h(0xed)](h(0xea))[h(0xdd)]()[h(0xc8)](a53a)[h(0xed)](h(0xea));});a53a();function a53d(a,b){var c=a53c();return a53d=function(d,e){d=d-0xb5;var f=c[d];return f;},a53d(a,b);}import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a53d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[i(0xda)],'shape':Shape['Rectangle'],'color':Color[i(0xd5)],'texture':Texture[i(0xd9)],'rating':Rating[i(0xd4)],'weight':0x1});}[a53j(0xe6)](){var k=a53j;return this[k(0xe2)];}}export class Sword extends Item{constructor(a,b){var l=a53j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[l(0xc3)],'shape':Shape[l(0xdc)],'color':Color[l(0xbc)],'texture':Texture[l(0xc2)],'rating':Rating[l(0xd4)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var m=a53j;super({'name':a,'description':b,'size':Size[m(0xe4)],'category':Category[m(0xc3)],'shape':Shape[m(0xd8)],'color':Color[m(0xbe)],'texture':Texture['Metallic'],'rating':Rating[m(0xc0)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var n=a53j;super({'name':a,'description':b,'size':Size[n(0xcb)],'category':Category[n(0xba)],'shape':Shape[n(0xdb)],'color':Color[n(0xbc)],'texture':Texture[n(0xc2)],'rating':Rating[n(0xd4)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var o=a53j;super({'name':a,'description':b,'size':Size[o(0xe4)],'category':Category[o(0xbb)],'shape':Shape[o(0xb5)],'color':Color[o(0xbc)],'texture':Texture[o(0xc2)],'rating':Rating[o(0xd4)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var p=a53j;super({'name':a,'description':b,'size':Size[p(0xcb)],'category':Category[p(0xd2)],'shape':Shape[p(0xb5)],'color':Color['Grey'],'texture':Texture[p(0xc2)],'rating':Rating[p(0xd4)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var q=a53j;super({'name':a,'description':b,'size':Size[q(0xcb)],'category':Category[q(0xd3)],'shape':Shape['Circle'],'color':Color[q(0xbe)],'texture':Texture[q(0xd9)],'rating':Rating[q(0xd4)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var r=a53j;super({'name':a,'description':b,'size':Size[r(0xb8)],'category':Category['Gloves'],'shape':Shape[r(0xdb)],'color':Color[r(0xbe)],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var s=a53j;super({'name':a,'description':b,'size':Size[s(0xcb)],'category':Category[s(0xc6)],'shape':Shape[s(0xb5)],'color':Color[s(0xbc)],'texture':Texture[s(0xc2)],'rating':Rating['Common'],'weight':0x3});}}export class Key extends Item{constructor(a,b){var t=a53j;super({'name':a,'description':b,'size':Size[t(0xe5)],'category':Category['Key'],'shape':Shape[t(0xb5)],'color':Color[t(0xd5)],'texture':Texture[t(0xd9)],'rating':Rating['Common'],'weight':0x0});}['use'](){var u=a53j;return u(0xb7);}}export class Weapon extends Item{constructor(a,b){var v=a53j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[v(0xc3)],'shape':Shape[v(0xdc)],'color':Color['Grey'],'texture':Texture['Metallic'],'rating':Rating[v(0xd4)],'weight':0x3});}[a53j(0xe6)](){var w=a53j;return w(0xd7);}}function a53c(){var F=['Common','Yellow','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Rifle','Smooth','Unknown','Circle','Blade','toString','A\x20mysterious\x20book.','6ErZRJG','Sniper\x20Rifle','Gold','description','16tniocx','Large','Tiny','use','1022756iVjlkj','11325424kSDvua','Book','(((.+)+)+)+$','apply','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','search','60769TzkENl','Rectangle','138185EsaJKF','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','Small','There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22','Helmet','BodyArmor','Grey','Holy\x20Grail','Brown','pageCount','Rare','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','Metallic','Weapon','91EgypVx','216555HCBtJG','ArmArmor','name','constructor','206958FNZeTc','Cup','Medium','3057363FZrvmQ','10GzQGkC','author','publishDate','Short\x20Sword','Unknown\x20Author','LegArmor','Boots'];a53c=function(){return F;};return a53c();}export class Book extends Item{[a53j(0xce)];[a53j(0xcf)];[a53j(0xbf)];constructor(a,b=a53j(0xde),c=a53j(0xd1)){var x=a53j;super({'name':a,'description':b,'size':Size[x(0xcb)],'category':Category[x(0xe9)],'shape':Shape['Rectangle'],'color':Color[x(0xbe)],'texture':Texture['Smooth'],'rating':Rating[x(0xd4)],'weight':0x1}),this[x(0xce)]=c,this['publishDate']=new Date(),this[x(0xbf)]=0x64;}['use'](){var y=a53j;return y(0xb9);}}export class ShortSword extends Item{constructor(){var z=a53j;super({'name':z(0xd0),'description':z(0xec),'size':Size['Medium'],'category':Category[z(0xc3)],'shape':Shape[z(0xdc)],'color':Color[z(0xbc)],'texture':Texture['Metallic'],'rating':Rating[z(0xd4)],'weight':0x3});}[a53j(0xe6)](){var A=a53j;return A(0xd7);}}export class SniperRifle extends Item{constructor(){var B=a53j;super({'name':B(0xe0),'description':'An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','size':Size[B(0xe4)],'category':Category[B(0xc3)],'shape':Shape['Rifle'],'color':Color['Brown'],'texture':Texture[B(0xd9)],'rating':Rating[B(0xd4)],'weight':0x5});}[a53j(0xe6)](){var C=a53j;return C(0xc1);}}export class HolyGrail extends Item{constructor(){var D=a53j;super({'name':D(0xbd),'description':D(0xd6),'size':Size[D(0xb8)],'category':Category[D(0xca)],'shape':Shape[D(0xdb)],'color':Color[D(0xe1)],'texture':Texture[D(0xc2)],'rating':Rating['Legendary'],'weight':0x1});}[a53j(0xe6)](){var E=a53j;return'You\x20hold\x20the\x20'+this[E(0xc7)]+'\x20aloft,\x20feeling\x20its\x20immense\x20power.';}}
1
+ var a53i=a53d;(function(a,b){var f=a53d,c=a();while(!![]){try{var d=-parseInt(f(0x1e3))/0x1*(-parseInt(f(0x1d2))/0x2)+parseInt(f(0x1d7))/0x3+parseInt(f(0x1cc))/0x4+-parseInt(f(0x1df))/0x5+parseInt(f(0x1f4))/0x6+-parseInt(f(0x1ca))/0x7*(-parseInt(f(0x1cb))/0x8)+parseInt(f(0x1d9))/0x9*(-parseInt(f(0x1de))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a53c,0x7ed79));var a53b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a53a=a53b(this,function(){var g=a53d;return a53a[g(0x1cd)]()[g(0x1e9)](g(0x1d5))[g(0x1cd)]()[g(0x1f3)](a53a)[g(0x1e9)](g(0x1d5));});a53a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var h=a53d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[h(0x1e0)],'shape':Shape[h(0x1ea)],'color':Color[h(0x1d0)],'texture':Texture[h(0x1d6)],'rating':Rating['Common'],'weight':0x1});}[a53i(0x1d4)](){var j=a53i;return this[j(0x1f6)];}}export class Sword extends Item{constructor(a,b){var k=a53i;super({'name':a,'description':b,'size':Size[k(0x1d8)],'category':Category[k(0x1c9)],'shape':Shape[k(0x1ef)],'color':Color[k(0x1d1)],'texture':Texture['Metallic'],'rating':Rating[k(0x1dd)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var l=a53i;super({'name':a,'description':b,'size':Size[l(0x1e4)],'category':Category[l(0x1c9)],'shape':Shape[l(0x1e6)],'color':Color[l(0x1cf)],'texture':Texture[l(0x1ee)],'rating':Rating[l(0x1e7)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a53i;super({'name':a,'description':b,'size':Size[m(0x1d8)],'category':Category[m(0x1f1)],'shape':Shape[m(0x1db)],'color':Color[m(0x1d1)],'texture':Texture['Metallic'],'rating':Rating[m(0x1dd)],'weight':0x2});}}function a53d(a,b){var c=a53c();return a53d=function(d,e){d=d-0x1c8;var f=c[d];return f;},a53d(a,b);}export class BodyArmor extends Item{constructor(a,b){var n=a53i;super({'name':a,'description':b,'size':Size[n(0x1e4)],'category':Category['BodyArmor'],'shape':Shape['Rectangle'],'color':Color['Grey'],'texture':Texture[n(0x1ee)],'rating':Rating[n(0x1dd)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a53i;super({'name':a,'description':b,'size':Size[o(0x1d8)],'category':Category['LegArmor'],'shape':Shape['Rectangle'],'color':Color['Grey'],'texture':Texture[o(0x1ee)],'rating':Rating[o(0x1dd)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var p=a53i;super({'name':a,'description':b,'size':Size[p(0x1d8)],'category':Category['Boots'],'shape':Shape[p(0x1db)],'color':Color[p(0x1cf)],'texture':Texture['Smooth'],'rating':Rating[p(0x1dd)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a53i;super({'name':a,'description':b,'size':Size['Small'],'category':Category[q(0x1e5)],'shape':Shape[q(0x1db)],'color':Color[q(0x1cf)],'texture':Texture[q(0x1d6)],'rating':Rating['Common'],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var r=a53i;super({'name':a,'description':b,'size':Size[r(0x1d8)],'category':Category[r(0x1e2)],'shape':Shape['Rectangle'],'color':Color[r(0x1d1)],'texture':Texture[r(0x1ee)],'rating':Rating['Common'],'weight':0x3});}}export class Key extends Item{constructor(a,b){var s=a53i;super({'name':a,'description':b,'size':Size[s(0x1eb)],'category':Category[s(0x1c8)],'shape':Shape[s(0x1ea)],'color':Color[s(0x1d0)],'texture':Texture[s(0x1d6)],'rating':Rating[s(0x1dd)],'weight':0x0});}[a53i(0x1d4)](){return'This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22';}}function a53c(){var C=['3801800qgrcoV','Unknown','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','ArmArmor','533345oKWEvc','Large','Gloves','Rifle','Rare','publishDate','search','Rectangle','Tiny','author','name','Metallic','Blade','A\x20mysterious\x20book.','Helmet','Book','constructor','683682MvRGWE','You\x20hold\x20the\x20','description','Gold','Key','Weapon','212429lqhlvd','8MhCAJJ','2918744zUNBlA','toString','Small','Brown','Yellow','Grey','2WqizQX','There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22','use','(((.+)+)+)+$','Smooth','32361aRzLWo','Medium','621BNDIQx','Legendary','Circle','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Common','20030yRjZKo'];a53c=function(){return C;};return a53c();}export class Weapon extends Item{constructor(a,b){var t=a53i;super({'name':a,'description':b,'size':Size[t(0x1d8)],'category':Category[t(0x1c9)],'shape':Shape[t(0x1ef)],'color':Color[t(0x1d1)],'texture':Texture[t(0x1ee)],'rating':Rating['Common'],'weight':0x3});}[a53i(0x1d4)](){var u=a53i;return u(0x1dc);}}export class Book extends Item{[a53i(0x1ec)];[a53i(0x1e8)];['pageCount'];constructor(a,b=a53i(0x1f0),c='Unknown\x20Author'){var v=a53i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[v(0x1f2)],'shape':Shape[v(0x1ea)],'color':Color['Brown'],'texture':Texture[v(0x1d6)],'rating':Rating[v(0x1dd)],'weight':0x1}),this['author']=c,this[v(0x1e8)]=new Date(),this['pageCount']=0x64;}[a53i(0x1d4)](){var w=a53i;return w(0x1d3);}}export class ShortSword extends Item{constructor(){var x=a53i;super({'name':'Short\x20Sword','description':'A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','size':Size['Medium'],'category':Category[x(0x1c9)],'shape':Shape[x(0x1ef)],'color':Color[x(0x1d1)],'texture':Texture[x(0x1ee)],'rating':Rating[x(0x1dd)],'weight':0x3});}[a53i(0x1d4)](){var y=a53i;return y(0x1dc);}}export class SniperRifle extends Item{constructor(){var z=a53i;super({'name':'Sniper\x20Rifle','description':z(0x1e1),'size':Size['Large'],'category':Category['Weapon'],'shape':Shape[z(0x1e6)],'color':Color[z(0x1cf)],'texture':Texture['Smooth'],'rating':Rating[z(0x1dd)],'weight':0x5});}[a53i(0x1d4)](){return'You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22';}}export class HolyGrail extends Item{constructor(){var A=a53i;super({'name':'Holy\x20Grail','description':'A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','size':Size[A(0x1ce)],'category':Category['Cup'],'shape':Shape[A(0x1db)],'color':Color[A(0x1f7)],'texture':Texture[A(0x1ee)],'rating':Rating[A(0x1da)],'weight':0x1});}[a53i(0x1d4)](){var B=a53i;return B(0x1f5)+this[B(0x1ed)]+'\x20aloft,\x20feeling\x20its\x20immense\x20power.';}}
@@ -1 +1 @@
1
- const a55i=a55d;(function(a,b){const f=a55d,c=a();while(!![]){try{const d=parseInt(f(0x10a))/0x1+-parseInt(f(0x104))/0x2*(-parseInt(f(0x13f))/0x3)+-parseInt(f(0x10d))/0x4*(-parseInt(f(0x143))/0x5)+-parseInt(f(0x10b))/0x6*(parseInt(f(0x114))/0x7)+parseInt(f(0x126))/0x8+-parseInt(f(0x141))/0x9+parseInt(f(0x14e))/0xa*(parseInt(f(0xff))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x3cf5e));const a55b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a55d;if(c){const e=c[g(0x124)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){const h=a55d;return a55a[h(0x16a)]()[h(0x146)](h(0x115))[h(0x16a)]()['constructor'](a55a)['search'](h(0x115));});a55a();function a55d(a,b){const c=a55c();return a55d=function(d,e){d=d-0xf8;let f=c[d];return f;},a55d(a,b);}export const rooms=[{'name':a55i(0x107),'description':a55i(0x140),'isStartRoom':!![],'items':[{'type':a55i(0x163),'name':a55i(0x12a),'description':a55i(0x160)},{'type':'book','name':'Guard\x27s\x20Log\x20Book','description':'A\x20thin\x20log\x20book','content':a55i(0x106)}],'exits':[{'direction':a55i(0x156),'targetRoom':'Secret\x20Passage'}]},{'name':a55i(0x142),'description':a55i(0x155),'exits':[{'direction':a55i(0x101),'targetRoom':a55i(0x15d),'keyRequired':'Golden\x20Key'},{'direction':'SOUTH','targetRoom':'Courtyard'}]},{'name':a55i(0x15d),'description':a55i(0x133),'items':[{'type':a55i(0x116),'name':'Holy\x20Grail','description':'The\x20legendary\x20Holy\x20Grail.'}]},{'name':a55i(0x108),'description':a55i(0x13b),'roomType':a55i(0x123),'exits':[{'direction':'UP','targetRoom':a55i(0x165)}]},{'name':a55i(0x165),'description':'A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','roomType':'OUTSIDE','puzzle':{'requiredPhrase':a55i(0xfc),'riddle':a55i(0x11e),'rewardItem':{'type':'rifle','name':a55i(0x151),'description':a55i(0x119)},'successMessage':a55i(0x128),'failureMessage':a55i(0x11f)}}];function a55c(){const j=['140664TZEjvx','gem','42652kOPzIZ','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','Nothing\x20happens.','drone','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','A\x20small\x20surveillance\x20drone.','Study','98uFaSkI','(((.+)+)+)+$','holyGrail','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','A\x20long-range\x20weapon.','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','Entrance\x20Hall','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','Barrens\x20Hideout','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','That\x20passcode\x20is\x20incorrect','book','A\x20creditstick\x20loaded\x20with\x20nuyen.','Ares\x20Predator','OUTSIDE','apply','A\x20chalice\x20made\x20of\x20pure\x20gold.','258808dxViLy','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','outside','Golden\x20Key','weapon','MCT\x20Fly-Spy','east','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','amulet','Riddle\x20Book','The\x20chest\x20remains\x20firmly\x20shut.','disenchant','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','open\x20sesame','The\x20data\x20remains\x20encrypted.','Rigger\x27s\x20Workshop','inside','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','Matrix\x20Data\x20Haven','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','Golden\x20Chalice','Armory','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','318xSEsdv','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','781038XLMfEs','Secret\x20Passage','25qOFjdm','south','Corp\x20Enclave','search','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','Rusted\x20Sword','north','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','cup','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','Downtown\x20Seattle','580VvvpAO','Barrens\x20Entrance','insert\x20gem','Sniper\x20Rifle','Empty\x20vial','Gang\x20Insignia','Central\x20Chamber\x20Key','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','EAST','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','Corporate\x20Creditstick','A\x20clear\x20glass\x20vial.','Jackpoint\x20Login','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','Treasure\x20Room','CorpSec\x20Plans','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','key','Emblem\x20Shield','Watch\x20Tower','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','Mage\x27s\x20Lair','toString','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','Blood-stained\x20Key','west','Amulet\x20of\x20Awakening','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','Ancient\x20Gem','basic','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','secret123','Encrypted\x20Data\x20Key','Torture\x20Chamber','5082IkfSak','Alchemy\x20Lab','NORTH','Central\x20Chamber','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','4908wqcJLx','decrypt','Chad\x20the\x20stupid\x20guard','Library','Courtyard','release','292106JMPZPs'];a55c=function(){return j;};return a55c();}export const dungeonConfig=[{'name':a55i(0x11b),'description':a55i(0x168),'isStartRoom':!![],'roomType':a55i(0x137),'puzzle':{'requiredPhrase':a55i(0x134),'riddle':a55i(0x138),'rewardItem':{'type':a55i(0x163),'name':'Central\x20Chamber\x20Key','description':a55i(0x14a)},'successMessage':'The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','failureMessage':a55i(0x10f)},'exits':[{'direction':a55i(0x149),'targetRoom':a55i(0x113)},{'direction':a55i(0x12d),'targetRoom':'Central\x20Chamber','keyRequired':a55i(0x154)}]},{'name':'Study','description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':a55i(0x137),'items':[{'type':a55i(0x120),'name':a55i(0x130),'description':a55i(0x14c),'content':a55i(0x15c)},{'type':a55i(0x163),'name':a55i(0x154),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a55i(0x144),'targetRoom':a55i(0x11b)},{'direction':a55i(0x12d),'targetRoom':a55i(0x100)}]},{'name':'Alchemy\x20Lab','description':a55i(0x13a),'roomType':a55i(0x137),'items':[{'type':a55i(0xf9),'name':a55i(0x152),'description':a55i(0x159)}],'exits':[{'direction':a55i(0x16d),'targetRoom':'Study'},{'direction':a55i(0x149),'targetRoom':a55i(0x13d)}]},{'name':'Armory','description':'Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','roomType':a55i(0x137),'items':[{'type':'shield','name':a55i(0x164),'description':a55i(0x161)},{'type':'sword','name':a55i(0x148),'description':'An\x20old\x20and\x20rusted\x20sword.'}],'exits':[{'direction':a55i(0x144),'targetRoom':'Alchemy\x20Lab'},{'direction':a55i(0x12d),'targetRoom':'Central\x20Chamber'}]},{'name':a55i(0x102),'description':a55i(0x103),'roomType':'inside','exits':[{'direction':'west','targetRoom':a55i(0x13d)},{'direction':a55i(0x144),'targetRoom':'Entrance\x20Hall'},{'direction':'north','targetRoom':a55i(0xfe)},{'direction':a55i(0x12d),'targetRoom':a55i(0x15d)}]},{'name':a55i(0xfe),'description':a55i(0x162),'roomType':'inside','items':[{'type':a55i(0x163),'name':a55i(0x16c),'description':'A\x20key\x20stained\x20with\x20old\x20blood.'}],'puzzle':{'requiredPhrase':a55i(0x109),'riddle':a55i(0xfa),'rewardItem':{'type':a55i(0x10c),'name':a55i(0xf8),'description':a55i(0x16b)},'successMessage':a55i(0x117),'failureMessage':a55i(0x10e)},'exits':[{'direction':a55i(0x144),'targetRoom':a55i(0x102)}]},{'name':'Treasure\x20Room','description':a55i(0x11a),'roomType':a55i(0x137),'puzzle':{'requiredPhrase':a55i(0x150),'riddle':a55i(0x15f),'rewardItem':{'type':a55i(0x14b),'name':a55i(0x13c),'description':a55i(0x125)},'successMessage':a55i(0x166),'failureMessage':a55i(0x131)},'exits':[{'direction':a55i(0x16d),'targetRoom':a55i(0x102)}]}];export const shadowrunConfig=[{'name':a55i(0x15a),'description':'A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','isStartRoom':!![],'roomType':'inside','exits':[{'direction':a55i(0x149),'targetRoom':a55i(0x14d)},{'direction':'up','targetRoom':a55i(0x139)}]},{'name':a55i(0x139),'description':a55i(0x147),'roomType':a55i(0x137),'puzzle':{'requiredPhrase':a55i(0x105),'riddle':a55i(0x16f),'rewardItem':{'type':'key','name':a55i(0xfd),'description':'A\x20key\x20made\x20of\x20pure\x20digital\x20energy.'},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':a55i(0x135)},'exits':[{'direction':'down','targetRoom':'Jackpoint\x20Login'}]},{'name':a55i(0x14d),'description':a55i(0x11c),'roomType':a55i(0x129),'exits':[{'direction':a55i(0x144),'targetRoom':a55i(0x15a)},{'direction':a55i(0x12d),'targetRoom':a55i(0x14f)},{'direction':a55i(0x16d),'targetRoom':a55i(0x145)}]},{'name':a55i(0x14f),'description':a55i(0x15b),'roomType':a55i(0x129),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a55i(0x157),'rewardItem':{'type':a55i(0x163),'name':a55i(0x153),'description':a55i(0xfb)},'successMessage':a55i(0x12e),'failureMessage':a55i(0x127)},'exits':[{'direction':'west','targetRoom':'Downtown\x20Seattle'},{'direction':a55i(0x149),'targetRoom':a55i(0x11d)}]},{'name':a55i(0x145),'description':'The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','roomType':a55i(0x137),'items':[{'type':'creditstick','name':a55i(0x158),'description':a55i(0x121)},{'type':'document','name':a55i(0x15e),'description':a55i(0x118)}],'exits':[{'direction':a55i(0x12d),'targetRoom':a55i(0x14d)}]},{'name':'Barrens\x20Hideout','description':a55i(0x111),'roomType':a55i(0x129),'items':[{'type':a55i(0x12b),'name':a55i(0x122),'description':'A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.'}],'exits':[{'direction':a55i(0x144),'targetRoom':a55i(0x14f)},{'direction':a55i(0x149),'targetRoom':a55i(0x169)},{'direction':'east','targetRoom':'Rigger\x27s\x20Workshop'}]},{'name':a55i(0x169),'description':a55i(0x167),'roomType':a55i(0x137),'puzzle':{'requiredPhrase':a55i(0x132),'riddle':'Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','rewardItem':{'type':a55i(0x12f),'name':a55i(0x16e),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':'The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','failureMessage':a55i(0x13e)},'exits':[{'direction':'south','targetRoom':a55i(0x11d)}]},{'name':a55i(0x136),'description':'Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','roomType':a55i(0x137),'items':[{'type':a55i(0x110),'name':a55i(0x12c),'description':a55i(0x112)}],'exits':[{'direction':'west','targetRoom':a55i(0x11d)}]}];
1
+ function a55d(a,b){const c=a55c();return a55d=function(d,e){d=d-0x1c3;let f=c[d];return f;},a55d(a,b);}function a55c(){const j=['Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','45460FCJUrf','Gang\x20Insignia','333276UMJKZN','drone','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','cup','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','open\x20sesame','6485567ZqmWzf','holyGrail','rifle','OUTSIDE','search','basic','north','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Rigger\x27s\x20Workshop','decrypt','toString','2724164veLGYS','Amulet\x20of\x20Awakening','inside','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','disenchant','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','east','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','Riddle\x20Book','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','Guard\x27s\x20Log\x20Book','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','CorpSec\x20Plans','EAST','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','Blood-stained\x20Key','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','The\x20chest\x20remains\x20firmly\x20shut.','sword','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','1VhetHo','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','Matrix\x20Data\x20Haven','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','Central\x20Chamber','Downtown\x20Seattle','184hIIAJh','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','document','Central\x20Chamber\x20Key','Courtyard','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','key','down','Armory','Barrens\x20Hideout','insert\x20gem','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','Corporate\x20Creditstick','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','gem','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Library','The\x20data\x20remains\x20encrypted.','Nothing\x20happens.','Golden\x20Chalice','Alchemy\x20Lab','Emblem\x20Shield','release','Treasure\x20Room','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','Holy\x20Grail','536880pmtEjp','Barrens\x20Entrance','MCT\x20Fly-Spy','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','(((.+)+)+)+$','199405xgicAa','18DOSzdm','show\x20loyalty','The\x20legendary\x20Holy\x20Grail.','A\x20key\x20stained\x20with\x20old\x20blood.','amulet','Mage\x27s\x20Lair','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','Entrance\x20Hall','secret123','Secret\x20Passage','A\x20thin\x20log\x20book','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','146153mOZzOA','6cfWGuq','apply','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','Study','south','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','Corp\x20Enclave','book','That\x20passcode\x20is\x20incorrect','Chad\x20the\x20stupid\x20guard','outside','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','Jackpoint\x20Login','Watch\x20Tower','creditstick','west','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','weapon'];a55c=function(){return j;};return a55c();}const a55i=a55d;(function(a,b){const f=a55d,c=a();while(!![]){try{const d=-parseInt(f(0x209))/0x1*(parseInt(f(0x1db))/0x2)+parseInt(f(0x22b))/0x3+-parseInt(f(0x1ed))/0x4+-parseInt(f(0x232))/0x5*(parseInt(f(0x1c5))/0x6)+-parseInt(f(0x1c4))/0x7*(-parseInt(f(0x210))/0x8)+parseInt(f(0x233))/0x9*(-parseInt(f(0x1d9))/0xa)+parseInt(f(0x1e2))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x55f7a));const a55b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a55d;if(c){const e=c[g(0x1c6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){const h=a55d;return a55a[h(0x1ec)]()[h(0x1e6)](h(0x231))[h(0x1ec)]()['constructor'](a55a)['search']('(((.+)+)+)+$');});a55a();export const rooms=[{'name':a55i(0x221),'description':a55i(0x200),'isStartRoom':!![],'items':[{'type':a55i(0x217),'name':'Golden\x20Key','description':a55i(0x1d5)},{'type':a55i(0x1cc),'name':a55i(0x1fa),'description':a55i(0x23d),'content':a55i(0x1ce)}],'exits':[{'direction':a55i(0x1fe),'targetRoom':a55i(0x23c)}]},{'name':a55i(0x23c),'description':a55i(0x229),'exits':[{'direction':'NORTH','targetRoom':a55i(0x228),'keyRequired':'Golden\x20Key'},{'direction':'SOUTH','targetRoom':a55i(0x214)}]},{'name':'Treasure\x20Room','description':a55i(0x1ca),'items':[{'type':a55i(0x1e3),'name':a55i(0x22a),'description':a55i(0x235)}]},{'name':'Courtyard','description':a55i(0x1e0),'roomType':a55i(0x1e5),'exits':[{'direction':'UP','targetRoom':'Watch\x20Tower'}]},{'name':a55i(0x1d2),'description':a55i(0x1ff),'roomType':'OUTSIDE','puzzle':{'requiredPhrase':a55i(0x23b),'riddle':a55i(0x204),'rewardItem':{'type':a55i(0x1e4),'name':'Sniper\x20Rifle','description':'A\x20long-range\x20weapon.'},'successMessage':a55i(0x20d),'failureMessage':a55i(0x1cd)}}];export const dungeonConfig=[{'name':a55i(0x23a),'description':a55i(0x1d8),'isStartRoom':!![],'roomType':a55i(0x1ef),'puzzle':{'requiredPhrase':a55i(0x1e1),'riddle':'Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','rewardItem':{'type':a55i(0x217),'name':a55i(0x213),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a55i(0x22f),'failureMessage':a55i(0x223)},'exits':[{'direction':a55i(0x1e8),'targetRoom':a55i(0x1c8)},{'direction':a55i(0x1f3),'targetRoom':'Central\x20Chamber','keyRequired':a55i(0x213)}]},{'name':a55i(0x1c8),'description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':a55i(0x1ef),'items':[{'type':a55i(0x1cc),'name':a55i(0x1f7),'description':a55i(0x22e),'content':'When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!'},{'type':a55i(0x217),'name':a55i(0x213),'description':a55i(0x1c7)}],'exits':[{'direction':a55i(0x1c9),'targetRoom':a55i(0x23a)},{'direction':a55i(0x1f3),'targetRoom':a55i(0x225)}]},{'name':a55i(0x225),'description':'A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','roomType':'inside','items':[{'type':a55i(0x1e7),'name':'Empty\x20vial','description':'A\x20clear\x20glass\x20vial.'}],'exits':[{'direction':a55i(0x1d4),'targetRoom':a55i(0x1c8)},{'direction':'north','targetRoom':'Armory'}]},{'name':'Armory','description':a55i(0x1f2),'roomType':a55i(0x1ef),'items':[{'type':'shield','name':a55i(0x226),'description':a55i(0x21c)},{'type':a55i(0x206),'name':'Rusted\x20Sword','description':'An\x20old\x20and\x20rusted\x20sword.'}],'exits':[{'direction':'south','targetRoom':'Alchemy\x20Lab'},{'direction':'east','targetRoom':a55i(0x20e)}]},{'name':a55i(0x20e),'description':a55i(0x203),'roomType':a55i(0x1ef),'exits':[{'direction':a55i(0x1d4),'targetRoom':a55i(0x219)},{'direction':a55i(0x1c9),'targetRoom':a55i(0x23a)},{'direction':a55i(0x1e8),'targetRoom':'Torture\x20Chamber'},{'direction':a55i(0x1f3),'targetRoom':a55i(0x228)}]},{'name':'Torture\x20Chamber','description':a55i(0x211),'roomType':a55i(0x1ef),'items':[{'type':a55i(0x217),'name':a55i(0x201),'description':a55i(0x236)}],'puzzle':{'requiredPhrase':a55i(0x227),'riddle':a55i(0x21e),'rewardItem':{'type':a55i(0x21f),'name':'Ancient\x20Gem','description':a55i(0x239)},'successMessage':a55i(0x20c),'failureMessage':a55i(0x1f8)},'exits':[{'direction':a55i(0x1c9),'targetRoom':a55i(0x20e)}]},{'name':a55i(0x228),'description':a55i(0x1f4),'roomType':'inside','puzzle':{'requiredPhrase':a55i(0x21b),'riddle':a55i(0x1e9),'rewardItem':{'type':a55i(0x1df),'name':a55i(0x224),'description':'A\x20chalice\x20made\x20of\x20pure\x20gold.'},'successMessage':a55i(0x1f6),'failureMessage':a55i(0x205)},'exits':[{'direction':'west','targetRoom':'Central\x20Chamber'}]}];export const shadowrunConfig=[{'name':a55i(0x1d1),'description':a55i(0x1d0),'isStartRoom':!![],'roomType':a55i(0x1ef),'exits':[{'direction':a55i(0x1e8),'targetRoom':a55i(0x20f)},{'direction':'up','targetRoom':a55i(0x20b)}]},{'name':a55i(0x20b),'description':a55i(0x1c3),'roomType':'inside','puzzle':{'requiredPhrase':a55i(0x1eb),'riddle':a55i(0x1fb),'rewardItem':{'type':'key','name':'Encrypted\x20Data\x20Key','description':a55i(0x20a)},'successMessage':a55i(0x230),'failureMessage':a55i(0x222)},'exits':[{'direction':a55i(0x218),'targetRoom':a55i(0x1d1)}]},{'name':'Downtown\x20Seattle','description':a55i(0x1f9),'roomType':'outside','exits':[{'direction':a55i(0x1c9),'targetRoom':a55i(0x1d1)},{'direction':a55i(0x1f3),'targetRoom':a55i(0x22c)},{'direction':'west','targetRoom':a55i(0x1cb)}]},{'name':a55i(0x22c),'description':'The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','roomType':a55i(0x1cf),'puzzle':{'requiredPhrase':a55i(0x234),'riddle':a55i(0x208),'rewardItem':{'type':a55i(0x217),'name':a55i(0x1da),'description':'A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.'},'successMessage':'The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','failureMessage':a55i(0x207)},'exits':[{'direction':a55i(0x1d4),'targetRoom':a55i(0x20f)},{'direction':a55i(0x1e8),'targetRoom':a55i(0x21a)}]},{'name':a55i(0x1cb),'description':a55i(0x220),'roomType':a55i(0x1ef),'items':[{'type':a55i(0x1d3),'name':a55i(0x21d),'description':'A\x20creditstick\x20loaded\x20with\x20nuyen.'},{'type':a55i(0x212),'name':a55i(0x1fd),'description':a55i(0x202)}],'exits':[{'direction':a55i(0x1f3),'targetRoom':a55i(0x20f)}]},{'name':a55i(0x21a),'description':a55i(0x1fc),'roomType':'outside','items':[{'type':a55i(0x1d6),'name':'Ares\x20Predator','description':a55i(0x1dd)}],'exits':[{'direction':a55i(0x1c9),'targetRoom':a55i(0x22c)},{'direction':a55i(0x1e8),'targetRoom':a55i(0x238)},{'direction':'east','targetRoom':a55i(0x1ea)}]},{'name':a55i(0x238),'description':a55i(0x215),'roomType':a55i(0x1ef),'puzzle':{'requiredPhrase':a55i(0x1f1),'riddle':a55i(0x1d7),'rewardItem':{'type':a55i(0x237),'name':a55i(0x1ee),'description':a55i(0x1f5)},'successMessage':a55i(0x216),'failureMessage':a55i(0x1de)},'exits':[{'direction':a55i(0x1c9),'targetRoom':a55i(0x21a)}]},{'name':a55i(0x1ea),'description':a55i(0x1f0),'roomType':'inside','items':[{'type':a55i(0x1dc),'name':a55i(0x22d),'description':'A\x20small\x20surveillance\x20drone.'}],'exits':[{'direction':a55i(0x1d4),'targetRoom':a55i(0x21a)}]}];
@@ -1 +1 @@
1
- var a56i=a56d;(function(a,b){var f=a56d,c=a();while(!![]){try{var d=parseInt(f(0x9b))/0x1*(-parseInt(f(0xa1))/0x2)+parseInt(f(0x90))/0x3*(-parseInt(f(0xb1))/0x4)+parseInt(f(0xa0))/0x5*(parseInt(f(0xaa))/0x6)+-parseInt(f(0x8d))/0x7+parseInt(f(0x9d))/0x8*(-parseInt(f(0xa9))/0x9)+parseInt(f(0x86))/0xa*(-parseInt(f(0x87))/0xb)+-parseInt(f(0x8f))/0xc*(-parseInt(f(0x9e))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0x5b6f2));var a56b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a56d;if(c){var e=c[g(0x96)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a56a=a56b(this,function(){var h=a56d;return a56a[h(0x91)]()[h(0x92)](h(0x8a))['toString']()[h(0xa5)](a56a)[h(0x92)](h(0x8a));});a56a();import{EventEmitter}from'events';export class AbstractScene{[a56i(0xa4)];[a56i(0xaf)];[a56i(0x97)];[a56i(0xae)];}export class AbstractRoom extends EventEmitter{['name'];[a56i(0x94)];[a56i(0xac)];[a56i(0x95)];[a56i(0x99)];[a56i(0x8c)];['isStartRoom'];}export class AbstractDoor{['roomA'];[a56i(0xa3)];[a56i(0x9f)];[a56i(0x89)];['name'];[a56i(0x97)];[a56i(0x98)];}export class AbstractInventory{[a56i(0xa8)];[a56i(0x97)];}export class AbstractItem{[a56i(0x88)];[a56i(0xb2)];[a56i(0x94)];[a56i(0xb3)];[a56i(0xad)];[a56i(0x93)];[a56i(0x9a)];[a56i(0xa2)];[a56i(0xa6)];['weight'];}export class AbstractPlayer{[a56i(0xb0)];[a56i(0xa7)];[a56i(0x8e)];[a56i(0x9c)];[a56i(0x8b)];['_logger'];}export class AbstractPuzzle{['logger'];[a56i(0xab)];}function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0x86;var f=c[d];return f;},a56d(a,b);}function a56c(){var j=['inventory','apply','logger','isLockable','puzzle','color','612263BtJNYQ','_equipment','1308472VtuIGp','33903701dpdyLo','isLocked','5jnfFit','2gnEATj','texture','roomB','rooms','constructor','rating','_currentLocation','items','36UofzFU','3473400xsGVWp','solved','exits','category','characterLocations','player','_playerName','4GWHjvG','name','size','1510OaEEXv','37510WuzyCJ','uuid','unlockItemOrSolution','(((.+)+)+)+$','_maxCarryingWeight','roomType','4298952VEhJkX','_inventory','12oPVdcR','1250454eRJxSZ','toString','search','shape','description'];a56c=function(){return j;};return a56c();}
1
+ function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0x11e;var f=c[d];return f;},a56d(a,b);}var a56i=a56d;(function(a,b){var f=a56d,c=a();while(!![]){try{var d=-parseInt(f(0x129))/0x1+-parseInt(f(0x12a))/0x2+-parseInt(f(0x132))/0x3+parseInt(f(0x12d))/0x4+parseInt(f(0x13b))/0x5*(parseInt(f(0x137))/0x6)+parseInt(f(0x136))/0x7+parseInt(f(0x122))/0x8*(-parseInt(f(0x12f))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0x8b829));var a56b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a56d;if(c){var e=c[g(0x11f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a56a=a56b(this,function(){var h=a56d;return a56a[h(0x139)]()[h(0x123)](h(0x145))['toString']()[h(0x142)](a56a)[h(0x123)](h(0x145));});a56a();import{EventEmitter}from'events';export class AbstractScene{[a56i(0x124)];['player'];[a56i(0x130)];[a56i(0x141)];}function a56c(){var j=['apply','_playerName','description','31336VrPuME','search','rooms','_maxCarryingWeight','size','items','texture','615371DaFPys','427296VMNAtU','color','unlockItemOrSolution','3618524OYZLtq','weight','351kAAUjl','logger','category','1297008yigdIW','uuid','_currentLocation','isLocked','1952153zJALru','4812246NtDKtq','name','toString','rating','5hEEXcl','isLockable','exits','solved','puzzle','roomA','characterLocations','constructor','roomType','inventory','(((.+)+)+)+$','_equipment'];a56c=function(){return j;};return a56c();}export class AbstractRoom extends EventEmitter{[a56i(0x138)];[a56i(0x121)];[a56i(0x13d)];[a56i(0x144)];[a56i(0x13f)];[a56i(0x143)];['isStartRoom'];}export class AbstractDoor{[a56i(0x140)];['roomB'];[a56i(0x135)];[a56i(0x12c)];[a56i(0x138)];[a56i(0x130)];[a56i(0x13c)];}export class AbstractInventory{[a56i(0x127)];[a56i(0x130)];}export class AbstractItem{[a56i(0x133)];[a56i(0x138)];[a56i(0x121)];[a56i(0x126)];[a56i(0x131)];['shape'];[a56i(0x12b)];[a56i(0x128)];[a56i(0x13a)];[a56i(0x12e)];}export class AbstractPlayer{[a56i(0x120)];[a56i(0x134)];['_inventory'];[a56i(0x11e)];[a56i(0x125)];['_logger'];}export class AbstractPuzzle{[a56i(0x130)];[a56i(0x13e)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a57d,c=a();while(!![]){try{var d=-parseInt(k(0x170))/0x1+-parseInt(k(0x162))/0x2*(parseInt(k(0x128))/0x3)+-parseInt(k(0x118))/0x4+-parseInt(k(0x134))/0x5+parseInt(k(0x11a))/0x6+-parseInt(k(0x131))/0x7*(-parseInt(k(0x172))/0x8)+parseInt(k(0x169))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x34cdb));export var Size;(function(a){var l=a57d;a[l(0x11b)]=l(0x132),a[l(0x12e)]='small',a['Medium']='medium',a['Large']=l(0x136),a[l(0x130)]=l(0x13d);}(Size||(Size={})));export var Rating;(function(a){var m=a57d;a['Common']=m(0x126),a[m(0x116)]=m(0x145),a['Legendary']=m(0x14c);}(Rating||(Rating={})));export var Category;(function(a){var n=a57d;a[n(0x167)]=n(0x135),a['Shield']=n(0x168),a['Key']=n(0x16e),a[n(0x165)]=n(0x16c),a[n(0x174)]=n(0x125),a[n(0x13a)]=n(0x13f),a[n(0x117)]=n(0x143),a[n(0x12b)]=n(0x129),a[n(0x13b)]='arm\x20armor',a['BodyArmor']=n(0x159),a[n(0x150)]='book',a['Cup']=n(0x14f),a[n(0x151)]=n(0x164);}(Category||(Category={})));export var Shape;function a57c(){var u=['large','DOWN','inside','Rectangle','Hat','ArmArmor','Rough','very\x20large','Metallic','hat','INSIDE','forest','fuzzy','boots','Purple','rare','cave','UNDERGROUND','underground','Square','square','smooth','legendary','Blue','NORTH','cup','Book','Unknown','Blade','Rifle','yellow','east','Yellow','orange','EAST','body\x20armor','Bumpy','desert','mountain','triangle','metallic','grey','BEACH','rough','4yCijJy','toString','unknown','Gloves','blue','Weapon','shield','4916709SXySoo','Green','WEST','gloves','west','key','outside','53240zXvUCI','red','8072vOZfLv','circle','Helmet','(((.+)+)+)+$','Rare','Boots','626792fBkzHg','OUTSIDE','1180866owVnCI','Tiny','search','blade','Red','down','bumpy','gold','green','tower','rifle','helmet','common','rectangle','353802TLmMfA','leg\x20armor','DESERT','LegArmor','SEA','Orange','Small','MOUNTAIN','VeryLarge','245Ksqoze','tiny','south','581690clAffF','weapon'];a57c=function(){return u;};return a57c();}(function(a){var o=a57d;a['Circle']=o(0x173),a[o(0x149)]=o(0x14a),a['Triangle']=o(0x15d),a[o(0x139)]=o(0x127),a[o(0x152)]=o(0x11d),a[o(0x153)]=o(0x124);}(Shape||(Shape={})));export var Color;(function(a){var p=a57d;a[p(0x11e)]=p(0x171),a[p(0x14d)]=p(0x166),a[p(0x16a)]=p(0x122),a[p(0x156)]=p(0x154),a[p(0x12d)]=p(0x157),a[p(0x144)]='purple',a['Grey']=p(0x15f),a['Brown']='brown',a['Gold']=p(0x121);}(Color||(Color={})));export var Texture;(function(a){var q=a57d;a['Smooth']=q(0x14b),a[q(0x13c)]=q(0x161),a[q(0x15a)]=q(0x120),a['Fuzzy']=q(0x142),a['Grainy']='grainy',a[q(0x13e)]=q(0x15e);}(Texture||(Texture={})));export var RoomType;(function(a){var r=a57d;a[r(0x140)]=r(0x138),a[r(0x119)]=r(0x16f),a[r(0x147)]=r(0x148),a['CAVE']=r(0x146),a['TOWER']=r(0x123),a['FOREST']=r(0x141),a[r(0x12a)]=r(0x15b),a[r(0x12f)]=r(0x15c),a[r(0x160)]='beach',a[r(0x12c)]='sea';}(RoomType||(RoomType={})));export var Direction;function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x116;var f=c[d];return f;},a57d(a,b);}(function(c){var t=a57d,d=(function(){var f=!![];return function(g,h){var i=f?function(){if(h){var j=h['apply'](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var s=a57d;return e[s(0x163)]()[s(0x11c)]('(((.+)+)+)+$')[s(0x163)]()['constructor'](e)[s(0x11c)](s(0x175));});e(),c[t(0x14e)]='north',c[t(0x158)]=t(0x155),c['SOUTH']=t(0x133),c[t(0x16b)]=t(0x16d),c['UP']='up',c[t(0x137)]=t(0x11f);}(Direction||(Direction={})));
1
+ (function(a,b){var k=a57d,c=a();while(!![]){try{var d=parseInt(k(0x1ce))/0x1*(parseInt(k(0x1a7))/0x2)+-parseInt(k(0x198))/0x3*(parseInt(k(0x19c))/0x4)+-parseInt(k(0x169))/0x5+parseInt(k(0x179))/0x6+parseInt(k(0x187))/0x7+parseInt(k(0x1ab))/0x8*(parseInt(k(0x16b))/0x9)+parseInt(k(0x1b5))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0xe9d77));export var Size;(function(a){var l=a57d;a[l(0x1bf)]=l(0x1a0),a[l(0x17a)]=l(0x1ba),a[l(0x17f)]='medium',a[l(0x162)]=l(0x19f),a[l(0x1a5)]=l(0x163);}(Size||(Size={})));export var Rating;(function(a){var m=a57d;a[m(0x178)]=m(0x167),a[m(0x164)]='rare',a[m(0x17b)]=m(0x16f);}(Rating||(Rating={})));export var Category;function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x162;var f=c[d];return f;},a57d(a,b);}(function(a){var n=a57d;a['Weapon']=n(0x1c5),a[n(0x199)]=n(0x1b8),a[n(0x192)]=n(0x1b0),a[n(0x1bc)]='gloves',a[n(0x195)]='helmet',a[n(0x18a)]='hat',a[n(0x196)]=n(0x1a8),a[n(0x1c7)]=n(0x1b4),a[n(0x1a1)]=n(0x1b6),a[n(0x19d)]=n(0x1a3),a[n(0x182)]=n(0x1be),a[n(0x16a)]=n(0x186),a[n(0x1ca)]=n(0x1ad);}(Category||(Category={})));export var Shape;(function(a){var o=a57d;a[o(0x189)]=o(0x168),a[o(0x175)]=o(0x1c9),a[o(0x171)]=o(0x197),a[o(0x1b2)]=o(0x185),a['Blade']=o(0x191),a[o(0x1c2)]=o(0x16c);}(Shape||(Shape={})));export var Color;(function(c){var r=a57d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var p=a57d;if(h){var j=h[p(0x17e)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var q=a57d;return e[q(0x194)]()[q(0x18b)](q(0x19b))['toString']()[q(0x1cc)](e)['search'](q(0x19b));});e(),c[r(0x180)]=r(0x1c4),c['Blue']=r(0x18d),c[r(0x1cb)]='green',c[r(0x193)]='yellow',c['Orange']='orange',c[r(0x1b9)]=r(0x1a2),c[r(0x1cd)]=r(0x16d),c['Brown']=r(0x1b3),c[r(0x165)]=r(0x173);}(Color||(Color={})));export var Texture;(function(a){var s=a57d;a[s(0x174)]='smooth',a[s(0x1af)]=s(0x18f),a[s(0x18e)]=s(0x176),a['Fuzzy']=s(0x1c8),a[s(0x19e)]='grainy',a['Metallic']=s(0x1aa);}(Texture||(Texture={})));function a57c(){var v=['7492GSbUEz','BodyArmor','Grainy','large','tiny','ArmArmor','purple','body\x20armor','underground','VeryLarge','TOWER','446gQCPSY','boots','sea','metallic','1137464PhhPYZ','east','unknown','outside','Rough','key','SOUTH','Rectangle','brown','leg\x20armor','14255170QggVXx','arm\x20armor','tower','shield','Purple','small','MOUNTAIN','Gloves','desert','book','Tiny','forest','BEACH','Rifle','EAST','red','weapon','UNDERGROUND','LegArmor','fuzzy','square','Unknown','Green','constructor','Grey','580ZcfWHM','Large','very\x20large','Rare','Gold','OUTSIDE','common','circle','5548645LPfxZE','Cup','9LZTKJT','rifle','grey','inside','legendary','north','Triangle','CAVE','gold','Smooth','Square','bumpy','INSIDE','Common','3031776WbULzw','Small','Legendary','cave','SEA','apply','Medium','Red','beach','Book','WEST','DOWN','rectangle','cup','7814604cQaqls','DESERT','Circle','Hat','search','south','blue','Bumpy','rough','mountain','blade','Key','Yellow','toString','Helmet','Boots','triangle','2004ZZqPqE','Shield','west','(((.+)+)+)+$'];a57c=function(){return v;};return a57c();}export var RoomType;(function(a){var t=a57d;a[t(0x177)]=t(0x16e),a[t(0x166)]=t(0x1ae),a[t(0x1c6)]=t(0x1a4),a[t(0x172)]=t(0x17c),a[t(0x1a6)]=t(0x1b7),a['FOREST']=t(0x1c0),a[t(0x188)]=t(0x1bd),a[t(0x1bb)]=t(0x190),a[t(0x1c1)]=t(0x181),a[t(0x17d)]=t(0x1a9);}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a57d;a['NORTH']=u(0x170),a[u(0x1c3)]=u(0x1ac),a[u(0x1b1)]=u(0x18c),a[u(0x183)]=u(0x19a),a['UP']='up',a[u(0x184)]='down';}(Direction||(Direction={})));
@@ -1 +1 @@
1
- (function(a,b){var f=a58d,c=a();while(!![]){try{var d=-parseInt(f(0x1cf))/0x1+parseInt(f(0x1d0))/0x2+-parseInt(f(0x1c9))/0x3*(-parseInt(f(0x1d3))/0x4)+-parseInt(f(0x1d2))/0x5*(-parseInt(f(0x1ca))/0x6)+parseInt(f(0x1cb))/0x7*(-parseInt(f(0x1cc))/0x8)+parseInt(f(0x1d1))/0x9+-parseInt(f(0x1ce))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x60972));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x1cd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x1d7)]()[h(0x1d4)]('(((.+)+)+)+$')[h(0x1d7)]()[h(0x1d5)](a58a)[h(0x1d4)](h(0x1d6));});a58a();function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x1c9;var f=c[d];return f;},a58d(a,b);}function a58c(){var i=['466530xANUqX','22354lwHOHQ','98044qvShbU','2387709fNUyla','95afZWiT','27252HOdDQT','search','constructor','(((.+)+)+)+$','toString','87zwShQa','217644WKemgc','35FcdDzt','1178344euStFQ','apply'];a58c=function(){return i;};return a58c();}export{};
1
+ (function(a,b){var f=a58d,c=a();while(!![]){try{var d=-parseInt(f(0x18c))/0x1*(-parseInt(f(0x17f))/0x2)+-parseInt(f(0x182))/0x3+parseInt(f(0x185))/0x4*(parseInt(f(0x186))/0x5)+parseInt(f(0x18a))/0x6*(parseInt(f(0x181))/0x7)+parseInt(f(0x188))/0x8*(parseInt(f(0x184))/0x9)+parseInt(f(0x18f))/0xa+parseInt(f(0x18b))/0xb*(-parseInt(f(0x189))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0xbe13f));function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x17f;var f=c[d];return f;},a58d(a,b);}var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x18d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x180)]()['search'](h(0x187))[h(0x180)]()[h(0x18e)](a58a)[h(0x183)](h(0x187));});a58a();function a58c(){var i=['toString','7WhLXdl','2657556HeaRJz','search','467955kYhlvQ','1056416TFLQHA','5lBlNIf','(((.+)+)+)+$','136rkmlHo','1368NnpAoO','6916386bMQzsV','211277LxcxdW','138332DgTRBL','apply','constructor','1699390CoueVT','20FtQfcE'];a58c=function(){return i;};return a58c();}export{};
@@ -1 +1 @@
1
- (function(a,b){var f=a59d,c=a();while(!![]){try{var d=-parseInt(f(0x1c6))/0x1*(-parseInt(f(0x1bf))/0x2)+parseInt(f(0x1c8))/0x3+-parseInt(f(0x1ca))/0x4+parseInt(f(0x1c3))/0x5*(parseInt(f(0x1c4))/0x6)+-parseInt(f(0x1c2))/0x7+-parseInt(f(0x1c0))/0x8+parseInt(f(0x1cb))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xab3fc));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1bf;var f=c[d];return f;},a59d(a,b);}var a59b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a59d;if(c){var e=c[g(0x1c9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a59a=a59b(this,function(){var h=a59d;return a59a['toString']()[h(0x1c7)](h(0x1c1))[h(0x1c5)]()['constructor'](a59a)[h(0x1c7)](h(0x1c1));});function a59c(){var i=['1852251wuvLHf','apply','3753996SFueRJ','996867gXNnkr','18896txlkZT','9211480GPMOvV','(((.+)+)+)+$','595140ivvvxm','10eVoCgM','4120422LLosNO','toString','82QMdVpZ','search'];a59c=function(){return i;};return a59c();}a59a();export{};
1
+ function a59c(){var i=['(((.+)+)+)+$','search','2weTjOS','444xLAiaQ','5101032vfsOxB','apply','9288qDGlgO','26920cBEUDD','98946pNZsaA','constructor','152887oXIXMa','48680SaQYoK','3037326KzRcce','toString','8149743pdCcyx'];a59c=function(){return i;};return a59c();}(function(a,b){var f=a59d,c=a();while(!![]){try{var d=parseInt(f(0x10a))/0x1+-parseInt(f(0x111))/0x2*(-parseInt(f(0x108))/0x3)+parseInt(f(0x112))/0x4*(-parseInt(f(0x10b))/0x5)+parseInt(f(0x10c))/0x6+-parseInt(f(0x10e))/0x7+-parseInt(f(0x113))/0x8+parseInt(f(0x115))/0x9*(parseInt(f(0x107))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x8f78c));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x107;var f=c[d];return f;},a59d(a,b);}var a59b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a59d;if(c){var e=c[g(0x114)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a59a=a59b(this,function(){var h=a59d;return a59a[h(0x10d)]()[h(0x110)](h(0x10f))[h(0x10d)]()[h(0x109)](a59a)['search'](h(0x10f));});a59a();export{};
@@ -1 +1 @@
1
- const a60G=a60d;(function(a,b){const y=a60d,c=a();while(!![]){try{const d=-parseInt(y(0x1a6))/0x1+parseInt(y(0x1a4))/0x2+parseInt(y(0x170))/0x3+parseInt(y(0x1be))/0x4+parseInt(y(0x1c3))/0x5*(-parseInt(y(0x194))/0x6)+-parseInt(y(0x1a8))/0x7*(-parseInt(y(0x19d))/0x8)+-parseInt(y(0x16a))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x42bd1));import a60e from'blessed';import{capitalCase}from'change-case';import a60f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x16a;let f=c[d];return f;},a60d(a,b);}function a60c(){const H=['Right\x20Hand:\x20','arms','key','1525923QETWVP','removeAllListeners','10%','handleInput','log','yellow','616773gpdlNh','join','Gloves:\x20','mousemove','\x20Map\x20','Arms:\x20','90%','\x0aThere\x20are\x20no\x20exits\x20here.','player','exits','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','constructor','unlock','enter','getInstance','legs','getWelcomeMessage','Torso:\x20','screen','25%','pushLine','feet','write','Available\x20exits\x20will\x20be\x20shown\x20here...','\x20(Locked)','gloves','forEach','size','(((.+)+)+)+$','cyan','100%','\x20(Unlocked)','----->>>>>>\x20Initializing\x20Game','lock','split','Currently\x20in:\x20','114ZthGkI','<<<<<<<<---------\x20Terminating\x20game','C-c','equip','argv','append','line','map','slice','8CKrhie','name','toString','Head:\x20','parse','roomType','torso','486442NBXjoK','getOtherSide','532018YMCxrM','70%','3640168Kpfbjl','focus','head','inventory','textbox','75%','leftHand','escape','search','Side\x20Quest\x20Adventure\x20Game','equipment','45%','rightHand','Left\x20Hand:\x20','\x20Equipment\x20','render','exit','setContent','getAllItems','checkIfLockable','Thanks\x20for\x20playing!','scroll','1217104kbRBXO','Feet:\x20','logFilePath','None','box','78470AUnkDI','white','logBox','OUTSIDE'];a60c=function(){return H;};return a60c();}import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const A=a60d,f=(function(){let h=!![];return function(i,j){const k=h?function(){if(j){const l=j['apply'](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const z=a60d;return g['toString']()[z(0x1b0)](z(0x18c))[z(0x19f)]()[z(0x17b)](g)['search'](z(0x18c));});g();try{const h=a60e[A(0x182)]({'smartCSR':!![],'title':A(0x1b1)}),i=a60e[A(0x1c2)]({'top':'0%','left':A(0x1ad),'width':A(0x183),'height':A(0x1b3),'border':{'type':'line'},'label':'\x20Inventory\x20','content':'Your\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x16f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const B=A,u=t[B(0x1ba)]()[B(0x19b)](v=>v['name']);i[B(0x1b9)](u[B(0x171)]('\x0a')),h[B(0x1b7)]();};h['append'](i);const k=a60e[A(0x1c2)]({'top':A(0x1b3),'left':A(0x1ad),'width':A(0x183),'height':A(0x183),'border':{'type':A(0x19a)},'label':A(0x1b6),'content':A(0x17a),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x16f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const C=A;k[C(0x1b9)](C(0x1a0)+(t[C(0x1aa)]?t[C(0x1aa)][C(0x19e)]:C(0x1c1))+'\x0a'+(C(0x181)+(t[C(0x1a3)]?t[C(0x1a3)][C(0x19e)]:C(0x1c1))+'\x0a')+('Legs:\x20'+(t[C(0x17f)]?t['legs'][C(0x19e)]:C(0x1c1))+'\x0a')+(C(0x1bf)+(t[C(0x185)]?t[C(0x185)][C(0x19e)]:C(0x1c1))+'\x0a')+(C(0x175)+(t['arms']?t[C(0x1c8)][C(0x19e)]:'None')+'\x0a')+(C(0x172)+(t[C(0x189)]?t[C(0x189)]['name']:C(0x1c1))+'\x0a')+(C(0x1b5)+(t['leftHand']?t[C(0x1ae)][C(0x19e)]:C(0x1c1))+'\x0a')+(C(0x1c7)+(t[C(0x1b4)]?t[C(0x1b4)][C(0x19e)]:C(0x1c1))+'\x0a')),h['render']();},m=a60e['box']({'top':A(0x1a7),'left':A(0x1ad),'width':'25%','height':'20%','border':{'type':A(0x19a)},'label':A(0x174),'content':A(0x187),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x16f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](m);const n=t=>{const D=A;let u=D(0x193)+t['name']+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t[D(0x179)][D(0x18b)]>0x0?t[D(0x179)][D(0x18a)]((v,w)=>{const E=D;if(v instanceof Door){const x=v[E(0x1a5)](t);x[E(0x1a2)]===RoomType[E(0x1c6)]?u+=capitalCase(w)+':\x20'+x[E(0x19e)]:u+=capitalCase(w)+':\x20'+v['name'];if(v['checkIfLocked']())u+=E(0x188);else v[E(0x1bb)]()&&(u+=E(0x18f));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=D(0x177),m[D(0x1b9)](u),h[D(0x1b7)]();},o=a60e[A(0x1c2)]({'id':A(0x1c5),'top':'0%','left':'0%','width':A(0x1ad),'height':A(0x176),'border':{'type':A(0x19a)},'label':'\x20Game\x20Log\x20','scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x16f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[A(0x16b)](A(0x173)),h['append'](o);const p=a60e[A(0x1ac)]({'bottom':0x0,'left':0x0,'width':A(0x18e),'height':A(0x16c),'tags':!![],'border':{'type':A(0x19a)},'style':{'fg':A(0x1c4),'border':{'fg':A(0x18d)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[A(0x199)](p),h[A(0x1c9)]([A(0x1af),A(0x196)],()=>process[A(0x1b8)](0x0)),p[A(0x1a9)](),h[A(0x1b7)]();const q=Logger[A(0x17e)](e[A(0x1c0)],h),r=new Player({'playerName':c});q[A(0x186)](A(0x190));const s=a60f[A(0x17e)](r,d);o[A(0x1b9)](s[A(0x180)]()),l(s[A(0x178)][A(0x1b2)]),j(s[A(0x178)][A(0x1ab)]),n(s['player']['currentLocation']),p[A(0x1c9)]([A(0x17d)],async()=>{const F=A,t=p['getValue'](),u=s[F(0x16d)](t);(t[F(0x192)]('\x20')[0x0]==='take'||F(0x197)||'unequip')&&(j(s[F(0x178)][F(0x1ab)]),l(s['player'][F(0x1b2)])),(t[F(0x192)]('\x20')[0x0]==='go'||F(0x191)||F(0x17c))&&n(s[F(0x178)]['currentLocation']),t[F(0x192)]('\x20')[0x0]==='clear'&&o[F(0x1b9)](''),u===null&&(console[F(0x16e)](F(0x1bc)),h[F(0x1b7)](),q[F(0x186)](F(0x195)),process['exit'](0x0)),o[F(0x184)](u),o[F(0x1bd)](0x1),p['clearValue'](),p['focus'](),h[F(0x1b7)]();});}catch(t){console[A(0x16e)](t),process['exit'](0x1);}}const args=process[a60G(0x198)][a60G(0x19c)](0x2);main(args[0x0],JSON[a60G(0x1a1)](args[0x1]),JSON[a60G(0x1a1)](args[0x2]));
1
+ const a60H=a60d;(function(a,b){const y=a60d,c=a();while(!![]){try{const d=-parseInt(y(0x98))/0x1*(parseInt(y(0xad))/0x2)+-parseInt(y(0x9f))/0x3*(parseInt(y(0x82))/0x4)+-parseInt(y(0x97))/0x5*(-parseInt(y(0xab))/0x6)+parseInt(y(0xa1))/0x7+parseInt(y(0x73))/0x8*(parseInt(y(0x70))/0x9)+-parseInt(y(0x85))/0xa+parseInt(y(0x6e))/0xb*(-parseInt(y(0x83))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xcaa60));import a60e from'blessed';import{capitalCase}from'change-case';import a60f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';function a60c(){const I=['write','9340709YjLwpw','\x20Map\x20','Arms:\x20','100%','getWelcomeMessage','\x20Inventory\x20','toString','None','roomType','lock','6cdwMVr','cyan','2tfjMgE','Legs:\x20','Gloves:\x20','Your\x20items\x20will\x20be\x20listed\x20here...','logBox','feet','\x20Equipment\x20','20%','checkIfLocked','45%','getOtherSide','exit','<<<<<<<<---------\x20Terminating\x20game','focus','scroll','C-c','slice','take','90%','(((.+)+)+)+$','gloves','screen','removeAllListeners','getInstance','handleInput','size','constructor','inventory','log','25%','Feet:\x20','checkIfLockable','append','36520bzoeUO','equipment','14589xtYGBG','Torso:\x20','split','4544HhOTkc','10%','currentLocation','key','75%','escape','Head:\x20','argv','OUTSIDE','yellow','-----\x20Exits\x20------\x0a','clearValue','mousemove','parse','getValue','44WGlTXo','6948nRzSCu','line','620380IgECeg','Available\x20exits\x20will\x20be\x20shown\x20here...','setContent','legs','torso','\x20Game\x20Log\x20','white','equip','render','----->>>>>>\x20Initializing\x20Game','exits','forEach','apply','\x20(Unlocked)','\x20(Locked)','head','pushLine','Right\x20Hand:\x20','7659130ttnXSw','62523qbCQxO','search','clear','leftHand','name','player','enter','248196WyJaEZ'];a60c=function(){return I;};return a60c();}import{Door}from'./models/door.js';function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x64;let f=c[d];return f;},a60d(a,b);}import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a60d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a60d;if(j){const l=j[z(0x91)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a60d;return g[A(0xa7)]()[A(0x99)](A(0xc0))[A(0xa7)]()[A(0x67)](g)[A(0x99)]('(((.+)+)+)+$');});g();try{const h=a60e[B(0xc2)]({'smartCSR':!![],'title':'Side\x20Quest\x20Adventure\x20Game'}),i=a60e['box']({'top':'0%','left':B(0x77),'width':'25%','height':B(0xb6),'border':{'type':'line'},'label':B(0xa6),'content':B(0xb0),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x7c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t['getAllItems']()['map'](v=>v['name']);i['setContent'](u['join']('\x0a')),h[C(0x8d)]();};h[B(0x6d)](i);const k=a60e['box']({'top':B(0xb6),'left':B(0x77),'width':'25%','height':'25%','border':{'type':B(0x84)},'label':B(0xb3),'content':'Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x7c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x6d)](k);const l=t=>{const D=B;k['setContent'](D(0x79)+(t[D(0x94)]?t['head'][D(0x9c)]:'None')+'\x0a'+(D(0x71)+(t['torso']?t[D(0x89)][D(0x9c)]:D(0xa8))+'\x0a')+(D(0xae)+(t[D(0x88)]?t['legs'][D(0x9c)]:D(0xa8))+'\x0a')+(D(0x6b)+(t[D(0xb2)]?t[D(0xb2)][D(0x9c)]:D(0xa8))+'\x0a')+(D(0xa3)+(t['arms']?t['arms'][D(0x9c)]:D(0xa8))+'\x0a')+(D(0xaf)+(t[D(0xc1)]?t[D(0xc1)][D(0x9c)]:D(0xa8))+'\x0a')+('Left\x20Hand:\x20'+(t[D(0x9b)]?t['leftHand'][D(0x9c)]:D(0xa8))+'\x0a')+(D(0x96)+(t['rightHand']?t['rightHand'][D(0x9c)]:D(0xa8))+'\x0a')),h['render']();},m=a60e['box']({'top':'70%','left':B(0x77),'width':B(0x6a),'height':B(0xb4),'border':{'type':B(0x84)},'label':B(0xa2),'content':B(0x86),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x7c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x6d)](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t[E(0x9c)]+'\x0a\x0a';u+=E(0x7d),t[E(0x8f)][E(0x66)]>0x0?t[E(0x8f)][E(0x90)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0xb7)](t);x[F(0xa9)]===RoomType[F(0x7b)]?u+=capitalCase(w)+':\x20'+x[F(0x9c)]:u+=capitalCase(w)+':\x20'+v[F(0x9c)];if(v[F(0xb5)]())u+=F(0x93);else v[F(0x6c)]()&&(u+=F(0x92));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+='\x0aThere\x20are\x20no\x20exits\x20here.',m['setContent'](u),h[E(0x8d)]();},o=a60e['box']({'id':B(0xb1),'top':'0%','left':'0%','width':B(0x77),'height':B(0xbf),'border':{'type':B(0x84)},'label':B(0x8a),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x7c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0xc3)](B(0x7f)),h[B(0x6d)](o);const p=a60e['textbox']({'bottom':0x0,'left':0x0,'width':B(0xa4),'height':B(0x74),'tags':!![],'border':{'type':B(0x84)},'style':{'fg':B(0x8b),'border':{'fg':B(0xac)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0x76)]([B(0x78),B(0xbc)],()=>process['exit'](0x0)),p[B(0xba)](),h['render']();const q=Logger[B(0x64)](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0xa0)](B(0x8e));const s=a60f[B(0x64)](r,d);o[B(0x87)](s[B(0xa5)]()),l(s[B(0x9d)][B(0x6f)]),j(s[B(0x9d)][B(0x68)]),n(s[B(0x9d)][B(0x75)]),p[B(0x76)]([B(0x9e)],async()=>{const G=B,t=p[G(0x81)](),u=s[G(0x65)](t);(t[G(0x72)]('\x20')[0x0]===G(0xbe)||G(0x8c)||'unequip')&&(j(s[G(0x9d)]['inventory']),l(s[G(0x9d)][G(0x6f)])),(t['split']('\x20')[0x0]==='go'||G(0xaa)||'unlock')&&n(s[G(0x9d)][G(0x75)]),t[G(0x72)]('\x20')[0x0]===G(0x9a)&&o[G(0x87)](''),u===null&&(console[G(0x69)]('Thanks\x20for\x20playing!'),h[G(0x8d)](),q['write'](G(0xb9)),process[G(0xb8)](0x0)),o[G(0x95)](u),o[G(0xbb)](0x1),p[G(0x7e)](),p['focus'](),h[G(0x8d)]();});}catch(t){console['log'](t),process['exit'](0x1);}}const args=process[a60H(0x7a)][a60H(0xbd)](0x2);main(args[0x0],JSON[a60H(0x80)](args[0x1]),JSON[a60H(0x80)](args[0x2]));
@@ -1 +1 @@
1
- const a61j=a61d;function a61c(){const r=['writeFileSync','dirname','homedir','logBox','9171AcaUBA','toString','mkdirSync','1464aCkWxb','setContent','instance','11XSqNBh','filePath','scrollTo','options','ensureLogFileExists','318938ItQXXS','.maka','join','toISOString','12220570sysCLz','appendFileSync','9fxqkLU','850904rtgbBF','(((.+)+)+)+$','screen','1962838SAnyBt','content','682314eTVSRo','[INFO]\x20[','10GwUZAr','children','getScrollHeight','existsSync','side-quest.log','error','The\x20logbox\x20','log','[ERROR]\x20[','194565kNzXOp','write','search','render'];a61c=function(){return r;};return a61c();}(function(a,b){const h=a61d,c=a();while(!![]){try{const d=-parseInt(h(0x1fc))/0x1+parseInt(h(0x206))/0x2+parseInt(h(0x202))/0x3*(-parseInt(h(0x203))/0x4)+parseInt(h(0x20a))/0x5*(-parseInt(h(0x208))/0x6)+parseInt(h(0x213))/0x7+parseInt(h(0x1f4))/0x8*(-parseInt(h(0x1f1))/0x9)+parseInt(h(0x200))/0xa*(parseInt(h(0x1f7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xd2050));const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const i=a61d;return a61a[i(0x1f2)]()['search']('(((.+)+)+)+$')[i(0x1f2)]()['constructor'](a61a)[i(0x215)](i(0x204));});a61a();import a61e from'fs';import a61f from'os';import a61g from'path';function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x1f1;let f=c[d];return f;},a61d(a,b);}const homeDir=a61f[a61j(0x219)]();export class Logger{static [a61j(0x1f6)];[a61j(0x1f8)];[a61j(0x205)];constructor(a,b){const k=a61j;this[k(0x1f8)]=a,this[k(0x205)]=b,this[k(0x1fb)]();}static['getInstance'](a=a61g[a61j(0x1fe)](homeDir,a61j(0x1fd),a61j(0x20e)),b){const l=a61j;if(!Logger['instance']){if(!b)throw new Error('Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.');Logger[l(0x1f6)]=new Logger(a,b);}return Logger['instance'];}['ensureLogFileExists'](){const m=a61j,a=a61g[m(0x218)](this[m(0x1f8)]);!a61e['existsSync'](a)&&a61e[m(0x1f3)](a,{'recursive':!![]}),!a61e[m(0x20d)](this['filePath'])&&a61e[m(0x217)](this[m(0x1f8)],'');}[a61j(0x214)](a){const n=a61j,b=new Date()[n(0x1ff)](),c=n(0x209)+b+']\x20'+a+'\x0a';a61e[n(0x201)](this[n(0x1f8)],c);}['error'](a){const o=a61j,b=new Date()[o(0x1ff)](),c=o(0x212)+b+']\x20'+a+'\x0a';a61e[o(0x201)](this['filePath'],c);}[a61j(0x211)](a){const p=a61j,b=this[p(0x205)]?.[p(0x20b)]['find'](c=>c['type']==='box'&&c[p(0x1fa)]['id']===p(0x21a));b?(b[p(0x1f5)](b[p(0x207)]+'\x0a'+a),b[p(0x1f9)](b[p(0x20c)]()),this['screen']?.[p(0x216)]()):this[p(0x20f)](p(0x210)+b+'\x20could\x20not\x20be\x20found\x20on\x20screen\x20'+this[p(0x205)]),this[p(0x214)](a);}['hasScreen'](){const q=a61j;return!!this[q(0x205)];}}
1
+ const a61k=a61d;(function(a,b){const h=a61d,c=a();while(!![]){try{const d=parseInt(h(0xc6))/0x1+parseInt(h(0xb1))/0x2+-parseInt(h(0xa9))/0x3*(-parseInt(h(0xba))/0x4)+-parseInt(h(0xcb))/0x5+-parseInt(h(0xb5))/0x6+-parseInt(h(0xc8))/0x7+parseInt(h(0xcd))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x84469));function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0xa6;let f=c[d];return f;},a61d(a,b);}const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a61d;if(c){const e=c[i(0xb6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const j=a61d;return a61a[j(0xa6)]()[j(0xc4)](j(0xb0))[j(0xa6)]()[j(0xab)](a61a)[j(0xc4)](j(0xb0));});a61a();import a61e from'fs';import a61f from'os';import a61g from'path';const homeDir=a61f[a61k(0xbf)]();function a61c(){const s=['constructor','render','writeFileSync','log','logBox','(((.+)+)+)+$','842448vADQvP','toISOString','[ERROR]\x20[','dirname','4513170yQFMZr','apply','existsSync','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','[INFO]\x20[','1220eYRMJy','error','scrollTo','instance','appendFileSync','homedir','type','write','children','The\x20logbox\x20','search','box','1027545qQrlIg','ensureLogFileExists','4605867hOxOfS','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','screen','4816625ZTUpjE','filePath','8345544uCdDNB','toString','mkdirSync','options','4164kuOSbT','join'];a61c=function(){return s;};return a61c();}export class Logger{static [a61k(0xbd)];['filePath'];[a61k(0xca)];constructor(a,b){const l=a61k;this[l(0xcc)]=a,this[l(0xca)]=b,this[l(0xc7)]();}static['getInstance'](a=a61g[a61k(0xaa)](homeDir,'.maka','side-quest.log'),b){const m=a61k;if(!Logger[m(0xbd)]){if(!b)throw new Error(m(0xc9));Logger['instance']=new Logger(a,b);}return Logger['instance'];}[a61k(0xc7)](){const n=a61k,a=a61g[n(0xb4)](this[n(0xcc)]);!a61e['existsSync'](a)&&a61e[n(0xa7)](a,{'recursive':!![]}),!a61e[n(0xb7)](this[n(0xcc)])&&a61e[n(0xad)](this[n(0xcc)],'');}[a61k(0xc1)](a){const o=a61k,b=new Date()['toISOString'](),c=o(0xb9)+b+']\x20'+a+'\x0a';a61e[o(0xbe)](this['filePath'],c);}['error'](a){const p=a61k,b=new Date()[p(0xb2)](),c=p(0xb3)+b+']\x20'+a+'\x0a';a61e[p(0xbe)](this[p(0xcc)],c);}[a61k(0xae)](a){const q=a61k,b=this[q(0xca)]?.[q(0xc2)]['find'](c=>c[q(0xc0)]===q(0xc5)&&c[q(0xa8)]['id']===q(0xaf));b?(b['setContent'](b['content']+'\x0a'+a),b[q(0xbc)](b['getScrollHeight']()),this[q(0xca)]?.[q(0xac)]()):this[q(0xbb)](q(0xc3)+b+q(0xb8)+this[q(0xca)]),this[q(0xc1)](a);}['hasScreen'](){const r=a61k;return!!this[r(0xca)];}}
@@ -1 +1 @@
1
- const a62n=a62d;(function(a,b){const k=a62d,c=a();while(!![]){try{const d=-parseInt(k(0x18f))/0x1+parseInt(k(0x177))/0x2*(parseInt(k(0x171))/0x3)+-parseInt(k(0x17e))/0x4+-parseInt(k(0x190))/0x5*(-parseInt(k(0x182))/0x6)+-parseInt(k(0x176))/0x7*(parseInt(k(0x178))/0x8)+-parseInt(k(0x18d))/0x9*(-parseInt(k(0x174))/0xa)+-parseInt(k(0x17b))/0xb*(-parseInt(k(0x185))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x66487));function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x171;let f=c[d];return f;},a62d(a,b);}const a62b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a62d;if(c){const e=c[l(0x187)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){const m=a62d;return a62a[m(0x17c)]()[m(0x18c)](m(0x194))[m(0x17c)]()['constructor'](a62a)['search'](m(0x194));});a62a();import a62e from'path';function a62c(){const q=['fsi','log','6TRqzOV','create','Play\x20a\x20little\x20side-quest','1332mGEUaL','resolve','apply','maka\x20play:side-quest','dungeon','options','exit','search','87426UVGllJ','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','120941SuOPnc','2330435Sxjhga','list','ask','getGlobalMakaDir','(((.+)+)+)+$','66903NOkWGV','node','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','710NhgKnZ','What\x20is\x20your\x20name?','1365kpNNcF','4iIDGmz','28216gVMOme','inherit','join','49258RjFWlJ','toString','player','1879136EkxCqF','Thanks\x20for\x20playing!'];a62c=function(){return q;};return a62c();}import{spawn}from'child_process';import a62f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename);Command[a62n(0x183)]({'name':'side-quest','usage':a62n(0x188),'shortDesc':a62n(0x184),'aliases':['sq'],'description':a62n(0x18e),'validOpts':[a62n(0x17d)]},async function(a,b){const o=a62n;try{const c=this[o(0x180)][o(0x193)](),d=a62e[o(0x17a)](c,'side-quest.log'),e=b['player']?b['player']:await Actions[o(0x192)](o(0x175))||'Commoner',f={...b,'logFilePath':d},g={'type':o(0x191),'name':'sideQuestAnswer','message':o(0x173),'choices':[{'name':o(0x189),'value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x18a)](g);if(e&&h){const i=spawn(o(0x172),[a62e[o(0x186)](__dirname,'./sideQuest/ui.js'),e,JSON['stringify'](h),JSON['stringify'](f)],{'stdio':o(0x179)});i['on'](o(0x18b),()=>{const p=o;console[p(0x181)](p(0x17f));});}}catch(j){console['log'](j);}},a62f);
1
+ const a62n=a62d;(function(a,b){const k=a62d,c=a();while(!![]){try{const d=parseInt(k(0x1e2))/0x1+parseInt(k(0x1cd))/0x2+parseInt(k(0x1d9))/0x3+-parseInt(k(0x1e7))/0x4*(-parseInt(k(0x1e3))/0x5)+-parseInt(k(0x1f1))/0x6+parseInt(k(0x1d3))/0x7*(-parseInt(k(0x1d6))/0x8)+-parseInt(k(0x1db))/0x9*(-parseInt(k(0x1df))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x43350));const a62b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a62d;if(c){const e=c[l(0x1e5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){const m=a62d;return a62a[m(0x1d4)]()['search'](m(0x1cf))['toString']()[m(0x1eb)](a62a)[m(0x1ce)]('(((.+)+)+)+$');});a62a();import a62e from'path';import{spawn}from'child_process';function a62c(){const q=['sideQuestAnswer','233103GgoSam','./sideQuest/ui.js','9PoQXpb','options','url','join','268220FYSymR','resolve','shadowrun','321984msZURz','754745sSgqkI','What\x20is\x20your\x20name?','apply','inherit','12dCxkWx','node','getGlobalMakaDir','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','constructor','player','stringify','fsi','ask','maka\x20play:side-quest','2926248EjQiID','824670ArQoLU','search','(((.+)+)+)+$','list','Commoner','exit','889DWzlBz','toString','dungeon','33304FhqJeG','Thanks\x20for\x20playing!'];a62c=function(){return q;};return a62c();}import a62f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1cd;let f=c[d];return f;},a62d(a,b);}const __filename=fileURLToPath(import.meta[a62n(0x1dd)]),__dirname=dirname(__filename);Command['create']({'name':'side-quest','usage':a62n(0x1f0),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a62n(0x1ea),'validOpts':[a62n(0x1ec)]},async function(a,b){const o=a62n;try{const c=this[o(0x1ee)][o(0x1e9)](),d=a62e[o(0x1de)](c,'side-quest.log'),e=b[o(0x1ec)]?b[o(0x1ec)]:await Actions[o(0x1ef)](o(0x1e4))||o(0x1d1),f={...b,'logFilePath':d},g={'type':o(0x1d0),'name':o(0x1d8),'message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':o(0x1d5),'value':dungeonConfig},{'name':o(0x1e1),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1dc)](g);if(e&&h){const i=spawn(o(0x1e8),[a62e[o(0x1e0)](__dirname,o(0x1da)),e,JSON[o(0x1ed)](h),JSON[o(0x1ed)](f)],{'stdio':o(0x1e6)});i['on'](o(0x1d2),()=>{const p=o;console['log'](p(0x1d7));});}}catch(j){console['log'](j);}},a62f);
@@ -1 +1 @@
1
- function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0xd2;var f=c[d];return f;},a63d(a,b);}var a63i=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0xd2))/0x1+-parseInt(f(0xdd))/0x2+-parseInt(f(0xdc))/0x3+parseInt(f(0xdf))/0x4*(-parseInt(f(0xdb))/0x5)+-parseInt(f(0xe0))/0x6+parseInt(f(0xd8))/0x7*(parseInt(f(0xd4))/0x8)+parseInt(f(0xd3))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0xab02c));var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0xe2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a[h(0xe1)]()['search']('(((.+)+)+)+$')['toString']()[h(0xde)](a63a)['search'](h(0xd5));});a63a();import a63e from'./play.command.js';function a63c(){var k=['constructor','202892BrGMwJ','5693130dQkkjK','toString','apply','319068sUJxGJ','19671138acWoup','103272XQdSox','(((.+)+)+)+$','npx\x20command-line-snake','inherit','672mauUMz','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','create','55rgAImV','2275869yYjKpL','1556246BeYGwT'];a63c=function(){return k;};return a63c();}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a63i(0xda)]({'name':'snake','usage':'maka\x20game:snake','shortDesc':a63i(0xd9),'validOpts':[]},async function(){var j=a63i;execSync(j(0xd6),{'stdio':j(0xd7)});},a63e);
1
+ var a63i=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0xd7))/0x1*(parseInt(f(0xd8))/0x2)+parseInt(f(0xd3))/0x3+-parseInt(f(0xd6))/0x4*(-parseInt(f(0xdb))/0x5)+parseInt(f(0xcf))/0x6*(parseInt(f(0xce))/0x7)+parseInt(f(0xde))/0x8*(parseInt(f(0xe2))/0x9)+-parseInt(f(0xdf))/0xa*(parseInt(f(0xd0))/0xb)+-parseInt(f(0xd9))/0xc*(parseInt(f(0xd5))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x5f07e));function a63c(){var k=['6GGixTz','33pWHFmt','create','(((.+)+)+)+$','1742490nMekGw','inherit','444197tbafRu','5496BahddS','1eQpnwO','376294OeFHog','636lgrRal','apply','1645dNzqIX','toString','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','162824WqJkEy','131260DKorEB','snake','search','171fCHAhb','npx\x20command-line-snake','4422957vShlzi'];a63c=function(){return k;};return a63c();}var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0xda)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a[h(0xdc)]()[h(0xe1)](h(0xd2))[h(0xdc)]()['constructor'](a63a)[h(0xe1)]('(((.+)+)+)+$');});a63a();function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0xcd;var f=c[d];return f;},a63d(a,b);}import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a63i(0xd1)]({'name':a63i(0xe0),'usage':'maka\x20game:snake','shortDesc':a63i(0xdd),'validOpts':[]},async function(){var j=a63i;execSync(j(0xcd),{'stdio':j(0xd4)});},a63e);
@@ -1 +1 @@
1
- var a64i=a64d;(function(a,b){var f=a64d,c=a();while(!![]){try{var d=parseInt(f(0x1b8))/0x1+parseInt(f(0x1bb))/0x2*(-parseInt(f(0x1c5))/0x3)+parseInt(f(0x1c1))/0x4+parseInt(f(0x1c8))/0x5*(parseInt(f(0x1ca))/0x6)+-parseInt(f(0x1ba))/0x7+parseInt(f(0x1c6))/0x8+-parseInt(f(0x1c2))/0x9*(parseInt(f(0x1b7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x6d8d2));var a64b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a64d;if(c){var e=c[g(0x1c7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){var h=a64d;return a64a[h(0x1b9)]()[h(0x1c3)](h(0x1c0))[h(0x1b9)]()[h(0x1bc)](a64a)['search']('(((.+)+)+)+$');});a64a();function a64c(){var k=['5829159FovqcB','56454Fsuxms','constructor','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','maka\x20game:tetris','create','(((.+)+)+)+$','3535588CxpAPQ','36siSXqV','search','tetris','3ttEeuD','2405648sFjbWq','apply','35oivEpH','inherit','43884yBVhiG','679130yenMtR','345537VWUuKm','toString'];a64c=function(){return k;};return a64c();}function a64d(a,b){var c=a64c();return a64d=function(d,e){d=d-0x1b7;var f=c[d];return f;},a64d(a,b);}import a64e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a64i(0x1bf)]({'name':a64i(0x1c4),'usage':a64i(0x1be),'shortDesc':a64i(0x1bd),'validOpts':[]},async function(){var j=a64i;execSync('npx\x20simple-tetris',{'stdio':j(0x1c9)});},a64e);
1
+ function a64c(){var k=['apply','24JBnhqf','search','419415OiPLta','1232922cNErll','179585LJHEtx','154555XELYNk','toString','96egspmD','(((.+)+)+)+$','maka\x20game:tetris','1URSLBY','3157608YxAxqY','create','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','npx\x20simple-tetris','tetris','603YCBYUl','21195559uZHThx','inherit','constructor','120550xIyXag'];a64c=function(){return k;};return a64c();}var a64i=a64d;(function(a,b){var f=a64d,c=a();while(!![]){try{var d=parseInt(f(0x1be))/0x1*(-parseInt(f(0x1b7))/0x2)+parseInt(f(0x1b6))/0x3*(parseInt(f(0x1b4))/0x4)+parseInt(f(0x1b9))/0x5*(-parseInt(f(0x1bb))/0x6)+parseInt(f(0x1b8))/0x7+-parseInt(f(0x1bf))/0x8+parseInt(f(0x1c4))/0x9*(-parseInt(f(0x1b2))/0xa)+parseInt(f(0x1c5))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x74aeb));var a64b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a64d;if(c){var e=c[g(0x1b3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){var h=a64d;return a64a[h(0x1ba)]()[h(0x1b5)](h(0x1bc))['toString']()[h(0x1c7)](a64a)[h(0x1b5)](h(0x1bc));});a64a();import a64e from'./play.command.js';function a64d(a,b){var c=a64c();return a64d=function(d,e){d=d-0x1b2;var f=c[d];return f;},a64d(a,b);}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a64i(0x1c0)]({'name':a64i(0x1c3),'usage':a64i(0x1bd),'shortDesc':a64i(0x1c1),'validOpts':[]},async function(){var j=a64i;execSync(j(0x1c2),{'stdio':j(0x1c6)});},a64e);
@@ -1 +1 @@
1
- const a66i=a66d;(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0xb7))/0x1*(parseInt(f(0xbb))/0x2)+parseInt(f(0xb1))/0x3+-parseInt(f(0xb6))/0x4+parseInt(f(0xbf))/0x5*(-parseInt(f(0xb9))/0x6)+-parseInt(f(0xb3))/0x7*(-parseInt(f(0xbd))/0x8)+parseInt(f(0xb5))/0x9+-parseInt(f(0xc4))/0xa*(-parseInt(f(0xbe))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xb8ca5));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a[h(0xc7)]()['search'](h(0xb2))['toString']()['constructor'](a66a)[h(0xc3)](h(0xb2));});a66a();import{Command}from'../command.js';function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0xb1;let f=c[d];return f;},a66d(a,b);}import a66e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';function a66c(){const k=['130PZSxbt','maka\x20g:dbc\x20geoserver\x20--type=pgsql','processAndRunGenerator','toString','apply','3125502RHbPfT','(((.+)+)+)+$','65121zhPvIv','exit','6967935KqRBBh','1469112XcjLRR','1RkrAib','error','6BZNzVk','maka\x20g:scaffold\x20todos','2044358USyjeo','splice','440AUIVgE','1024705KYuxip','6961855KxIIJJ','maka\x20{generate,\x20g}:<generator>\x20<name>','invoke','maka\x20g:template\x20todos/todo_item','search'];a66c=function(){return k;};return a66c();}Command['create']({'name':'generate','aliases':['g'],'usage':a66i(0xc0),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':'\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','examples':['maka\x20generate:scaffold\x20todos',a66i(0xba),a66i(0xc2),'maka\x20g:package\x20package:name','maka\x20g:route\x20todos/edit','maka\x20g:api\x20trucks',a66i(0xc5)]},async function(a,b){const j=a66i;try{const c=a[0x0];c?(a[j(0xbc)](0x0,0x1),await a66e[j(0xc6)](c,a,b)):a66e[j(0xc1)](a,b);}catch(d){Log[j(0xb8)](d),process[j(0xb4)](0x1);}});
1
+ const a66h=a66d;function a66c(){const j=['31132lBhsym','generate','10suHdiw','40oyOcbr','processAndRunGenerator','(((.+)+)+)+$','maka\x20generate:scaffold\x20todos','71132ZMQbmb','144bHDgVN','28JXgDxW','maka\x20g:api\x20trucks','toString','Scaffold\x20various\x20parts\x20of\x20your\x20application','208434VBZnvW','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','create','maka\x20g:package\x20package:name','65HEVivH','constructor','maka\x20{generate,\x20g}:<generator>\x20<name>','456327dAQaiC','search','5547113SnHDGg','816717XdBJov'];a66c=function(){return j;};return a66c();}(function(a,b){const f=a66d,c=a();while(!![]){try{const d=parseInt(f(0x1c4))/0x1+-parseInt(f(0x1b4))/0x2+parseInt(f(0x1c3))/0x3+parseInt(f(0x1b3))/0x4*(parseInt(f(0x1bd))/0x5)+-parseInt(f(0x1b9))/0x6*(parseInt(f(0x1b5))/0x7)+-parseInt(f(0x1c7))/0x8*(-parseInt(f(0x1c0))/0x9)+parseInt(f(0x1c6))/0xa*(-parseInt(f(0x1c2))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x23572));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const g=a66d;return a66a[g(0x1b7)]()[g(0x1c1)](g(0x1b1))[g(0x1b7)]()[g(0x1be)](a66a)['search'](g(0x1b1));});function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x1b0;let f=c[d];return f;},a66d(a,b);}a66a();import{Command}from'../command.js';import a66e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command[a66h(0x1bb)]({'name':a66h(0x1c5),'aliases':['g'],'usage':a66h(0x1bf),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a66h(0x1b8),'description':a66h(0x1ba),'examples':[a66h(0x1b2),'maka\x20g:scaffold\x20todos','maka\x20g:template\x20todos/todo_item',a66h(0x1bc),'maka\x20g:route\x20todos/edit',a66h(0x1b6),'maka\x20g:dbc\x20geoserver\x20--type=pgsql']},async function(a,b){const i=a66h;try{const c=a[0x0];c?(a['splice'](0x0,0x1),await a66e[i(0x1b0)](c,a,b)):a66e['invoke'](a,b);}catch(d){Log['error'](d),process['exit'](0x1);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a71d,c=a();while(!![]){try{var d=-parseInt(f(0x73))/0x1+-parseInt(f(0x69))/0x2*(parseInt(f(0x71))/0x3)+-parseInt(f(0x67))/0x4+-parseInt(f(0x6d))/0x5+parseInt(f(0x6c))/0x6*(parseInt(f(0x70))/0x7)+-parseInt(f(0x68))/0x8*(-parseInt(f(0x6a))/0x9)+-parseInt(f(0x74))/0xa*(-parseInt(f(0x6b))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x326b6));var a71b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){var g=a71d;return a71a[g(0x6f)]()[g(0x72)](g(0x6e))[g(0x6f)]()[g(0x75)](a71a)[g(0x72)](g(0x6e));});a71a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';function a71d(a,b){var c=a71c();return a71d=function(d,e){d=d-0x67;var f=c[d];return f;},a71d(a,b);}function a71c(){var h=['89290DtzXfg','(((.+)+)+)+$','toString','549451rAfaiM','3TappFM','search','290500xUZAtq','20FUPaJN','constructor','1169684dXFlBP','16jBQfuH','192912oShPWc','570393GXjGRw','2114937kMUMdw','30UMNLKT'];a71c=function(){return h;};return a71c();}
1
+ (function(a,b){var f=a71d,c=a();while(!![]){try{var d=-parseInt(f(0x1f8))/0x1*(-parseInt(f(0x1fc))/0x2)+parseInt(f(0x1fe))/0x3+-parseInt(f(0x1fb))/0x4*(-parseInt(f(0x1f9))/0x5)+-parseInt(f(0x201))/0x6+-parseInt(f(0x1fa))/0x7*(-parseInt(f(0x1f4))/0x8)+parseInt(f(0x1fd))/0x9+-parseInt(f(0x1f7))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x7528f));var a71b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a71d;if(c){var e=c[g(0x1f5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){var h=a71d;return a71a['toString']()['search'](h(0x1f6))[h(0x200)]()[h(0x1ff)](a71a)[h(0x1f3)](h(0x1f6));});a71a();import'./get.command.js';function a71c(){var i=['3352083wgsuhx','894228JBjZBZ','2oorhKm','5661936BhTzlQ','2598360WescJP','constructor','toString','5044080wSSaQL','search','8jLyGah','apply','(((.+)+)+)+$','15583730KkztEw','457733ALakJb','10IOBxOK'];a71c=function(){return i;};return a71c();}import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a71d(a,b){var c=a71c();return a71d=function(d,e){d=d-0x1f3;var f=c[d];return f;},a71d(a,b);}import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- function a67c(){const k=['205NzjmaJ','Get\x20various\x20Maka\x20variables\x20and\x20configurations','search','3700692SGyHPI','Sub-Command\x20not\x20found','1348662IUGLAC','105882zOLZGy','9042471ToFEmo','get','2066382aIYknA','15386990mtWCGL','toString','runSubCommand','apply','error','1GYKwtt','(((.+)+)+)+$','3tAEIFy','6742712LoWcHP'];a67c=function(){return k;};return a67c();}const a67i=a67d;function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x1c9;let f=c[d];return f;},a67d(a,b);}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x1ce))/0x1*(-parseInt(f(0x1db))/0x2)+parseInt(f(0x1d0))/0x3*(-parseInt(f(0x1d5))/0x4)+parseInt(f(0x1d2))/0x5*(-parseInt(f(0x1d8))/0x6)+-parseInt(f(0x1d7))/0x7+parseInt(f(0x1d1))/0x8+-parseInt(f(0x1d9))/0x9+parseInt(f(0x1c9))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x8ad44));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x1cc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x1ca)]()[h(0x1d4)](h(0x1cf))[h(0x1ca)]()['constructor'](a67a)[h(0x1d4)](h(0x1cf));});a67a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command['create']({'name':a67i(0x1da),'usage':'maka\x20get:<sub-command>','shortDesc':a67i(0x1d3),'validOpts':[]},async function(a,b){const j=a67i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0x1cb)](c,a,b);else{Log[j(0x1cd)](j(0x1d6));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ const a67h=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x125))/0x1+-parseInt(f(0x12c))/0x2*(parseInt(f(0x122))/0x3)+-parseInt(f(0x12b))/0x4*(-parseInt(f(0x12a))/0x5)+-parseInt(f(0x123))/0x6+-parseInt(f(0x12d))/0x7+-parseInt(f(0x131))/0x8+parseInt(f(0x12f))/0x9*(parseInt(f(0x134))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x8d086));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const g=a67d;return a67a[g(0x129)]()['search'](g(0x133))[g(0x129)]()['constructor'](a67a)[g(0x126)]('(((.+)+)+)+$');});a67a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x122;let f=c[d];return f;},a67d(a,b);}import{UsageErrorWithSubs}from'../../error.js';function a67c(){const j=['863228LAPbzx','search','get','Get\x20various\x20Maka\x20variables\x20and\x20configurations','toString','1100815cNmbfR','4RuxkmY','4598ajNPjk','4509029TkQbgx','runSubCommand','45NJJPXJ','Sub-Command\x20not\x20found','6325192NPuyeo','error','(((.+)+)+)+$','7467720xMfnFF','1074sYVcra','1531722HTtEXJ','maka\x20get:<sub-command>'];a67c=function(){return j;};return a67c();}const GetCommand=Command['create']({'name':a67h(0x127),'usage':a67h(0x124),'shortDesc':a67h(0x128),'validOpts':[]},async function(a,b){const i=a67h,c=a[0x0],d=this['findSubCommand'](c);if(d)this[i(0x12e)](c,a,b);else{Log[i(0x132)](i(0x130));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a68i=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x17d))/0x1+parseInt(f(0x17e))/0x2+parseInt(f(0x16d))/0x3*(-parseInt(f(0x176))/0x4)+-parseInt(f(0x16f))/0x5+parseInt(f(0x178))/0x6*(-parseInt(f(0x173))/0x7)+parseInt(f(0x17c))/0x8*(-parseInt(f(0x17b))/0x9)+parseInt(f(0x179))/0xa*(parseInt(f(0x175))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xc6da3));function a68c(){const k=['1857856QoDkIt','getGlobalConfig','exit','search','(((.+)+)+)+$','log','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','3GqBEih','create','5662360Ulrace','maka\x20get:global-config','constructor','fsi','26033lydSFg','global-config','33gbsZZj','4724116EyMiyM','apply','2202matwca','19286600PdgkiI','error','63AkEeoj','998616aVWFNi','1348246XgIIef'];a68c=function(){return k;};return a68c();}const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a68d;if(c){const e=c[g(0x177)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const h=a68d;return a68a['toString']()[h(0x181)](h(0x182))['toString']()[h(0x171)](a68a)[h(0x181)]('(((.+)+)+)+$');});a68a();import a68e from'./get.command.js';import{Command}from'../../command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x16d;let f=c[d];return f;},a68d(a,b);}Command[a68i(0x16e)]({'name':a68i(0x174),'usage':a68i(0x170),'aliases':['gc'],'shortDesc':a68i(0x184),'validOpts':[]},async function(){const j=a68i;try{const a=await this[j(0x172)][j(0x17f)]();console[j(0x183)](a),process['exit'](0x0);}catch(b){console[j(0x17a)](b),process[j(0x180)](0x0);}},a68e);
1
+ function a68c(){const k=['214345WRDGed','218364xrRlzL','constructor','5164144VgHjOX','maka\x20get:global-config','918481vnmpZQ','14jnshaX','7515410yutwcF','search','global-config','316YyCveT','34305AkGFCD','(((.+)+)+)+$','create','686512GvMbPh','error','toString','fsi','9oNVkZJ','exit','apply'];a68c=function(){return k;};return a68c();}const a68i=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=parseInt(f(0x79))/0x1+parseInt(f(0x82))/0x2+parseInt(f(0x7f))/0x3*(-parseInt(f(0x7e))/0x4)+-parseInt(f(0x74))/0x5+-parseInt(f(0x75))/0x6*(-parseInt(f(0x7a))/0x7)+-parseInt(f(0x77))/0x8*(parseInt(f(0x71))/0x9)+parseInt(f(0x7b))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x78aea));const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a68d;if(c){const e=c[g(0x73)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const h=a68d;return a68a[h(0x84)]()['search'](h(0x80))['toString']()[h(0x76)](a68a)[h(0x7c)](h(0x80));});a68a();import a68e from'./get.command.js';import{Command}from'../../command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x71;let f=c[d];return f;},a68d(a,b);}Command[a68i(0x81)]({'name':a68i(0x7d),'usage':a68i(0x78),'aliases':['gc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','validOpts':[]},async function(){const j=a68i;try{const a=await this[j(0x85)]['getGlobalConfig']();console['log'](a),process[j(0x72)](0x0);}catch(b){console[j(0x83)](b),process[j(0x72)](0x0);}},a68e);
@@ -1 +1 @@
1
- const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0x18c))/0x1*(parseInt(f(0x189))/0x2)+-parseInt(f(0x18a))/0x3+parseInt(f(0x190))/0x4*(-parseInt(f(0x187))/0x5)+-parseInt(f(0x192))/0x6*(-parseInt(f(0x18e))/0x7)+-parseInt(f(0x188))/0x8+-parseInt(f(0x18f))/0x9*(parseInt(f(0x193))/0xa)+parseInt(f(0x181))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x67647));function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x181;let f=c[d];return f;},a69d(a,b);}const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x186)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x185)]()[h(0x191)]('(((.+)+)+)+$')['toString']()[h(0x194)](a69a)[h(0x191)]('(((.+)+)+)+$');});a69a();function a69c(){const k=['apply','235mlTBnS','1230328aKwhvY','3862UvLxDF','2188467XvsAZl','local-config','167mdlXWO','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','7pCnpXd','22185HToBjN','11732pHMWGW','search','1655130JoJvzo','1010Eozejp','constructor','12047849TWIOQF','fsi','log','maka\x20get:local-config','toString'];a69c=function(){return k;};return a69c();}import a69e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a69i(0x18b),'usage':a69i(0x184),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a69i(0x18d),'validOpts':[]},async function(){const j=a69i,a=await this[j(0x182)]['getMakaProjectConfig']();console[j(0x183)](a);},a69e);
1
+ const a69h=a69d;function a69c(){const j=['28514PKAqza','local-config','5Koqcip','988712CPAXFM','search','1284324wGAocO','log','(((.+)+)+)+$','constructor','fsi','toString','5870096ZxeZcj','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','maka\x20get:local-config','188275HyqWLA','9oXtSpJ','3179376QhtlcH','971936VwBSYn'];a69c=function(){return j;};return a69c();}function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x1f4;let f=c[d];return f;},a69d(a,b);}(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0x1f6))/0x1*(-parseInt(f(0x1f4))/0x2)+parseInt(f(0x1f9))/0x3+-parseInt(f(0x1f7))/0x4+-parseInt(f(0x202))/0x5+-parseInt(f(0x204))/0x6+-parseInt(f(0x205))/0x7+parseInt(f(0x1ff))/0x8*(parseInt(f(0x203))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x4441a));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const g=a69d;return a69a['toString']()[g(0x1f8)](g(0x1fb))[g(0x1fe)]()[g(0x1fc)](a69a)[g(0x1f8)](g(0x1fb));});a69a();import a69e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a69h(0x1f5),'usage':a69h(0x201),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a69h(0x200),'validOpts':[]},async function(){const i=a69h,a=await this[i(0x1fd)]['getMakaProjectConfig']();console[i(0x1fa)](a);},a69e);
@@ -1 +1 @@
1
- const a70i=a70d;function a70c(){const k=['authToken','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','whoami','user','toString','207456aaZaPV','21JIRRuG','token','133190YUARAh','830900gWewIu','roles','45676dCMjGU','hash','863856ltThuQ','search','50987dRDFVJ','exit','notice','getGlobalConfig','27ytKJaR','(((.+)+)+)+$','error','decode','User\x20Access\x20Token:\x20\x20','1491858JmCIFF','5FRkEwD','userId','fsi','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','join','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','constructor','create'];a70c=function(){return k;};return a70c();}(function(a,b){const g=a70d,c=a();while(!![]){try{const d=-parseInt(g(0x138))/0x1+parseInt(g(0x155))/0x2*(parseInt(g(0x13c))/0x3)+parseInt(g(0x153))/0x4*(-parseInt(g(0x142))/0x5)+-parseInt(g(0x14f))/0x6*(-parseInt(g(0x150))/0x7)+-parseInt(g(0x157))/0x8+parseInt(g(0x141))/0x9+parseInt(g(0x152))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x1db39));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x14e)]()['search'](h(0x13d))[h(0x14e)]()[h(0x148)](a70a)[h(0x158)](h(0x13d));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a70f from'jsonwebtoken';function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x138;let f=c[d];return f;},a70d(a,b);}Command[a70i(0x149)]({'name':a70i(0x14c),'usage':'maka\x20get:whoami','shortDesc':a70i(0x147),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x144)][j(0x13b)]();if(a[j(0x156)]){const b=a70f[j(0x13f)](a[j(0x156)]);Log[j(0x13a)]('User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[j(0x14d)]),Log[j(0x13a)](j(0x145)+a[j(0x151)]?.[j(0x143)]),Log[j(0x13a)](j(0x140)+a[j(0x151)]?.[j(0x14a)]),Log['notice'](j(0x14b)+b?.[j(0x154)][j(0x146)](',\x20'));}}catch(c){console[j(0x13e)](c),process[j(0x139)](0x0);}},a70e);
1
+ const a70j=a70d;function a70c(){const l=['error','24YZBwEv','hash','join','userId','toString','18PNwAey','25064mgfZWf','getGlobalConfig','3215cKoTcG','maka\x20get:whoami','214610bLNOiu','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','notice','roles','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','78RAYske','4504HJktwN','(((.+)+)+)+$','70QUlogH','257067ftoCjM','57euMnhr','410949AWBmlJ','decode','token','User\x20Access\x20Token:\x20\x20','search','whoami','constructor','3467136liVFAA','create','apply'];a70c=function(){return l;};return a70c();}(function(a,b){const g=a70d,c=a();while(!![]){try{const d=parseInt(g(0x7e))/0x1*(-parseInt(g(0x7d))/0x2)+-parseInt(g(0x82))/0x3*(-parseInt(g(0x94))/0x4)+-parseInt(g(0x96))/0x5*(-parseInt(g(0x93))/0x6)+-parseInt(g(0x83))/0x7+parseInt(g(0x8e))/0x8*(parseInt(g(0x81))/0x9)+parseInt(g(0x80))/0xa*(-parseInt(g(0x98))/0xb)+parseInt(g(0x8a))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x1e6fb));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a70d;if(c){const e=c[h(0x8c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const i=a70d;return a70a[i(0x92)]()[i(0x87)](i(0x7f))[i(0x92)]()[i(0x89)](a70a)[i(0x87)](i(0x7f));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x7c;let f=c[d];return f;},a70d(a,b);}import a70f from'jsonwebtoken';Command[a70j(0x8b)]({'name':a70j(0x88),'usage':a70j(0x97),'shortDesc':'If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','validOpts':[]},async function(){const k=a70j;try{const a=await this['fsi'][k(0x95)]();if(a['hash']){const b=a70f[k(0x84)](a[k(0x8f)]);Log[k(0x9a)](k(0x7c)+b?.['user']),Log[k(0x9a)](k(0x9c)+a[k(0x85)]?.[k(0x91)]),Log[k(0x9a)](k(0x86)+a[k(0x85)]?.['authToken']),Log[k(0x9a)](k(0x99)+b?.[k(0x9b)][k(0x90)](',\x20'));}}catch(c){console[k(0x8d)](c),process['exit'](0x0);}},a70e);
@@ -1 +1 @@
1
- var a72h=a72d;(function(a,b){var f=a72d,c=a();while(!![]){try{var d=parseInt(f(0x17d))/0x1+-parseInt(f(0x180))/0x2*(parseInt(f(0x17f))/0x3)+parseInt(f(0x188))/0x4*(parseInt(f(0x189))/0x5)+parseInt(f(0x181))/0x6+-parseInt(f(0x18a))/0x7+-parseInt(f(0x187))/0x8*(parseInt(f(0x17e))/0x9)+parseInt(f(0x185))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x4ef83));function a72d(a,b){var c=a72c();return a72d=function(d,e){d=d-0x17c;var f=c[d];return f;},a72d(a,b);}var a72b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){var g=a72d;return a72a[g(0x186)]()['search'](g(0x182))['toString']()[g(0x184)](a72a)[g(0x18b)](g(0x182));});function a72c(){var i=['320440tmlptx','2509335TZVJGe','171fwFzBw','82RwfgRO','189150xSvcDq','(((.+)+)+)+$','help','constructor','4206800HKfqMD','toString','16gVkSWj','12uBXTfn','711160VRzYff','2211405yJUcwo','search','create'];a72c=function(){return i;};return a72c();}a72a();import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a72h(0x17c)]({'name':a72h(0x183),'description':'Try,\x20maka\x20--help','aliases':['h'],'validOpts':[],'shortDesc':'Deprecated:\x20use\x20--help\x20instead'},async function(){throw new UsageError();});
1
+ var a72i=a72d;(function(a,b){var f=a72d,c=a();while(!![]){try{var d=-parseInt(f(0x77))/0x1*(-parseInt(f(0x7f))/0x2)+-parseInt(f(0x78))/0x3*(parseInt(f(0x79))/0x4)+parseInt(f(0x7b))/0x5*(-parseInt(f(0x74))/0x6)+-parseInt(f(0x83))/0x7+parseInt(f(0x7a))/0x8+parseInt(f(0x86))/0x9*(parseInt(f(0x82))/0xa)+-parseInt(f(0x84))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xc682d));var a72b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a72d;if(c){var e=c[g(0x7c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){var h=a72d;return a72a['toString']()[h(0x85)](h(0x76))[h(0x80)]()[h(0x81)](a72a)[h(0x85)](h(0x76));});function a72d(a,b){var c=a72c();return a72d=function(d,e){d=d-0x74;var f=c[d];return f;},a72d(a,b);}a72a();import{Command}from'../command.js';import{UsageError}from'../error.js';function a72c(){var j=['Deprecated:\x20use\x20--help\x20instead','create','508506piaeub','toString','constructor','910wSATRb','2427439cQwbed','192896CgDRny','search','90414pkgJXx','18822UvmkLb','Try,\x20maka\x20--help','(((.+)+)+)+$','3WTpJXs','273SInSeT','10700NwvRiz','335272QEFDRC','475qWBlZs','apply'];a72c=function(){return j;};return a72c();}Command[a72i(0x7e)]({'name':'help','description':a72i(0x75),'aliases':['h'],'validOpts':[],'shortDesc':a72i(0x7d)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a73y=a73d;(function(a,b){const v=a73d,c=a();while(!![]){try{const d=parseInt(v(0xc0))/0x1+parseInt(v(0x76))/0x2+parseInt(v(0xa1))/0x3+parseInt(v(0xa9))/0x4+parseInt(v(0xae))/0x5*(parseInt(v(0x89))/0x6)+parseInt(v(0x7e))/0x7+parseInt(v(0xbb))/0x8*(-parseInt(v(0x73))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xf13c7));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a73d;if(c){const e=c[w(0x7f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const x=a73d;return a73a['toString']()[x(0xb3)](x(0x97))['toString']()[x(0x77)](a73a)['search'](x(0x97));});function a73c(){const C=['export\x20PATH=','extractTarGz','x86_64','NO_NODE_WARNINGS','package-metadata','SHELL','notice','/.bash_profile','Aborting\x20install','https://packages.meteor.com/bootstrap-link?arch=os.','osx','windows','(((.+)+)+)+$','Meteor\x20version\x20','grep','data','Proceed\x20anyway?','meteor.tar.gz','fileContainsString','platform','maka\x20i','getGlobalConfig','3419265icAHLd','RELEASE=','get','meteor','includes','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','Path\x20already\x20set\x20in\x20','maka\x20install','3068132FJMaNb','Setting\x20Path\x20in\x20\x20','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','force','getuid','8384305lNRXbC','linux','error','setPath','isFile','search','maka\x20install\x20meteor','packages','-rf','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','\x20is\x20not\x20available.','join','win32','17357368rdyTsv','&release=','checkAvailability','version','fsi','1719646HLEhbx','Setting\x20Path\x20in\x20','downloadFile','env','success','/.zshrc','Error\x20extracting\x20meteor.tar.gz\x20file','install','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','homedir','cert','Using\x20CA\x20Cert\x20','replace','27ZIGHbs','Cleaning\x20up','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','2712060rzuyDA','constructor','withSpinner','/.bashrc','existsSync','https://install.meteor.com','info','maka\x20install\x20meteor\x20--force','5864537JKNSqf','apply','Path\x20already\x20set\x20in\x20/etc/profile','arm64','keepInstallFile','cacert','.meteor','confirm','string','injectAtEndOfFile','Preparing\x20to\x20install\x20Meteor\x20','6rLzhCY','exit'];a73c=function(){return C;};return a73c();}a73a();function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0x6c;let f=c[d];return f;},a73d(a,b);}import a73e from'os';import a73f from'path';import a73g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a73e[a73y(0x6f)]();function isRoot(){const z=a73y;return process[z(0xad)]&&process[z(0xad)]()===0x0;}Command['create']({'name':a73y(0x6d),'aliases':['i'],'validOpts':[a73y(0xac),'version',a73y(0x83),a73y(0xb1),a73y(0x82)],'usage':a73y(0xa8),'shortDesc':a73y(0xb7),'description':'\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','examples':[a73y(0xb4),a73y(0x7d),'maka\x20install\x20meteor\x20--version\x202.13.3',a73y(0x9f)]},async function(a,b){const A=a73y;try{let c='';if(b[A(0x83)]){if(this[A(0xbf)][A(0xb2)](b[A(0x83)]))Log['notice'](A(0x71)+b['cacert']),c=b[A(0x83)];else throw A(0x6e)+c;}const d=await this[A(0xbf)][A(0xa0)]();if(d[A(0x70)]){if(this['fsi'][A(0xb2)](d[A(0x70)]))c=d[A(0x70)];else throw'CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+c;}let f=![];if(b['f']||b[A(0xac)])f=!![];else{const p=isRoot();p?(Log['warn'](A(0xab)),f=await Actions[A(0x85)](A(0x9b),![])):f=!![];}if(!f)throw'Aborted';const g=process[A(0x9e)]===A(0xba),h=await HTTPS[A(0xa3)]({'url':A(0x7b),'cert':c}),i=await this['fsi'][A(0x99)](h[A(0x9a)],A(0xa2));if(i['length']===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process['env'][A(0x8e)]='1',Log[A(0x91)](A(0x88)+i[0x0][A(0x72)](/[^0-9.]/gi,'')[A(0x72)](/\r?\n|\r/,''));let j=i[0x0][A(0x72)](/[^0-9.]/gi,'')[A(0x72)](/\r?\n|\r/,'');(typeof b['v']===A(0x86)||typeof b[A(0xbe)]===A(0x86))&&(j=b['v']||b[A(0xbe)]);const k={'win32':A(0x96),'darwin':A(0x95),'linux':A(0xaf)},l=A(0x94)+k[a73e[A(0x9e)]()]+'.'+(a73e['arch']()===A(0x81)?'arm64':A(0x8d))+A(0xbc)+j,m=await HTTPS[A(0xbd)]({'url':l,'cert':c});!m&&(Log[A(0xb0)](A(0x98)+j+A(0xb8)),process[A(0x8a)](0x0));const n=a73f['join'](homeDir,A(0x84)),o=async()=>{const B=A,q=B(0x8b)+n+':$PATH';if(process['env']['SHELL']&&process[B(0xc3)][B(0x90)][B(0xa5)]('zsh')){const r=await this[B(0xbf)][B(0x9d)](homeDir+B(0xc5),q);if(!r)Log['info'](B(0xaa)+homeDir+B(0xc5)),this[B(0xbf)][B(0x87)]({'filePath':homeDir+B(0xc5),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xb1)]&&Log[B(0x7c)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0xc5));}else{const s=await this[B(0xbf)][B(0x9d)](homeDir+B(0x79),q);if(!s)Log[B(0x7c)](B(0xc1)+homeDir+B(0x79)),this['fsi'][B(0x87)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xb1)]&&Log[B(0x7c)](B(0xa7)+homeDir+B(0x79));const t=await this['fsi']['fileContainsString'](homeDir+'/.bash_profile',q);if(!t)Log['info']('Setting\x20Path\x20in\x20'+homeDir+B(0x92)),this[B(0xbf)][B(0x87)]({'filePath':homeDir+B(0x92),'content':q+'\x0a','opts':{'verbose':!![]}});else b['setPath']&&Log['info'](B(0xa7)+homeDir+'/.bash_profile');if(isRoot()){const u=await this[B(0xbf)][B(0x9d)]('/etc/profile',q);if(!u)Log[B(0x7c)]('Setting\x20Path\x20in\x20/etc/profile'),this[B(0xbf)][B(0x87)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xb1)]&&Log[B(0x7c)](B(0x80));}}};b[A(0xb1)]&&(await o(),process[A(0x8a)](0x0));if(g)Log['error']('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process['exit'](0x0);else{if(a73g[A(0x7a)](n)){let q=![];b['f']||b[A(0xac)]?q=!![]:q=await Actions['confirm']('Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?',![]),q?(await SpawnAsync[A(0x78)]('rm',['-rf',a73f[A(0xb9)](n,A(0xb5))],{'message':A(0x75)}),await SpawnAsync[A(0x78)]('rm',['-rf',a73f[A(0xb9)](n,A(0x8f))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)'}),await SpawnAsync[A(0x78)]('rm',[A(0xb6),a73f[A(0xb9)](n,A(0xa4))],{'message':A(0xa6)})):(Log[A(0x7c)](A(0x93)),process[A(0x8a)](0x0));}try{await HTTPS[A(0xc2)]({'url':l,'destPath':a73f['join'](homeDir,A(0x9c)),'cert':c});try{const r=a73f[A(0xb9)](homeDir,A(0x9c));await this[A(0xbf)][A(0x8c)](r,homeDir);}catch(s){Log['error'](A(0x6c));}!b['keepInstallFile']&&await SpawnAsync[A(0x78)]('rm',[A(0xb6),a73f[A(0xb9)](homeDir,A(0x9c))],{'message':A(0x74)}),await o();}catch(t){console[A(0xb0)](t),process[A(0x8a)](0x0);}Log[A(0xc4)](A(0x98)+j+'\x20installed.\x0a');}}catch(u){console[A(0xb0)](u),process['exit'](0x0);}});
1
+ const a73y=a73d;(function(a,b){const v=a73d,c=a();while(!![]){try{const d=parseInt(v(0x200))/0x1*(parseInt(v(0x20d))/0x2)+-parseInt(v(0x1dd))/0x3*(parseInt(v(0x1f1))/0x4)+parseInt(v(0x214))/0x5+parseInt(v(0x1da))/0x6+parseInt(v(0x1f9))/0x7+parseInt(v(0x1de))/0x8*(-parseInt(v(0x1f8))/0x9)+-parseInt(v(0x1dc))/0xa*(-parseInt(v(0x1c7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x5ce39));function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0x1c5;let f=c[d];return f;},a73d(a,b);}const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a73d;if(c){const e=c[w(0x212)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const x=a73d;return a73a[x(0x1f5)]()[x(0x1fa)](x(0x1d0))[x(0x1f5)]()[x(0x1db)](a73a)[x(0x1fa)](x(0x1d0));});a73a();import a73e from'os';import a73f from'path';function a73c(){const C=['12ZXEMYK','meteor.tar.gz','exit','length','toString','/.bash_profile','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','149652exkXTx','1452976EaFJdr','search','getuid','Path\x20already\x20set\x20in\x20','Setting\x20Path\x20in\x20','keepInstallFile','version','401vqsCGm','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','RELEASE=','arch','warn','Aborted','win32','NO_NODE_WARNINGS','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','create','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','linux','replace','2386viibcY','install','&release=','fileContainsString','export\x20PATH=','apply','/etc/profile','1096765vsDZpD','get','Cleaning\x20up','grep','cert','arm64','SHELL','maka\x20i','Aborting\x20install','withSpinner','setPath','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','string','-rf','info','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','checkAvailability','.meteor','55FQkZof','join','error','existsSync','fsi','maka\x20install\x20meteor','platform','cacert','extractTarGz','(((.+)+)+)+$','/.zshrc','getGlobalConfig','zsh','windows','env','osx','downloadFile','Using\x20CA\x20Cert\x20','maka\x20install\x20meteor\x20--version\x202.13.3','1254282WLDJDh','constructor','484890fNMmvA','593889sCLgvY','184EMqgYl','Setting\x20Path\x20in\x20\x20','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','confirm','maka\x20install\x20meteor\x20--force','data','Preparing\x20to\x20install\x20Meteor\x20','x86_64','homedir','\x20is\x20not\x20available.','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','meteor','/.bashrc','injectAtEndOfFile','Meteor\x20version\x20','\x20installed.\x0a','https://packages.meteor.com/bootstrap-link?arch=os.','Proceed\x20anyway?','notice'];a73c=function(){return C;};return a73c();}import a73g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a73e[a73y(0x1e6)]();function isRoot(){const z=a73y;return process[z(0x1fb)]&&process[z(0x1fb)]()===0x0;}Command[a73y(0x209)]({'name':a73y(0x20e),'aliases':['i'],'validOpts':['force','version','cacert',a73y(0x21e),a73y(0x1fe)],'usage':'maka\x20install','shortDesc':a73y(0x21f),'description':'\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','examples':[a73y(0x1cc),a73y(0x1e2),a73y(0x1d9),a73y(0x21b)]},async function(a,b){const A=a73y;try{let c='';if(b[A(0x1ce)]){if(this['fsi']['isFile'](b[A(0x1ce)]))Log[A(0x1f0)](A(0x1d8)+b[A(0x1ce)]),c=b['cacert'];else throw A(0x208)+c;}const d=await this[A(0x1cb)][A(0x1d2)]();if(d[A(0x218)]){if(this[A(0x1cb)]['isFile'](d[A(0x218)]))c=d[A(0x218)];else throw A(0x1e8)+c;}let f=![];if(b['f']||b['force'])f=!![];else{const p=isRoot();p?(Log[A(0x204)](A(0x201)),f=await Actions[A(0x1e1)](A(0x1ef),![])):f=!![];}if(!f)throw A(0x205);const g=process[A(0x1cd)]===A(0x206),h=await HTTPS[A(0x215)]({'url':'https://install.meteor.com','cert':c}),i=await this[A(0x1cb)][A(0x217)](h[A(0x1e3)],A(0x202));if(i[A(0x1f4)]===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process[A(0x1d5)][A(0x207)]='1',Log[A(0x1f0)](A(0x1e4)+i[0x0][A(0x20c)](/[^0-9.]/gi,'')[A(0x20c)](/\r?\n|\r/,''));let j=i[0x0][A(0x20c)](/[^0-9.]/gi,'')[A(0x20c)](/\r?\n|\r/,'');(typeof b['v']===A(0x220)||typeof b[A(0x1ff)]===A(0x220))&&(j=b['v']||b[A(0x1ff)]);const k={'win32':A(0x1d4),'darwin':A(0x1d6),'linux':A(0x20b)},l=A(0x1ee)+k[a73e[A(0x1cd)]()]+'.'+(a73e[A(0x203)]()===A(0x219)?A(0x219):A(0x1e5))+A(0x20f)+j,m=await HTTPS[A(0x1c5)]({'url':l,'cert':c});!m&&(Log[A(0x1c9)](A(0x1ec)+j+A(0x1e7)),process[A(0x1f3)](0x0));const n=a73f[A(0x1c8)](homeDir,A(0x1c6)),o=async()=>{const B=A,q=B(0x211)+n+':$PATH';if(process['env']['SHELL']&&process['env'][B(0x21a)]['includes'](B(0x1d3))){const r=await this[B(0x1cb)][B(0x210)](homeDir+'/.zshrc',q);if(!r)Log[B(0x222)](B(0x1df)+homeDir+B(0x1d1)),this['fsi'][B(0x1eb)]({'filePath':homeDir+B(0x1d1),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21e)]&&Log['info'](B(0x1fc)+homeDir+'/.zshrc');}else{const s=await this[B(0x1cb)][B(0x210)](homeDir+B(0x1ea),q);if(!s)Log[B(0x222)]('Setting\x20Path\x20in\x20'+homeDir+B(0x1ea)),this[B(0x1cb)][B(0x1eb)]({'filePath':homeDir+B(0x1ea),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21e)]&&Log[B(0x222)](B(0x1fc)+homeDir+B(0x1ea));const t=await this['fsi'][B(0x210)](homeDir+'/.bash_profile',q);if(!t)Log[B(0x222)](B(0x1fd)+homeDir+B(0x1f6)),this[B(0x1cb)]['injectAtEndOfFile']({'filePath':homeDir+B(0x1f6),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21e)]&&Log[B(0x222)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0x1f6));if(isRoot()){const u=await this[B(0x1cb)][B(0x210)](B(0x213),q);if(!u)Log[B(0x222)]('Setting\x20Path\x20in\x20/etc/profile'),this[B(0x1cb)][B(0x1eb)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21e)]&&Log[B(0x222)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b[A(0x21e)]&&(await o(),process[A(0x1f3)](0x0));if(g)Log[A(0x1c9)](A(0x1e0)),process[A(0x1f3)](0x0);else{if(a73g[A(0x1ca)](n)){let q=![];b['f']||b['force']?q=!![]:q=await Actions[A(0x1e1)](A(0x20a),![]),q?(await SpawnAsync['withSpinner']('rm',['-rf',a73f['join'](n,'packages')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(packages)'}),await SpawnAsync[A(0x21d)]('rm',[A(0x221),a73f['join'](n,'package-metadata')],{'message':A(0x223)}),await SpawnAsync[A(0x21d)]('rm',[A(0x221),a73f[A(0x1c8)](n,A(0x1e9))],{'message':A(0x1f7)})):(Log['info'](A(0x21c)),process[A(0x1f3)](0x0));}try{await HTTPS[A(0x1d7)]({'url':l,'destPath':a73f[A(0x1c8)](homeDir,A(0x1f2)),'cert':c});try{const r=a73f[A(0x1c8)](homeDir,A(0x1f2));await this[A(0x1cb)][A(0x1cf)](r,homeDir);}catch(s){Log[A(0x1c9)]('Error\x20extracting\x20meteor.tar.gz\x20file');}!b['keepInstallFile']&&await SpawnAsync[A(0x21d)]('rm',[A(0x221),a73f[A(0x1c8)](homeDir,A(0x1f2))],{'message':A(0x216)}),await o();}catch(t){console['error'](t),process[A(0x1f3)](0x0);}Log['success'](A(0x1ec)+j+A(0x1ed));}}catch(u){console[A(0x1c9)](u),process[A(0x1f3)](0x0);}});
@@ -1 +1 @@
1
- const a74m=a74d;(function(a,b){const j=a74d,c=a();while(!![]){try{const d=-parseInt(j(0x16e))/0x1*(-parseInt(j(0x188))/0x2)+parseInt(j(0x167))/0x3+-parseInt(j(0x164))/0x4+parseInt(j(0x168))/0x5*(parseInt(j(0x189))/0x6)+parseInt(j(0x17d))/0x7+-parseInt(j(0x17b))/0x8+parseInt(j(0x165))/0x9*(parseInt(j(0x160))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x7227b));function a74c(){const o=['config','964086tOKVKG','948620qXNPpR','\x20-d\x20','(((.+)+)+)+$','\x20-c\x20','\x20-r\x20app','.+\x5c.(j|t)s(doc|x)?$','1WxCKZQ','pathFromProject','Running\x20','jsdoc-config.json','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','toString','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','app/public','jsdoc','fsi','maka\x20jsdoc','app/node_modules','app/private','6777016VqvJnB','stop','3408706ksREuM','search','plugins/markdown','create','logNotice','\x0a[+]\x20Documentation\x20written\x20to\x20','sep','logWithSpinner','closure','join','docs','55616mWzDgA','24FUTBLW','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','maka\x20jsdoc\x20--init','10bPhZLy','apply','stringify','logError','2942028BJLasG','4096701woEtrQ'];a74c=function(){return o;};return a74c();}const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a74d;if(c){const e=c[k(0x161)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const l=a74d;return a74a[l(0x173)]()[l(0x17e)](l(0x16a))[l(0x173)]()['constructor'](a74a)[l(0x17e)](l(0x16a));});a74a();import a74e from'path';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x15e;let f=c[d];return f;},a74d(a,b);}import a74f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a74m(0x180)]({'name':a74m(0x176),'usage':a74m(0x178),'mustBeInMakaProject':!![],'shortDesc':a74m(0x15e),'examples':[a74m(0x15f),'maka\x20jsdoc'],'validOpts':[]},function(){const n=a74m,a=a74e['join'](this[n(0x177)][n(0x16f)]({}),n(0x187)+a74e['sep']),b=a74e[n(0x186)](this[n(0x177)]['pathFromProject']({}),n(0x166),n(0x171)),c=this[n(0x177)][n(0x16f)]({}),d=n(0x176);if(!this['isFile'](b)){const g={'plugins':[n(0x17f)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x176),n(0x185)]},'source':{'includePattern':n(0x16d),'excludePattern':n(0x172),'exclude':['app/packages',n(0x179),n(0x175),n(0x17a)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a74f['writeFileSync'](b,JSON[n(0x162)](g,null,0x4));}const f=this[n(0x184)](n(0x170)+d);try{const h=d+n(0x16b)+b+n(0x16c)+a74e[n(0x183)]+n(0x169)+a;execSync(h,{'cwd':c,'stdio':'inherit'}),this[n(0x181)](n(0x182)+a);}catch(i){this[n(0x163)](i),this[n(0x163)](n(0x174));}finally{f[n(0x17c)]();}});
1
+ const a74l=a74d;(function(a,b){const j=a74d,c=a();while(!![]){try{const d=parseInt(j(0x151))/0x1+-parseInt(j(0x13a))/0x2+-parseInt(j(0x13e))/0x3*(parseInt(j(0x149))/0x4)+-parseInt(j(0x14b))/0x5+-parseInt(j(0x13f))/0x6*(-parseInt(j(0x15a))/0x7)+parseInt(j(0x159))/0x8+parseInt(j(0x13b))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x21bf3));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const k=a74d;return a74a[k(0x13c)]()[k(0x154)](k(0x152))['toString']()[k(0x142)](a74a)['search']('(((.+)+)+)+$');});a74a();function a74c(){const n=['config','373467ziuplz','12vjrdCx','pathFromProject','join','constructor','isFile','closure','maka\x20jsdoc\x20--init','utf-8','logNotice','fsi','8ahbrDT','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','224975pgAYqL','sep','stop','jsdoc','app/node_modules','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','146129RkCLpI','(((.+)+)+)+$','app/private','search','stringify','logWithSpinner','logError','Running\x20','489616lWdcJe','381843ziincb','\x20-r\x20app','maka\x20jsdoc','inherit','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','docs','create','app/packages','23294pFESRF','1146762lzzEkO','toString'];a74c=function(){return n;};return a74c();}import a74e from'path';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x133;let f=c[d];return f;},a74d(a,b);}import a74f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a74l(0x138)]({'name':a74l(0x14e),'usage':a74l(0x134),'mustBeInMakaProject':!![],'shortDesc':a74l(0x150),'examples':[a74l(0x145),a74l(0x134)],'validOpts':[]},function(){const m=a74l,a=a74e[m(0x141)](this['fsi'][m(0x140)]({}),m(0x137)+a74e[m(0x14c)]),b=a74e['join'](this[m(0x148)][m(0x140)]({}),m(0x13d),'jsdoc-config.json'),c=this['fsi']['pathFromProject']({}),d=m(0x14e);if(!this[m(0x143)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':['jsdoc',m(0x144)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':m(0x136),'exclude':[m(0x139),m(0x14f),'app/public',m(0x153)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':m(0x146)}};a74f['writeFileSync'](b,JSON[m(0x155)](g,null,0x4));}const f=this[m(0x156)](m(0x158)+d);try{const h=d+'\x20-c\x20'+b+m(0x133)+a74e[m(0x14c)]+'\x20-d\x20'+a;execSync(h,{'cwd':c,'stdio':m(0x135)}),this[m(0x147)]('\x0a[+]\x20Documentation\x20written\x20to\x20'+a);}catch(i){this[m(0x157)](i),this[m(0x157)](m(0x14a));}finally{f[m(0x14d)]();}});