h4GhE@,28h+po@72tO02x}(0/1ۀYw@$ibYL0Hm4bXo@_ W=\(c6A@dl*ePX f-\X @1$< @6 wl=@ |_TU@t2N`5J@]I@/cMQ j@{1$VMe@ 9}+Hư]Ux@)18ԙ@+lL_!4k_@cY= @UhKb@;(PR3dp @Y`J~ L5am@NCkQ2(p @ظo1Za@&Qt@߭p$^ @4)@>+8L@r=N1I-QQ@7+Q@ƬXF@f_HgWA(0bY (LaPG(0aX(-\(2oR|^0jQx0h[@X0i_1LBhj@w{#@L@ pW 0e1|kO 2tR3XUxp&@ ^2(up8U@O@6P0jW8aw@v6iQ0@>b4b @~̮v3\eR&@<+u16(@M<bF w@v ۀ' ٢|@}=0R }D@.|. 8QkhA@4 7mBdeVv @=¸BaM@QNhP~@q]@'*V>y@4(2|^N@G 6dW|j}@_h\  @`KRۊ@lZHg<@3JqU@u<r|덓@vN.\4Ԁ>@ܫD3H}p @$1 @q`,w u @8B8Ѐ @y3hЀ (m@cStБ (@fy`⼜Q DP@tب~^-hn@{vב@Wi@.8id~@0GV@/(+pt\P@52 X䙀sv@#Bbch>@:lW̊@D- c V@,4( R@`^hU@q&IDLW,!L 0D&@^YoT@ հDgTdJ@$w@m,o4 p@4j1-Ӏo_@]|"01Y@ۇ"YF @~laԬJ\ @}V4Ԁ@}ɳVh3p`@Pr{n@lm @@S@qðMRp U@A+ L@ a^x(6t @bͤ+DdhL@7-} Xw|4]i1!Qy-egc@FFL/.uie2uje Xy@rt14RA>0/P@:@ 1\xq@.IY,@g&q`@M@a  @: >@6hY&Jp1$/U[@ (84Tp끽@/쇤VHɀt@[TT<1@ @#!8` Q @ `Qc@ZyHph @MV@)C-t@JDH #@LKpeV]R l: HN1=@@13bV@.iEh[lk,@yQ\]0hoX1Z$@~2I@cLkq@2TG@m~G0p 8`@ j@ <Ho Z@;,$@/gD`@q}x6R @qLaR @ũ}pt@!1@wN& ]r,@ܕL@5oUp@7KhxilP;@+ɦ-Pʀp(@%1 а'$@Mz1P @ֵ `VE `s@?8. ^  @HD1er:@4DLz@š5&Jrt@ :x @ Lސ HdQ o0E D!l |>@x\Ph,l6@G]/DR 7@do2t@^P 0+ L b@դ3@Db@s @2 *@format($record); } return $message; } /** * @param mixed $value */ public function stringify($value): string { return $this->replaceNewlines($this->convertToString($value)); } protected function normalizeException(\Throwable $e, int $depth = 0): string { $str = $this->formatException($e); if ($previous = $e->getPrevious()) { do { $depth++; if ($depth > $this->maxNormalizeDepth) { $str .= '\n[previous exception] Over ' . $this->maxNormalizeDepth . ' levels deep, aborting normalization'; break; } $str .= "\n[previous exception] " . $this->formatException($previous); } while ($previous = $previous->getPrevious()); } return $str; } /** * @param mixed $data */ protected function convertToString($data): string { if (null === $data || is_bool($data)) { return var_export($data, true); } if (is_scalar($data)) { return (string) $data; } return $this->toJson($data, true); } protected function replaceNewlines(string $str): string { if ($this->allowInlineLineBreaks) { if (0 === strpos($str, '{')) { $str = preg_replace('/(?getCode(); if ($e instanceof \SoapFault) { if (isset($e->faultcode)) { $str .= ' faultcode: ' . $e->faultcode; } if (isset($e->faultactor)) { $str .= ' faultactor: ' . $e->faultactor; } if (isset($e->detail)) { if (is_string($e->detail)) { $str .= ' detail: ' . $e->detail; } elseif (is_object($e->detail) || is_array($e->detail)) { $str .= ' detail: ' . $this->toJson($e->detail, true); } } } $str .= '): ' . $e->getMessage() . ' at ' . $e->getFile() . ':' . $e->getLine() . ')'; if ($this->includeStacktraces) { $str .= $this->stacktracesParser($e); } return $str; } private function stacktracesParser(\Throwable $e): string { $trace = $e->getTraceAsString(); if ($this->stacktracesParser) { $trace = $this->stacktracesParserCustom($trace); } return "\n[stacktrace]\n" . $trace . "\n"; } private function stacktracesParserCustom(string $trace): string { return implode("\n", array_filter(array_map($this->stacktracesParser, explode("\n", $trace)))); } } An Error Occurred: Internal Server Error

Oops! An Error Occurred

The server returned a "500 Internal Server Error".

Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.