@maka/maka-cli 4.6.14 → 4.6.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 (140) hide show
  1. package/bundle/obf/package.json +1 -1
  2. package/bundle/obf/src/command.js +1 -1
  3. package/bundle/obf/src/commands/_index.js +1 -1
  4. package/bundle/obf/src/commands/ai.js +1 -1
  5. package/bundle/obf/src/commands/aws/_index.js +1 -1
  6. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  7. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  8. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  9. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/build/_index.js +1 -1
  20. package/bundle/obf/src/commands/build/build.js +1 -1
  21. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/create.js +1 -1
  23. package/bundle/obf/src/commands/debug.js +1 -1
  24. package/bundle/obf/src/commands/deploy/_index.js +1 -0
  25. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -0
  26. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -0
  27. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -0
  28. package/bundle/obf/src/commands/game/_index.js +1 -1
  29. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/play.command.js +1 -1
  31. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/generate.js +1 -1
  69. package/bundle/obf/src/commands/get/_index.js +1 -1
  70. package/bundle/obf/src/commands/get/get.command.js +1 -1
  71. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/help.js +1 -1
  75. package/bundle/obf/src/commands/install.js +1 -1
  76. package/bundle/obf/src/commands/jsdoc.js +1 -1
  77. package/bundle/obf/src/commands/lint.js +1 -1
  78. package/bundle/obf/src/commands/login.js +1 -1
  79. package/bundle/obf/src/commands/logout.js +1 -1
  80. package/bundle/obf/src/commands/logs.js +1 -1
  81. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  82. package/bundle/obf/src/commands/murder.js +1 -1
  83. package/bundle/obf/src/commands/proxy.js +1 -1
  84. package/bundle/obf/src/commands/reconfig.js +1 -1
  85. package/bundle/obf/src/commands/run/_index.js +1 -1
  86. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  87. package/bundle/obf/src/commands/run/run.command.js +1 -1
  88. package/bundle/obf/src/commands/set/_index.js +1 -1
  89. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  91. package/bundle/obf/src/commands/set/set.command.js +1 -1
  92. package/bundle/obf/src/commands/ssh.js +1 -1
  93. package/bundle/obf/src/commands/ssl.js +1 -1
  94. package/bundle/obf/src/commands/test.js +1 -1
  95. package/bundle/obf/src/commands/version.js +1 -1
  96. package/bundle/obf/src/error.js +1 -1
  97. package/bundle/obf/src/exec.js +1 -1
  98. package/bundle/obf/src/generator.js +1 -1
  99. package/bundle/obf/src/generators/_index.js +1 -1
  100. package/bundle/obf/src/generators/api.js +1 -1
  101. package/bundle/obf/src/generators/collection.js +1 -1
  102. package/bundle/obf/src/generators/component.js +1 -1
  103. package/bundle/obf/src/generators/config.js +1 -1
  104. package/bundle/obf/src/generators/dbc.js +1 -1
  105. package/bundle/obf/src/generators/dockerfile.js +1 -1
  106. package/bundle/obf/src/generators/hook.js +1 -1
  107. package/bundle/obf/src/generators/kit.js +1 -1
  108. package/bundle/obf/src/generators/layout.js +1 -1
  109. package/bundle/obf/src/generators/maka.gen.js +1 -1
  110. package/bundle/obf/src/generators/methods.js +1 -1
  111. package/bundle/obf/src/generators/package.js +1 -1
  112. package/bundle/obf/src/generators/page.js +1 -1
  113. package/bundle/obf/src/generators/publish.js +1 -1
  114. package/bundle/obf/src/generators/route.js +1 -1
  115. package/bundle/obf/src/generators/service.js +1 -1
  116. package/bundle/obf/src/generators/services/_index.js +1 -1
  117. package/bundle/obf/src/generators/services/openssl.js +1 -1
  118. package/bundle/obf/src/generators/services/translation.js +1 -1
  119. package/bundle/obf/src/maka.js +1 -1
  120. package/bundle/obf/src/tool.js +1 -1
  121. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  122. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  123. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  124. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  125. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  126. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  127. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  128. package/bundle/obf/src/tools/https/https.class.js +1 -1
  129. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  130. package/bundle/obf/src/tools/log/log.class.js +1 -1
  131. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/options/options.class.js +1 -1
  133. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  134. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  135. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  137. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  138. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  139. package/package.json +1 -1
  140. package/bundle/obf/src/commands/deploy.js +0 -1
