├── .gitignore ├── FILES.md ├── LICENSE ├── README.md ├── bin └── ladep ├── box.json.dist ├── bump-version.sh ├── composer.json ├── config.d ├── ladep.phar ├── manifest.json ├── shell └── pull_logs.php ├── src └── ladep │ ├── command │ ├── CCommandBuild.php │ ├── CCommandCheck.php │ ├── CCommandPulllog.php │ ├── CCommandPush.php │ ├── CCommandRollback.php │ ├── CCommandUpdate.php │ └── CCommandView.php │ ├── config │ └── app.php │ ├── constants │ └── CUConsts.php │ ├── lang │ └── usa.php │ ├── libs │ ├── Config.php │ ├── Lang.php │ ├── Lib.php │ └── MainApp.php │ ├── models │ ├── CBuild.php │ ├── CCheck.php │ ├── CPulllog.php │ ├── CPush.php │ ├── CRollback.php │ ├── CView.php │ ├── classes │ │ ├── CComposer.php │ │ ├── CCompressAndInject.php │ │ ├── CEnv.php │ │ ├── CFile.php │ │ ├── CGit.php │ │ ├── CMiniServer.php │ │ ├── CProject.php │ │ ├── CProjectFiles.php │ │ ├── CSSHCmd.php │ │ ├── CSSHCmdPullLogs.php │ │ ├── CSSHCmdPush.php │ │ ├── CSSHCmdRollback.php │ │ ├── CSSHCmdViewRemote.php │ │ ├── CSetup.php │ │ └── CStatus.php │ └── compressores │ │ ├── CCompressor.php │ │ ├── CCompressorGCC.php │ │ ├── CCompressorHtml.php │ │ ├── CCompressorYUI.php │ │ └── CMakeCompressed.php │ ├── resources │ ├── app.php.default │ ├── database.php.default │ ├── env.default │ ├── errors │ │ ├── 404.blade.php │ │ ├── 500.blade.php │ │ ├── 502.blade.php │ │ └── 503.blade.php │ ├── laravel.css.default │ └── session.php.default │ └── tools │ ├── htmlcompressor-1.5.3.jar │ └── yuicompressor-2.4.8.jar ├── tests ├── ScanScriptFiles.php ├── TestForCRSync.php ├── bootstrap.css ├── disableSelection │ ├── disableSelection.js │ ├── jquery-1.11.3.js │ └── nocopy.html ├── goback │ ├── goback.js │ ├── jquery-1.11.3.js │ ├── json.js │ ├── llib.js │ ├── locationstack.js │ ├── objectstorage.js │ ├── page1.html │ ├── page2.html │ ├── page3.html │ ├── page4.html │ └── page5.html ├── js │ ├── 1.js │ └── 2.js ├── removecomments │ ├── 1.js │ ├── 2.js │ ├── 3.js │ ├── removecomments.php │ └── respond.js ├── testRegx.php └── views │ ├── errors │ └── 503.blade.php │ ├── userinfo.blade.php │ ├── usersignin.blade.php │ ├── vendor │ └── .gitkeep │ ├── wap │ ├── binding_phone.blade.php │ ├── change_nickname.blade.php │ ├── pwdmodify.blade.php │ ├── pwdreset.blade.php │ ├── unbinding_phone.blade.php │ └── userinfo.blade.php │ └── welcome.blade.php └── tools ├── backup └── google_closure_compiler.jar └── install.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/.gitignore -------------------------------------------------------------------------------- /FILES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/FILES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/README.md -------------------------------------------------------------------------------- /bin/ladep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/bin/ladep -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/box.json.dist -------------------------------------------------------------------------------- /bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/bump-version.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/composer.json -------------------------------------------------------------------------------- /config.d: -------------------------------------------------------------------------------- 1 | /etc/ladep -------------------------------------------------------------------------------- /ladep.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/ladep.phar -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/manifest.json -------------------------------------------------------------------------------- /shell/pull_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/shell/pull_logs.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandBuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandBuild.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandCheck.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandPulllog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandPulllog.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandPush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandPush.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandRollback.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandUpdate.php -------------------------------------------------------------------------------- /src/ladep/command/CCommandView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/command/CCommandView.php -------------------------------------------------------------------------------- /src/ladep/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/config/app.php -------------------------------------------------------------------------------- /src/ladep/constants/CUConsts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/constants/CUConsts.php -------------------------------------------------------------------------------- /src/ladep/lang/usa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/lang/usa.php -------------------------------------------------------------------------------- /src/ladep/libs/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/libs/Config.php -------------------------------------------------------------------------------- /src/ladep/libs/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/libs/Lang.php -------------------------------------------------------------------------------- /src/ladep/libs/Lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/libs/Lib.php -------------------------------------------------------------------------------- /src/ladep/libs/MainApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/libs/MainApp.php -------------------------------------------------------------------------------- /src/ladep/models/CBuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CBuild.php -------------------------------------------------------------------------------- /src/ladep/models/CCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CCheck.php -------------------------------------------------------------------------------- /src/ladep/models/CPulllog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CPulllog.php -------------------------------------------------------------------------------- /src/ladep/models/CPush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CPush.php -------------------------------------------------------------------------------- /src/ladep/models/CRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CRollback.php -------------------------------------------------------------------------------- /src/ladep/models/CView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/CView.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CComposer.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CCompressAndInject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CCompressAndInject.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CEnv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CEnv.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CFile.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CGit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CGit.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CMiniServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CMiniServer.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CProject.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CProjectFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CProjectFiles.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSSHCmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSSHCmd.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSSHCmdPullLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSSHCmdPullLogs.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSSHCmdPush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSSHCmdPush.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSSHCmdRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSSHCmdRollback.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSSHCmdViewRemote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSSHCmdViewRemote.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CSetup.php -------------------------------------------------------------------------------- /src/ladep/models/classes/CStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/classes/CStatus.php -------------------------------------------------------------------------------- /src/ladep/models/compressores/CCompressor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/compressores/CCompressor.php -------------------------------------------------------------------------------- /src/ladep/models/compressores/CCompressorGCC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/compressores/CCompressorGCC.php -------------------------------------------------------------------------------- /src/ladep/models/compressores/CCompressorHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/compressores/CCompressorHtml.php -------------------------------------------------------------------------------- /src/ladep/models/compressores/CCompressorYUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/compressores/CCompressorYUI.php -------------------------------------------------------------------------------- /src/ladep/models/compressores/CMakeCompressed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/models/compressores/CMakeCompressed.php -------------------------------------------------------------------------------- /src/ladep/resources/app.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/app.php.default -------------------------------------------------------------------------------- /src/ladep/resources/database.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/database.php.default -------------------------------------------------------------------------------- /src/ladep/resources/env.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/env.default -------------------------------------------------------------------------------- /src/ladep/resources/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/errors/404.blade.php -------------------------------------------------------------------------------- /src/ladep/resources/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/errors/500.blade.php -------------------------------------------------------------------------------- /src/ladep/resources/errors/502.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/errors/502.blade.php -------------------------------------------------------------------------------- /src/ladep/resources/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/errors/503.blade.php -------------------------------------------------------------------------------- /src/ladep/resources/laravel.css.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/laravel.css.default -------------------------------------------------------------------------------- /src/ladep/resources/session.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/resources/session.php.default -------------------------------------------------------------------------------- /src/ladep/tools/htmlcompressor-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/tools/htmlcompressor-1.5.3.jar -------------------------------------------------------------------------------- /src/ladep/tools/yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/src/ladep/tools/yuicompressor-2.4.8.jar -------------------------------------------------------------------------------- /tests/ScanScriptFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/ScanScriptFiles.php -------------------------------------------------------------------------------- /tests/TestForCRSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/TestForCRSync.php -------------------------------------------------------------------------------- /tests/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/bootstrap.css -------------------------------------------------------------------------------- /tests/disableSelection/disableSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/disableSelection/disableSelection.js -------------------------------------------------------------------------------- /tests/disableSelection/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/disableSelection/jquery-1.11.3.js -------------------------------------------------------------------------------- /tests/disableSelection/nocopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/disableSelection/nocopy.html -------------------------------------------------------------------------------- /tests/goback/goback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/goback.js -------------------------------------------------------------------------------- /tests/goback/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/jquery-1.11.3.js -------------------------------------------------------------------------------- /tests/goback/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/json.js -------------------------------------------------------------------------------- /tests/goback/llib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/llib.js -------------------------------------------------------------------------------- /tests/goback/locationstack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/locationstack.js -------------------------------------------------------------------------------- /tests/goback/objectstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/objectstorage.js -------------------------------------------------------------------------------- /tests/goback/page1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/page1.html -------------------------------------------------------------------------------- /tests/goback/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/page2.html -------------------------------------------------------------------------------- /tests/goback/page3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/page3.html -------------------------------------------------------------------------------- /tests/goback/page4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/page4.html -------------------------------------------------------------------------------- /tests/goback/page5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/goback/page5.html -------------------------------------------------------------------------------- /tests/js/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/js/1.js -------------------------------------------------------------------------------- /tests/js/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/js/2.js -------------------------------------------------------------------------------- /tests/removecomments/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/removecomments/1.js -------------------------------------------------------------------------------- /tests/removecomments/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/removecomments/2.js -------------------------------------------------------------------------------- /tests/removecomments/3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/removecomments/3.js -------------------------------------------------------------------------------- /tests/removecomments/removecomments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/removecomments/removecomments.php -------------------------------------------------------------------------------- /tests/removecomments/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/removecomments/respond.js -------------------------------------------------------------------------------- /tests/testRegx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/testRegx.php -------------------------------------------------------------------------------- /tests/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/errors/503.blade.php -------------------------------------------------------------------------------- /tests/views/userinfo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/userinfo.blade.php -------------------------------------------------------------------------------- /tests/views/usersignin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/usersignin.blade.php -------------------------------------------------------------------------------- /tests/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/views/wap/binding_phone.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/binding_phone.blade.php -------------------------------------------------------------------------------- /tests/views/wap/change_nickname.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/change_nickname.blade.php -------------------------------------------------------------------------------- /tests/views/wap/pwdmodify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/pwdmodify.blade.php -------------------------------------------------------------------------------- /tests/views/wap/pwdreset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/pwdreset.blade.php -------------------------------------------------------------------------------- /tests/views/wap/unbinding_phone.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/unbinding_phone.blade.php -------------------------------------------------------------------------------- /tests/views/wap/userinfo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/wap/userinfo.blade.php -------------------------------------------------------------------------------- /tests/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tests/views/welcome.blade.php -------------------------------------------------------------------------------- /tools/backup/google_closure_compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tools/backup/google_closure_compiler.jar -------------------------------------------------------------------------------- /tools/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dekuan/ladep/HEAD/tools/install.php --------------------------------------------------------------------------------