MyLitBag Cookies Statement

This website uses cookies to improve the functioning of the site and to authenticate our customers.

This Cookie Statement (this “Statement” ) describes what cookies are and how cookies are used by LFW Enterprises (dping business as “MyLitBag”, “we”, “us” or “our” ) on our website at https://mylitbag.com and in the use of online services available to clients that may be accessed through our website (the “Site” ). This Statement also describes the choices available to you in managing cookies. Please review this Statement to understand our use of cookies on the Site.

By using the Site or by clicking “accept” to our use of cookies when the option is made available to you, you agree that the Site may place cookies on your computer, and you agree to our use of cookies as described in this Statement.

What are cookies?

Cookies are small text files that a website may save on your computer or device when you visit. These small text files allow the website to recognize your computer or device at the next visit and enable the website to remember your preferences and information (for example, your login, language, font size and other display preferences). This way, you do not need to re-enter that information whenever you return to the website or browse from one page to another within the website. Cookies may also be used by a website to collect data about user activity, or how the website is used by visitors.

There are two basic types of cookies: Session cookies are temporary files that are cleaned up (i.e., deleted) when you close your browser program. Persistent cookies store your information and settings for longer periods, in order to remember your information and preferences between visits to a website. We use both types of cookies on the Site.

How do we use cookies?

We use cookies for the following purposes on the Site:

  1. Analytics . We use cookies to better understand how people are using the Site, by gathering information about, for example when the Site is accessed, what pages or services are used, what information is uploaded or downloaded, and other website traffic information.
  2. Preferences . We use cookies to remember you as a visitor to the Site, including your information and preferences, so that you do not have to enter information again with each visit.

NTD: Please carefully review this template Cookies Statement and conform it to the use of cookies on the relevant website(s).

  1. Authentication . We use cookies to authenticate customers when they log into services through the Site. These cookies are necessary for you to use those services.

We control all information that we gather through our use of cookies, and it is used as described in our Privacy Policy, available at [Privacy Policy].

How to control cookies

You can control or delete cookies, or otherwise manage cookies, through your browser settings. For more details, please visit http://www.allaboutcookies.org/ or https://www.aboutcookies.org/.

However, please understand that if you limit or reject cookies, although you may still access some parts of the Site, certain functions of the Site will be affected. For example, you may not be able to log into or access certain services available through the Site unless you accept cookies.

Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(): Only 0 of 199 bytes written, possibly out of free disk space ErrorException thrown with message "file_put_contents(): Only 0 of 199 bytes written, possibly out of free disk space" Stacktrace: #8 ErrorException in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #7 file_put_contents in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #6 Illuminate\Filesystem\Filesystem:put in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #5 Illuminate\Session\FileSessionHandler:write in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/Store.php:129 #4 Illuminate\Session\Store:save in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #3 Illuminate\Session\Middleware\StartSession:terminate in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #2 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #1 Illuminate\Foundation\Http\Kernel:terminate in /var/www/html/lfw/public/index.php:60 #0 require_once in /var/www/html/lfw/index.php:24
8
ErrorException
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
7
file_put_contents
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
6
Illuminate\Filesystem\Filesystem put
/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php83
5
Illuminate\Session\FileSessionHandler write
/vendor/laravel/framework/src/Illuminate/Session/Store.php129
4
Illuminate\Session\Store save
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php87
3
Illuminate\Session\Middleware\StartSession terminate
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php218
2
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php189
1
Illuminate\Foundation\Http\Kernel terminate
/public/index.php60
0
require_once
/index.php24
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "file_put_contents(): Only 0 of 199 bytes written, possibly out of free disk space"
    
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Prepend to a file.
     *
     * @param  string  $path
     * @param  string  $data
     * @return int
     */
    public function prepend($path, $data)
    {
        if ($this->exists($path)) {
            return $this->put($path, $data.$this->get($path));
        }
 
        return $this->put($path, $data);
    }
 
    /**
     * Append to a file.
Arguments
  1. "/var/www/html/lfw/storage/framework/sessions/zN7TiJgwwhUAClstROTPakLSV4f1v2t8p6puzeLf"
    
  2. "a:3:{s:6:"_token";s:40:"VLo1YWXSxiYsJlvYsosfiK5vcxC4tXEeXjUyod9z";s:9:"_previous";a:1:{s:3:"url";s:41:"https://lfw.mylitbag.com/cookie_statement";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->isFile($path = $this->path.'/'.$sessionId)) {
            if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->sharedGet($path);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
Arguments
  1. "/var/www/html/lfw/storage/framework/sessions/zN7TiJgwwhUAClstROTPakLSV4f1v2t8p6puzeLf"
    
  2. "a:3:{s:6:"_token";s:40:"VLo1YWXSxiYsJlvYsosfiK5vcxC4tXEeXjUyod9z";s:9:"_previous";a:1:{s:3:"url";s:41:"https://lfw.mylitbag.com/cookie_statement";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
Arguments
  1. "zN7TiJgwwhUAClstROTPakLSV4f1v2t8p6puzeLf"
    
  2. "a:3:{s:6:"_token";s:40:"VLo1YWXSxiYsJlvYsosfiK5vcxC4tXEeXjUyod9z";s:9:"_previous";a:1:{s:3:"url";s:41:"https://lfw.mylitbag.com/cookie_statement";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
     * Get the session implementation from the manager.
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            [$name] = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
    }
 
    /**
Arguments
  1. Illuminate\Http\Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) { …4}
      #routeResolver: Closure() { …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +server: Symfony\Component\HttpFoundation\ServerBag {}
      +files: Symfony\Component\HttpFoundation\FileBag {}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/cookie_statement"
      #requestUri: "/cookie_statement"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {}
    
/var/www/html/lfw/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Illuminate\Http\Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) { …4}
      #routeResolver: Closure() { …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +server: Symfony\Component\HttpFoundation\ServerBag {}
      +files: Symfony\Component\HttpFoundation\FileBag {}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/cookie_statement"
      #requestUri: "/cookie_statement"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {}
    
/var/www/html/lfw/public/index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) { …4}
      #routeResolver: Closure() { …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#1}
      +server: Symfony\Component\HttpFoundation\ServerBag {}
      +files: Symfony\Component\HttpFoundation\FileBag {}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/cookie_statement"
      #requestUri: "/cookie_statement"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {}
    
/var/www/html/lfw/index.php
error_reporting(E_ALL);
/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <[email protected]>
 */
 
