Error 404 Not Found

GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188

Exceptions

No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#702
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/file%3A/app/vendor/symfony/routing/Router.php%23L188/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 164

Level Message
info 02:51:17 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "POST"
}
info 02:51:18 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "POST"
}
info 02:51:50 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "POST"
}
info 02:51:50 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "POST"
}
error 05:52:36 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech//.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 08:28:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:14:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:14:41 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 17:14:46 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=request",
    "method": "GET"
}
info 17:14:49 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
info 17:14:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=request&type=request",
    "method": "GET"
}
info 17:14:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=exception&type=request",
    "method": "GET"
}
info 17:14:55 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=events&type=request",
    "method": "GET"
}
info 17:15:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=http_client&type=request",
    "method": "GET"
}
info 17:14:57 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=time&type=request",
    "method": "GET"
}
info 17:14:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=config&type=request",
    "method": "GET"
}
info 17:15:00 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10",
    "method": "GET"
}
info 17:15:01 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=router&type=request",
    "method": "GET"
}
info 17:15:02 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=messenger&type=request",
    "method": "GET"
}
info 17:15:03 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=cache&type=request",
    "method": "GET"
}
info 17:15:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=logger&type=request",
    "method": "GET"
}
info 17:15:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e?panel=twig&type=request",
    "method": "GET"
}
info 17:15:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request",
    "method": "GET"
}
info 17:15:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e",
    "method": "GET"
}
info 17:15:06 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET",
    "method": "GET"
}
info 17:15:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request",
    "method": "GET"
}
info 17:15:07 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 17:15:09 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 17:15:09 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 17:15:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
error 07:34:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 02:41:54 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 03:17:12 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 12:21:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 16:20:39 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 18:17:21 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=messenger&type=request",
    "method": "GET"
}
info 17:45:51 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:45:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/server"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/server-status"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/about"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/login.action"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v2/_catalog"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.DS_Store"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:45:59 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:01 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:03 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:04 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/graphql"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:04 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:04 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api/graphql"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:05 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/graphql/api"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:05 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "POST https://resasfa.elementroot.tech/api/gql"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:05 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/s/533313e2236313e2233313e2436313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:46:05 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:46:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:46:06 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:46:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:07 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:08 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/telescope/requests"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:09 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:10 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.well-known/security.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/actuator/env"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:13 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger-ui.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:14 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/swagger-ui.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/webjars/swagger-ui/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:17 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:18 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/swagger/v1/swagger.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:19 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v2/api-docs"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:20 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/v3/api-docs"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:21 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api-docs/swagger.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:22 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/swagger.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:24 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/@vite/env"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:46:25 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.vscode/sftp.json"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:46:26 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "OPTIONS"
}
info 17:46:27 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/?rest_route=%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
error 17:46:28 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debug/default/view"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:48:17 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:48:17 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 17:48:18 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:48:19 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:48:19 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:48:20 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:48:27 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:48:28 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:48:29 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:49:54 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:50:46 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:50:47 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:50:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:50:50 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:50:51 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:50:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
info 17:50:55 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 17:51:48 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "HEAD"
}
info 17:51:48 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 17:51:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "HEAD https://resasfa.elementroot.tech/_next"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:06:38 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 18:13:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:22 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:22 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:22 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:23 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:28 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:13:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e",
    "method": "GET"
}
info 18:16:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=exception&type=request",
    "method": "GET"
}
info 18:14:34 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 18:15:49 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 18:15:49 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:15:54 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=request",
    "method": "GET"
}
info 18:16:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=config&type=request",
    "method": "GET"
}
info 18:16:03 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=router&type=request",
    "method": "GET"
}
info 18:16:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=events&type=request",
    "method": "GET"
}
info 18:16:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=twig&type=request",
    "method": "GET"
}
info 18:16:09 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10",
    "method": "GET"
}
info 18:16:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=messenger&type=request",
    "method": "GET"
}
info 18:16:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83",
    "method": "GET"
}
info 18:16:12 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=request&type=request",
    "method": "GET"
}
info 18:16:13 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=cache&type=request",
    "method": "GET"
}
info 18:16:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=http_client&type=request",
    "method": "GET"
}
info 18:16:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=time&type=request",
    "method": "GET"
}
info 18:16:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83?panel=logger&type=request",
    "method": "GET"
}
info 18:16:18 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&method=GET",
    "method": "GET"
}
info 18:16:20 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request",
    "method": "GET"
}
info 18:16:19 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83",
    "method": "GET"
}
info 18:16:20 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=events&type=request",
    "method": "GET"
}
info 18:16:21 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/?rest_route=%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
info 18:16:21 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e",
    "method": "GET"
}
info 18:16:22 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:22 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:23 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "d48d4e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/d48d4e/search/results?ip=74.7.227.178&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:23 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.227.178&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request",
    "method": "GET"
}
info 18:16:24 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:25 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:41 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=config&type=request",
    "method": "GET"
}
info 18:16:25 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=twig&type=request",
    "method": "GET"
}
info 18:16:26 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=config&type=request",
    "method": "GET"
}
info 18:16:26 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=http_client&type=request",
    "method": "GET"
}
info 18:16:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d",
    "method": "GET"
}
info 18:16:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=request",
    "method": "GET"
}
info 18:16:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=time&type=request",
    "method": "GET"
}
info 18:16:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=cache&type=request",
    "method": "GET"
}
info 18:16:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=logger&type=request",
    "method": "GET"
}
info 18:16:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7",
    "method": "GET"
}
info 18:16:31 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=router&type=request",
    "method": "GET"
}
info 18:16:31 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=router&type=request",
    "method": "GET"
}
info 18:16:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=time&type=request",
    "method": "GET"
}
info 18:16:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=twig&type=request",
    "method": "GET"
}
info 18:16:33 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=time&type=request",
    "method": "GET"
}
info 18:16:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c9d8c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4",
    "method": "GET"
}
info 18:16:33 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=twig&type=request",
    "method": "GET"
}
info 18:16:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=logger&type=request",
    "method": "GET"
}
info 18:16:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=events&type=request",
    "method": "GET"
}
info 18:16:35 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=router&type=request",
    "method": "GET"
}
info 18:16:35 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=router&type=request",
    "method": "GET"
}
info 18:16:36 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=logger&type=request",
    "method": "GET"
}
info 18:16:36 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=events&type=request",
    "method": "GET"
}
info 18:16:37 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=twig&type=request",
    "method": "GET"
}
info 18:16:37 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=config&type=request",
    "method": "GET"
}
info 18:16:38 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=time&type=request",
    "method": "GET"
}
info 18:16:38 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=events&type=request",
    "method": "GET"
}
info 18:16:39 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=logger&type=request",
    "method": "GET"
}
info 18:16:40 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=cache&type=request",
    "method": "GET"
}
info 18:16:40 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=config&type=request",
    "method": "GET"
}
info 18:16:41 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=cache&type=request",
    "method": "GET"
}
info 18:16:42 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=http_client&type=request",
    "method": "GET"
}
info 18:16:42 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=cache&type=request",
    "method": "GET"
}
info 18:16:43 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=messenger&type=request",
    "method": "GET"
}
info 18:16:43 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=exception&type=request",
    "method": "GET"
}
info 18:16:44 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e?panel=request&type=request",
    "method": "GET"
}
info 18:16:44 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=request&type=request",
    "method": "GET"
}
info 18:16:45 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=request&type=request",
    "method": "GET"
}
info 18:16:45 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=messenger&type=request",
    "method": "GET"
}
info 18:16:46 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:16:46 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=messenger&type=request",
    "method": "GET"
}
info 18:16:47 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=exception&type=request",
    "method": "GET"
}
info 18:16:47 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:16:48 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10",
    "method": "GET"
}
info 18:16:49 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10",
    "method": "GET"
}
info 18:16:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=request&type=request",
    "method": "GET"
}
info 18:16:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=http_client&type=request",
    "method": "GET"
}
info 18:16:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=messenger&type=request",
    "method": "GET"
}
info 18:16:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7",
    "method": "GET"
}
info 18:16:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7?panel=http_client&type=request",
    "method": "GET"
}
info 18:16:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "cf15b1"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1",
    "method": "GET"
}
info 18:16:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5",
    "method": "GET"
}
info 18:16:54 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4",
    "method": "GET"
}
info 18:16:54 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a",
    "method": "GET"
}
info 18:17:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:16:55 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:16:55 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "c9d8c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:16:56 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:16:56 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "cf15b1"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:16:57 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&method=GET",
    "method": "GET"
}
info 18:16:57 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=time&type=request",
    "method": "GET"
}
info 18:16:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=twig&type=request",
    "method": "GET"
}
info 18:16:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=events&type=request",
    "method": "GET"
}
info 18:16:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=logger&type=request",
    "method": "GET"
}
info 18:17:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=router&type=request",
    "method": "GET"
}
info 18:17:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=time&type=request",
    "method": "GET"
}
info 18:17:01 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:01 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&method=GET&type=request",
    "method": "GET"
}
info 18:17:02 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=cache&type=request",
    "method": "GET"
}
info 18:17:02 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=events&type=request",
    "method": "GET"
}
info 18:17:03 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&method=GET&type=request",
    "method": "GET"
}
info 18:17:03 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=router&type=request",
    "method": "GET"
}
info 18:17:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=logger&type=request",
    "method": "GET"
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:17:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=twig&type=request",
    "method": "GET"
}
info 18:17:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=router&type=request",
    "method": "GET"
}
info 18:17:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=events&type=request",
    "method": "GET"
}
info 18:17:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=logger&type=request",
    "method": "GET"
}
info 18:17:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=cache&type=request",
    "method": "GET"
}
info 18:17:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=time&type=request",
    "method": "GET"
}
info 18:17:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=twig&type=request",
    "method": "GET"
}
info 18:17:08 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:17:09 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=router&type=request",
    "method": "GET"
}
info 18:17:09 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=logger&type=request",
    "method": "GET"
}
info 18:17:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=events&type=request",
    "method": "GET"
}
info 18:17:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=config&type=request",
    "method": "GET"
}
info 18:17:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=time&type=request",
    "method": "GET"
}
info 18:17:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=config&type=request",
    "method": "GET"
}
info 18:17:12 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=twig&type=request",
    "method": "GET"
}
info 18:17:12 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=config&type=request",
    "method": "GET"
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.bak"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:17:13 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=config&type=request",
    "method": "GET"
}
info 18:17:13 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=cache&type=request",
    "method": "GET"
}
info 18:17:14 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:17:14 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:17:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=cache&type=request",
    "method": "GET"
}
info 18:17:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=http_client&type=request",
    "method": "GET"
}
info 18:17:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=messenger&type=request",
    "method": "GET"
}
info 18:17:16 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=messenger&type=request",
    "method": "GET"
}
info 18:17:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=exception&type=request",
    "method": "GET"
}
info 18:17:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=request&type=request",
    "method": "GET"
}
info 18:17:19 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a?panel=request&type=request",
    "method": "GET"
}
info 18:17:19 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=http_client&type=request",
    "method": "GET"
}
info 18:17:20 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5?panel=exception&type=request",
    "method": "GET"
}
info 18:17:20 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=exception&type=request",
    "method": "GET"
}
info 18:17:21 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:25 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:22 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:22 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "cf15b1"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:23 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "c9d8c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:23 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "cf15b1"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:24 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "c9d8c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:24 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:25 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10",
    "method": "GET"
}
info 18:17:26 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET",
    "method": "GET"
}
info 18:17:26 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=request&type=request",
    "method": "GET"
}
info 18:17:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=messenger&type=request",
    "method": "GET"
}
info 18:17:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=exception&type=request",
    "method": "GET"
}
info 18:17:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=request&type=request",
    "method": "GET"
}
info 18:17:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4?panel=http_client&type=request",
    "method": "GET"
}
info 18:17:30 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:31 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7?panel=exception&type=request",
    "method": "GET"
}
info 18:17:31 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d?panel=exception&type=request",
    "method": "GET"
}
info 18:17:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83?panel=http_client&type=request",
    "method": "GET"
}
info 18:17:33 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&method=GET",
    "method": "GET"
}
info 18:17:33 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:34 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:34 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:35 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "103c83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/103c83/search/results?ip=74.7.241.183&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:35 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:36 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "1a666d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/1a666d/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:37 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "06ac1e"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/06ac1e/search/results?ip=91.231.89.97&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:37 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "cf15b1"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/cf15b1/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:38 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "a8b7c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a8b7c4/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:38 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "19dae5"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/19dae5/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:39 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "c9d8c4"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c9d8c4/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:39 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "f0ce2a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/f0ce2a/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:40 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "5f13b7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5f13b7/search/results?ip=74.7.241.183&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:40 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 18:17:41 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&type=request",
    "method": "GET"
}
info 18:17:41 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.241.183&limit=10&type=request",
    "method": "GET"
}
info 18:17:42 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "390e83"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/390e83/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:42 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=91.231.89.97&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:43 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&method=GET&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
info 18:17:43 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
info 18:17:44 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "dbb1f7"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dbb1f7/search/results?ip=74.7.242.47&limit=10&url=https%3A%2F%2Fresasfa.elementroot.tech%2F",
    "method": "GET"
}
info 18:17:44 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&method=GET&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
info 18:17:45 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=74.7.242.47&limit=10&type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F%3Frest_route%3D%2Fwp%2Fv2%2Fusers%2F",
    "method": "GET"
}
info 18:22:38 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "0c4569"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/0c4569",
    "method": "GET"
}
info 18:37:35 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:36 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sitemap.xml"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sitemap.xml"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:47 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.vite"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:47 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/payment/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/admin/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/core/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.vite"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/stripe/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/payment/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.local"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/assets/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/main.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.local"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/app/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/__env.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/main.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/app.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/@vite/client"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.bak"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.old"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.save"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-content/debug.log"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.staging"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.old"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/credentials.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/docker-compose.yml"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-admin/admin-ajax.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/settings"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/_next/data/"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/asset-manifest.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:59 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:59 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:59 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:08 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:12 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/stripe.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:12 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:12 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/payment.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:13 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/env.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/HEAD"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.old"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.save"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php~"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.staging"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.save"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:43:33 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:51:12 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 18:55:20 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 19:20:43 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 19:25:03 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 19:25:04 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 19:26:00 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 19:45:37 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 19:45:48 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 19:46:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156
{
    "exception": {}
}
error 19:46:09 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156
{
    "exception": {}
}
info 20:47:08 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 20:51:33 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 20:55:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=request",
    "method": "GET"
}
info 20:56:24 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 20:56:29 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 20:56:30 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:31 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-1"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/autoload_runtime.php%23L29"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:40 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L159"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:40 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/Kernel.php%23L182"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/public/index.php%23L5"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L101"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/Kernel.php%23L182"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:42 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/symfony.com/doc/7.3.4/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:42 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/%23trace-box-1"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:42 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:43 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L159"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:43 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/Kernel.php%23L182"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L45"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/public/index.php%23L5"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L101"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/https%3A/resasfa.elementroot.tech/_profiler/f1440c%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-2"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:47 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L56"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:49 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/https%3A/resasfa.elementroot.tech/_profiler/ac9589%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/2a48b3%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/%23trace-box-2"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:26:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 22:26:57 Matched route "_profiler_home".
{
    "route": "_profiler_home",
    "route_parameters": {
        "_route": "_profiler_home",
        "_controller": "web_profiler.controller.profiler::homeAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/",
    "method": "GET"
}
info 22:26:57 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "empty"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/empty/search/results?limit=10",
    "method": "GET"
}
info 22:27:28 Matched route "_profiler_search".
{
    "route": "_profiler_search",
    "route_parameters": {
        "_route": "_profiler_search",
        "_controller": "web_profiler.controller.profiler::searchAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/search?type=request",
    "method": "GET"
}
info 22:27:28 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "empty"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/empty/search/results?type=request",
    "method": "GET"
}
info 22:28:14 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?panel=request&type=request",
    "method": "GET"
}
info 22:28:43 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=http_client&type=request",
    "method": "GET"
}
info 22:29:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=cache&type=request",
    "method": "GET"
}
info 22:31:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=logger&type=request",
    "method": "GET"
}
info 22:30:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=request&type=request",
    "method": "GET"
}
info 22:30:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=exception&type=request",
    "method": "GET"
}
info 22:31:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=time&type=request",
    "method": "GET"
}
info 22:32:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=config&type=request",
    "method": "GET"
}
info 22:32:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=events&type=request",
    "method": "GET"
}
info 22:32:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=twig&type=request",
    "method": "GET"
}
info 22:33:23 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=router&type=request",
    "method": "GET"
}
info 22:33:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8?panel=messenger&type=request",
    "method": "GET"
}
info 22:33:49 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "a13bf8"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a13bf8/search/results?ip=216.73.216.2",
    "method": "GET"
}
error 23:45:17 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 23:45:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "71d76d"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/71d76d",
    "method": "GET"
}
info 23:45:19 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc",
    "method": "GET"
}
error 23:45:19 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 23:45:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787",
    "method": "GET"
}
info 23:45:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944",
    "method": "GET"
}
info 23:45:35 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac",
    "method": "GET"
}
info 23:46:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request",
    "method": "GET"
}
info 23:46:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c",
    "method": "GET"
}
info 23:46:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363",
    "method": "GET"
}
info 23:46:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a",
    "method": "GET"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/file%3A/app/vendor/symfony/routing/Router.php%23L188/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/file%3A/app/vendor/symfony/routing/Router.php%23L188/')
     (vendor/symfony/routing/Matcher/UrlMatcher.php:89)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (public/index.php:5)