@@ -1 +1 @@
1
- (function(a,b){var k=a56d,c=a();while(!![]){try{var d=-parseInt(k(0x102))/0x1+parseInt(k(0xb9))/0x2+-parseInt(k(0xcf))/0x3*(-parseInt(k(0xfe))/0x4)+-parseInt(k(0xe5))/0x5+parseInt(k(0xb8))/0x6+-parseInt(k(0xbb))/0x7*(parseInt(k(0xe9))/0x8)+parseInt(k(0xc4))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0xc75dc));export var Size;(function(a){var l=a56d;a[l(0xcb)]=l(0xda),a[l(0x103)]=l(0xba),a[l(0xad)]=l(0x10d),a[l(0xb3)]=l(0xae),a['VeryLarge']=l(0xc0);}(Size||(Size={})));export var Rating;(function(a){var m=a56d;a[m(0xb6)]='common',a['Rare']=m(0xfa),a[m(0xe4)]=m(0x10b);}(Rating||(Rating={})));export var Category;(function(a){var n=a56d;a['Weapon']='weapon',a[n(0xd3)]=n(0xed),a[n(0xf3)]=n(0x10a),a[n(0xdd)]=n(0xbf),a[n(0xc6)]=n(0xe1),a[n(0xb2)]=n(0x10c),a[n(0xfc)]=n(0xbd),a[n(0xf5)]=n(0x110),a[n(0xef)]=n(0x109),a[n(0xee)]=n(0xb1),a[n(0xf2)]=n(0x101),a[n(0xd0)]=n(0xbc),a[n(0xff)]='unknown';}(Category||(Category={})));export var Shape;function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0xad;var f=c[d];return f;},a56d(a,b);}(function(a){var o=a56d;a[o(0xce)]=o(0x113),a[o(0xc5)]=o(0xdf),a['Triangle']=o(0xea),a['Rectangle']='rectangle',a[o(0x112)]=o(0xe2),a[o(0xdb)]='rifle';}(Shape||(Shape={})));export var Color;(function(a){var p=a56d;a[p(0xf9)]=p(0xe6),a['Blue']='blue',a['Green']=p(0xf7),a[p(0xcc)]=p(0xf4),a['Orange']=p(0xe0),a[p(0x100)]=p(0xeb),a[p(0x107)]=p(0xd7),a[p(0xb5)]=p(0xd8),a[p(0xf6)]=p(0xc1);}(Color||(Color={})));export var Texture;(function(a){var q=a56d;a['Smooth']=q(0xc8),a[q(0xdc)]=q(0xfb),a['Bumpy']=q(0x10f),a['Fuzzy']='fuzzy',a['Grainy']=q(0xb7),a[q(0xb0)]=q(0xd4);}(Texture||(Texture={})));export var RoomType;(function(a){var r=a56d;a['INSIDE']='inside',a[r(0xc9)]=r(0xd5),a[r(0xd2)]=r(0xcd),a[r(0xe7)]=r(0xde),a[r(0xf0)]='tower',a[r(0xbe)]=r(0xc3),a[r(0x106)]=r(0x104),a[r(0xe3)]=r(0xec),a[r(0x108)]=r(0xd9),a[r(0xf8)]=r(0x111);}(RoomType||(RoomType={})));export var Direction;function a56c(){var v=['red','CAVE','apply','1992OolelM','triangle','purple','mountain','shield','BodyArmor','ArmArmor','TOWER','SOUTH','Book','Key','yellow','LegArmor','Gold','green','SEA','Red','rare','rough','Boots','(((.+)+)+)+$','485220jgNhUY','Unknown','Purple','book','562640xyNEeD','Small','desert','toString','DESERT','Grey','BEACH','arm\x20armor','key','legendary','hat','medium','constructor','bumpy','leg\x20armor','sea','Blade','circle','north','Medium','large','south','Metallic','body\x20armor','Hat','Large','east','Brown','Common','grainy','6478440hAunqv','1303494BaqWvS','small','6790Ylbsmu','cup','boots','FOREST','gloves','very\x20large','gold','west','forest','12233835pVDzsn','Square','Helmet','WEST','smooth','OUTSIDE','down','Tiny','Yellow','underground','Circle','3xpbdpe','Cup','EAST','UNDERGROUND','Shield','metallic','outside','DOWN','grey','brown','beach','tiny','Rifle','Rough','Gloves','cave','square','orange','helmet','blade','MOUNTAIN','Legendary','7956665iUblTP'];a56c=function(){return v;};return a56c();}(function(c){var u=a56d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var s=a56d;if(h){var j=h[s(0xe8)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var t=a56d;return e[t(0x105)]()['search'](t(0xfd))[t(0x105)]()[t(0x10e)](e)['search'](t(0xfd));});e(),c['NORTH']=u(0x114),c[u(0xd1)]=u(0xb4),c[u(0xf1)]=u(0xaf),c[u(0xc7)]=u(0xc2),c['UP']='up',c[u(0xd6)]=u(0xca);}(Direction||(Direction={})));
1
+ (function(a,b){var k=a59d,c=a();while(!![]){try{var d=-parseInt(k(0x238))/0x1*(parseInt(k(0x22d))/0x2)+-parseInt(k(0x209))/0x3*(parseInt(k(0x210))/0x4)+-parseInt(k(0x23e))/0x5+-parseInt(k(0x20b))/0x6+parseInt(k(0x23f))/0x7*(-parseInt(k(0x245))/0x8)+parseInt(k(0x203))/0x9*(-parseInt(k(0x1ff))/0xa)+-parseInt(k(0x1f1))/0xb*(-parseInt(k(0x24e))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xbc618));export var Size;(function(a){var l=a59d;a[l(0x21c)]=l(0x20a),a[l(0x22c)]=l(0x22f),a['Medium']=l(0x214),a[l(0x24f)]=l(0x251),a[l(0x22b)]='very\x20large';}(Size||(Size={})));function a59c(){var v=['blade','leg\x20armor','140EuSOwY','FOREST','BEACH','Brown','215928rKJXLw','gold','grey','arm\x20armor','EAST','Hat','3jEcWJL','tiny','3385044NWGNMK','Rough','Cup','WEST','fuzzy','2745064HwWeUN','blue','boots','Orange','medium','Bumpy','Grainy','desert','helmet','west','gloves','Legendary','Tiny','red','apply','brown','search','Yellow','beach','green','Fuzzy','ArmArmor','Grey','UNDERGROUND','body\x20armor','grainy','BodyArmor','VeryLarge','Small','18280zGxpqW','outside','small','rough','Gloves','Blue','(((.+)+)+)+$','hat','MOUNTAIN','square','south','100GAmWHm','Rifle','shield','INSIDE','cup','Shield','2065210Cjpazg','95193NzLwTq','sea','metallic','unknown','rare','cave','192HoIwQo','constructor','Green','DOWN','Square','DESERT','book','smooth','yellow','48136248diHQUx','Large','Common','large','rectangle','forest','Purple','11LTEUnR','purple','Helmet','Key','common','weapon','Book','north','underground','key','rifle','toString'];a59c=function(){return v;};return a59c();}export var Rating;(function(a){var m=a59d;a[m(0x250)]=m(0x1f5),a['Rare']=m(0x243),a[m(0x21b)]='legendary';}(Rating||(Rating={})));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1ef;var f=c[d];return f;},a59d(a,b);}export var Category;(function(a){var n=a59d;a['Weapon']=n(0x1f6),a[n(0x23d)]=n(0x23a),a[n(0x1f4)]=n(0x1fa),a[n(0x231)]=n(0x21a),a[n(0x1f3)]=n(0x218),a[n(0x208)]=n(0x234),a['Boots']=n(0x212),a['LegArmor']=n(0x1fe),a[n(0x225)]=n(0x206),a[n(0x22a)]=n(0x228),a[n(0x1f7)]=n(0x24b),a[n(0x20d)]=n(0x23c),a['Unknown']=n(0x242);}(Category||(Category={})));export var Shape;(function(c){var q=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var o=a59d;if(h){var j=h[o(0x21e)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var p=a59d;return e[p(0x1fc)]()[p(0x220)](p(0x233))['toString']()[p(0x246)](e)[p(0x220)](p(0x233));});e(),c['Circle']='circle',c[q(0x249)]=q(0x236),c['Triangle']='triangle',c['Rectangle']=q(0x252),c['Blade']=q(0x1fd),c[q(0x239)]=q(0x1fb);}(Shape||(Shape={})));export var Color;(function(a){var r=a59d;a['Red']=r(0x21d),a[r(0x232)]=r(0x211),a[r(0x247)]=r(0x223),a[r(0x221)]=r(0x24d),a[r(0x213)]='orange',a[r(0x1f0)]=r(0x1f2),a[r(0x226)]=r(0x205),a[r(0x202)]=r(0x21f),a['Gold']=r(0x204);}(Color||(Color={})));export var Texture;(function(a){var s=a59d;a['Smooth']=s(0x24c),a[s(0x20c)]=s(0x230),a[s(0x215)]='bumpy',a[s(0x224)]=s(0x20f),a[s(0x216)]=s(0x229),a['Metallic']=s(0x241);}(Texture||(Texture={})));export var RoomType;(function(a){var t=a59d;a[t(0x23b)]='inside',a['OUTSIDE']=t(0x22e),a[t(0x227)]=t(0x1f9),a['CAVE']=t(0x244),a['TOWER']='tower',a[t(0x200)]=t(0x1ef),a[t(0x24a)]=t(0x217),a[t(0x235)]='mountain',a[t(0x201)]=t(0x222),a['SEA']=t(0x240);}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a59d;a['NORTH']=u(0x1f8),a[u(0x207)]='east',a['SOUTH']=u(0x237),a[u(0x20e)]=u(0x219),a['UP']='up',a[u(0x248)]='down';}(Direction||(Direction={})));
@@ -1 +1 @@
1
- function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x157;var f=c[d];return f;},a57d(a,b);}(function(a,b){var f=a57d,c=a();while(!![]){try{var d=parseInt(f(0x162))/0x1+parseInt(f(0x163))/0x2*(parseInt(f(0x15f))/0x3)+-parseInt(f(0x158))/0x4+-parseInt(f(0x157))/0x5+parseInt(f(0x15a))/0x6+-parseInt(f(0x15e))/0x7*(parseInt(f(0x15d))/0x8)+-parseInt(f(0x15c))/0x9*(-parseInt(f(0x15b))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x41d1e));function a57c(){var i=['147ROxGzr','6CZZXCN','(((.+)+)+)+$','toString','188896DyQapC','277918qwRYDY','apply','2432000DPDxpg','1872360lCjBGd','search','1301286LgsMtk','20Hhaczi','2612736ckJDet','15320CFTgec'];a57c=function(){return i;};return a57c();}var a57b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a57d;if(c){var e=c[g(0x164)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){var h=a57d;return a57a[h(0x161)]()[h(0x159)](h(0x160))[h(0x161)]()['constructor'](a57a)['search']('(((.+)+)+)+$');});a57a();export{};
1
+ function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x72;var f=c[d];return f;},a60d(a,b);}(function(a,b){var f=a60d,c=a();while(!![]){try{var d=-parseInt(f(0x79))/0x1+-parseInt(f(0x72))/0x2+-parseInt(f(0x77))/0x3+-parseInt(f(0x75))/0x4+parseInt(f(0x7d))/0x5+parseInt(f(0x73))/0x6+parseInt(f(0x76))/0x7*(parseInt(f(0x7b))/0x8);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x20988));var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x78)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a[h(0x7a)]()[h(0x74)](h(0x7c))[h(0x7a)]()['constructor'](a60a)[h(0x74)](h(0x7c));});a60a();function a60c(){var i=['808448FrZxvB','21QHOeLO','722733GXWWYU','apply','156437mSCgpA','toString','1737528DrTTZO','(((.+)+)+)+$','196760FlouuP','90558wsKxxT','523956Clitkx','search'];a60c=function(){return i;};return a60c();}export{};
@@ -1 +1 @@
1
- function a58c(){var h=['2801190DERdcW','3242524gsbneu','3YPadUz','(((.+)+)+)+$','468965qDPpiv','446195wZzHwX','2475UGakXy','171ZsQjRP','6787952woAksY','2ZWYSiA','48mfXbAd','41052xSMpUN','constructor','185170oAfeaK','search'];a58c=function(){return h;};return a58c();}function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0xe6;var f=c[d];return f;},a58d(a,b);}(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0xee))/0x1*(parseInt(f(0xf3))/0x2)+parseInt(f(0xec))/0x3*(parseInt(f(0xeb))/0x4)+-parseInt(f(0xef))/0x5*(parseInt(f(0xf4))/0x6)+parseInt(f(0xea))/0x7+-parseInt(f(0xf2))/0x8+-parseInt(f(0xf1))/0x9*(parseInt(f(0xe8))/0xa)+-parseInt(f(0xf0))/0xb*(-parseInt(f(0xe6))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x82ade));var a58b=(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;};}()),a58a=a58b(this,function(){var g=a58d;return a58a['toString']()['search'](g(0xed))['toString']()[g(0xe7)](a58a)[g(0xe9)](g(0xed));});a58a();export{};
1
+ (function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0x1ba))/0x1*(parseInt(f(0x1af))/0x2)+-parseInt(f(0x1b9))/0x3*(-parseInt(f(0x1b0))/0x4)+-parseInt(f(0x1b4))/0x5*(parseInt(f(0x1bb))/0x6)+parseInt(f(0x1b5))/0x7*(-parseInt(f(0x1b3))/0x8)+parseInt(f(0x1b7))/0x9+-parseInt(f(0x1b1))/0xa+parseInt(f(0x1b6))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x26af1));function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x1af;var f=c[d];return f;},a61d(a,b);}var a61b=(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;};}()),a61a=a61b(this,function(){var g=a61d;return a61a[g(0x1b8)]()['search'](g(0x1b2))[g(0x1b8)]()[g(0x1bc)](a61a)[g(0x1bd)](g(0x1b2));});function a61c(){var h=['5WmhMsj','28WuluVa','5864606xGzeNy','359586dfqKUa','toString','35292AaOHLD','1EdmBKR','1577274bQWkoH','constructor','search','159316apefue','56IIwvNU','2765300FohJly','(((.+)+)+)+$','239192TxCbke'];a61c=function(){return h;};return a61c();}a61a();export{};
@@ -1 +1 @@
1
- function a59d(a,b){const c=a59c();return a59d=function(d,e){d=d-0x124;let f=c[d];return f;},a59d(a,b);}const a59H=a59d;(function(a,b){const y=a59d,c=a();while(!![]){try{const d=parseInt(y(0x153))/0x1*(parseInt(y(0x160))/0x2)+parseInt(y(0x150))/0x3+parseInt(y(0x148))/0x4*(parseInt(y(0x13f))/0x5)+parseInt(y(0x163))/0x6+parseInt(y(0x170))/0x7*(-parseInt(y(0x165))/0x8)+parseInt(y(0x137))/0x9+-parseInt(y(0x140))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x64d95));import a59e from'blessed';import{capitalCase}from'change-case';import a59f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a59d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a59d;if(j){const l=j[z(0x147)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a59d;return g[A(0x149)]()[A(0x15a)](A(0x13b))['toString']()[A(0x16a)](g)[A(0x15a)](A(0x13b));});g();try{const h=a59e[B(0x171)]({'smartCSR':!![],'title':B(0x145)}),i=a59e[B(0x14e)]({'top':'0%','left':B(0x176),'width':'25%','height':B(0x151),'border':{'type':'line'},'label':B(0x177),'content':B(0x13e),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x129)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x138)]()['map'](v=>v[C(0x158)]);i[C(0x15e)](u[C(0x14f)]('\x0a')),h[C(0x178)]();};h[B(0x132)](i);const k=a59e['box']({'top':B(0x151),'left':B(0x176),'width':B(0x168),'height':B(0x168),'border':{'type':B(0x16f)},'label':B(0x167),'content':B(0x141),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x129)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x132)](k);const l=t=>{const D=B;k['setContent'](D(0x13a)+(t['head']?t['head']['name']:D(0x126))+'\x0a'+(D(0x14d)+(t[D(0x13c)]?t[D(0x13c)][D(0x158)]:D(0x126))+'\x0a')+(D(0x179)+(t[D(0x15b)]?t[D(0x15b)][D(0x158)]:D(0x126))+'\x0a')+(D(0x13d)+(t[D(0x130)]?t[D(0x130)][D(0x158)]:'None')+'\x0a')+(D(0x156)+(t['arms']?t[D(0x15d)][D(0x158)]:'None')+'\x0a')+(D(0x162)+(t[D(0x139)]?t['gloves'][D(0x158)]:'None')+'\x0a')+('Left\x20Hand:\x20'+(t[D(0x169)]?t[D(0x169)][D(0x158)]:D(0x126))+'\x0a')+(D(0x142)+(t[D(0x12a)]?t[D(0x12a)][D(0x158)]:D(0x126))+'\x0a')),h[D(0x178)]();},m=a59e[B(0x14e)]({'top':'70%','left':B(0x176),'width':B(0x168),'height':B(0x17d),'border':{'type':B(0x16f)},'label':'\x20Map\x20','content':B(0x173),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x129)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x132)](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t[E(0x158)]+'\x0a\x0a';u+=E(0x128),t[E(0x134)][E(0x174)]>0x0?t[E(0x134)][E(0x146)]((v,w)=>{const F=E;if(v instanceof Door){const x=v['getOtherSide'](t);x[F(0x155)]===RoomType[F(0x124)]?u+=capitalCase(w)+':\x20'+x[F(0x158)]:u+=capitalCase(w)+':\x20'+v[F(0x158)];if(v['checkIfLocked']())u+=F(0x12f);else v[F(0x161)]()&&(u+=F(0x152));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x16b),m['setContent'](u),h[E(0x178)]();},o=a59e['box']({'id':B(0x172),'top':'0%','left':'0%','width':B(0x176),'height':'90%','border':{'type':B(0x16f)},'label':B(0x12b),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x129)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x15c)]('mousemove'),h[B(0x132)](o);const p=a59e[B(0x125)]({'bottom':0x0,'left':0x0,'width':B(0x12e),'height':B(0x135),'tags':!![],'border':{'type':B(0x16f)},'style':{'fg':B(0x17c),'border':{'fg':B(0x17a)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x132)](p),h[B(0x166)]([B(0x16c),B(0x164)],()=>process['exit'](0x0)),p[B(0x17e)](),h[B(0x178)]();const q=Logger[B(0x154)](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0x12d)](B(0x14b));const s=a59f[B(0x154)](r,d);o['setContent'](s['getWelcomeMessage']()),l(s[B(0x133)][B(0x14c)]),j(s['player'][B(0x143)]),n(s[B(0x133)][B(0x12c)]),p[B(0x166)](['enter'],async()=>{const G=B,t=p[G(0x136)](),u=s[G(0x15f)](t);(t[G(0x16d)]('\x20')[0x0]==='take'||G(0x175)||'unequip')&&(j(s[G(0x133)]['inventory']),l(s[G(0x133)][G(0x14c)])),(t[G(0x16d)]('\x20')[0x0]==='go'||'lock'||'unlock')&&n(s[G(0x133)]['currentLocation']),t[G(0x16d)]('\x20')[0x0]===G(0x14a)&&o['setContent'](''),u===null&&(console[G(0x157)](G(0x131)),h[G(0x178)](),q[G(0x12d)]('<<<<<<<<---------\x20Terminating\x20game'),process['exit'](0x0)),o[G(0x16e)](u),o[G(0x144)](0x1),p[G(0x127)](),p[G(0x17e)](),h[G(0x178)]();});}catch(t){console[B(0x157)](t),process['exit'](0x1);}}const args=process[a59H(0x159)]['slice'](0x2);main(args[0x0],JSON[a59H(0x17b)](args[0x1]),JSON[a59H(0x17b)](args[0x2]));function a59c(){const I=['legs','removeAllListeners','arms','setContent','handleInput','320mWespT','checkIfLockable','Gloves:\x20','3196038AMMMAB','C-c','456PxgyLe','key','\x20Equipment\x20','25%','leftHand','constructor','\x0aThere\x20are\x20no\x20exits\x20here.','escape','split','pushLine','line','86807VFzsio','screen','logBox','Available\x20exits\x20will\x20be\x20shown\x20here...','size','equip','75%','\x20Inventory\x20','render','Legs:\x20','cyan','parse','white','20%','focus','OUTSIDE','textbox','None','clearValue','-----\x20Exits\x20------\x0a','yellow','rightHand','\x20Game\x20Log\x20','currentLocation','write','100%','\x20(Locked)','feet','Thanks\x20for\x20playing!','append','player','exits','10%','getValue','1297800lmnJmU','getAllItems','gloves','Head:\x20','(((.+)+)+)+$','torso','Feet:\x20','Your\x20items\x20will\x20be\x20listed\x20here...','2050hiWTOp','11913690sWihAL','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','Right\x20Hand:\x20','inventory','scroll','Side\x20Quest\x20Adventure\x20Game','forEach','apply','6756PBGWVz','toString','clear','----->>>>>>\x20Initializing\x20Game','equipment','Torso:\x20','box','join','394140AgkdDG','45%','\x20(Unlocked)','5066QsTveJ','getInstance','roomType','Arms:\x20','log','name','argv','search'];a59c=function(){return I;};return a59c();}
1
+ const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x1ea))/0x1*(-parseInt(y(0x215))/0x2)+parseInt(y(0x244))/0x3*(parseInt(y(0x224))/0x4)+-parseInt(y(0x225))/0x5*(-parseInt(y(0x1e4))/0x6)+parseInt(y(0x1f0))/0x7*(parseInt(y(0x1e2))/0x8)+-parseInt(y(0x22c))/0x9*(parseInt(y(0x23d))/0xa)+-parseInt(y(0x1ed))/0xb+-parseInt(y(0x21a))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x28e68));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1e2;let f=c[d];return f;},a62d(a,b);}function a62c(){const I=['getInstance','legs','key','arms','focus','write','-----\x20Exits\x20------\x0a','scroll','None','<<<<<<<<---------\x20Terminating\x20game','\x20(Unlocked)','C-c','90%','map','exits','white','Thanks\x20for\x20playing!','parse','getValue','lock','yellow','apply','textbox','Side\x20Quest\x20Adventure\x20Game','append','argv','70%','split','70DcWmRH','feet','mousemove','\x20Game\x20Log\x20','checkIfLocked','1259544UAkcxJ','Feet:\x20','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','line','exit','Arms:\x20','equipment','\x0aThere\x20are\x20no\x20exits\x20here.','75%','Your\x20items\x20will\x20be\x20listed\x20here...','1316eyPwHx','78875uPhxiL','Head:\x20','unlock','equip','\x20Map\x20','log','head','1911798JtPUhm','escape','100%','constructor','gloves','leftHand','handleInput','checkIfLockable','size','torso','logBox','20%','Gloves:\x20','OUTSIDE','toString','\x20(Locked)','roomType','10lIHmnO','currentLocation','clearValue','clear','search','slice','----->>>>>>\x20Initializing\x20Game','1857PtknTl','cyan','join','Right\x20Hand:\x20','8WQTvWa','name','126jiQzmV','player','pushLine','inventory','getWelcomeMessage','unequip','1689mqOoRZ','45%','forEach','3450062AaVRVf','rightHand','getOtherSide','1431591rCdHoA','render','Legs:\x20','25%','box','(((.+)+)+)+$','enter','setContent','take'];a62c=function(){return I;};return a62c();}import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a62d;if(j){const l=j[z(0x20e)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g['toString']()[A(0x241)]('(((.+)+)+)+$')[A(0x23a)]()[A(0x22f)](g)[A(0x241)](A(0x1f5));});g();try{const h=a62e['screen']({'smartCSR':!![],'title':B(0x210)}),i=a62e[B(0x1f4)]({'top':'0%','left':'75%','width':B(0x1f3),'height':B(0x1eb),'border':{'type':B(0x21d)},'label':'\x20Inventory\x20','content':B(0x223),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t['getAllItems']()[C(0x206)](v=>v[C(0x1e3)]);i[C(0x1f7)](u[C(0x246)]('\x0a')),h[C(0x1f1)]();};h['append'](i);const k=a62e[B(0x1f4)]({'top':B(0x1eb),'left':B(0x222),'width':B(0x1f3),'height':B(0x1f3),'border':{'type':'line'},'label':'\x20Equipment\x20','content':B(0x21c),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x20d)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x211)](k);const l=t=>{const D=B;k[D(0x1f7)](D(0x226)+(t[D(0x22b)]?t[D(0x22b)][D(0x1e3)]:D(0x201))+'\x0a'+('Torso:\x20'+(t[D(0x235)]?t[D(0x235)]['name']:D(0x201))+'\x0a')+(D(0x1f2)+(t[D(0x1fa)]?t['legs'][D(0x1e3)]:D(0x201))+'\x0a')+(D(0x21b)+(t[D(0x216)]?t[D(0x216)][D(0x1e3)]:D(0x201))+'\x0a')+(D(0x21f)+(t[D(0x1fc)]?t[D(0x1fc)]['name']:D(0x201))+'\x0a')+(D(0x238)+(t[D(0x230)]?t[D(0x230)]['name']:D(0x201))+'\x0a')+('Left\x20Hand:\x20'+(t['leftHand']?t[D(0x231)][D(0x1e3)]:D(0x201))+'\x0a')+(D(0x247)+(t[D(0x1ee)]?t[D(0x1ee)][D(0x1e3)]:D(0x201))+'\x0a')),h[D(0x1f1)]();},m=a62e['box']({'top':B(0x213),'left':B(0x222),'width':B(0x1f3),'height':B(0x237),'border':{'type':'line'},'label':B(0x229),'content':'Available\x20exits\x20will\x20be\x20shown\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x20d)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x211)](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t[E(0x1e3)]+'\x0a\x0a';u+=E(0x1ff),t['exits'][E(0x234)]>0x0?t[E(0x207)][E(0x1ec)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0x1ef)](t);x[F(0x23c)]===RoomType[F(0x239)]?u+=capitalCase(w)+':\x20'+x[F(0x1e3)]:u+=capitalCase(w)+':\x20'+v['name'];if(v[F(0x219)]())u+=F(0x23b);else v[F(0x233)]()&&(u+=F(0x203));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x221),m[E(0x1f7)](u),h['render']();},o=a62e[B(0x1f4)]({'id':B(0x236),'top':'0%','left':'0%','width':B(0x222),'height':B(0x205),'border':{'type':B(0x21d)},'label':B(0x218),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x20d)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o['removeAllListeners'](B(0x217)),h[B(0x211)](o);const p=a62e[B(0x20f)]({'bottom':0x0,'left':0x0,'width':B(0x22e),'height':'10%','tags':!![],'border':{'type':B(0x21d)},'style':{'fg':B(0x208),'border':{'fg':B(0x245)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x211)](p),h[B(0x1fb)]([B(0x22d),B(0x204)],()=>process['exit'](0x0)),p[B(0x1fd)](),h[B(0x1f1)]();const q=Logger[B(0x1f9)](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0x1fe)](B(0x243));const s=a62f[B(0x1f9)](r,d);o[B(0x1f7)](s[B(0x1e8)]()),l(s['player'][B(0x220)]),j(s[B(0x1e5)]['inventory']),n(s[B(0x1e5)][B(0x23e)]),p[B(0x1fb)]([B(0x1f6)],async()=>{const G=B,t=p[G(0x20b)](),u=s[G(0x232)](t);(t[G(0x214)]('\x20')[0x0]===G(0x1f8)||G(0x228)||G(0x1e9))&&(j(s['player'][G(0x1e7)]),l(s[G(0x1e5)]['equipment'])),(t[G(0x214)]('\x20')[0x0]==='go'||G(0x20c)||G(0x227))&&n(s[G(0x1e5)][G(0x23e)]),t[G(0x214)]('\x20')[0x0]===G(0x240)&&o[G(0x1f7)](''),u===null&&(console[G(0x22a)](G(0x209)),h[G(0x1f1)](),q[G(0x1fe)](G(0x202)),process[G(0x21e)](0x0)),o[G(0x1e6)](u),o[G(0x200)](0x1),p[G(0x23f)](),p[G(0x1fd)](),h[G(0x1f1)]();});}catch(t){console[B(0x22a)](t),process[B(0x21e)](0x1);}}const args=process[a62H(0x212)][a62H(0x242)](0x2);main(args[0x0],JSON[a62H(0x20a)](args[0x1]),JSON[a62H(0x20a)](args[0x2]));
@@ -1 +1 @@
1
- const a60j=a60d;function a60c(){const q=['search','error','write','filePath','ensureLogFileExists','writeFileSync','97188mhedls','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','type','toISOString','84vLoCgI','scrollTo','getScrollHeight','instance','content','The\x20logbox\x20','361585lmoWSo','log','constructor','render','screen','existsSync','mkdirSync','1001dqlOEw','4xbTGHN','17240HvHwZl','side-quest.log','setContent','27oatWFh','295209cSEZfB','dirname','find','219747wjfuki','6005412vxhYRL','6EYYdsK','children','appendFileSync','options','842008KWBiuX','toString','(((.+)+)+)+$'];a60c=function(){return q;};return a60c();}(function(a,b){const h=a60d,c=a();while(!![]){try{const d=parseInt(h(0x9e))/0x1+-parseInt(h(0xa3))/0x2*(parseInt(h(0xa1))/0x3)+-parseInt(h(0x99))/0x4*(parseInt(h(0x91))/0x5)+parseInt(h(0x8b))/0x6*(parseInt(h(0xb0))/0x7)+parseInt(h(0xa7))/0x8*(parseInt(h(0x9d))/0x9)+-parseInt(h(0x9a))/0xa*(-parseInt(h(0x98))/0xb)+-parseInt(h(0xa2))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x296eb));const a60b=(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;};}()),a60a=a60b(this,function(){const i=a60d;return a60a[i(0xa8)]()[i(0xaa)](i(0xa9))[i(0xa8)]()[i(0x93)](a60a)[i(0xaa)](i(0xa9));});a60a();import a60e from'fs';import a60f from'os';import a60g from'path';const homeDir=a60f['homedir']();function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x89;let f=c[d];return f;},a60d(a,b);}export class Logger{static [a60j(0x8e)];['filePath'];[a60j(0x95)];constructor(a,b){const k=a60j;this[k(0xad)]=a,this['screen']=b,this[k(0xae)]();}static['getInstance'](a=a60g['join'](homeDir,'.maka',a60j(0x9b)),b){const l=a60j;if(!Logger[l(0x8e)]){if(!b)throw new Error(l(0xb1));Logger[l(0x8e)]=new Logger(a,b);}return Logger['instance'];}[a60j(0xae)](){const m=a60j,a=a60g[m(0x9f)](this[m(0xad)]);!a60e[m(0x96)](a)&&a60e[m(0x97)](a,{'recursive':!![]}),!a60e[m(0x96)](this['filePath'])&&a60e[m(0xaf)](this[m(0xad)],'');}[a60j(0xac)](a){const b=new Date()['toISOString'](),c='[INFO]\x20['+b+']\x20'+a+'\x0a';a60e['appendFileSync'](this['filePath'],c);}['error'](a){const n=a60j,b=new Date()[n(0x8a)](),c='[ERROR]\x20['+b+']\x20'+a+'\x0a';a60e[n(0xa5)](this[n(0xad)],c);}[a60j(0x92)](a){const o=a60j,b=this[o(0x95)]?.[o(0xa4)][o(0xa0)](c=>c[o(0x89)]==='box'&&c[o(0xa6)]['id']==='logBox');b?(b[o(0x9c)](b[o(0x8f)]+'\x0a'+a),b[o(0x8c)](b[o(0x8d)]()),this[o(0x95)]?.[o(0x94)]()):this[o(0xab)](o(0x90)+b+'\x20could\x20not\x20be\x20found\x20on\x20screen\x20'+this[o(0x95)]),this['write'](a);}['hasScreen'](){const p=a60j;return!!this[p(0x95)];}}
1
+ const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=parseInt(h(0x1c1))/0x1+-parseInt(h(0x1d3))/0x2*(-parseInt(h(0x1c9))/0x3)+-parseInt(h(0x1ce))/0x4*(parseInt(h(0x1b4))/0x5)+parseInt(h(0x1b3))/0x6+parseInt(h(0x1ba))/0x7*(parseInt(h(0x1c3))/0x8)+parseInt(h(0x1cd))/0x9*(parseInt(h(0x1b1))/0xa)+parseInt(h(0x1d2))/0xb*(-parseInt(h(0x1bd))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x856b1));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0x1cc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a['toString']()[j(0x1bf)](j(0x1b7))[j(0x1bc)]()[j(0x1ae)](a63a)[j(0x1bf)](j(0x1b7));});function a63c(){const s=['toISOString','22ztfvri','3398SathsL','options','getInstance','appendFileSync','constructor','filePath','screen','2363540jOujMr','write','5947722LrHXLZ','219710bRHuKO','error','setContent','(((.+)+)+)+$','hasScreen','homedir','63cEmKdS','instance','toString','14115300cptPjR','side-quest.log','search','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','318553ziIrvs','ensureLogFileExists','532944Sqeszp','box','render','dirname','content','join','573omNlzz','[ERROR]\x20[','.maka','apply','27BGBfNR','4JHMwaZ','logBox','getScrollHeight'];a63c=function(){return s;};return a63c();}a63a();function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0x1ac;let f=c[d];return f;},a63d(a,b);}import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f[a63k(0x1b9)]();export class Logger{static ['instance'];[a63k(0x1af)];[a63k(0x1b0)];constructor(a,b){const l=a63k;this['filePath']=a,this[l(0x1b0)]=b,this[l(0x1c2)]();}static[a63k(0x1ac)](a=a63g[a63k(0x1c8)](homeDir,a63k(0x1cb),a63k(0x1be)),b){const m=a63k;if(!Logger['instance']){if(!b)throw new Error(m(0x1c0));Logger[m(0x1bb)]=new Logger(a,b);}return Logger['instance'];}[a63k(0x1c2)](){const n=a63k,a=a63g[n(0x1c6)](this[n(0x1af)]);!a63e['existsSync'](a)&&a63e['mkdirSync'](a,{'recursive':!![]}),!a63e['existsSync'](this[n(0x1af)])&&a63e['writeFileSync'](this[n(0x1af)],'');}[a63k(0x1b2)](a){const o=a63k,b=new Date()[o(0x1d1)](),c='[INFO]\x20['+b+']\x20'+a+'\x0a';a63e[o(0x1ad)](this[o(0x1af)],c);}[a63k(0x1b5)](a){const p=a63k,b=new Date()[p(0x1d1)](),c=p(0x1ca)+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this[p(0x1af)],c);}['log'](a){const q=a63k,b=this[q(0x1b0)]?.['children']['find'](c=>c['type']===q(0x1c4)&&c[q(0x1d4)]['id']===q(0x1cf));b?(b[q(0x1b6)](b[q(0x1c7)]+'\x0a'+a),b['scrollTo'](b[q(0x1d0)]()),this['screen']?.[q(0x1c5)]()):this['error']('The\x20logbox\x20'+b+'\x20could\x20not\x20be\x20found\x20on\x20screen\x20'+this[q(0x1b0)]),this[q(0x1b2)](a);}[a63k(0x1b8)](){const r=a63k;return!!this[r(0x1b0)];}}
@@ -1 +1 @@
1
- const a61n=a61d;(function(a,b){const k=a61d,c=a();while(!![]){try{const d=parseInt(k(0xbc))/0x1*(-parseInt(k(0xae))/0x2)+-parseInt(k(0xbb))/0x3*(-parseInt(k(0xc5))/0x4)+-parseInt(k(0xa6))/0x5+-parseInt(k(0xbe))/0x6+-parseInt(k(0xaf))/0x7+parseInt(k(0xc7))/0x8*(-parseInt(k(0xb9))/0x9)+parseInt(k(0xa9))/0xa*(parseInt(k(0xa8))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xb1b9b));const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a61d;if(c){const e=c[l(0xab)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const m=a61d;return a61a[m(0xc1)]()[m(0xc8)](m(0xac))[m(0xc1)]()['constructor'](a61a)[m(0xc8)](m(0xac));});a61a();import a61e from'path';import{spawn}from'child_process';function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0xa5;let f=c[d];return f;},a61d(a,b);}import a61f 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[a61n(0xc0)]),__dirname=dirname(__filename);function a61c(){const q=['toString','Play\x20a\x20little\x20side-quest','getGlobalMakaDir','create','555812CsIxEX','side-quest.log','9648696FJKJSy','search','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','shadowrun','2888225wjhzzQ','Commoner','11GAVcKe','44596030fwCZfR','side-quest','apply','(((.+)+)+)+$','dungeon','1868GvoZjk','2675204Qqjklb','stringify','maka\x20play:side-quest','resolve','inherit','What\x20is\x20your\x20name?','options','player','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...','Thanks\x20for\x20playing!','9pxJcIi','list','9ZPTvKi','1487YOKEax','ask','3562422mGDBcB','exit','url'];a61c=function(){return q;};return a61c();}Command[a61n(0xc4)]({'name':a61n(0xaa),'usage':a61n(0xb1),'shortDesc':a61n(0xc2),'aliases':['sq'],'description':a61n(0xb7),'validOpts':[a61n(0xb6)]},async function(a,b){const o=a61n;try{const c=this['fsi'][o(0xc3)](),d=a61e['join'](c,o(0xc6)),e=b['player']?b[o(0xb6)]:await Actions[o(0xbd)](o(0xb4))||o(0xa7),f={...b,'logFilePath':d},g={'type':o(0xba),'name':'sideQuestAnswer','message':o(0xc9),'choices':[{'name':o(0xad),'value':dungeonConfig},{'name':o(0xa5),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0xb5)](g);if(e&&h){const i=spawn('node',[a61e[o(0xb2)](__dirname,'./sideQuest/ui.js'),e,JSON[o(0xb0)](h),JSON[o(0xb0)](f)],{'stdio':o(0xb3)});i['on'](o(0xbf),()=>{const p=o;console['log'](p(0xb8));});}}catch(j){console['log'](j);}},a61f);
1
+ const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0x143))/0x1*(-parseInt(k(0x141))/0x2)+parseInt(k(0x12f))/0x3+parseInt(k(0x13f))/0x4+-parseInt(k(0x147))/0x5*(-parseInt(k(0x135))/0x6)+parseInt(k(0x144))/0x7*(parseInt(k(0x148))/0x8)+-parseInt(k(0x136))/0x9*(parseInt(k(0x12a))/0xa)+parseInt(k(0x129))/0xb*(-parseInt(k(0x12b))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x3fdc5));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x13c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x146)]()[m(0x14c)](m(0x139))[m(0x146)]()[m(0x133)](a64a)[m(0x14c)](m(0x139));});a64a();import a64e from'path';import{spawn}from'child_process';import a64f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x128;let f=c[d];return f;},a64d(a,b);}import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta[a64n(0x12d)]),__dirname=dirname(__filename);function a64c(){const q=['stringify','apply','player','create','1289784iVRuJl','What\x20is\x20your\x20name?','458VcQABi','./sideQuest/ui.js','700hQbxfl','21oLVJPI','resolve','toString','10edVbiV','1292696QofeVg','Thanks\x20for\x20playing!','inherit','side-quest','search','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','11HHEdAi','954710iaJxQN','8092740GXpVpS','log','url','side-quest.log','553353zoubCI','join','dungeon','maka\x20play:side-quest','constructor','getGlobalMakaDir','1459482geHQbQ','36RhfBIc','shadowrun','exit','(((.+)+)+)+$','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...'];a64c=function(){return q;};return a64c();}Command[a64n(0x13e)]({'name':a64n(0x14b),'usage':a64n(0x132),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a64n(0x13a),'validOpts':[a64n(0x13d)]},async function(a,b){const o=a64n;try{const c=this['fsi'][o(0x134)](),d=a64e[o(0x130)](c,o(0x12e)),e=b[o(0x13d)]?b['player']:await Actions['ask'](o(0x140))||'Commoner',f={...b,'logFilePath':d},g={'type':'list','name':'sideQuestAnswer','message':o(0x128),'choices':[{'name':o(0x131),'value':dungeonConfig},{'name':o(0x137),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions['options'](g);if(e&&h){const i=spawn('node',[a64e[o(0x145)](__dirname,o(0x142)),e,JSON['stringify'](h),JSON[o(0x13b)](f)],{'stdio':o(0x14a)});i['on'](o(0x138),()=>{const p=o;console[p(0x12c)](p(0x149));});}}catch(j){console[o(0x12c)](j);}},a64f);
@@ -1 +1 @@
1
- var a62h=a62d;function a62d(a,b){var c=a62c();return a62d=function(d,e){d=d-0x7c;var f=c[d];return f;},a62d(a,b);}(function(a,b){var f=a62d,c=a();while(!![]){try{var d=-parseInt(f(0x82))/0x1*(parseInt(f(0x89))/0x2)+parseInt(f(0x83))/0x3*(-parseInt(f(0x7c))/0x4)+parseInt(f(0x80))/0x5*(-parseInt(f(0x8b))/0x6)+-parseInt(f(0x7e))/0x7*(parseInt(f(0x8a))/0x8)+parseInt(f(0x84))/0x9+parseInt(f(0x86))/0xa+parseInt(f(0x88))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x4246d));var a62b=(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;};}()),a62a=a62b(this,function(){var g=a62d;return a62a[g(0x87)]()['search'](g(0x8d))['toString']()[g(0x81)](a62a)['search'](g(0x8d));});a62a();import a62e from'./play.command.js';import{Command}from'../../command.js';function a62c(){var j=['13105499FlmXqz','1652mOBfvK','256qxqynU','60216KyoxHx','inherit','(((.+)+)+)+$','2138772KllSXj','snake','20489rqmamg','maka\x20game:snake','135BUNQNb','constructor','643GxXFec','3uEgOra','4382082MUYPUM','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','236090riSkfn','toString'];a62c=function(){return j;};return a62c();}import{execSync}from'child_process';Command['create']({'name':a62h(0x7d),'usage':a62h(0x7f),'shortDesc':a62h(0x85),'validOpts':[]},async function(){var i=a62h;execSync('npx\x20command-line-snake',{'stdio':i(0x8c)});},a62e);
1
+ var a65h=a65d;function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0xe3;var f=c[d];return f;},a65d(a,b);}function a65c(){var j=['3490392NaOiCC','981XtBBsk','892795zMDMzw','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','create','(((.+)+)+)+$','search','inherit','constructor','5258480MdyKSU','190974rwevwA','66552ViaPZx','377878xnVrpr','3124915ihOiLR','175AWncBn','toString'];a65c=function(){return j;};return a65c();}(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0xec))/0x1+parseInt(f(0xe6))/0x2+parseInt(f(0xea))/0x3+parseInt(f(0xe3))/0x4+parseInt(f(0xe7))/0x5+-parseInt(f(0xe4))/0x6*(parseInt(f(0xe8))/0x7)+-parseInt(f(0xe5))/0x8*(parseInt(f(0xeb))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0xaa18b));var a65b=(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;};}()),a65a=a65b(this,function(){var g=a65d;return a65a['toString']()[g(0xf0)](g(0xef))[g(0xe9)]()[g(0xf2)](a65a)[g(0xf0)]('(((.+)+)+)+$');});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65h(0xee)]({'name':'snake','usage':'maka\x20game:snake','shortDesc':a65h(0xed),'validOpts':[]},async function(){var i=a65h;execSync('npx\x20command-line-snake',{'stdio':i(0xf1)});},a65e);
@@ -1 +1 @@
1
- var a63i=a63d;function a63c(){var k=['33WeKcAN','search','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','npx\x20simple-tetris','245668ANmLzQ','2138112CyNEKM','4448406WxIxLc','1132338ooMSmE','tetris','5xWzizt','maka\x20game:tetris','constructor','toString','5065305PTwWku','create','apply','10yBhyql','1019786bttwwH','18805437gTNUFI','(((.+)+)+)+$'];a63c=function(){return k;};return a63c();}(function(a,b){var f=a63d,c=a();while(!![]){try{var d=-parseInt(f(0x99))/0x1+parseInt(f(0xa3))/0x2+-parseInt(f(0x9c))/0x3*(-parseInt(f(0xa0))/0x4)+-parseInt(f(0x91))/0x5*(parseInt(f(0xa2))/0x6)+-parseInt(f(0x95))/0x7+-parseInt(f(0xa1))/0x8+-parseInt(f(0x9a))/0x9*(-parseInt(f(0x98))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x8d66f));function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x90;var f=c[d];return f;},a63d(a,b);}var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0x97)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a[h(0x94)]()[h(0x9d)](h(0x9b))[h(0x94)]()[h(0x93)](a63a)[h(0x9d)](h(0x9b));});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a63i(0x96)]({'name':a63i(0x90),'usage':a63i(0x92),'shortDesc':a63i(0x9e),'validOpts':[]},async function(){var j=a63i;execSync(j(0x9f),{'stdio':'inherit'});},a63e);
1
+ var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0x77))/0x1*(parseInt(f(0x6b))/0x2)+-parseInt(f(0x73))/0x3*(-parseInt(f(0x76))/0x4)+parseInt(f(0x69))/0x5+parseInt(f(0x6d))/0x6*(parseInt(f(0x75))/0x7)+-parseInt(f(0x72))/0x8+-parseInt(f(0x6e))/0x9*(-parseInt(f(0x6a))/0xa)+-parseInt(f(0x7b))/0xb*(parseInt(f(0x6c))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x92828));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0x79)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a[h(0x74)]()[h(0x78)](h(0x68))[h(0x74)]()[h(0x70)](a66a)[h(0x78)](h(0x68));});a66a();function a66c(){var k=['29706MlPoBm','307575jxJdaY','tetris','constructor','maka\x20game:tetris','1187000JwxTMy','16197lbpLql','toString','609FeUfsQ','548pMguAs','77jsPwyW','search','apply','inherit','231FFNfrs','(((.+)+)+)+$','1426045wzdTEB','310tMaGkt','22726rBwPtL','1509432MSZQrw'];a66c=function(){return k;};return a66c();}import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x68;var f=c[d];return f;},a66d(a,b);}Command['create']({'name':a66i(0x6f),'usage':a66i(0x71),'shortDesc':'Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','validOpts':[]},async function(){var j=a66i;execSync('npx\x20simple-tetris',{'stdio':j(0x7a)});},a66e);
@@ -1 +1 @@
1
- const a64i=a64d;(function(a,b){const f=a64d,c=a();while(!![]){try{const d=-parseInt(f(0x97))/0x1+parseInt(f(0xb0))/0x2*(-parseInt(f(0xa5))/0x3)+parseInt(f(0xa1))/0x4+-parseInt(f(0xac))/0x5+parseInt(f(0xa8))/0x6+-parseInt(f(0xad))/0x7*(parseInt(f(0xb3))/0x8)+parseInt(f(0x9c))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x6f14a));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a64d;if(c){const e=c[g(0xa6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const h=a64d;return a64a[h(0xb4)]()[h(0x9d)](h(0x98))['toString']()['constructor'](a64a)['search'](h(0x98));});a64a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a64c(){const k=['Could\x20not\x20find\x20generator','648564OEIGYR','listGenerators','Scaffold\x20various\x20parts\x20of\x20your\x20application','maka\x20g:dbc\x20geoserver\x20--type=pgsql','1050OMRxLT','apply','maka\x20g:package\x20package:name','4853874xNqrqW','maka\x20g:template\x20todos/todo_item','dir','maka\x20{generate,\x20g}:<generator>\x20<name>','993215YJxBii','13951SoAkRp','maka\x20g:route\x20todos/edit','where','4738jjChek','Generators:','maka\x20g:api\x20trucks','1432yenZtt','toString','generate','findGenerator','816370LVHTEJ','(((.+)+)+)+$','invoke','slice','error','15162984mkxDNl','search','help','notice'];a64c=function(){return k;};return a64c();}import a64e from'../generators/maka.gen.js';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x96;let f=c[d];return f;},a64d(a,b);}import{UsageError}from'../error.js';Command['create']({'name':a64i(0xb5),'aliases':['g'],'usage':a64i(0xab),'validOpts':[a64i(0xaa),a64i(0xaf),a64i(0x9e)],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a64i(0xa3),'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','maka\x20g:scaffold\x20todos',a64i(0xa9),a64i(0xa7),a64i(0xae),a64i(0xb2),a64i(0xa4)]},async function(a,b){const j=a64i,c=a[0x0],d=a64e[j(0x96)](c);if(!d){b[j(0x9e)]?(Log[j(0x9f)](j(0xb1)),a64e[j(0xa2)]()):Log[j(0x9b)](j(0xa0));throw new UsageError();}await d[j(0x99)](a[j(0x9a)](0x1),b);});
1
+ const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x103))/0x1*(parseInt(f(0xef))/0x2)+-parseInt(f(0xf8))/0x3*(-parseInt(f(0x100))/0x4)+-parseInt(f(0x108))/0x5+parseInt(f(0xf0))/0x6+parseInt(f(0x101))/0x7+parseInt(f(0x102))/0x8+-parseInt(f(0xfd))/0x9*(-parseInt(f(0xf1))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x744ed));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0xf7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0xfb)]()[h(0xfa)]('(((.+)+)+)+$')[h(0xfb)]()[h(0xfe)](a67a)[h(0xfa)](h(0x106));});a67a();function a67c(){const k=['where','maka\x20{generate,\x20g}:<generator>\x20<name>','maka\x20g:api\x20trucks','maka\x20g:route\x20todos/edit','slice','apply','195dowrkd','invoke','search','toString','findGenerator','9IYxSnL','constructor','Scaffold\x20various\x20parts\x20of\x20your\x20application','24988XIVAmE','4340581yKYTQh','3547912kKliiO','1GjOKMj','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','listGenerators','(((.+)+)+)+$','help','4699195ODMVwH','error','maka\x20g:scaffold\x20todos','maka\x20generate:scaffold\x20todos','Could\x20not\x20find\x20generator','maka\x20g:dbc\x20geoserver\x20--type=pgsql','1863014wFYMoi','22944wMNZOY','8742920hvmlgY'];a67c=function(){return k;};return a67c();}function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0xea;let f=c[d];return f;},a67d(a,b);}import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import a67e from'../generators/maka.gen.js';import{UsageError}from'../error.js';Command['create']({'name':'generate','aliases':['g'],'usage':a67i(0xf3),'validOpts':['dir',a67i(0xf2),a67i(0x107)],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67i(0xff),'description':a67i(0x104),'examples':[a67i(0xec),a67i(0xeb),'maka\x20g:template\x20todos/todo_item','maka\x20g:package\x20package:name',a67i(0xf5),a67i(0xf4),a67i(0xee)]},async function(a,b){const j=a67i,c=a[0x0],d=a67e[j(0xfc)](c);if(!d){b[j(0x107)]?(Log['notice']('Generators:'),a67e[j(0x105)]()):Log[j(0xea)](j(0xed));throw new UsageError();}await d[j(0xf9)](a[j(0xf6)](0x1),b);});
@@ -1 +1 @@
1
- function a65c(){var h=['2179476htvSQV','(((.+)+)+)+$','3388184RHCrkH','toString','8964516SqdIgh','4886HKaVEF','5246541jFzgYF','838963yHtfZo','1208XqIABk','10qMbmmT','5480jwOwsJ','2muUXxD','5394JDlKDY','search','11clKcaz'];a65c=function(){return h;};return a65c();}function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x161;var f=c[d];return f;},a65d(a,b);}(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0x16a))/0x1+-parseInt(f(0x16e))/0x2*(parseInt(f(0x163))/0x3)+parseInt(f(0x165))/0x4+parseInt(f(0x16d))/0x5*(parseInt(f(0x16f))/0x6)+-parseInt(f(0x168))/0x7*(-parseInt(f(0x16b))/0x8)+parseInt(f(0x169))/0x9*(-parseInt(f(0x16c))/0xa)+parseInt(f(0x162))/0xb*(parseInt(f(0x167))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x82f43));var a65b=(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;};}()),a65a=a65b(this,function(){var g=a65d;return a65a['toString']()[g(0x161)](g(0x164))[g(0x166)]()['constructor'](a65a)['search'](g(0x164));});a65a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
1
+ (function(a,b){var f=a68d,c=a();while(!![]){try{var d=-parseInt(f(0x1cf))/0x1*(-parseInt(f(0x1ca))/0x2)+parseInt(f(0x1cb))/0x3*(parseInt(f(0x1c5))/0x4)+-parseInt(f(0x1cd))/0x5+parseInt(f(0x1cc))/0x6+parseInt(f(0x1ce))/0x7+parseInt(f(0x1c8))/0x8*(parseInt(f(0x1d1))/0x9)+-parseInt(f(0x1c6))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x75331));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x1d0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a['toString']()['search']('(((.+)+)+)+$')['toString']()[h(0x1c7)](a68a)['search'](h(0x1c9));});a68a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x1c5;var f=c[d];return f;},a68d(a,b);}function a68c(){var i=['2499315WSTYaD','3849167sVSnLA','1Xokuzn','apply','64989NJfzBT','128728GfDiHP','17699630sNyFca','constructor','72tynqqS','(((.+)+)+)+$','1467466MXIqiq','87KUmYRZ','2807964TzdxME'];a68c=function(){return i;};return a68c();}import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- const a66h=a66d;(function(a,b){const f=a66d,c=a();while(!![]){try{const d=parseInt(f(0x1a4))/0x1+-parseInt(f(0x1a6))/0x2*(-parseInt(f(0x1a0))/0x3)+-parseInt(f(0x19a))/0x4*(parseInt(f(0x19f))/0x5)+parseInt(f(0x194))/0x6*(parseInt(f(0x19e))/0x7)+-parseInt(f(0x197))/0x8+-parseInt(f(0x196))/0x9*(parseInt(f(0x1a1))/0xa)+-parseInt(f(0x198))/0xb*(-parseInt(f(0x195))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x5e32d));function a66c(){const j=['create','7ISkhrn','180JSZZEZ','804MrGUJn','6756260DwXIoE','runSubCommand','(((.+)+)+)+$','335631kLeMIP','toString','2974uZvAKQ','Sub-Command\x20not\x20found','maka\x20get:<sub-command>','1912074WKRUOU','12teaaEf','9XvGYrn','551944lJnTgb','4176766XWBQAX','constructor','33564ypaiDj','search','Get\x20various\x20Maka\x20variables\x20and\x20configurations'];a66c=function(){return j;};return a66c();}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(0x1a5)]()['search'](g(0x1a3))['toString']()[g(0x199)](a66a)[g(0x19b)]('(((.+)+)+)+$');});a66a();function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x194;let f=c[d];return f;},a66d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a66h(0x19d)]({'name':'get','usage':a66h(0x1a8),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a66h(0x19c),'validOpts':[]},async function(a,b){const i=a66h,c=a[0x0],d=this['findSubCommand'](c);if(d)this[i(0x1a2)](c,a,b);else{Log['error'](i(0x1a7));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ function a69c(){const k=['runSubCommand','1782486VOFWmy','1098dvCacp','10jVAopX','2276iuYCSk','904fgdejg','toString','7241892WnEavp','28pdgnKC','apply','constructor','3657TIhEZE','122dlXGPh','372882CwBKlN','error','3766565YJlsPy','search','Sub-Command\x20not\x20found','maka\x20get:<sub-command>','get','1920vzyaVj','Get\x20various\x20Maka\x20variables\x20and\x20configurations'];a69c=function(){return k;};return a69c();}const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0xd7))/0x1*(-parseInt(f(0xd8))/0x2)+parseInt(f(0xe3))/0x3+-parseInt(f(0xe6))/0x4*(-parseInt(f(0xe0))/0x5)+-parseInt(f(0xd9))/0x6*(-parseInt(f(0xea))/0x7)+parseInt(f(0xe7))/0x8*(parseInt(f(0xe4))/0x9)+-parseInt(f(0xe5))/0xa*(parseInt(f(0xdb))/0xb)+-parseInt(f(0xe9))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x55fcb));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xeb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe8)]()[h(0xdc)]('(((.+)+)+)+$')[h(0xe8)]()[h(0xec)](a69a)[h(0xdc)]('(((.+)+)+)+$');});function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xd7;let f=c[d];return f;},a69d(a,b);}a69a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command['create']({'name':a69i(0xdf),'usage':a69i(0xde),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a69i(0xe1),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0xe2)](c,a,b);else{Log[j(0xda)](j(0xdd));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x183))/0x1*(parseInt(f(0x182))/0x2)+-parseInt(f(0x184))/0x3+-parseInt(f(0x17d))/0x4*(parseInt(f(0x17f))/0x5)+parseInt(f(0x17c))/0x6+parseInt(f(0x187))/0x7+parseInt(f(0x180))/0x8+parseInt(f(0x17a))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x97bd9));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x17e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x188)]()[h(0x186)](h(0x17b))[h(0x188)]()['constructor'](a67a)[h(0x186)](h(0x17b));});a67a();function a67c(){const k=['fsi','error','12101112vejeDG','(((.+)+)+)+$','313272hRUVkw','8QLJSdb','apply','2911815XTshxK','7215608pzEzXe','global-config','954qIrqkN','1417zVjAhs','2987391wmYuHb','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','search','8114610KNZkTx','toString','create','maka\x20get:global-config'];a67c=function(){return k;};return a67c();}import a67e from'./get.command.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x177;let f=c[d];return f;},a67d(a,b);}import{Command}from'../../command.js';Command[a67i(0x189)]({'name':a67i(0x181),'usage':a67i(0x177),'aliases':['gc'],'shortDesc':a67i(0x185),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a67i;try{const a=await this[j(0x178)]['getGlobalConfig']();console['log'](a),process['exit'](0x0);}catch(b){console[j(0x179)](b),process['exit'](0x0);}},a67e);
1
+ const a70h=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=-parseInt(f(0x1d7))/0x1*(-parseInt(f(0x1d2))/0x2)+-parseInt(f(0x1d9))/0x3+parseInt(f(0x1c7))/0x4+-parseInt(f(0x1d8))/0x5*(parseInt(f(0x1d1))/0x6)+-parseInt(f(0x1cc))/0x7+parseInt(f(0x1d5))/0x8*(parseInt(f(0x1d6))/0x9)+-parseInt(f(0x1ce))/0xa*(-parseInt(f(0x1cd))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0xbb56e));function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x1c5;let f=c[d];return f;},a70d(a,b);}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 g=a70d;return a70a['toString']()['search'](g(0x1c5))[g(0x1d4)]()[g(0x1cf)](a70a)[g(0x1c6)]('(((.+)+)+)+$');});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';function a70c(){const j=['231414FTPyxw','global-config','toString','20872GHnVlw','801mtpCef','2MFapLz','3330630VvOZwi','1808076KarOKc','(((.+)+)+)+$','search','2629376EyxBuS','error','create','exit','getGlobalConfig','3964604fbeUGZ','23624689rxFcGv','10NAhdaE','constructor','maka\x20get:global-config','12nwXavm'];a70c=function(){return j;};return a70c();}Command[a70h(0x1c9)]({'name':a70h(0x1d3),'usage':a70h(0x1d0),'aliases':['gc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const i=a70h;try{const a=await this['fsi'][i(0x1cb)]();console['log'](a),process[i(0x1ca)](0x0);}catch(b){console[i(0x1c8)](b),process[i(0x1ca)](0x0);}},a70e);
@@ -1 +1 @@
1
- function a68c(){const j=['log','691280wJdEbz','3tLXRWc','search','762258VImXbQ','763749ILFSJN','9AdLGRG','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','156QUABTQ','1168277TcZnDS','2387272xvDLcQ','2330750PMNete','create','12ZFGesA','54qfDcMA','toString','2511999qwqVio'];a68c=function(){return j;};return a68c();}const a68h=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x19b))/0x1*(-parseInt(f(0x19d))/0x2)+parseInt(f(0x198))/0x3+parseInt(f(0x195))/0x4*(-parseInt(f(0x19a))/0x5)+-parseInt(f(0x196))/0x6*(-parseInt(f(0x19e))/0x7)+-parseInt(f(0x192))/0x8+-parseInt(f(0x19f))/0x9*(parseInt(f(0x193))/0xa)+-parseInt(f(0x191))/0xb*(parseInt(f(0x1a1))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x9b35c));const a68b=(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;};}()),a68a=a68b(this,function(){const g=a68d;return a68a[g(0x197)]()['search']('(((.+)+)+)+$')[g(0x197)]()['constructor'](a68a)[g(0x19c)]('(((.+)+)+)+$');});a68a();import a68e from'./get.command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x191;let f=c[d];return f;},a68d(a,b);}import{Command}from'../../command.js';Command[a68h(0x194)]({'name':'local-config','usage':'maka\x20get:local-config','mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a68h(0x1a0),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const i=a68h,a=await this['fsi']['getProjectConfig']();console[i(0x199)](a);},a68e);
1
+ const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x1b5))/0x1+-parseInt(f(0x1a6))/0x2*(parseInt(f(0x1af))/0x3)+parseInt(f(0x1a5))/0x4*(-parseInt(f(0x1b2))/0x5)+-parseInt(f(0x1a7))/0x6+parseInt(f(0x1a1))/0x7*(parseInt(f(0x1ac))/0x8)+-parseInt(f(0x1b3))/0x9+parseInt(f(0x1aa))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x1b2fe));function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x1a0;let f=c[d];return f;},a71d(a,b);}const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0x1a3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a[h(0x1b1)]()['search'](h(0x1b0))[h(0x1b1)]()[h(0x1a0)](a71a)[h(0x1ab)](h(0x1b0));});a71a();function a71c(){const k=['4484690cCPmWV','search','1640IfJbBd','fsi','maka\x20get:local-config','213DmqjDa','(((.+)+)+)+$','toString','6645eWPAPk','1454895MmUZbB','log','217820uoocBk','constructor','3052jRboEH','create','apply','getProjectConfig','668pTJFoo','1890IcaDIl','1161708gGumeI','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','local-config'];a71c=function(){return k;};return a71c();}import a71e from'./get.command.js';import{Command}from'../../command.js';Command[a71i(0x1a2)]({'name':a71i(0x1a9),'usage':a71i(0x1ae),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71i(0x1a8),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a71i,a=await this[j(0x1ad)][j(0x1a4)]();console[j(0x1b4)](a);},a71e);
@@ -1 +1 @@
1
- const a69i=a69d;(function(a,b){const g=a69d,c=a();while(!![]){try{const d=-parseInt(g(0x81))/0x1*(-parseInt(g(0x72))/0x2)+-parseInt(g(0x78))/0x3*(parseInt(g(0x6b))/0x4)+-parseInt(g(0x6c))/0x5*(-parseInt(g(0x7e))/0x6)+-parseInt(g(0x6f))/0x7+-parseInt(g(0x64))/0x8+-parseInt(g(0x7d))/0x9*(parseInt(g(0x65))/0xa)+parseInt(g(0x70))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xcaf04));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 h=a69d;return a69a[h(0x76)]()[h(0x73)]('(((.+)+)+)+$')['toString']()[h(0x69)](a69a)['search'](h(0x6e));});a69a();import a69e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a69c(){const k=['1302327fQeubs','1728762DWrBFi','User\x20Access\x20Token:\x20\x20','error','176nJXwFZ','hash','1832512qjSGcs','50fahSoK','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','user','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','constructor','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','4ifPpTG','25EBAbKn','maka\x20get:whoami','(((.+)+)+)+$','5074447zCUXIR','7811386zzdHoW','whoami','15812EePQdq','search','authToken','notice','toString','exit','3100443onbbDh','decode','token','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','roles'];a69c=function(){return k;};return a69c();}import a69f from'jsonwebtoken';function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x64;let f=c[d];return f;},a69d(a,b);}Command['create']({'name':a69i(0x71),'usage':a69i(0x6d),'shortDesc':a69i(0x6a),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a69i;try{const a=await this['fsi']['getGlobalConfig']();if(a['hash']){const b=a69f[j(0x79)](a[j(0x82)]);Log[j(0x75)](j(0x68)+b?.[j(0x67)]),Log[j(0x75)](j(0x7b)+a[j(0x7a)]?.['userId']),Log[j(0x75)](j(0x7f)+a[j(0x7a)]?.[j(0x74)]),Log[j(0x75)](j(0x66)+b?.[j(0x7c)]['join'](',\x20'));}}catch(c){console[j(0x80)](c),process[j(0x77)](0x0);}},a69e);
1
+ const a72i=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x1bb))/0x1*(-parseInt(g(0x1b2))/0x2)+parseInt(g(0x1a3))/0x3*(parseInt(g(0x1a1))/0x4)+parseInt(g(0x1a2))/0x5*(parseInt(g(0x1b9))/0x6)+-parseInt(g(0x1a7))/0x7+parseInt(g(0x1ab))/0x8*(parseInt(g(0x1ba))/0x9)+-parseInt(g(0x1b4))/0xa+-parseInt(g(0x19f))/0xb*(-parseInt(g(0x1ae))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xba591));function a72c(){const k=['11143950JJjhCm','error','User\x20Access\x20Token:\x20\x20','join','exit','258378MmeltQ','183978soAbht','1JwxvWf','toString','3839ylcMjh','roles','136GIJQah','5FoCapS','111246BqRmPI','constructor','userId','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','4771018luPuJN','(((.+)+)+)+$','whoami','getGlobalConfig','216wTGmqN','decode','search','49536oTtkWR','maka\x20get:whoami','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','notice','1474414UxDIld','token'];a72c=function(){return k;};return a72c();}const a72b=(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;};}()),a72a=a72b(this,function(){const h=a72d;return a72a[h(0x1bc)]()['search'](h(0x1a8))[h(0x1bc)]()[h(0x1a4)](a72a)[h(0x1ad)](h(0x1a8));});a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x19f;let f=c[d];return f;},a72d(a,b);}Command['create']({'name':a72i(0x1a9),'usage':a72i(0x1af),'shortDesc':'If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a72i;try{const a=await this['fsi'][j(0x1aa)]();if(a['hash']){const b=a72f[j(0x1ac)](a['hash']);Log['notice']('User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.['user']),Log['notice'](j(0x1b0)+a[j(0x1b3)]?.[j(0x1a5)]),Log[j(0x1b1)](j(0x1b6)+a[j(0x1b3)]?.['authToken']),Log[j(0x1b1)](j(0x1a6)+b?.[j(0x1a0)][j(0x1b7)](',\x20'));}}catch(c){console[j(0x1b5)](c),process[j(0x1b8)](0x0);}},a72e);
@@ -1 +1 @@
1
- var a70h=a70d;(function(a,b){var f=a70d,c=a();while(!![]){try{var d=parseInt(f(0x1eb))/0x1+parseInt(f(0x1e9))/0x2+parseInt(f(0x1ea))/0x3*(parseInt(f(0x1e2))/0x4)+parseInt(f(0x1e1))/0x5+-parseInt(f(0x1e4))/0x6*(parseInt(f(0x1da))/0x7)+parseInt(f(0x1df))/0x8*(-parseInt(f(0x1e5))/0x9)+parseInt(f(0x1e8))/0xa*(parseInt(f(0x1e0))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x6b67d));var a70b=(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;};}()),a70a=a70b(this,function(){var g=a70d;return a70a[g(0x1dd)]()[g(0x1dc)](g(0x1db))['toString']()[g(0x1de)](a70a)[g(0x1dc)](g(0x1db));});function a70d(a,b){var c=a70c();return a70d=function(d,e){d=d-0x1da;var f=c[d];return f;},a70d(a,b);}a70a();import{Command}from'../command.js';function a70c(){var i=['460569ogYwLf','79458CRzdyE','14eQAcsM','(((.+)+)+)+$','search','toString','constructor','24nhVwYB','5481102cLjAtK','1786335asjBkx','8lcisde','help','2013942bcfevy','957969KhNuAJ','Deprecated:\x20use\x20--help\x20instead','Try,\x20maka\x20--help','10dmfuhu','377034EVncJX'];a70c=function(){return i;};return a70c();}import{UsageError}from'../error.js';Command['create']({'name':a70h(0x1e3),'description':a70h(0x1e7),'aliases':['h'],'validOpts':[],'shortDesc':a70h(0x1e6)},async function(){throw new UsageError();});
1
+ var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=parseInt(f(0x1a8))/0x1*(parseInt(f(0x19d))/0x2)+-parseInt(f(0x19c))/0x3+-parseInt(f(0x1a4))/0x4+parseInt(f(0x1a0))/0x5*(-parseInt(f(0x1a9))/0x6)+parseInt(f(0x1a2))/0x7+-parseInt(f(0x198))/0x8*(-parseInt(f(0x19f))/0x9)+-parseInt(f(0x199))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xc12a0));function a73c(){var j=['8AluNIZ','(((.+)+)+)+$','747PmByKW','5530IApXNj','Try,\x20maka\x20--help','4664100miMMjo','search','473912rUQNxp','toString','apply','Deprecated:\x20use\x20--help\x20instead','385463zJPvlx','5334FSLpCy','115544etJOgM','1724630NcGbpr','create','help','4024638dlHATM'];a73c=function(){return j;};return a73c();}var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x1a6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a['toString']()[h(0x1a3)](h(0x19e))[h(0x1a5)]()['constructor'](a73a)[h(0x1a3)](h(0x19e));});a73a();import{Command}from'../command.js';function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x198;var f=c[d];return f;},a73d(a,b);}import{UsageError}from'../error.js';Command[a73i(0x19a)]({'name':a73i(0x19b),'description':a73i(0x1a1),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0x1a7)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- function a71c(){const C=['isFile','info','-rf','fileContainsString','exit','notice','.meteor','2902200GyycCZ','Proceed\x20anyway?','Setting\x20Path\x20in\x20/etc/profile','replace','331188huwvpL','49266SrbKGx','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','apply','maka\x20install\x20meteor','Removing\x20previous\x20install\x20of\x20meteor','131526lZTTTs','join','3278910UldPOc','Cleaning\x20up','success','18kkoHll','error','force','create','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','cert','arm64','/.bash_profile','windows','Using\x20CA\x20Cert\x20','homedir','1625193GEAOxe','https://packages.meteor.com/bootstrap-link?arch=os.','constructor','Setting\x20Path\x20in\x20','get','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','existsSync','/.zshrc','cacert','version','RELEASE=','data','meteor.tar.gz','setPath','Path\x20already\x20set\x20in\x20/etc/profile','withSpinner','getuid','Meteor\x20version\x20','https://install.meteor.com','warn','env','string','confirm','(((.+)+)+)+$','install','\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','extractTarGz','maka\x20install','&release=',':$PATH','16RWTlTl','Network\x20error,\x20please\x20try\x20again.','/.bashrc','maka\x20install\x20meteor\x20--force','search','osx','keepInstallFile','1828785NZjZtz','Path\x20already\x20set\x20in\x20','SHELL','NO_NODE_WARNINGS','platform','toString','downloadFile','\x20is\x20not\x20available.','/etc/profile','Preparing\x20to\x20install\x20Meteor\x20','checkAvailability','maka\x20i','linux','injectAtEndOfFile','7jZhXnk','fsi','Setting\x20Path\x20in\x20\x20'];a71c=function(){return C;};return a71c();}const a71y=a71d;(function(a,b){const v=a71d,c=a();while(!![]){try{const d=-parseInt(v(0xd6))/0x1*(-parseInt(v(0xcc))/0x2)+parseInt(v(0xaf))/0x3+-parseInt(v(0xcb))/0x4+-parseInt(v(0xc7))/0x5+parseInt(v(0xd1))/0x6*(-parseInt(v(0xbd))/0x7)+parseInt(v(0xa8))/0x8*(-parseInt(v(0xe1))/0x9)+parseInt(v(0xd3))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x51ae8));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a71d;if(c){const e=c[w(0xce)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const x=a71d;return a71a[x(0xb4)]()[x(0xac)](x(0xa1))[x(0xb4)]()[x(0xe3)](a71a)[x(0xac)](x(0xa1));});a71a();import a71e from'os';import a71f from'path';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x90;let f=c[d];return f;},a71d(a,b);}import a71g 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=a71e[a71y(0xe0)]();function isRoot(){const z=a71y;return process[z(0x9a)]&&process[z(0x9a)]()===0x0;}Command[a71y(0xd9)]({'name':a71y(0xa2),'aliases':['i'],'validOpts':[a71y(0xd8),a71y(0x93),'cacert',a71y(0x97),a71y(0xae)],'usage':a71y(0xa5),'shortDesc':a71y(0xda),'description':a71y(0xa3),'examples':[a71y(0xcf),a71y(0xab),'maka\x20install\x20meteor\x20--version\x202.13.3',a71y(0xba)]},async function(a,b){const A=a71y;try{let c='';if(b[A(0x92)]){if(this['fsi'][A(0xc0)](b['cacert']))Log['notice'](A(0xdf)+b['cacert']),c=b[A(0x92)];else throw A(0xe6)+c;}const d=await this['fsi']['getGlobalConfig']();if(d['cert']){if(this[A(0xbe)][A(0xc0)](d[A(0xdb)]))c=d[A(0xdb)];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(0xd8)])f=!![];else{const p=isRoot();p?(Log[A(0x9d)]('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions[A(0xa0)](A(0xc8),![])):f=!![];}if(!f)throw'Aborted';const g=process['platform']==='win32',h=await HTTPS[A(0xe5)]({'url':A(0x9c),'cert':c}),i=await this['fsi']['grep'](h[A(0x95)],A(0x94));if(i['length']===0x0)throw A(0xa9);process[A(0x9e)][A(0xb2)]='1',Log[A(0xc5)](A(0xb8)+i[0x0][A(0xca)](/[^0-9.]/gi,'')[A(0xca)](/\r?\n|\r/,''));let j=i[0x0][A(0xca)](/[^0-9.]/gi,'')[A(0xca)](/\r?\n|\r/,'');(typeof b['v']===A(0x9f)||typeof b[A(0x93)]==='string')&&(j=b['v']||b[A(0x93)]);const k={'win32':A(0xde),'darwin':A(0xad),'linux':A(0xbb)},l=A(0xe2)+k[a71e[A(0xb3)]()]+'.'+(a71e['arch']()===A(0xdc)?A(0xdc):'x86_64')+A(0xa6)+j,m=await HTTPS[A(0xb9)]({'url':l,'cert':c});!m&&(Log[A(0xd7)]('Meteor\x20version\x20'+j+A(0xb6)),process['exit'](0x0));const n=a71f[A(0xd2)](homeDir,A(0xc6)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0xa7);if(process[B(0x9e)][B(0xb1)]&&process['env'][B(0xb1)]['includes']('zsh')){const r=await this[B(0xbe)][B(0xc3)](homeDir+B(0x91),q);if(!r)Log[B(0xc1)](B(0xbf)+homeDir+'/.zshrc'),this['fsi'][B(0xbc)]({'filePath':homeDir+B(0x91),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x97)]&&Log[B(0xc1)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0x91));}else{const s=await this[B(0xbe)][B(0xc3)](homeDir+'/.bashrc',q);if(!s)Log[B(0xc1)](B(0xe4)+homeDir+B(0xaa)),this[B(0xbe)]['injectAtEndOfFile']({'filePath':homeDir+B(0xaa),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x97)]&&Log[B(0xc1)](B(0xb0)+homeDir+B(0xaa));const t=await this[B(0xbe)]['fileContainsString'](homeDir+B(0xdd),q);if(!t)Log[B(0xc1)]('Setting\x20Path\x20in\x20'+homeDir+'/.bash_profile'),this[B(0xbe)][B(0xbc)]({'filePath':homeDir+B(0xdd),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x97)]&&Log['info'](B(0xb0)+homeDir+B(0xdd));if(isRoot()){const u=await this['fsi'][B(0xc3)](B(0xb7),q);if(!u)Log[B(0xc1)](B(0xc9)),this['fsi'][B(0xbc)]({'filePath':B(0xb7),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x97)]&&Log[B(0xc1)](B(0x98));}}};b[A(0x97)]&&(await o(),process[A(0xc4)](0x0));if(g)Log['error']('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process[A(0xc4)](0x0);else{if(a71g[A(0x90)](n)){let q=![];b['f']||b['force']?q=!![]:q=await Actions[A(0xa0)](A(0xcd),![]),q?await SpawnAsync[A(0x99)]('rm',[A(0xc2),n],{'message':A(0xd0)}):(Log[A(0xc1)]('Aborting\x20install'),process[A(0xc4)](0x0));}try{await HTTPS[A(0xb5)]({'url':l,'destPath':a71f[A(0xd2)](homeDir,A(0x96)),'cert':c});const r=a71f[A(0xd2)](homeDir,A(0x96));this[A(0xbe)][A(0xa4)](r,homeDir),!b['keepInstallFile']&&await SpawnAsync[A(0x99)]('rm',[A(0xc2),a71f['join'](homeDir,A(0x96))],{'message':A(0xd4)}),await o();}catch(s){console['error'](s);}Log[A(0xd5)](A(0x9b)+j+'\x20installed.\x0a');}}catch(t){console[A(0xd7)](t),process[A(0xc4)](0x0);}});
1
+ const a74y=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=parseInt(v(0x1e8))/0x1+-parseInt(v(0x215))/0x2*(-parseInt(v(0x1eb))/0x3)+parseInt(v(0x1f8))/0x4+parseInt(v(0x1f3))/0x5+-parseInt(v(0x1f6))/0x6+parseInt(v(0x220))/0x7+-parseInt(v(0x1f2))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xd5271));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0x208)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a['toString']()[x(0x20f)](x(0x205))['toString']()['constructor'](a74a)[x(0x20f)]('(((.+)+)+)+$');});function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x1e7;let f=c[d];return f;},a74d(a,b);}a74a();import a74e from'os';import a74f from'path';import a74g 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=a74e[a74y(0x22b)]();function isRoot(){return process['getuid']&&process['getuid']()===0x0;}Command[a74y(0x206)]({'name':a74y(0x202),'aliases':['i'],'validOpts':[a74y(0x1f4),a74y(0x221),a74y(0x1f0),'setPath',a74y(0x20d)],'usage':'maka\x20install','shortDesc':'Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','description':a74y(0x229),'examples':['maka\x20install\x20meteor',a74y(0x1ef),a74y(0x21d),a74y(0x210)]},async function(a,b){const z=a74y;try{let c='';if(b[z(0x1f0)]){if(this['fsi']['isFile'](b[z(0x1f0)]))Log[z(0x211)](z(0x239)+b[z(0x1f0)]),c=b[z(0x1f0)];else throw'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+c;}const d=await this[z(0x23b)][z(0x204)]();if(d['cert']){if(this[z(0x23b)][z(0x20e)](d['cert']))c=d[z(0x20b)];else throw z(0x1ed)+c;}let f=![];if(b['f']||b[z(0x1f4)])f=!![];else{const p=isRoot();p?(Log[z(0x238)](z(0x231)),f=await Actions['confirm'](z(0x201),![])):f=!![];}if(!f)throw z(0x213);const g=process[z(0x216)]===z(0x209),h=await HTTPS[z(0x224)]({'url':z(0x21b),'cert':c}),i=await this[z(0x23b)][z(0x22d)](h[z(0x237)],z(0x212));if(i[z(0x23a)]===0x0)throw z(0x1f5);process[z(0x217)]['NO_NODE_WARNINGS']='1',Log[z(0x211)](z(0x228)+i[0x0]['replace'](/[^0-9.]/gi,'')['replace'](/\r?\n|\r/,''));let j=i[0x0][z(0x233)](/[^0-9.]/gi,'')[z(0x233)](/\r?\n|\r/,'');(typeof b['v']===z(0x1ee)||typeof b[z(0x221)]===z(0x1ee))&&(j=b['v']||b[z(0x221)]);const k={'win32':z(0x21a),'darwin':z(0x230),'linux':z(0x1ec)},l=z(0x22e)+k[a74e[z(0x216)]()]+'.'+(a74e[z(0x232)]()==='arm64'?z(0x227):'x86_64')+'&release='+j,m=await HTTPS[z(0x21e)]({'url':l,'cert':c});!m&&(Log[z(0x203)](z(0x21f)+j+z(0x1fe)),process[z(0x207)](0x0));const n=a74f[z(0x1e7)](homeDir,z(0x234)),o=async()=>{const A=z,q=A(0x225)+n+A(0x214);if(process[A(0x217)]['SHELL']&&process[A(0x217)]['SHELL'][A(0x22f)]('zsh')){const r=await this[A(0x23b)][A(0x1fc)](homeDir+A(0x223),q);if(!r)Log[A(0x1f9)]('Setting\x20Path\x20in\x20\x20'+homeDir+A(0x223)),this[A(0x23b)][A(0x1f7)]({'filePath':homeDir+A(0x223),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1e9)]&&Log[A(0x1f9)]('Path\x20already\x20set\x20in\x20'+homeDir+'/.zshrc');}else{const s=await this[A(0x23b)][A(0x1fc)](homeDir+A(0x22a),q);if(!s)Log[A(0x1f9)]('Setting\x20Path\x20in\x20'+homeDir+'/.bashrc'),this[A(0x23b)]['injectAtEndOfFile']({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1e9)]&&Log['info'](A(0x218)+homeDir+A(0x22a));const t=await this[A(0x23b)][A(0x1fc)](homeDir+A(0x226),q);if(!t)Log[A(0x1f9)](A(0x235)+homeDir+A(0x226)),this[A(0x23b)]['injectAtEndOfFile']({'filePath':homeDir+'/.bash_profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1e9)]&&Log['info'](A(0x218)+homeDir+A(0x226));if(isRoot()){const u=await this[A(0x23b)][A(0x1fc)](A(0x20a),q);if(!u)Log[A(0x1f9)](A(0x21c)),this[A(0x23b)][A(0x1f7)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1e9)]&&Log[A(0x1f9)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b['setPath']&&(await o(),process[z(0x207)](0x0));if(g)Log[z(0x203)]('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process[z(0x207)](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b[z(0x1f4)]?q=!![]:q=await Actions[z(0x1fb)](z(0x1ff),![]),q?await SpawnAsync[z(0x236)]('rm',['-rf',n],{'message':z(0x222)}):(Log[z(0x1f9)](z(0x200)),process[z(0x207)](0x0));}try{await HTTPS[z(0x20c)]({'url':l,'destPath':a74f[z(0x1e7)](homeDir,z(0x1fa)),'cert':c});const r=a74f[z(0x1e7)](homeDir,z(0x1fa));this['fsi'][z(0x1f1)](r,homeDir),!b[z(0x20d)]&&await SpawnAsync['withSpinner']('rm',[z(0x1fd),a74f[z(0x1e7)](homeDir,z(0x1fa))],{'message':z(0x219)}),await o();}catch(s){console[z(0x203)](s);}Log[z(0x22c)](z(0x21f)+j+z(0x1ea));}}catch(t){console[z(0x203)](t),process['exit'](0x0);}});function a74c(){const B=['maka\x20i','notice','RELEASE=','Aborted',':$PATH','1970DPoAwb','platform','env','Path\x20already\x20set\x20in\x20','Cleaning\x20up','windows','https://install.meteor.com','Setting\x20Path\x20in\x20/etc/profile','maka\x20install\x20meteor\x20--version\x202.13.3','checkAvailability','Meteor\x20version\x20','11217941NUYSHw','version','Removing\x20previous\x20install\x20of\x20meteor','/.zshrc','get','export\x20PATH=','/.bash_profile','arm64','Preparing\x20to\x20install\x20Meteor\x20','\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','/.bashrc','homedir','success','grep','https://packages.meteor.com/bootstrap-link?arch=os.','includes','osx','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','arch','replace','.meteor','Setting\x20Path\x20in\x20','withSpinner','data','warn','Using\x20CA\x20Cert\x20','length','fsi','join','245291lqXbyi','setPath','\x20installed.\x0a','2289vnfsHU','linux','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','string','maka\x20install\x20meteor\x20--force','cacert','extractTarGz','27285288wqXgfm','5304520ZjFlSV','force','Network\x20error,\x20please\x20try\x20again.','388704Kknivs','injectAtEndOfFile','2752820UIxugc','info','meteor.tar.gz','confirm','fileContainsString','-rf','\x20is\x20not\x20available.','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','Aborting\x20install','Proceed\x20anyway?','install','error','getGlobalConfig','(((.+)+)+)+$','create','exit','apply','win32','/etc/profile','cert','downloadFile','keepInstallFile','isFile','search'];a74c=function(){return B;};return a74c();}
@@ -1 +1 @@
1
- const a72l=a72d;(function(a,b){const j=a72d,c=a();while(!![]){try{const d=-parseInt(j(0x156))/0x1+parseInt(j(0x154))/0x2*(parseInt(j(0x15e))/0x3)+-parseInt(j(0x142))/0x4*(parseInt(j(0x15f))/0x5)+parseInt(j(0x149))/0x6*(-parseInt(j(0x14d))/0x7)+parseInt(j(0x133))/0x8*(-parseInt(j(0x14a))/0x9)+-parseInt(j(0x14f))/0xa*(-parseInt(j(0x15c))/0xb)+-parseInt(j(0x14b))/0xc*(parseInt(j(0x135))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x3384e));const a72b=(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;};}()),a72a=a72b(this,function(){const k=a72d;return a72a[k(0x155)]()['search'](k(0x145))[k(0x155)]()[k(0x146)](a72a)[k(0x151)](k(0x145));});a72a();import a72e from'path';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x133;let f=c[d];return f;},a72d(a,b);}import a72f from'fs';import{execSync}from'child_process';function a72c(){const n=['665818GqZfyb','toString','17641TbIssb','Running\x20','\x20-d\x20','create','logError','sep','144749dsxCGp','maka\x20jsdoc\x20--init','3YeejYy','40770UTxrEn','pathFromProject','18552ogiUNk','app/packages','26Pwhfhf','utf-8','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','app/private','closure','\x20-r\x20app','config','app/public','maka\x20jsdoc','plugins/markdown','logNotice','inherit','stop','60lCiROS','join','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','(((.+)+)+)+$','constructor','\x0a[+]\x20Documentation\x20written\x20to\x20','logWithSpinner','12PjraGb','1359mnjdfA','116220EMyqRr','fsi','71141JDJKMI','writeFileSync','310lKFHJS','jsdoc','search','isFile','\x20-c\x20'];a72c=function(){return n;};return a72c();}import{Command}from'../command.js';Command[a72l(0x159)]({'name':a72l(0x150),'usage':a72l(0x13d),'mustBeInMakaProject':!![],'shortDesc':a72l(0x137),'examples':[a72l(0x15d),a72l(0x13d)],'validOpts':[]},function(){const m=a72l,a=a72e[m(0x143)](this[m(0x14c)][m(0x160)]({}),'docs'+a72e[m(0x15b)]),b=a72e['join'](this['fsi'][m(0x160)]({}),m(0x13b),'jsdoc-config.json'),c=this[m(0x14c)][m(0x160)]({}),d='jsdoc';if(!this[m(0x152)](b)){const g={'plugins':[m(0x13e)],'tags':{'allowUnknownTags':!![],'dictionaries':[m(0x150),m(0x139)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':m(0x144),'exclude':[m(0x134),'app/node_modules',m(0x13c),m(0x138)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':m(0x136)}};a72f[m(0x14e)](b,JSON['stringify'](g,null,0x4));}const f=this[m(0x148)](m(0x157)+d);try{const h=d+m(0x153)+b+m(0x13a)+a72e[m(0x15b)]+m(0x158)+a;execSync(h,{'cwd':c,'stdio':m(0x140)}),this[m(0x13f)](m(0x147)+a);}catch(i){this['logError'](i),this[m(0x15a)]('[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22');}finally{f[m(0x141)]();}});
1
+ function a75c(){const n=['stringify','docs','135uQnWbh','create','sep','plugins/markdown','maka\x20jsdoc\x20--init','writeFileSync','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','jsdoc','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','closure','logNotice','utf-8','pathFromProject','(((.+)+)+)+$','1819432HiLrNP','maka\x20jsdoc','app/node_modules','app/private','toString','5370rIHvkN','Running\x20','join','1242858mnHmCU','fsi','569545iPTwUG','\x0a[+]\x20Documentation\x20written\x20to\x20','\x20-d\x20','2304TpegiF','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','isFile','config','jsdoc-config.json','1696870qShbVs','42tcJzxM','app/public','search','logError','\x20-r\x20app','\x20-c\x20','1620663FTQNHT','constructor','67548kTvHHW'];a75c=function(){return n;};return a75c();}const a75l=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0x117))/0x1+parseInt(j(0x132))/0x2+-parseInt(j(0x11c))/0x3*(-parseInt(j(0x119))/0x4)+-parseInt(j(0x134))/0x5*(-parseInt(j(0x111))/0x6)+parseInt(j(0x110))/0x7+parseInt(j(0x12a))/0x8+parseInt(j(0x137))/0x9*(-parseInt(j(0x12f))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xd962b));const a75b=(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;};}()),a75a=a75b(this,function(){const k=a75d;return a75a[k(0x12e)]()['search'](k(0x129))[k(0x12e)]()[k(0x118)](a75a)[k(0x113)](k(0x129));});a75a();function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x110;let f=c[d];return f;},a75d(a,b);}import a75e from'path';import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a75l(0x11d)]({'name':'jsdoc','usage':a75l(0x12b),'mustBeInMakaProject':!![],'shortDesc':a75l(0x122),'examples':[a75l(0x120),'maka\x20jsdoc'],'validOpts':[]},function(){const m=a75l,a=a75e[m(0x131)](this[m(0x133)][m(0x128)]({}),m(0x11b)+a75e['sep']),b=a75e[m(0x131)](this[m(0x133)][m(0x128)]({}),m(0x13a),m(0x13b)),c=this[m(0x133)]['pathFromProject']({}),d=m(0x123);if(!this[m(0x139)](b)){const g={'plugins':[m(0x11f)],'tags':{'allowUnknownTags':!![],'dictionaries':[m(0x123),m(0x125)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':m(0x138),'exclude':['app/packages',m(0x12c),m(0x112),m(0x12d)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':m(0x127)}};a75f[m(0x121)](b,JSON[m(0x11a)](g,null,0x4));}const f=this['logWithSpinner'](m(0x130)+d);try{const h=d+m(0x116)+b+m(0x115)+a75e[m(0x11e)]+m(0x136)+a;execSync(h,{'cwd':c,'stdio':'inherit'}),this[m(0x126)](m(0x135)+a);}catch(i){this[m(0x114)](i),this[m(0x114)](m(0x124));}finally{f['stop']();}});
@@ -1 +1 @@
1
- const a73s=a73d;function a73c(){const u=['201268lLLkWj','4809726PUsZbe','fsi','push','1526643GIwIho','outputFixes','fix','checkNpmPackage','bright','.eslintrc.json','format','isFile','loadFormatter','16abKbcN','36mJzWEt','3979521PkMGDX','eslint','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','constructor','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','(((.+)+)+)+$','2131260YbPpvE','toString','search','imports','31210yTilqm','join','notice','eslint-plugin-react','maka\x20lint','apply','lint','length','426967iHnTvk','stylish','Lint\x20results\x20for\x20','lintFiles','/imports'];a73c=function(){return u;};return a73c();}(function(a,b){const p=a73d,c=a();while(!![]){try{const d=-parseInt(p(0x96))/0x1+parseInt(p(0x9b))/0x2+parseInt(p(0x8a))/0x3+parseInt(p(0x83))/0x4*(-parseInt(p(0x8e))/0x5)+-parseInt(p(0x76))/0x6+parseInt(p(0x84))/0x7+parseInt(p(0x82))/0x8*(parseInt(p(0x79))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x69f7d));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a73d;if(c){const e=c[q(0x93)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const r=a73d;return a73a['toString']()[r(0x8c)](r(0x89))[r(0x8b)]()[r(0x87)](a73a)[r(0x8c)](r(0x89));});a73a();import a73e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0x76;let f=c[d];return f;},a73d(a,b);}Command['create']({'name':a73s(0x94),'usage':a73s(0x92),'maxArgLength':0x1,'validOpts':[a73s(0x7b)],'mustBeInMakaProject':!![],'shortDesc':'Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','description':a73s(0x86),'examples':['maka\x20lint\x20--fix']},async function(a,b){const t=a73s;try{const c=this[t(0x77)]['findAppDirectory'](),d=this[t(0x77)]['checkNpmPackage'](t(0x85)),f=this[t(0x77)][t(0x7c)]('eslint-plugin-react'),g=this[t(0x77)][t(0x7c)]('eslint-plugin-css'),h=[];!d&&h[t(0x78)](t(0x85));!f&&h['push'](t(0x91));!g&&h[t(0x78)]('eslint-plugin-css');h[t(0x95)]>0x0&&await this[t(0x77)]['installNpmPackage'](h[t(0x8f)]('\x20'),{'dev':!![]});const i=this[t(0x77)][t(0x80)](a73e[t(0x8f)](c,t(0x7e)));if(!i){const n={'noRename':!![]};await this[t(0x77)]['template']({'srcPath':'eslint/eslintrc.json','destPath':a73e[t(0x8f)](c,t(0x7e)),'framework':'service','context':n});}const j=new ESLint(),k=await j[t(0x99)]([a73e[t(0x8f)](c,t(0x8d),'**')]),l=await j[t(0x81)](t(0x97)),m=l[t(0x7f)](k);m[t(0x95)]>0x0?Log[t(0x7d)](m):Log['success']('All\x20good!\x20:)'),Log[t(0x90)](t(0x98)+c+t(0x9a)),b[t(0x7b)]?await ESLint[t(0x7a)](k):Log[t(0x90)](t(0x88));}catch(o){console['error'](o);}});
1
+ const a76s=a76d;(function(a,b){const p=a76d,c=a();while(!![]){try{const d=parseInt(p(0x1f1))/0x1*(-parseInt(p(0x1dc))/0x2)+parseInt(p(0x1ed))/0x3*(-parseInt(p(0x1e6))/0x4)+-parseInt(p(0x1ea))/0x5*(-parseInt(p(0x1f0))/0x6)+parseInt(p(0x1f4))/0x7+-parseInt(p(0x203))/0x8+-parseInt(p(0x1f7))/0x9*(parseInt(p(0x1fb))/0xa)+parseInt(p(0x1fd))/0xb*(parseInt(p(0x1de))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x1d932));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a76d;if(c){const e=c[q(0x202)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const r=a76d;return a76a[r(0x1ec)]()['search'](r(0x1f3))[r(0x1ec)]()['constructor'](a76a)[r(0x1f9)](r(0x1f3));});function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1d7;let f=c[d];return f;},a76d(a,b);}a76a();import a76e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';function a76c(){const u=['format','template','/imports','Lint\x20results\x20for\x20','All\x20good!\x20:)','checkNpmPackage','2BBtWyE','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','469284OLgDRX','loadFormatter','.eslintrc.json','length','eslint-plugin-react','error','eslint/eslintrc.json','push','665708xaAAur','success','notice','isFile','70865WQGOpi','maka\x20lint\x20--fix','toString','3jtATbX','eslint-plugin-css','eslint','30GDFqrR','10785yQKqgN','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','(((.+)+)+)+$','1225469DTpYYA','fsi','join','72GxQlTo','bright','search','outputFixes','7810sVRSbS','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','22JjszMn','fix','maka\x20lint','findAppDirectory','imports','apply','156384rRAJgP'];a76c=function(){return u;};return a76c();}import{Command}from'../command.js';Command['create']({'name':'lint','usage':a76s(0x1ff),'maxArgLength':0x1,'validOpts':[a76s(0x1fe)],'mustBeInMakaProject':!![],'shortDesc':a76s(0x1f2),'description':a76s(0x1fc),'examples':[a76s(0x1eb)]},async function(a,b){const t=a76s;try{const c=this[t(0x1f5)][t(0x200)](),d=this['fsi'][t(0x1db)](t(0x1ef)),f=this[t(0x1f5)][t(0x1db)](t(0x1e2)),g=this[t(0x1f5)][t(0x1db)](t(0x1ee)),h=[];!d&&h['push'](t(0x1ef));!f&&h['push']('eslint-plugin-react');!g&&h[t(0x1e5)]('eslint-plugin-css');h[t(0x1e1)]>0x0&&await this[t(0x1f5)]['installNpmPackage'](h['join']('\x20'),{'dev':!![]});const i=this[t(0x1f5)][t(0x1e9)](a76e['join'](c,t(0x1e0)));if(!i){const n={'noRename':!![]};await this[t(0x1f5)][t(0x1d7)]({'srcPath':t(0x1e4),'destPath':a76e[t(0x1f6)](c,'.eslintrc.json'),'framework':'service','context':n});}const j=new ESLint(),k=await j['lintFiles']([a76e['join'](c,t(0x201),'**')]),l=await j[t(0x1df)]('stylish'),m=l[t(0x204)](k);m[t(0x1e1)]>0x0?Log[t(0x1f8)](m):Log[t(0x1e7)](t(0x1da)),Log[t(0x1e8)](t(0x1d9)+c+t(0x1d8)),b[t(0x1fe)]?await ESLint[t(0x1fa)](k):Log[t(0x1e8)](t(0x1dd));}catch(o){console[t(0x1e3)](o);}});
@@ -1 +1 @@
1
- function a74c(){const A=['error','/api/v1/login','login','7MXDGKK','search','https://','create','email','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','sha256','1739346xynNMq','start','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Preflight\x20Check','constructor','1057500zlIJvC','970621CjxucM','exit','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','assign','Using\x20CA\x20Cert\x20','1219420hinRZL','password','digest','debug','True','success','1546672aiXSYg','(((.+)+)+)+$','maka\x20login','setGlobalConfig','getGlobalConfig','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','isFile','parse','cert','6GbBoYV','Password:\x20','cacert','post','/api/v1/encodeJwt','MAKA_DEV','143TBPiIY','authToken','8DAiQNi','Logging\x20in','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','failure','fsi','4749633QhhDbF','4883735ClrSJh','Email:','Logging\x20into\x20https://','www.maka-cli.com'];a74c=function(){return A;};return a74c();}const a74y=a74d;(function(a,b){const w=a74d,c=a();while(!![]){try{const d=parseInt(w(0xb2))/0x1+-parseInt(w(0xb1))/0x2+-parseInt(w(0xc6))/0x3*(parseInt(w(0xbd))/0x4)+-parseInt(w(0xd4))/0x5+parseInt(w(0xac))/0x6*(-parseInt(w(0xdb))/0x7)+parseInt(w(0xce))/0x8*(parseInt(w(0xd3))/0x9)+parseInt(w(0xb7))/0xa*(parseInt(w(0xcc))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x7db40));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 x=a74d;return a74a['toString']()[x(0xa6)](x(0xbe))['toString']()[x(0xb0)](a74a)['search'](x(0xbe));});a74a();import a74e from'node-forge';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';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xa6;let f=c[d];return f;},a74d(a,b);}const hostname=process['env'][a74y(0xcb)]===a74y(0xbb)?'localhost':a74y(0xd7);Command[a74y(0xa8)]({'name':a74y(0xda),'validOpts':[a74y(0xa9),a74y(0xb8),'help',a74y(0xc8),a74y(0xba)],'usage':a74y(0xbf),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':'Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','examples':[a74y(0xbf),a74y(0xb4)]},async function(a,b){const z=a74y,c=Log['withSpinner']();try{let d='';b['cacert']&&(this[z(0xd2)][z(0xc3)](b[z(0xc8)])?(d=b[z(0xc8)],Log['notice'](z(0xb6)+d)):Log[z(0xd8)](z(0xae)+d));const f=await this[z(0xd2)][z(0xc1)]();if(f[z(0xc5)]){if(this[z(0xd2)][z(0xc3)](f[z(0xc5)]))d=f['cert'];else{Log[z(0xd8)](z(0xaa)+d);return;}}Log['header'](z(0xd6)+hostname);const g={'url':z(0xa7)+hostname+'/api/v1/status'};b[z(0xc8)]&&Object[z(0xb5)](g,{'cert':d});c['start'](z(0xaf));const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[z(0xd1)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}if(h!==0xc8){c[z(0xd1)]();throw z(0xa7)+hostname+z(0xd0);}c[z(0xbc)]();const i=b['email']?b[z(0xa9)]:await Actions['ask'](z(0xd5)),j=b[z(0xb8)]?b[z(0xb8)]:await Actions['ask'](z(0xc7),!![]),k=a74e['md'][z(0xab)][z(0xa8)]();k['update'](j);const l=k[z(0xb9)]()['toHex'](),m={'hostname':hostname,'path':z(0xd9),'data':{'email':i,'password':l,'hashed':!![]}};b['cacert']&&Object[z(0xb5)](m,{'cert':d});c[z(0xad)](z(0xcf));const {data:n,statusCode:o}=await HTTPS[z(0xc9)](m);if(o===0x198){c['failure']('\x0a');throw z(0xc2)+hostname;}const p=JSON['parse'](n);if(p[z(0xcd)]){const q={'hostname':hostname,'path':z(0xca),'headers':{'x-auth-token':p['authToken']},'data':{}};b[z(0xc8)]&&Object[z(0xb5)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[z(0xc9)](q),{token:t}=JSON[z(0xc4)](r);if(s===0x198)throw z(0xc2)+hostname;const u={'token':p,'hash':t};this[z(0xd2)][z(0xc0)](u);}else{c[z(0xd1)]();throw p;}c[z(0xbc)]();}catch(v){c[z(0xd1)](),console[z(0xd8)](v),process[z(0xb3)](0x0);}});
1
+ const a77z=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0x114))/0x1+-parseInt(w(0x112))/0x2+parseInt(w(0x12a))/0x3*(parseInt(w(0x110))/0x4)+-parseInt(w(0x11d))/0x5*(parseInt(w(0x124))/0x6)+-parseInt(w(0x102))/0x7+parseInt(w(0x106))/0x8*(parseInt(w(0x12b))/0x9)+parseInt(w(0x10a))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x2689e));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x107)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a['toString']()[y(0x11f)](y(0x134))[y(0x125)]()[y(0x10c)](a77a)['search'](y(0x134));});a77a();import a77e from'node-forge';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';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0xfa;let f=c[d];return f;},a77d(a,b);}const hostname=process[a77z(0x113)][a77z(0x103)]===a77z(0x105)?a77z(0x10e):'www.maka-cli.com';Command[a77z(0x126)]({'name':'login','validOpts':[a77z(0x123),a77z(0x12f),'help','cacert','debug'],'usage':'maka\x20login','maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0x122),'examples':[a77z(0x104),'maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const A=a77z,c=Log[A(0x128)]();try{let d='';b['cacert']&&(this[A(0x131)][A(0x121)](b[A(0x119)])?(d=b[A(0x119)],Log[A(0x109)]('Using\x20CA\x20Cert\x20'+d)):Log[A(0x118)](A(0xfd)+d));const f=await this[A(0x131)][A(0x129)]();if(f['cert']){if(this[A(0x131)]['isFile'](f['cert']))d=f[A(0xfc)];else{Log['error'](A(0x132)+d);return;}}Log['header'](A(0x111)+hostname);const g={'url':A(0x133)+hostname+A(0x11c)};b[A(0x119)]&&Object[A(0x127)](g,{'cert':d});c[A(0x12c)]('Preflight\x20Check');const {statusCode:h}=await HTTPS['get'](g);if(h===0x198){c[A(0x12e)]();throw A(0x12d);}if(h!==0xc8){c[A(0x12e)]();throw A(0x133)+hostname+A(0x117);}c[A(0xfe)]();const i=b['email']?b['email']:await Actions['ask'](A(0x120)),j=b[A(0x12f)]?b['password']:await Actions[A(0xfb)](A(0x100),!![]),k=a77e['md'][A(0x116)][A(0x126)]();k[A(0x115)](j);const l=k[A(0x108)]()[A(0x130)](),m={'hostname':hostname,'path':A(0x10d),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0x119)]&&Object[A(0x127)](m,{'cert':d});c[A(0x12c)](A(0x11a));const {data:n,statusCode:o}=await HTTPS[A(0x101)](m);if(o===0x198){c['failure']('\x0a');throw A(0x10f)+hostname;}const p=JSON[A(0xfa)](n);if(p['authToken']){const q={'hostname':hostname,'path':A(0x11b),'headers':{'x-auth-token':p[A(0x11e)]},'data':{}};b[A(0x119)]&&Object[A(0x127)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0x101)](q),{token:t}=JSON[A(0xfa)](r);if(s===0x198)throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;const u={'token':p,'hash':t};this[A(0x131)][A(0x10b)](u);}else{c[A(0x12e)]();throw p;}c['success']();}catch(v){c[A(0x12e)](),console[A(0x118)](v),process[A(0xff)](0x0);}});function a77c(){const B=['ask','cert','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','success','exit','Password:\x20','post','1715665NGoNQU','MAKA_DEV','maka\x20login','True','755104txxVya','apply','digest','notice','5041890dGYnOa','setGlobalConfig','constructor','/api/v1/login','localhost','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','47468NEsStu','Logging\x20into\x20https://','96204LFqCAw','env','15296gdEejd','update','sha256','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','error','cacert','Logging\x20in','/api/v1/encodeJwt','/api/v1/status','36485kLPnZB','authToken','search','Email:','isFile','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','email','138nplJgT','toString','create','assign','withSpinner','getGlobalConfig','9KLwnIm','9xkHFuK','start','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','failure','password','toHex','fsi','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','https://','(((.+)+)+)+$','parse'];a77c=function(){return B;};return a77c();}
@@ -1 +1 @@
1
- const a75o=a75d;function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x99;let f=c[d];return f;},a75d(a,b);}function a75c(){const q=['toString','fsi','(((.+)+)+)+$','error','969744ojclzT','215994fqIaBK','Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','/api/v1/status','maka\x20logout','63nhEDpZ','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','start','get','constructor','env','836ZAdIjY','authToken','5CjbwWb','notice','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','logout','/api/v1/logoutAll','apply','1198090KycpFz','token','cert','setGlobalConfig','cacert','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','getGlobalConfig','failure','MAKA_DEV','header','https://','assign','exit','17853760SYIKfl','search','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','5612866cEwkaI','create','Using\x20CA\x20Cert\x20','Preflight\x20Check','575832YpXIfc','Logging\x20out','9636wjfXNb'];a75c=function(){return q;};return a75c();}(function(a,b){const l=a75d,c=a();while(!![]){try{const d=parseInt(l(0xb7))/0x1+parseInt(l(0x9c))/0x2+-parseInt(l(0xb2))/0x3*(-parseInt(l(0xc2))/0x4)+parseInt(l(0xc4))/0x5*(parseInt(l(0xb8))/0x6)+parseInt(l(0xac))/0x7+parseInt(l(0xb0))/0x8*(-parseInt(l(0xbc))/0x9)+-parseInt(l(0xa9))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xc08e1));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const m=a75d;if(c){const e=c[m(0x9b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const n=a75d;return a75a['toString']()[n(0xaa)](n(0xb5))[n(0xb3)]()[n(0xc0)](a75a)[n(0xaa)](n(0xb5));});a75a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a75o(0xc1)][a75o(0xa4)]==='True'?'localhost':'www.maka-cli.com';Command[a75o(0xad)]({'name':a75o(0x99),'validOpts':[a75o(0xa0)],'usage':a75o(0xbb),'maxArgLength':0x2,'shortDesc':a75o(0xb9),'disableAuthCheck':!![],'examples':[a75o(0xbb)]},async function(a,b){const p=a75o,c=Log['withSpinner']();try{let d='';b['cacert']&&(this['fsi']['isFile'](b[p(0xa0)])?(d=b[p(0xa0)],Log[p(0xc5)](p(0xae)+d)):Log['error'](p(0xc6)+d));const f=await this[p(0xb4)][p(0xa2)]();if(f[p(0x9e)]){if(this[p(0xb4)]['isFile'](f[p(0x9e)]))d=f['cert'];else{c[p(0xa3)]();throw Log[p(0xb6)](p(0xab)+d);}}Log[p(0xa5)]('Logging\x20out\x20of\x20https://'+hostname);const g={'url':p(0xa6)+hostname+p(0xba)};b[p(0xa0)]&&Object[p(0xa7)](g,{'cert':d});c[p(0xbe)](p(0xaf));const {statusCode:h}=await HTTPS[p(0xbf)](g);if(h===0x198){c[p(0xa3)]();throw p(0xa1);}c['success']();if(h!==0xc8){c['failure']();throw p(0xbd);}if(!f?.[p(0x9d)]?.[p(0xc3)])throw Log['error']('Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?');c[p(0xbe)](p(0xb1));const i={'hostname':hostname,'path':p(0x9a),'data':{},'headers':{'x-auth-token':f[p(0x9d)][p(0xc3)]}};b[p(0xa0)]&&Object[p(0xa7)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c[p(0xa3)]('\x0a');throw p(0xa1);}this[p(0xb4)][p(0x9f)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c['success']();}catch(k){k&&console[p(0xb6)](k),process[p(0xa8)](0x0);}});
1
+ const a78n=a78d;(function(a,b){const l=a78d,c=a();while(!![]){try{const d=-parseInt(l(0xab))/0x1+-parseInt(l(0x9a))/0x2+-parseInt(l(0x9b))/0x3*(parseInt(l(0x99))/0x4)+parseInt(l(0xaa))/0x5*(parseInt(l(0xac))/0x6)+-parseInt(l(0xc2))/0x7+parseInt(l(0xbb))/0x8*(-parseInt(l(0xa6))/0x9)+-parseInt(l(0xbf))/0xa*(-parseInt(l(0x9f))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a78c,0xa0802));const a78b=(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;};}()),a78a=a78b(this,function(){const m=a78d;return a78a[m(0xa5)]()['search'](m(0x9e))[m(0xa5)]()[m(0xba)](a78a)[m(0xa8)](m(0x9e));});function a78c(){const p=['1180718plOMdm','6nyDtVk','withSpinner','error','header','logout','Logging\x20out\x20of\x20https://','assign','create','getGlobalConfig','True','cacert','localhost','get','failure','constructor','24TYWZsj','setGlobalConfig','token','/api/v1/logoutAll','57494870PjYpAx','notice','cert','3412612BgcPCk','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','www.maka-cli.com','authToken','Using\x20CA\x20Cert\x20','21388ISmBaO','2599934oOuhQM','732YOdpid','start','fsi','(((.+)+)+)+$','11tLcPtZ','success','env','maka\x20logout','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','toString','2827053Lnckzc','https://www.maka-cli.com\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','search','isFile','615715jCcDpe'];a78c=function(){return p;};return a78c();}a78a();import{Command}from'../command.js';function a78d(a,b){const c=a78c();return a78d=function(d,e){d=d-0x96;let f=c[d];return f;},a78d(a,b);}import{Log}from'../tools/log/log.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a78n(0xa1)]['MAKA_DEV']===a78n(0xb5)?a78n(0xb7):a78n(0x96);Command[a78n(0xb3)]({'name':a78n(0xb0),'validOpts':[a78n(0xb6)],'usage':a78n(0xa2),'maxArgLength':0x2,'shortDesc':'Logs\x20out\x20of\x20all\x20user\x20sessions\x20(CLI\x20and\x20browser).','disableAuthCheck':!![],'examples':[a78n(0xa2)]},async function(a,b){const o=a78n,c=Log[o(0xad)]();try{let d='';b[o(0xb6)]&&(this[o(0x9d)][o(0xa9)](b['cacert'])?(d=b['cacert'],Log[o(0xc0)](o(0x98)+d)):Log[o(0xae)](o(0xa4)+d));const f=await this[o(0x9d)][o(0xb4)]();if(f[o(0xc1)]){if(this[o(0x9d)][o(0xa9)](f['cert']))d=f[o(0xc1)];else{c['failure']();throw Log['error'](o(0xa3)+d);}}Log[o(0xaf)](o(0xb1)+hostname);const g={'url':'https://'+hostname+'/api/v1/status'};b[o(0xb6)]&&Object[o(0xb2)](g,{'cert':d});c['start']('Preflight\x20Check');const {statusCode:h}=await HTTPS[o(0xb8)](g);if(h===0x198){c[o(0xb9)]();throw o(0xc3);}c[o(0xa0)]();if(h!==0xc8){c['failure']();throw o(0xa7);}if(!f?.['token']?.[o(0x97)])throw Log['error']('Cannot\x20find\x20login\x20token,\x20are\x20you\x20sure\x20you\x20are\x20logged\x20in?');c[o(0x9c)]('Logging\x20out');const i={'hostname':hostname,'path':o(0xbe),'data':{},'headers':{'x-auth-token':f[o(0xbd)][o(0x97)]}};b['cacert']&&Object[o(0xb2)](i,{'cert':d});const {statusCode:j}=await HTTPS['post'](i);if(j===0x198){c['failure']('\x0a');throw o(0xc3);}this[o(0x9d)][o(0xbc)]({'token':{'authToken':'','userId':'','when':''},'hash':''}),c['success']();}catch(k){k&&console[o(0xae)](k),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a76j=a76d;(function(a,b){const h=a76d,c=a();while(!![]){try{const d=parseInt(h(0x1b5))/0x1*(parseInt(h(0x1be))/0x2)+parseInt(h(0x1b9))/0x3*(-parseInt(h(0x1bb))/0x4)+-parseInt(h(0x1bd))/0x5*(parseInt(h(0x1b6))/0x6)+parseInt(h(0x1b2))/0x7*(parseInt(h(0x1aa))/0x8)+-parseInt(h(0x1ab))/0x9*(-parseInt(h(0x1ac))/0xa)+-parseInt(h(0x1c0))/0xb*(parseInt(h(0x1a7))/0xc)+parseInt(h(0x1a5))/0xd*(parseInt(h(0x1c1))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0xcdd40));const a76b=(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;};}()),a76a=a76b(this,function(){const i=a76d;return a76a[i(0x1a6)]()[i(0x1b1)]('(((.+)+)+)+$')[i(0x1a6)]()['constructor'](a76a)[i(0x1b1)](i(0x1af));});a76a();function a76c(){const l=['sshSync','26bdYrxa','toString','14061384dZtldn','ssh.json','maka\x20logs\x20--env\x20dev','352EWmGBN','11710269BcCGeV','10nHEOCB','log','pm2\x20logs','(((.+)+)+)+$','maka\x20logs','search','13426VlyGMz','View\x20the\x20PM2\x20logs','maka\x20l\x20-e\x20p','26JcZkWi','2328MFrLMi','verbose','env','159fmECAq','assign','52148ZxtrGK','getConfigPath','20235FrIaIJ','61524TyfmKD','readFileSync','11eCHBAi','14634942pUbFvK','fsi','parse'];a76c=function(){return l;};return a76c();}import a76e from'fs';import a76f from'path';import{Command}from'../command.js';function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1a4;let f=c[d];return f;},a76d(a,b);}import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':'logs','aliases':['l',a76j(0x1ad)],'usage':a76j(0x1b0),'requiredOpts':[a76j(0x1b8)],'mustBeInMakaProject':!![],'validOpts':[a76j(0x1b7)],'shortDesc':a76j(0x1b3),'examples':[a76j(0x1a9),'maka\x20logs\x20--env\x20staging',a76j(0x1b4)]},function(a,b){const k=a76j,c=k(0x1ae),d=this[k(0x1c2)][k(0x1bc)](b[k(0x1b8)]),e=a76f['join'](d,k(0x1a8)),f=a76e[k(0x1bf)](e),g=JSON[k(0x1c3)](f['toString']());Object[k(0x1ba)](g,{'env':d}),SSH[k(0x1a4)](c,g,{'tty':!![],'verbose':!![]});});
1
+ const a79j=a79d;(function(a,b){const h=a79d,c=a();while(!![]){try{const d=-parseInt(h(0x1d6))/0x1+-parseInt(h(0x1d8))/0x2*(parseInt(h(0x1d2))/0x3)+parseInt(h(0x1e6))/0x4*(-parseInt(h(0x1e0))/0x5)+-parseInt(h(0x1d3))/0x6*(-parseInt(h(0x1de))/0x7)+-parseInt(h(0x1e3))/0x8+parseInt(h(0x1db))/0x9*(-parseInt(h(0x1d5))/0xa)+parseInt(h(0x1da))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a79c,0x6128c));const a79b=(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;};}()),a79a=a79b(this,function(){const i=a79d;return a79a[i(0x1e2)]()['search']('(((.+)+)+)+$')[i(0x1e2)]()[i(0x1e4)](a79a)[i(0x1e1)](i(0x1dd));});a79a();import a79e from'fs';import a79f from'path';function a79d(a,b){const c=a79c();return a79d=function(d,e){d=d-0x1cc;let f=c[d];return f;},a79d(a,b);}import{Command}from'../command.js';function a79c(){const l=['parse','7060wkHMjd','search','toString','4355168LBaygb','constructor','fsi','196dZsAzF','pm2\x20logs','View\x20the\x20PM2\x20logs','join','sshSync','maka\x20logs\x20--env\x20dev','verbose','maka\x20logs','env','assign','4731bxxxTU','6cNWfGn','ssh.json','5120RPIAFf','267585VXIifu','getConfigPath','970kqZqke','readFileSync','23805529oqamLc','3852PyTTkc','log','(((.+)+)+)+$','692825VWSKTZ'];a79c=function(){return l;};return a79c();}import{SSH}from'../tools/ssh/ssh.class.js';Command['create']({'name':'logs','aliases':['l',a79j(0x1dc)],'usage':a79j(0x1cf),'requiredOpts':[a79j(0x1d0)],'mustBeInMakaProject':!![],'validOpts':[a79j(0x1ce)],'shortDesc':a79j(0x1e8),'examples':[a79j(0x1cd),'maka\x20logs\x20--env\x20staging','maka\x20l\x20-e\x20p']},function(a,b){const k=a79j,c=k(0x1e7),d=this[k(0x1e5)][k(0x1d7)](b[k(0x1d0)]),e=a79f[k(0x1e9)](d,k(0x1d4)),f=a79e[k(0x1d9)](e),g=JSON[k(0x1df)](f[k(0x1e2)]());Object[k(0x1d1)](g,{'env':d}),SSH[k(0x1cc)](c,g,{'tty':!![],'verbose':!![]});});
@@ -1 +1 @@
1
- const a77j=a77d;(function(a,b){const g=a77d,c=a();while(!![]){try{const d=parseInt(g(0xa9))/0x1*(-parseInt(g(0xbb))/0x2)+parseInt(g(0xad))/0x3+parseInt(g(0xb8))/0x4*(-parseInt(g(0xa7))/0x5)+-parseInt(g(0xaa))/0x6*(parseInt(g(0xb6))/0x7)+parseInt(g(0xb3))/0x8*(-parseInt(g(0xa5))/0x9)+parseInt(g(0xac))/0xa*(parseInt(g(0xa6))/0xb)+parseInt(g(0xb7))/0xc*(parseInt(g(0xb5))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x7674b));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a77d;if(c){const e=c[h(0xb2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const i=a77d;return a77a['toString']()[i(0xb0)](i(0xb9))[i(0xbd)]()['constructor'](a77a)[i(0xb0)](i(0xb9));});function a77c(){const l=['909HYcoCK','735229YgudFz','155btmzvI','maka\x20--help','8OXLcgY','281004nrMGhI','fsi','90SzwQnU','1050354qMRoXk','maybeProxyCommandToMeteor','runSubCommand','search','maka','apply','56488PeXytV','maka\x20create\x20Todo','117ZWFgPH','105zDJNPw','2995104MXRXoZ','101236HBAupV','(((.+)+)+)+$','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','128138uRNZkE','error','toString','findSubCommand','\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20'];a77c=function(){return l;};return a77c();}a77a();import{Command}from'../command.js';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0xa4;let f=c[d];return f;},a77d(a,b);}const Maka=new Command({'name':a77j(0xb1),'minArgLength':0x1,'shortDesc':a77j(0xba),'validOpts':[],'usage':'maka\x20<command>\x20[<args>]\x20[<opts>]','disableAuthCheck':!![],'examples':[a77j(0xa8),'maka\x20install\x20meteor',a77j(0xb4),'maka\x20run'],'description':a77j(0xa4)},async function(a,b){const k=a77j;try{const c=a[0x0],d=this[k(0xbe)](c);d?this[k(0xaf)](c,a['slice'](0x1),b):this[k(0xab)][k(0xae)]();}catch(f){console[k(0xbc)](f),process['exit'](0x1);}});export default Maka;
1
+ function a80c(){const l=['2788erbNxZ','2VlocBw','3075759buDURo','runSubCommand','maka\x20create\x20Todo','8682570TPHoEf','58140xHqbvM','23642AtxxMR','maka\x20install\x20meteor','search','A\x20command\x20line\x20scaffolding\x20and\x20Dev\x20Ops\x20tool\x20for\x20Meteor\x20applications.','maka\x20<command>\x20[<args>]\x20[<opts>]','8855682YNSjzl','error','toString','findSubCommand','47621JRCYpb','apply','maka\x20run','maybeProxyCommandToMeteor','maka','48hwEtfe','4683OxxlkB','exit','slice','40TTxwXq'];a80c=function(){return l;};return a80c();}const a80j=a80d;(function(a,b){const g=a80d,c=a();while(!![]){try{const d=parseInt(g(0x128))/0x1*(-parseInt(g(0x114))/0x2)+-parseInt(g(0x123))/0x3*(parseInt(g(0x127))/0x4)+parseInt(g(0x113))/0x5+parseInt(g(0x12c))/0x6+-parseInt(g(0x11d))/0x7*(parseInt(g(0x122))/0x8)+parseInt(g(0x129))/0x9*(parseInt(g(0x126))/0xa)+-parseInt(g(0x119))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a80c,0xd3f5c));const a80b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a80d;if(c){const e=c[h(0x11e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a80a=a80b(this,function(){const i=a80d;return a80a[i(0x11b)]()[i(0x116)]('(((.+)+)+)+$')[i(0x11b)]()['constructor'](a80a)['search']('(((.+)+)+)+$');});a80a();import{Command}from'../command.js';const Maka=new Command({'name':a80j(0x121),'minArgLength':0x1,'shortDesc':a80j(0x117),'validOpts':[],'usage':a80j(0x118),'disableAuthCheck':!![],'examples':['maka\x20--help',a80j(0x115),a80j(0x12b),a80j(0x11f)],'description':'\x0a\x0a\x20\x20Scaffold\x20Web\x20Applications\x20with\x20Meteor\x20and\x20Maka-CLI\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20--\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.-:\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20:-.\x20\x20\x20\x20\x20:--\x20\x20-:\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::\x20\x20::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::::::\x20.:::::::\x20..\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20..:.....\x20.::..::.\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20.::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::::::\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20\x20::::::\x20\x20\x20\x20\x20.::.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.-.\x20\x20\x20\x20\x20.::..-::.\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20.\x20.:::....\x20\x20::..---:..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.:\x20\x20.\x20.:::::::\x20\x20::..::.\x20..\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:::\x20\x20\x20\x20\x20.:.\x20\x20\x20\x20\x20.::\x20\x20:.\x20\x20\x20\x20\x20.-:.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20-::\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:--\x20\x20\x20\x20\x20\x20\x20\x20\x20.--.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20.-:\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20:\x0a.:..::...::.\x20\x20\x20....:\x20\x20\x20.:\x20\x20\x20::\x20\x20....:.\x20\x20\x20\x20\x20\x20\x20\x20.::::\x20\x20.:\x20\x20::\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20\x20....:-\x20\x20.-..:.\x20\x20\x20....:-\x20\x20...\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a\x20:.\x20\x20\x20:.\x20\x20\x20:.\x20.:\x20\x20\x20:-\x20\x20.-\x20\x20.:\x20\x20.:\x20\x20\x20:-\x20\x20\x20\x20\x20\x20\x20:.\x20\x20\x20\x20\x20\x20.:\x20\x20.:\x0a.:.\x20\x20\x20:.\x20\x20\x20.:\x20\x20....\x20:.\x20.:.\x20\x20..\x20\x20....\x20:.\x20\x20\x20\x20\x20\x20\x20.....\x20\x20.:.\x20.:.\x0a\x0a\x20\x20'},async function(a,b){const k=a80j;try{const c=a[0x0],d=this[k(0x11c)](c);d?this[k(0x12a)](c,a[k(0x125)](0x1),b):this['fsi'][k(0x120)]();}catch(f){console[k(0x11a)](f),process[k(0x124)](0x1);}});function a80d(a,b){const c=a80c();return a80d=function(d,e){d=d-0x113;let f=c[d];return f;},a80d(a,b);}export default Maka;