$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
 
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}
 
require_once __DIR__.'/public/index.php';
 
Arguments
  1. "/var/www/html/lfw/public/index.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"lfw.mylitbag.com"
REDIRECT_STATUS
"200"
HTTPS
"on"
SSL_TLS_SNI
"lfw.mylitbag.com"
HTTP_HOST
"lfw.mylitbag.com"
HTTP_CONNECTION
"Keep-Alive"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_X_FORWARDED_FOR
"18.188.29.49"
HTTP_CF_RAY
"8866e10319f56093-ORD"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
HTTP_CF_CONNECTING_IP
"18.188.29.49"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.29 (Ubuntu) Server at lfw.mylitbag.com Port 443</address>\n"
SERVER_SOFTWARE
"Apache/2.4.29 (Ubuntu)"
SERVER_NAME
"lfw.mylitbag.com"
SERVER_ADDR
"161.35.106.156"
SERVER_PORT
"443"
REMOTE_ADDR
"172.69.6.187"
DOCUMENT_ROOT
"/var/www/html/lfw"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/var/www/html/lfw"
SERVER_ADMIN
"webmaster@localhost"
SCRIPT_FILENAME
"/var/www/html/lfw/index.php"
REMOTE_PORT
"22390"
REDIRECT_URL
"/cookie_statement"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/cookie_statement"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1716150984.241
REQUEST_TIME
1716150984
APP_NAME
"MyLitBag"
APP_ENV
"local"
APP_KEY
"base64:GWshF36XIB/If5oAUKc939jzdpbGbZiVnV1w4JbHUvA="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"lfw"
DB_USERNAME
"lfw"
DB_PASSWORD
"NB@q&GxS@4,B+*58"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp-relay.sendinblue.com"
MAIL_PORT
"587"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"LtpfrI06DqFZcCQd"
MAIL_ENCRYPTION
"tls"
FROM_EMAIL
"[email protected]"
MAIL_FROM_EMAIL
"[email protected]"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STRIPE_SECRET
"sk_test_51GsduBGcaRf72ZI2c07sv5KxGqLp1pMymUn5OJeefObA28JSLOQJ6kX32e1TGVv5ElbWYwSO7ctF4AlC2M0tjGsL00tqbK6lSJ"
STRIPE_KEY
"pk_test_51GsduBGcaRf72ZI2IESGBeNQwGlTvAvTuscNjTeFxFlE2q0DoFiXn0VsYtfdC0TXcVFoYuXOO5Z39uZzsvpULJul00UeRzZQvd"
STORAGE_TYPE
"S3"
AWS_ACCESS_KEY_ID
"AKIA4KZULHH7Q3PK3G6I"
AWS_SECRET_ACCESS_KEY
"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"
AWS_DEFAULT_REGION
"us-east-2"
AWS_BUCKET
"mylitbag-deployments-mobilehub-2111137115"
AWS_URL
"https://s3.us-east-2.amazonaws.com/"
APP_SHARE_SECRET
"83b547a01d5240ddb71ee64a52bc16c6"
Key Value
APP_NAME
"MyLitBag"
APP_ENV
"local"
APP_KEY
"base64:GWshF36XIB/If5oAUKc939jzdpbGbZiVnV1w4JbHUvA="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"lfw"
DB_USERNAME
"lfw"
DB_PASSWORD
"NB@q&GxS@4,B+*58"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp-relay.sendinblue.com"
MAIL_PORT
"587"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"LtpfrI06DqFZcCQd"
MAIL_ENCRYPTION
"tls"
FROM_EMAIL
"[email protected]"
MAIL_FROM_EMAIL
"[email protected]"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STRIPE_SECRET
"sk_test_51GsduBGcaRf72ZI2c07sv5KxGqLp1pMymUn5OJeefObA28JSLOQJ6kX32e1TGVv5ElbWYwSO7ctF4AlC2M0tjGsL00tqbK6lSJ"
STRIPE_KEY
"pk_test_51GsduBGcaRf72ZI2IESGBeNQwGlTvAvTuscNjTeFxFlE2q0DoFiXn0VsYtfdC0TXcVFoYuXOO5Z39uZzsvpULJul00UeRzZQvd"
STORAGE_TYPE
"S3"
AWS_ACCESS_KEY_ID
"AKIA4KZULHH7Q3PK3G6I"
AWS_SECRET_ACCESS_KEY
"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"
AWS_DEFAULT_REGION
"us-east-2"
AWS_BUCKET
"mylitbag-deployments-mobilehub-2111137115"
AWS_URL
"https://s3.us-east-2.amazonaws.com/"
APP_SHARE_SECRET
"83b547a01d5240ddb71ee64a52bc16c6"
0. Whoops\Handler\PrettyPageHandler