gitextract_tcnu8bym/ ├── LICENSE.txt ├── README.md ├── composer.json ├── registration.php └── src/ └── Profiler/ ├── Api/ │ └── Data/ │ └── ProfileInterface.php ├── Block/ │ ├── Context.php │ ├── Profile/ │ │ ├── Listing.php │ │ └── View.php │ ├── Tab/ │ │ ├── Code.php │ │ ├── Database.php │ │ ├── IO.php │ │ └── TabInterface.php │ └── Toolbar.php ├── Console/ │ └── Command/ │ ├── AbstractCommand.php │ ├── AllowIpsCommand.php │ ├── DisableCommand.php │ ├── EnableCommand.php │ └── StatusCommand.php ├── Controller/ │ ├── Profile/ │ │ ├── Index.php │ │ └── View.php │ └── Profile.php ├── Helper/ │ └── Format.php ├── Model/ │ ├── Config.php │ ├── Driver/ │ │ └── Output/ │ │ └── Html.php │ └── Storage.php ├── Profile/ │ ├── Code.php │ ├── Context.php │ ├── Database.php │ ├── General.php │ ├── Meta.php │ └── Pool.php ├── etc/ │ ├── di.xml │ ├── frontend/ │ │ └── routes.xml │ └── module.xml └── view/ └── base/ ├── layout/ │ ├── profiler_profile_index.xml │ └── profiler_profile_view.xml ├── page_layout/ │ └── profiler.xml ├── templates/ │ ├── profile/ │ │ ├── listing.phtml │ │ └── view.phtml │ ├── root.phtml │ ├── tab/ │ │ ├── code.phtml │ │ ├── database.phtml │ │ └── io.phtml │ └── toolbar.phtml └── web/ ├── css/ │ ├── less/ │ │ ├── _module/ │ │ │ ├── _base.less │ │ │ ├── _etc.less │ │ │ └── _tabs.less │ │ └── _module.less │ └── module.css └── js/ ├── lib/ │ ├── jquery.filtertable.js │ ├── jquery.tablesorter.js │ └── jquery.treetable.js └── table.js