Full Code of laravel/spark-tests for AI

3.0 aebcbb55dc0e cached
204 files
3.9 MB
1.0M tokens
277 symbols
1 requests
Download .txt
Showing preview only (4,194K chars total). Download the full file or copy to clipboard to get everything.
Repository: laravel/spark-tests
Branch: 3.0
Commit: aebcbb55dc0e
Files: 204
Total size: 3.9 MB

Directory structure:
gitextract_n3osw7oi/

├── .gitattributes
├── .gitignore
├── app/
│   ├── Console/
│   │   ├── Commands/
│   │   │   └── Inspire.php
│   │   └── Kernel.php
│   ├── Events/
│   │   └── Event.php
│   ├── Exceptions/
│   │   └── Handler.php
│   ├── Http/
│   │   ├── Controllers/
│   │   │   ├── Auth/
│   │   │   │   ├── AuthController.php
│   │   │   │   └── PasswordController.php
│   │   │   ├── Controller.php
│   │   │   ├── HomeController.php
│   │   │   └── WelcomeController.php
│   │   ├── Kernel.php
│   │   ├── Middleware/
│   │   │   ├── Authenticate.php
│   │   │   ├── EncryptCookies.php
│   │   │   ├── RedirectIfAuthenticated.php
│   │   │   └── VerifyCsrfToken.php
│   │   ├── Requests/
│   │   │   └── Request.php
│   │   ├── api.php
│   │   └── routes.php
│   ├── Jobs/
│   │   └── Job.php
│   ├── Listeners/
│   │   └── .gitkeep
│   ├── Policies/
│   │   └── .gitkeep
│   ├── Providers/
│   │   ├── AppServiceProvider.php
│   │   ├── AuthServiceProvider.php
│   │   ├── BroadcastServiceProvider.php
│   │   ├── EventServiceProvider.php
│   │   ├── RouteServiceProvider.php
│   │   ├── SparkServiceProvider.php
│   │   └── SparkTestServiceProvider.php
│   ├── Team.php
│   └── User.php
├── artisan
├── bootstrap/
│   ├── app.php
│   ├── autoload.php
│   └── cache/
│       └── .gitignore
├── composer.json
├── config/
│   ├── app.php
│   ├── auth.php
│   ├── broadcasting.php
│   ├── cache.php
│   ├── compile.php
│   ├── database.php
│   ├── filesystems.php
│   ├── mail.php
│   ├── queue.php
│   ├── services.php
│   ├── session.php
│   └── view.php
├── database/
│   ├── .gitignore
│   ├── factories/
│   │   └── ModelFactory.php
│   ├── migrations/
│   │   ├── 2016_04_17_124529_create_performance_indicators_table.php
│   │   ├── 2016_04_17_124530_create_announcements_table.php
│   │   ├── 2016_04_17_124532_create_users_table.php
│   │   ├── 2016_04_17_124535_create_password_resets_table.php
│   │   ├── 2016_04_17_124539_create_api_tokens_table.php
│   │   ├── 2016_04_17_124544_create_subscriptions_table.php
│   │   ├── 2016_04_17_124550_create_invoices_table.php
│   │   ├── 2016_04_17_124557_create_notifications_table.php
│   │   ├── 2016_04_17_124605_create_teams_table.php
│   │   ├── 2016_04_17_124614_create_team_users_table.php
│   │   └── 2016_04_17_124624_create_invitations_table.php
│   └── seeds/
│       ├── .gitkeep
│       └── DatabaseSeeder.php
├── gulpfile.js
├── package.json
├── phpunit.xml
├── public/
│   ├── .htaccess
│   ├── css/
│   │   ├── app.css
│   │   └── sweetalert.css
│   ├── index.php
│   ├── js/
│   │   └── app.js
│   ├── robots.txt
│   └── web.config
├── readme.md
├── resources/
│   ├── assets/
│   │   ├── js/
│   │   │   ├── app.js
│   │   │   ├── components/
│   │   │   │   ├── bootstrap.js
│   │   │   │   └── home.js
│   │   │   ├── spark-components/
│   │   │   │   ├── auth/
│   │   │   │   │   ├── register-braintree.js
│   │   │   │   │   └── register-stripe.js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── kiosk/
│   │   │   │   │   ├── add-discount.js
│   │   │   │   │   ├── announcements.js
│   │   │   │   │   ├── kiosk.js
│   │   │   │   │   ├── metrics.js
│   │   │   │   │   ├── profile.js
│   │   │   │   │   └── users.js
│   │   │   │   ├── navbar/
│   │   │   │   │   └── navbar.js
│   │   │   │   ├── notifications/
│   │   │   │   │   └── notifications.js
│   │   │   │   └── settings/
│   │   │   │       ├── api/
│   │   │   │       │   ├── create-token.js
│   │   │   │       │   └── tokens.js
│   │   │   │       ├── api.js
│   │   │   │       ├── invoices/
│   │   │   │       │   ├── invoice-list.js
│   │   │   │       │   └── update-extra-billing-information.js
│   │   │   │       ├── invoices.js
│   │   │   │       ├── payment-method/
│   │   │   │       │   ├── redeem-coupon.js
│   │   │   │       │   ├── update-payment-method-braintree.js
│   │   │   │       │   ├── update-payment-method-stripe.js
│   │   │   │       │   └── update-vat-id.js
│   │   │   │       ├── payment-method-braintree.js
│   │   │   │       ├── payment-method-stripe.js
│   │   │   │       ├── profile/
│   │   │   │       │   ├── update-contact-information.js
│   │   │   │       │   └── update-profile-photo.js
│   │   │   │       ├── profile.js
│   │   │   │       ├── security/
│   │   │   │       │   ├── disable-two-factor-auth.js
│   │   │   │       │   ├── enable-two-factor-auth.js
│   │   │   │       │   └── update-password.js
│   │   │   │       ├── security.js
│   │   │   │       ├── settings.js
│   │   │   │       ├── subscription/
│   │   │   │       │   ├── cancel-subscription.js
│   │   │   │       │   ├── resume-subscription.js
│   │   │   │       │   ├── subscribe-braintree.js
│   │   │   │       │   ├── subscribe-stripe.js
│   │   │   │       │   └── update-subscription.js
│   │   │   │       ├── subscription.js
│   │   │   │       ├── teams/
│   │   │   │       │   ├── create-team.js
│   │   │   │       │   ├── current-teams.js
│   │   │   │       │   ├── mailed-invitations.js
│   │   │   │       │   ├── pending-invitations.js
│   │   │   │       │   ├── send-invitation.js
│   │   │   │       │   ├── team-members.js
│   │   │   │       │   ├── team-membership.js
│   │   │   │       │   ├── team-profile.js
│   │   │   │       │   ├── team-settings.js
│   │   │   │       │   ├── update-team-name.js
│   │   │   │       │   └── update-team-photo.js
│   │   │   │       └── teams.js
│   │   │   └── spark-components.js
│   │   └── less/
│   │       ├── app.less
│   │       └── spark/
│   │           ├── components/
│   │           │   ├── features.less
│   │           │   ├── notifications.less
│   │           │   └── settings.less
│   │           ├── elements/
│   │           │   ├── alerts.less
│   │           │   ├── buttons.less
│   │           │   ├── forms.less
│   │           │   ├── navbar.less
│   │           │   ├── panels.less
│   │           │   └── tables.less
│   │           ├── spacing.less
│   │           ├── spark.less
│   │           └── variables.less
│   ├── lang/
│   │   └── en/
│   │       ├── auth.php
│   │       ├── pagination.php
│   │       ├── passwords.php
│   │       └── validation.php
│   └── views/
│       ├── errors/
│       │   └── 503.blade.php
│       ├── home.blade.php
│       └── welcome.blade.php
├── server.php
├── storage/
│   ├── app/
│   │   └── .gitignore
│   ├── framework/
│   │   ├── .gitignore
│   │   ├── cache/
│   │   │   └── .gitignore
│   │   ├── sessions/
│   │   │   └── .gitignore
│   │   └── views/
│   │       └── .gitignore
│   └── logs/
│       └── .gitignore
├── terms.md
└── tests/
    ├── BraintreeWebhookControllerTest.php
    ├── CanJoinTeamsTest.php
    ├── CancelBraintreeSubscriptionTest.php
    ├── CancelBraintreeTeamSubscriptionTest.php
    ├── CancelSubscriptionTest.php
    ├── CancelTeamSubscriptionTest.php
    ├── CreateApiTokenTest.php
    ├── CreateTeamTest.php
    ├── CreatesTeams.php
    ├── InteractsWithPaymentProviders.php
    ├── MailedInvitationTest.php
    ├── NotificationsTest.php
    ├── PendingInvitationTest.php
    ├── RedeemCouponTest.php
    ├── RedeemTeamCouponTest.php
    ├── RegistrationBillingAddressTest.php
    ├── RegistrationBraintreeTest.php
    ├── RegistrationTest.php
    ├── ResumeBraintreeSubscriptionTest.php
    ├── ResumeBraintreeTeamSubscriptionTest.php
    ├── ResumeSubscriptionTest.php
    ├── ResumeTeamSubscriptionTest.php
    ├── StripeWebhookControllerTest.php
    ├── SubscribeBillingAddressTest.php
    ├── SubscribeBraintreeTeamTest.php
    ├── SubscribeBraintreeTest.php
    ├── SubscribeTeamTest.php
    ├── SubscribeTest.php
    ├── SubscribedMiddlewareTest.php
    ├── TeamSubscribedMiddlewareTest.php
    ├── TestCase.php
    ├── TwoFactorAuthenticationTest.php
    ├── UpdateApiTokenTest.php
    ├── UpdateBraintreePaymentMethodTest.php
    ├── UpdateBraintreeSubscriptionTest.php
    ├── UpdateBraintreeTeamPaymentMethodTest.php
    ├── UpdateContactInformationTest.php
    ├── UpdateExtraBillingInformationTest.php
    ├── UpdatePasswordTest.php
    ├── UpdatePaymentMethodBillingAddressTest.php
    ├── UpdatePaymentMethodTest.php
    ├── UpdateProfilePhotoTest.php
    ├── UpdateSubscriptionTest.php
    ├── UpdateTeamExtraBillingInformationTest.php
    ├── UpdateTeamPaymentMethodBillingAddressTest.php
    ├── UpdateTeamPaymentMethodTest.php
    ├── UpdateTeamPhotoTest.php
    ├── UpdateTeamTest.php
    └── VatCalculationTest.php

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitattributes
================================================
* text=auto
*.css linguist-vendored
*.less linguist-vendored


================================================
FILE: .gitignore
================================================
/vendor
/node_modules
/spark
Homestead.yaml
Homestead.json
.env


================================================
FILE: app/Console/Commands/Inspire.php
================================================
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;

class Inspire extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'inspire';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Display an inspiring quote';

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
    }
}


================================================
FILE: app/Console/Kernel.php
================================================
<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        // Commands\Inspire::class,
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        // $schedule->command('inspire')
        //          ->hourly();
    }
}


================================================
FILE: app/Events/Event.php
================================================
<?php

namespace App\Events;

abstract class Event
{
    //
}


================================================
FILE: app/Exceptions/Handler.php
================================================
<?php

namespace App\Exceptions;

use Exception;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Validation\ValidationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;

class Handler extends ExceptionHandler
{
    /**
     * A list of the exception types that should not be reported.
     *
     * @var array
     */
    protected $dontReport = [
        AuthorizationException::class,
        HttpException::class,
        ModelNotFoundException::class,
        ValidationException::class,
    ];

    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param  \Exception  $e
     * @return void
     */
    public function report(Exception $e)
    {
        parent::report($e);
    }

    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $e
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $e)
    {
        return parent::render($request, $e);
    }
}


================================================
FILE: app/Http/Controllers/Auth/AuthController.php
================================================
<?php

namespace App\Http\Controllers\Auth;

use App\User;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;

class AuthController extends Controller
{
    /*
    |--------------------------------------------------------------------------
    | Registration & Login Controller
    |--------------------------------------------------------------------------
    |
    | This controller handles the registration of new users, as well as the
    | authentication of existing users. By default, this controller uses
    | a simple trait to add these behaviors. Why don't you explore it?
    |
    */

    use AuthenticatesAndRegistersUsers, ThrottlesLogins;

    /**
     * Where to redirect users after login / registration.
     *
     * @var string
     */
    protected $redirectTo = '/';

    /**
     * Create a new authentication controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('guest', ['except' => 'logout']);
    }

    /**
     * Get a validator for an incoming registration request.
     *
     * @param  array  $data
     * @return \Illuminate\Contracts\Validation\Validator
     */
    protected function validator(array $data)
    {
        return Validator::make($data, [
            'name' => 'required|max:255',
            'email' => 'required|email|max:255|unique:users',
            'password' => 'required|confirmed|min:6',
        ]);
    }

    /**
     * Create a new user instance after a valid registration.
     *
     * @param  array  $data
     * @return User
     */
    protected function create(array $data)
    {
        return User::create([
            'name' => $data['name'],
            'email' => $data['email'],
            'password' => bcrypt($data['password']),
        ]);
    }
}


================================================
FILE: app/Http/Controllers/Auth/PasswordController.php
================================================
<?php

namespace App\Http\Controllers\Auth;

use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;

class PasswordController extends Controller
{
    /*
    |--------------------------------------------------------------------------
    | Password Reset Controller
    |--------------------------------------------------------------------------
    |
    | This controller is responsible for handling password reset requests
    | and uses a simple trait to include this behavior. You're free to
    | explore this trait and override any methods you wish to tweak.
    |
    */

    use ResetsPasswords;

    /**
     * Create a new password controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('guest');
    }
}


================================================
FILE: app/Http/Controllers/Controller.php
================================================
<?php

namespace App\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;

class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}


================================================
FILE: app/Http/Controllers/HomeController.php
================================================
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HomeController extends Controller
{
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('auth');

        // $this->middleware('subscribed');
    }

    /**
     * Show the application dashboard.
     *
     * @return Response
     */
    public function show()
    {
        return view('home');
    }
}


================================================
FILE: app/Http/Controllers/WelcomeController.php
================================================
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class WelcomeController extends Controller
{
    /**
     * Show the application splash screen.
     *
     * @return Response
     */
    public function show()
    {
        return view('welcome');
    }
}


================================================
FILE: app/Http/Kernel.php
================================================
<?php

namespace App\Http;

use Illuminate\Foundation\Http\Kernel as HttpKernel;

class Kernel extends HttpKernel
{
    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
    ];

    /**
     * The application's route middleware groups.
     *
     * @var array
     */
    protected $middlewareGroups = [
        'web' => [
            \App\Http\Middleware\EncryptCookies::class,
            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
            \Illuminate\Session\Middleware\StartSession::class,
            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
            \App\Http\Middleware\VerifyCsrfToken::class,
            \Illuminate\Routing\Middleware\SubstituteBindings::class,
            \Laravel\Spark\Http\Middleware\CreateFreshApiToken::class,
        ],

        'api' => [
            'throttle:60,1',
        ],
    ];

    /**
     * The application's route middleware.
     *
     * These middleware may be assigned to groups or used individually.
     *
     * @var array
     */
    protected $routeMiddleware = [
        'auth' => \App\Http\Middleware\Authenticate::class,
        'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
        'dev' => \Laravel\Spark\Http\Middleware\VerifyUserIsDeveloper::class,
        'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
        'hasTeam' => \Laravel\Spark\Http\Middleware\VerifyUserHasTeam::class,
        'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
        'subscribed' => \Laravel\Spark\Http\Middleware\VerifyUserIsSubscribed::class,
        'teamSubscribed' => \Laravel\Spark\Http\Middleware\VerifyTeamIsSubscribed::class,
    ];
}


================================================
FILE: app/Http/Middleware/Authenticate.php
================================================
<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Support\Facades\Auth;

class Authenticate
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @param  string|null  $guard
     * @return mixed
     */
    public function handle($request, Closure $next, $guard = null)
    {
        if (Auth::guard($guard)->guest()) {
            if ($request->ajax()) {
                return response('Unauthorized.', 401);
            } else {
                return redirect()->guest('login');
            }
        }

        return $next($request);
    }
}


================================================
FILE: app/Http/Middleware/EncryptCookies.php
================================================
<?php

namespace App\Http\Middleware;

use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;

class EncryptCookies extends BaseEncrypter
{
    /**
     * The names of the cookies that should not be encrypted.
     *
     * @var array
     */
    protected $except = [
        //'spark_token',
    ];
}


================================================
FILE: app/Http/Middleware/RedirectIfAuthenticated.php
================================================
<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Support\Facades\Auth;

class RedirectIfAuthenticated
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @param  string|null  $guard
     * @return mixed
     */
    public function handle($request, Closure $next, $guard = null)
    {
        if (Auth::guard($guard)->check()) {
            return redirect('/home');
        }

        return $next($request);
    }
}


================================================
FILE: app/Http/Middleware/VerifyCsrfToken.php
================================================
<?php

namespace App\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;

class VerifyCsrfToken extends BaseVerifier
{
    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        //
    ];
}


================================================
FILE: app/Http/Requests/Request.php
================================================
<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

abstract class Request extends FormRequest
{
    //
}


================================================
FILE: app/Http/api.php
================================================
<?php

/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register the API routes for your application as
| the routes are automatically authenticated using the API guard and
| loaded automatically by this application's RouteServiceProvider.
|
*/

Route::group([
    'prefix' => 'api',
    'middleware' => 'auth:api'
], function () {

    //

});


================================================
FILE: app/Http/routes.php
================================================
<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/

Route::get('/', 'WelcomeController@show');

Route::get('/home', 'HomeController@show');


================================================
FILE: app/Jobs/Job.php
================================================
<?php

namespace App\Jobs;

use Illuminate\Bus\Queueable;

abstract class Job
{
    /*
    |--------------------------------------------------------------------------
    | Queueable Jobs
    |--------------------------------------------------------------------------
    |
    | This job base class provides a central location to place any logic that
    | is shared across all of your jobs. The trait included with the class
    | provides access to the "onQueue" and "delay" queue helper methods.
    |
    */

    use Queueable;
}


================================================
FILE: app/Listeners/.gitkeep
================================================


================================================
FILE: app/Policies/.gitkeep
================================================


================================================
FILE: app/Providers/AppServiceProvider.php
================================================
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}


================================================
FILE: app/Providers/AuthServiceProvider.php
================================================
<?php

namespace App\Providers;

use Illuminate\Contracts\Auth\Access\Gate as GateContract;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;

class AuthServiceProvider extends ServiceProvider
{
    /**
     * The policy mappings for the application.
     *
     * @var array
     */
    protected $policies = [
        'App\Model' => 'App\Policies\ModelPolicy',
    ];

    /**
     * Register any application authentication / authorization services.
     *
     * @param  \Illuminate\Contracts\Auth\Access\Gate  $gate
     * @return void
     */
    public function boot(GateContract $gate)
    {
        $this->registerPolicies($gate);

        //
    }
}


================================================
FILE: app/Providers/BroadcastServiceProvider.php
================================================
<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;

class BroadcastServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Broadcast::routes();

        /*
         * Authenticate the user's personal channel...
         */
        Broadcast::channel('App.User.*', function ($user, $userId) {
            return (int) $user->id === (int) $userId;
        });
    }
}


================================================
FILE: app/Providers/EventServiceProvider.php
================================================
<?php

namespace App\Providers;

use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        // User Related Events...
        'Laravel\Spark\Events\Auth\UserRegistered' => [
            'Laravel\Spark\Listeners\Subscription\CreateTrialEndingNotification',
        ],

        'Laravel\Spark\Events\Subscription\UserSubscribed' => [
            'Laravel\Spark\Listeners\Subscription\UpdateActiveSubscription',
            'Laravel\Spark\Listeners\Subscription\UpdateTrialEndingDate',
        ],

        'Laravel\Spark\Events\Profile\ContactInformationUpdated' => [
            'Laravel\Spark\Listeners\Profile\UpdateContactInformationOnStripe',
        ],

        'Laravel\Spark\Events\PaymentMethod\VatIdUpdated' => [
            'Laravel\Spark\Listeners\Subscription\UpdateTaxPercentageOnStripe',
        ],

        'Laravel\Spark\Events\PaymentMethod\BillingAddressUpdated' => [
            'Laravel\Spark\Listeners\Subscription\UpdateTaxPercentageOnStripe',
        ],

        'Laravel\Spark\Events\Subscription\SubscriptionUpdated' => [
            'Laravel\Spark\Listeners\Subscription\UpdateActiveSubscription',
        ],

        'Laravel\Spark\Events\Subscription\SubscriptionCancelled' => [
            'Laravel\Spark\Listeners\Subscription\UpdateActiveSubscription',
        ],

        // Team Related Events...
        'Laravel\Spark\Events\Teams\TeamCreated' => [
            'Laravel\Spark\Listeners\Teams\Subscription\CreateTrialEndingNotification',
        ],

        'Laravel\Spark\Events\Teams\Subscription\TeamSubscribed' => [
            'Laravel\Spark\Listeners\Teams\Subscription\UpdateActiveSubscription',
            'Laravel\Spark\Listeners\Teams\Subscription\UpdateTrialEndingDate',
        ],

        'Laravel\Spark\Events\Teams\Subscription\SubscriptionUpdated' => [
            'Laravel\Spark\Listeners\Teams\Subscription\UpdateActiveSubscription',
        ],

        'Laravel\Spark\Events\Teams\Subscription\SubscriptionCancelled' => [
            'Laravel\Spark\Listeners\Teams\Subscription\UpdateActiveSubscription',
        ],

        'Laravel\Spark\Events\Teams\UserInvitedToTeam' => [
            'Laravel\Spark\Listeners\Teams\CreateInvitationNotification',
        ],
    ];

    /**
     * Register any other events for your application.
     *
     * @param  \Illuminate\Contracts\Events\Dispatcher  $events
     * @return void
     */
    public function boot()
    {
        parent::boot();

        //
    }
}


================================================
FILE: app/Providers/RouteServiceProvider.php
================================================
<?php

namespace App\Providers;

use Illuminate\Routing\Router;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * This namespace is applied to your controller routes.
     *
     * In addition, it is set as the URL generator's root namespace.
     *
     * @var string
     */
    protected $namespace = 'App\Http\Controllers';

    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @param  \Illuminate\Routing\Router  $router
     * @return void
     */
    public function boot()
    {
        //

        parent::boot();
    }

    /**
     * Define the routes for the application.
     *
     * @param  \Illuminate\Routing\Router  $router
     * @return void
     */
    public function map(Router $router)
    {
        $this->mapWebRoutes($router);

        $this->mapApiRoutes($router);

        //
    }

    /**
     * Define the "web" routes for the application.
     *
     * These routes all receive session state, CSRF protection, etc.
     *
     * @param  \Illuminate\Routing\Router  $router
     * @return void
     */
    protected function mapWebRoutes(Router $router)
    {
        $router->group([
            'namespace' => $this->namespace, 'middleware' => ['web', 'hasTeam'],
        ], function ($router) {
            require app_path('Http/routes.php');
        });
    }

    /**
     * Define the "api" routes for the application.
     *
     * @param  \Illuminate\Routing\Router  $router
     * @return void
     */
    protected function mapApiRoutes(Router $router)
    {
        $router->group([
            'namespace' => $this->namespace,
        ], function ($router) {
            require app_path('Http/api.php');
        });
    }
}


================================================
FILE: app/Providers/SparkServiceProvider.php
================================================
<?php

namespace App\Providers;

use Laravel\Spark\Spark;
use Laravel\Spark\Providers\AppServiceProvider as ServiceProvider;

class SparkServiceProvider extends ServiceProvider
{
    /**
     * Your application and company details.
     *
     * @var array
     */
    protected $details = [
        'vendor' => 'Your Company',
        'product' => 'Your Product',
        'street' => 'PO Box 111',
        'location' => 'Your Town, NY 12345',
        'phone' => '555-555-5555',
    ];

    /**
     * The address where customer support e-mails should be sent.
     *
     * @var string
     */
    protected $sendSupportEmailsTo = null;

    /**
     * All of the application developer e-mail addresses.
     *
     * @var array
     */
    protected $developers = [
        'taylor@laravel.com'
    ];

    /**
     * Indicates if the application will expose an API.
     *
     * @var bool
     */
    protected $usesApi = true;

    /**
     * Finish configuring Spark for the application.
     *
     * @return void
     */
    public function booted()
    {
        Spark::useTwoFactorAuth();

        Spark::useStripe()->noCardUpFront()->trialDays(10);

        Spark::teamTrialDays(10);

        Spark::freePlan()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-1')
            ->price(10)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-2')
            ->price(20)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-3')
            ->price(100)
            ->yearly()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::freeTeamPlan()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-1')
            ->price(10)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-2')
            ->price(20)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-3')
            ->price(100)
            ->yearly()
            ->features([
                'First', 'Second', 'Third'
            ]);
    }
}


================================================
FILE: app/Providers/SparkTestServiceProvider.php
================================================
<?php

namespace App\Providers;

use Laravel\Spark\Spark;
use Laravel\Spark\Providers\AppServiceProvider as ServiceProvider;

class SparkServiceProvider extends ServiceProvider
{
    /**
     * Your application and company details.
     *
     * @var array
     */
    protected $details = [
        'vendor' => 'Your Company',
        'product' => 'Your Product',
        'street' => 'PO Box 111',
        'location' => 'Your Town, NY 12345',
        'phone' => '555-555-5555',
    ];

    /**
     * The address where customer support e-mails should be sent.
     *
     * @var string
     */
    protected $sendSupportEmailsTo = 'taylor@laravel.com';

    /**
     * All of the application developer e-mail addresses.
     *
     * @var array
     */
    protected $developers = [
        'taylor@laravel.com'
    ];

    /**
     * Indicates if the application will expose an API.
     *
     * @var bool
     */
    protected $usesApi = true;

    /**
     * Finish configuring Spark.
     *
     * Define the subscription plans for your application.
     *
     * @return void
     */
    public function booted()
    {
        Spark::useTwoFactorAuth();

        Spark::useStripe()->noCardUpFront()->trialDays(10);

        Spark::teamTrialDays(10);

        Spark::freePlan()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-1')
            ->price(10)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-2')
            ->price(20)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::plan('Basic', 'spark-test-3')
            ->price(100)
            ->yearly()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::freeTeamPlan()
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-1')
            ->price(10)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-2')
            ->price(20)
            ->features([
                'First', 'Second', 'Third'
            ]);

        Spark::teamPlan('Basic', 'spark-test-3')
            ->price(100)
            ->yearly()
            ->features([
                'First', 'Second', 'Third'
            ]);
    }
}


================================================
FILE: app/Team.php
================================================
<?php

namespace App;

use Laravel\Spark\Team as SparkTeam;

class Team extends SparkTeam
{
    //
}


================================================
FILE: app/User.php
================================================
<?php

namespace App;

use Laravel\Spark\HasApiTokens;
use Laravel\Spark\CanJoinTeams;
use Laravel\Spark\User as SparkUser;

class User extends SparkUser
{
    use HasApiTokens, CanJoinTeams;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name',
        'email',
    ];

    /**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
    protected $hidden = [
        'password',
        'remember_token',
        'authy_id',
        'country_code',
        'phone',
        'card_brand',
        'card_last_four',
        'card_country',
        'billing_address',
        'billing_address_line_2',
        'billing_city',
        'billing_zip',
        'billing_country',
        'extra_billing_information',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'trial_ends_at' => 'date',
        'uses_two_factor_auth' => 'boolean',
    ];
}


================================================
FILE: artisan
================================================
#!/usr/bin/env php
<?php

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/

require __DIR__.'/bootstrap/autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/

$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);

$status = $kernel->handle(
    $input = new Symfony\Component\Console\Input\ArgvInput,
    new Symfony\Component\Console\Output\ConsoleOutput
);

/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Artisan has finished running. We will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/

$kernel->terminate($input, $status);

exit($status);


================================================
FILE: bootstrap/app.php
================================================
<?php

/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/

$app = new Illuminate\Foundation\Application(
    realpath(__DIR__.'/../')
);

/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/

$app->singleton(
    Illuminate\Contracts\Http\Kernel::class,
    App\Http\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Console\Kernel::class,
    App\Console\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Debug\ExceptionHandler::class,
    App\Exceptions\Handler::class
);

/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/

return $app;


================================================
FILE: bootstrap/autoload.php
================================================
<?php

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/

require __DIR__.'/../vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Include The Compiled Class File
|--------------------------------------------------------------------------
|
| To dramatically increase your application's performance, you may use a
| compiled class file which contains all of the classes commonly used
| by a request. The Artisan "optimize" is used to create this file.
|
*/

$compiledPath = __DIR__.'/cache/compiled.php';

if (file_exists($compiledPath)) {
    require $compiledPath;
}


================================================
FILE: bootstrap/cache/.gitignore
================================================
*
!.gitignore


================================================
FILE: composer.json
================================================
{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "type": "project",
    "require": {
        "php": ">=5.5.9",
        "laravel/framework": "5.3.*",
        "laravel/spark": "*@dev",
        "laravel/cashier": "~7.0",
        "doctrine/dbal": "^2.5",
        "league/flysystem-aws-s3-v3": "^1.0",
        "firebase/php-jwt": "^3.0",
        "mpociot/vat-calculator": "~1.0"
    },
    "require-dev": {
        "fzaninotto/faker": "~1.4",
        "mockery/mockery": "0.9.*",
        "phpunit/phpunit": "~4.0",
        "symfony/css-selector": "2.8.*|3.0.*",
        "symfony/dom-crawler": "2.8.*|3.0.*"
    },
    "autoload": {
        "classmap": [
            "database",
            "tests"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/TestCase.php"
        ]
    },
    "scripts": {
        "post-root-package-install": [
            "php -r \"copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "php artisan key:generate"
        ],
        "post-install-cmd": [
            "php artisan clear-compiled",
            "php artisan optimize"
        ],
        "pre-update-cmd": [
            "php artisan clear-compiled"
        ],
        "post-update-cmd": [
            "php artisan optimize"
        ]
    },
    "repositories": [
        {
            "type": "path",
            "url": "./../lib"
        }
    ],
    "minimum-stability": "dev",
    "config": {
        "preferred-install": "dist"
    }
}


================================================
FILE: config/app.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Application Environment
    |--------------------------------------------------------------------------
    |
    | This value determines the "environment" your application is currently
    | running in. This may determine how you prefer to configure various
    | services your application utilizes. Set this in your ".env" file.
    |
    */

    'env' => env('APP_ENV', 'production'),

    /*
    |--------------------------------------------------------------------------
    | Application Debug Mode
    |--------------------------------------------------------------------------
    |
    | When your application is in debug mode, detailed error messages with
    | stack traces will be shown on every error that occurs within your
    | application. If disabled, a simple generic error page is shown.
    |
    */

    'debug' => env('APP_DEBUG', false),

    /*
    |--------------------------------------------------------------------------
    | Application URL
    |--------------------------------------------------------------------------
    |
    | This URL is used by the console to properly generate URLs when using
    | the Artisan command line tool. You should set this to the root of
    | your application so that it is used when running Artisan tasks.
    |
    */

    'url' => 'http://localhost',

    /*
    |--------------------------------------------------------------------------
    | Application Timezone
    |--------------------------------------------------------------------------
    |
    | Here you may specify the default timezone for your application, which
    | will be used by the PHP date and date-time functions. We have gone
    | ahead and set this to a sensible default for you out of the box.
    |
    */

    'timezone' => 'UTC',

    /*
    |--------------------------------------------------------------------------
    | Application Locale Configuration
    |--------------------------------------------------------------------------
    |
    | The application locale determines the default locale that will be used
    | by the translation service provider. You are free to set this value
    | to any of the locales which will be supported by the application.
    |
    */

    'locale' => 'en',

    /*
    |--------------------------------------------------------------------------
    | Application Fallback Locale
    |--------------------------------------------------------------------------
    |
    | The fallback locale determines the locale to use when the current one
    | is not available. You may change the value to correspond to any of
    | the language folders that are provided through your application.
    |
    */

    'fallback_locale' => 'en',

    /*
    |--------------------------------------------------------------------------
    | Encryption Key
    |--------------------------------------------------------------------------
    |
    | This key is used by the Illuminate encrypter service and should be set
    | to a random, 32 character string, otherwise these encrypted strings
    | will not be safe. Please do this before deploying an application!
    |
    */

    'key' => env('APP_KEY'),

    'cipher' => 'AES-256-CBC',

    /*
    |--------------------------------------------------------------------------
    | Logging Configuration
    |--------------------------------------------------------------------------
    |
    | Here you may configure the log settings for your application. Out of
    | the box, Laravel uses the Monolog PHP logging library. This gives
    | you a variety of powerful log handlers / formatters to utilize.
    |
    | Available Settings: "single", "daily", "syslog", "errorlog"
    |
    */

    'log' => env('APP_LOG', 'single'),

    /*
    |--------------------------------------------------------------------------
    | Autoloaded Service Providers
    |--------------------------------------------------------------------------
    |
    | The service providers listed here will be automatically loaded on the
    | request to your application. Feel free to add your own services to
    | this array to grant expanded functionality to your applications.
    |
    */

    'providers' => [

        /*
         * Laravel Framework Service Providers...
         */
        Illuminate\Auth\AuthServiceProvider::class,
        Illuminate\Broadcasting\BroadcastServiceProvider::class,
        Illuminate\Bus\BusServiceProvider::class,
        Illuminate\Cache\CacheServiceProvider::class,
        Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
        Illuminate\Cookie\CookieServiceProvider::class,
        Illuminate\Database\DatabaseServiceProvider::class,
        Illuminate\Encryption\EncryptionServiceProvider::class,
        Illuminate\Filesystem\FilesystemServiceProvider::class,
        Illuminate\Foundation\Providers\FoundationServiceProvider::class,
        Illuminate\Hashing\HashServiceProvider::class,
        Illuminate\Mail\MailServiceProvider::class,
        Illuminate\Pagination\PaginationServiceProvider::class,
        Illuminate\Pipeline\PipelineServiceProvider::class,
        Illuminate\Queue\QueueServiceProvider::class,
        Illuminate\Redis\RedisServiceProvider::class,
        Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
        Illuminate\Session\SessionServiceProvider::class,
        Illuminate\Translation\TranslationServiceProvider::class,
        Illuminate\Validation\ValidationServiceProvider::class,
        Illuminate\View\ViewServiceProvider::class,
        Illuminate\Notifications\NotificationServiceProvider::class,

        /*
         * Application Service Providers...
         */
        Laravel\Spark\Providers\SparkServiceProvider::class,
        Laravel\Cashier\CashierServiceProvider::class,


        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,
        App\Providers\SparkServiceProvider::class,
    ],

    /*
    |--------------------------------------------------------------------------
    | Class Aliases
    |--------------------------------------------------------------------------
    |
    | This array of class aliases will be registered when this application
    | is started. However, feel free to register as many as you wish as
    | the aliases are "lazy" loaded so they don't hinder performance.
    |
    */

    'aliases' => [

        'App'       => Illuminate\Support\Facades\App::class,
        'Artisan'   => Illuminate\Support\Facades\Artisan::class,
        'Auth'      => Illuminate\Support\Facades\Auth::class,
        'Blade'     => Illuminate\Support\Facades\Blade::class,
        'Cache'     => Illuminate\Support\Facades\Cache::class,
        'Config'    => Illuminate\Support\Facades\Config::class,
        'Cookie'    => Illuminate\Support\Facades\Cookie::class,
        'Crypt'     => Illuminate\Support\Facades\Crypt::class,
        'DB'        => Illuminate\Support\Facades\DB::class,
        'Eloquent'  => Illuminate\Database\Eloquent\Model::class,
        'Event'     => Illuminate\Support\Facades\Event::class,
        'File'      => Illuminate\Support\Facades\File::class,
        'Gate'      => Illuminate\Support\Facades\Gate::class,
        'Hash'      => Illuminate\Support\Facades\Hash::class,
        'Lang'      => Illuminate\Support\Facades\Lang::class,
        'Log'       => Illuminate\Support\Facades\Log::class,
        'Mail'      => Illuminate\Support\Facades\Mail::class,
        'Password'  => Illuminate\Support\Facades\Password::class,
        'Queue'     => Illuminate\Support\Facades\Queue::class,
        'Redirect'  => Illuminate\Support\Facades\Redirect::class,
        'Redis'     => Illuminate\Support\Facades\Redis::class,
        'Request'   => Illuminate\Support\Facades\Request::class,
        'Response'  => Illuminate\Support\Facades\Response::class,
        'Route'     => Illuminate\Support\Facades\Route::class,
        'Schema'    => Illuminate\Support\Facades\Schema::class,
        'Session'   => Illuminate\Support\Facades\Session::class,
        'Storage'   => Illuminate\Support\Facades\Storage::class,
        'URL'       => Illuminate\Support\Facades\URL::class,
        'Validator' => Illuminate\Support\Facades\Validator::class,
        'View'      => Illuminate\Support\Facades\View::class,
        'Notification' => Illuminate\Support\Facades\Notification::class,

    ],

];


================================================
FILE: config/auth.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Authentication Defaults
    |--------------------------------------------------------------------------
    |
    | This option controls the default authentication "guard" and password
    | reset options for your application. You may change these defaults
    | as required, but they're a perfect start for most applications.
    |
    */

    'defaults' => [
        'guard' => 'web',
        'passwords' => 'users',
    ],

    /*
    |--------------------------------------------------------------------------
    | Authentication Guards
    |--------------------------------------------------------------------------
    |
    | Next, you may define every authentication guard for your application.
    | Of course, a great default configuration has been defined for you
    | here which uses session storage and the Eloquent user provider.
    |
    | All authentication drivers have a user provider. This defines how the
    | users are actually retrieved out of your database or other storage
    | mechanisms used by this application to persist your user's data.
    |
    | Supported: "session", "token"
    |
    */

    'guards' => [
        'web' => [
            'driver' => 'session',
            'provider' => 'users',
        ],

        'api' => [
            'driver' => 'spark',
        ],
    ],

    /*
    |--------------------------------------------------------------------------
    | User Providers
    |--------------------------------------------------------------------------
    |
    | All authentication drivers have a user provider. This defines how the
    | users are actually retrieved out of your database or other storage
    | mechanisms used by this application to persist your user's data.
    |
    | If you have multiple user tables or models you may configure multiple
    | sources which represent each model / table. These sources may then
    | be assigned to any extra authentication guards you have defined.
    |
    | Supported: "database", "eloquent"
    |
    */

    'providers' => [
        'users' => [
            'driver' => 'eloquent',
            'model' => App\User::class,
        ],

        // 'users' => [
        //     'driver' => 'database',
        //     'table' => 'users',
        // ],
    ],

    /*
    |--------------------------------------------------------------------------
    | Resetting Passwords
    |--------------------------------------------------------------------------
    |
    | Here you may set the options for resetting passwords including the view
    | that is your password reset e-mail. You may also set the name of the
    | table that maintains all of the reset tokens for your application.
    |
    | You may specify multiple password reset configurations if you have more
    | than one user table or model in the application and you want to have
    | separate password reset settings based on the specific user types.
    |
    | The expire time is the number of minutes that the reset token should be
    | considered valid. This security feature keeps tokens short-lived so
    | they have less time to be guessed. You may change this as needed.
    |
    */

    'passwords' => [
        'users' => [
            'provider' => 'users',
            'email' => 'spark::auth.emails.password',
            'table' => 'password_resets',
            'expire' => 60,
        ],
    ],

];


================================================
FILE: config/broadcasting.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Broadcaster
    |--------------------------------------------------------------------------
    |
    | This option controls the default broadcaster that will be used by the
    | framework when an event needs to be broadcast. You may set this to
    | any of the connections defined in the "connections" array below.
    |
    */

    'default' => env('BROADCAST_DRIVER', 'pusher'),

    /*
    |--------------------------------------------------------------------------
    | Broadcast Connections
    |--------------------------------------------------------------------------
    |
    | Here you may define all of the broadcast connections that will be used
    | to broadcast events to other systems or over websockets. Samples of
    | each available type of connection are provided inside this array.
    |
    */

    'connections' => [

        'pusher' => [
            'driver' => 'pusher',
            'key' => env('PUSHER_KEY'),
            'secret' => env('PUSHER_SECRET'),
            'app_id' => env('PUSHER_APP_ID'),
            'options' => [
                //
            ],
        ],

        'redis' => [
            'driver' => 'redis',
            'connection' => 'default',
        ],

        'log' => [
            'driver' => 'log',
        ],

    ],

];


================================================
FILE: config/cache.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Cache Store
    |--------------------------------------------------------------------------
    |
    | This option controls the default cache connection that gets used while
    | using this caching library. This connection is used when another is
    | not explicitly specified when executing a given caching function.
    |
    */

    'default' => env('CACHE_DRIVER', 'file'),

    /*
    |--------------------------------------------------------------------------
    | Cache Stores
    |--------------------------------------------------------------------------
    |
    | Here you may define all of the cache "stores" for your application as
    | well as their drivers. You may even define multiple stores for the
    | same cache driver to group types of items stored in your caches.
    |
    */

    'stores' => [

        'apc' => [
            'driver' => 'apc',
        ],

        'array' => [
            'driver' => 'array',
        ],

        'database' => [
            'driver' => 'database',
            'table'  => 'cache',
            'connection' => null,
        ],

        'file' => [
            'driver' => 'file',
            'path'   => storage_path('framework/cache'),
        ],

        'memcached' => [
            'driver'  => 'memcached',
            'servers' => [
                [
                    'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100,
                ],
            ],
        ],

        'redis' => [
            'driver' => 'redis',
            'connection' => 'default',
        ],

    ],

    /*
    |--------------------------------------------------------------------------
    | Cache Key Prefix
    |--------------------------------------------------------------------------
    |
    | When utilizing a RAM based store such as APC or Memcached, there might
    | be other applications utilizing the same cache. So, we'll specify a
    | value to get prefixed to all our keys so we can avoid collisions.
    |
    */

    'prefix' => 'laravel',

];


================================================
FILE: config/compile.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Additional Compiled Classes
    |--------------------------------------------------------------------------
    |
    | Here you may specify additional classes to include in the compiled file
    | generated by the `artisan optimize` command. These should be classes
    | that are included on basically every request into the application.
    |
    */

    'files' => [
        //
    ],

    /*
    |--------------------------------------------------------------------------
    | Compiled File Providers
    |--------------------------------------------------------------------------
    |
    | Here you may list service providers which define a "compiles" function
    | that returns additional files that should be compiled, providing an
    | easy way to get common files from any packages you are utilizing.
    |
    */

    'providers' => [
        //
    ],

];


================================================
FILE: config/database.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | PDO Fetch Style
    |--------------------------------------------------------------------------
    |
    | By default, database results will be returned as instances of the PHP
    | stdClass object; however, you may desire to retrieve records in an
    | array format for simplicity. Here you can tweak the fetch style.
    |
    */

    'fetch' => PDO::FETCH_CLASS,

    /*
    |--------------------------------------------------------------------------
    | Default Database Connection Name
    |--------------------------------------------------------------------------
    |
    | Here you may specify which of the database connections below you wish
    | to use as your default connection for all database work. Of course
    | you may use many connections at once using the Database library.
    |
    */

    'default' => env('DB_CONNECTION', 'mysql'),

    /*
    |--------------------------------------------------------------------------
    | Database Connections
    |--------------------------------------------------------------------------
    |
    | Here are each of the database connections setup for your application.
    | Of course, examples of configuring each database platform that is
    | supported by Laravel is shown below to make development simple.
    |
    |
    | All database work in Laravel is done through the PHP PDO facilities
    | so make sure you have the driver for your particular database of
    | choice installed on your machine before you begin development.
    |
    */

    'connections' => [

        'sqlite' => [
            'driver'   => 'sqlite',
            'database' => database_path('database.sqlite'),
            'prefix'   => '',
        ],

        'testing' => [
            'driver'   => 'sqlite',
            'database' => ':memory:',
            'prefix'   => '',
        ],

        'mysql' => [
            'driver'    => 'mysql',
            'host'      => env('DB_HOST', 'localhost'),
            'database'  => env('DB_DATABASE', 'forge'),
            'username'  => env('DB_USERNAME', 'forge'),
            'password'  => env('DB_PASSWORD', ''),
            'charset'   => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix'    => '',
            'strict'    => false,
        ],

        'pgsql' => [
            'driver'   => 'pgsql',
            'host'     => env('DB_HOST', 'localhost'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'charset'  => 'utf8',
            'prefix'   => '',
            'schema'   => 'public',
        ],

        'sqlsrv' => [
            'driver'   => 'sqlsrv',
            'host'     => env('DB_HOST', 'localhost'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'charset'  => 'utf8',
            'prefix'   => '',
        ],

    ],

    /*
    |--------------------------------------------------------------------------
    | Migration Repository Table
    |--------------------------------------------------------------------------
    |
    | This table keeps track of all the migrations that have already run for
    | your application. Using this information, we can determine which of
    | the migrations on disk haven't actually been run in the database.
    |
    */

    'migrations' => 'migrations',

    /*
    |--------------------------------------------------------------------------
    | Redis Databases
    |--------------------------------------------------------------------------
    |
    | Redis is an open source, fast, and advanced key-value store that also
    | provides a richer set of commands than a typical key-value systems
    | such as APC or Memcached. Laravel makes it easy to dig right in.
    |
    */

    'redis' => [

        'cluster' => false,

        'default' => [
            'host'     => env('REDIS_HOST', 'localhost'),
            'password' => env('REDIS_PASSWORD', null),
            'port'     => env('REDIS_PORT', 6379),
            'database' => 0,
        ],

    ],

];


================================================
FILE: config/filesystems.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Filesystem Disk
    |--------------------------------------------------------------------------
    |
    | Here you may specify the default filesystem disk that should be used
    | by the framework. A "local" driver, as well as a variety of cloud
    | based drivers are available for your choosing. Just store away!
    |
    | Supported: "local", "ftp", "s3", "rackspace"
    |
    */

    'default' => 'local',

    /*
    |--------------------------------------------------------------------------
    | Default Cloud Filesystem Disk
    |--------------------------------------------------------------------------
    |
    | Many applications store files both locally and in the cloud. For this
    | reason, you may specify a default "cloud" driver here. This driver
    | will be bound as the Cloud disk implementation in the container.
    |
    */

    'cloud' => 's3',

    /*
    |--------------------------------------------------------------------------
    | Filesystem Disks
    |--------------------------------------------------------------------------
    |
    | Here you may configure as many filesystem "disks" as you wish, and you
    | may even configure multiple disks of the same driver. Defaults have
    | been setup for each driver as an example of the required options.
    |
    */

    'disks' => [

        'local' => [
            'driver' => 'local',
            'root'   => storage_path('app'),
        ],

        'public' => [
            'driver' => 'local',
            'root'   => storage_path('app/public'),
            'visibility' => 'public',
        ],

        // 'public' => [
        //     'driver' => 's3',
        //     'key'    => 'AKIAIR3A5MY3NL624R6Q',
        //     'secret' => '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',
        //     'region' => 'us-east-1',
        //     'bucket' => 'spark-test-2a1',
        //     'visibility' => 'public',
        // ],

    ],

];


================================================
FILE: config/mail.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "ses", "log"
    |
    */

    'driver' => env('MAIL_DRIVER', 'smtp'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Mailgun mail service which will provide reliable deliveries.
    |
    */

    'host' => env('MAIL_HOST', 'smtp.mailgun.org'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to deliver e-mails to
    | users of the application. Like the host we have set this value to
    | stay compatible with the Mailgun e-mail application by default.
    |
    */

    'port' => env('MAIL_PORT', 587),

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => ['address' => 'help@spark.com', 'name' => 'Spark'],

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

    'encryption' => env('MAIL_ENCRYPTION', 'tls'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

    'username' => env('MAIL_USERNAME'),

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Password
    |--------------------------------------------------------------------------
    |
    | Here you may set the password required by your SMTP server to send out
    | messages from your application. This will be given to the server on
    | connection so that the application will be able to send messages.
    |
    */

    'password' => env('MAIL_PASSWORD'),

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

];


================================================
FILE: config/queue.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Queue Driver
    |--------------------------------------------------------------------------
    |
    | The Laravel queue API supports a variety of back-ends via an unified
    | API, giving you convenient access to each back-end using the same
    | syntax for each one. Here you may set the default queue driver.
    |
    | Supported: "null", "sync", "database", "beanstalkd",
    |            "sqs", "redis"
    |
    */

    'default' => env('QUEUE_DRIVER', 'sync'),

    /*
    |--------------------------------------------------------------------------
    | Queue Connections
    |--------------------------------------------------------------------------
    |
    | Here you may configure the connection information for each server that
    | is used by your application. A default configuration has been added
    | for each back-end shipped with Laravel. You are free to add more.
    |
    */

    'connections' => [

        'sync' => [
            'driver' => 'sync',
        ],

        'database' => [
            'driver' => 'database',
            'table'  => 'jobs',
            'queue'  => 'default',
            'expire' => 60,
        ],

        'beanstalkd' => [
            'driver' => 'beanstalkd',
            'host'   => 'localhost',
            'queue'  => 'default',
            'ttr'    => 60,
        ],

        'sqs' => [
            'driver' => 'sqs',
            'key'    => 'your-public-key',
            'secret' => 'your-secret-key',
            'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
            'queue'  => 'your-queue-name',
            'region' => 'us-east-1',
        ],

        'redis' => [
            'driver'     => 'redis',
            'connection' => 'default',
            'queue'      => 'default',
            'expire'     => 60,
        ],

    ],

    /*
    |--------------------------------------------------------------------------
    | Failed Queue Jobs
    |--------------------------------------------------------------------------
    |
    | These options configure the behavior of failed queue job logging so you
    | can control which database and table are used to store the jobs that
    | have failed. You may change them to any database / table you wish.
    |
    */

    'failed' => [
        'database' => env('DB_CONNECTION', 'mysql'),
        'table'    => 'failed_jobs',
    ],

];


================================================
FILE: config/services.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Third Party Services
    |--------------------------------------------------------------------------
    |
    | This file is for storing the credentials for third party services such
    | as Stripe, Mailgun, Mandrill, and others. This file provides a sane
    | default location for this type of information, allowing packages
    | to have a conventional place to find your various credentials.
    |
    */

    'authy' => [
        'secret' => env('AUTHY_SECRET'),
    ],

    'mailgun' => [
        'domain' => env('MAILGUN_DOMAIN'),
        'secret' => env('MAILGUN_SECRET'),
    ],

    'ses' => [
        'key'    => env('SES_KEY'),
        'secret' => env('SES_SECRET'),
        'region' => 'us-east-1',
    ],

    'stripe' => [
        'model'  => App\User::class,
        'key'    => env('STRIPE_KEY'),
        'secret' => env('STRIPE_SECRET'),
    ],

];


================================================
FILE: config/session.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Session Driver
    |--------------------------------------------------------------------------
    |
    | This option controls the default session "driver" that will be used on
    | requests. By default, we will use the lightweight native driver but
    | you may specify any of the other wonderful drivers provided here.
    |
    | Supported: "file", "cookie", "database", "apc",
    |            "memcached", "redis", "array"
    |
    */

    'driver' => env('SESSION_DRIVER', 'file'),

    /*
    |--------------------------------------------------------------------------
    | Session Lifetime
    |--------------------------------------------------------------------------
    |
    | Here you may specify the number of minutes that you wish the session
    | to be allowed to remain idle before it expires. If you want them
    | to immediately expire on the browser closing, set that option.
    |
    */

    'lifetime' => 120,

    'expire_on_close' => false,

    /*
    |--------------------------------------------------------------------------
    | Session Encryption
    |--------------------------------------------------------------------------
    |
    | This option allows you to easily specify that all of your session data
    | should be encrypted before it is stored. All encryption will be run
    | automatically by Laravel and you can use the Session like normal.
    |
    */

    'encrypt' => false,

    /*
    |--------------------------------------------------------------------------
    | Session File Location
    |--------------------------------------------------------------------------
    |
    | When using the native session driver, we need a location where session
    | files may be stored. A default has been set for you but a different
    | location may be specified. This is only needed for file sessions.
    |
    */

    'files' => storage_path('framework/sessions'),

    /*
    |--------------------------------------------------------------------------
    | Session Database Connection
    |--------------------------------------------------------------------------
    |
    | When using the "database" or "redis" session drivers, you may specify a
    | connection that should be used to manage these sessions. This should
    | correspond to a connection in your database configuration options.
    |
    */

    'connection' => null,

    /*
    |--------------------------------------------------------------------------
    | Session Database Table
    |--------------------------------------------------------------------------
    |
    | When using the "database" session driver, you may specify the table we
    | should use to manage the sessions. Of course, a sensible default is
    | provided for you; however, you are free to change this as needed.
    |
    */

    'table' => 'sessions',

    /*
    |--------------------------------------------------------------------------
    | Session Sweeping Lottery
    |--------------------------------------------------------------------------
    |
    | Some session drivers must manually sweep their storage location to get
    | rid of old sessions from storage. Here are the chances that it will
    | happen on a given request. By default, the odds are 2 out of 100.
    |
    */

    'lottery' => [2, 100],

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Name
    |--------------------------------------------------------------------------
    |
    | Here you may change the name of the cookie used to identify a session
    | instance by ID. The name specified here will get used every time a
    | new session cookie is created by the framework for every driver.
    |
    */

    'cookie' => 'laravel_session',

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Path
    |--------------------------------------------------------------------------
    |
    | The session cookie path determines the path for which the cookie will
    | be regarded as available. Typically, this will be the root path of
    | your application but you are free to change this when necessary.
    |
    */

    'path' => '/',

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Domain
    |--------------------------------------------------------------------------
    |
    | Here you may change the domain of the cookie used to identify a session
    | in your application. This will determine which domains the cookie is
    | available to in your application. A sensible default has been set.
    |
    */

    'domain' => null,

    /*
    |--------------------------------------------------------------------------
    | HTTPS Only Cookies
    |--------------------------------------------------------------------------
    |
    | By setting this option to true, session cookies will only be sent back
    | to the server if the browser has a HTTPS connection. This will keep
    | the cookie from being sent to you if it can not be done securely.
    |
    */

    'secure' => false,

];


================================================
FILE: config/view.php
================================================
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | View Storage Paths
    |--------------------------------------------------------------------------
    |
    | Most templating systems load templates from disk. Here you may specify
    | an array of paths that should be checked for your views. Of course
    | the usual Laravel view path has already been registered for you.
    |
    */

    'paths' => [
        realpath(base_path('resources/views')),
    ],

    /*
    |--------------------------------------------------------------------------
    | Compiled View Path
    |--------------------------------------------------------------------------
    |
    | This option determines where all the compiled Blade templates will be
    | stored for your application. Typically, this is within the storage
    | directory. However, as usual, you are free to change this value.
    |
    */

    'compiled' => realpath(storage_path('framework/views')),
    // 'compiled' => null,

];


================================================
FILE: database/.gitignore
================================================
*.sqlite


================================================
FILE: database/factories/ModelFactory.php
================================================
<?php

/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding your
| database. Just tell the factory how a default model should look.
|
*/

$factory->define(App\User::class, function (Faker\Generator $faker) {
    return [
        'name' => $faker->name,
        'email' => $faker->email,
        'password' => bcrypt(str_random(10)),
        'remember_token' => str_random(10),
    ];
});


================================================
FILE: database/migrations/2016_04_17_124529_create_performance_indicators_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreatePerformanceIndicatorsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('performance_indicators', function (Blueprint $table) {
            $table->increments('id');
            $table->decimal('monthly_recurring_revenue');
            $table->decimal('yearly_recurring_revenue');
            $table->decimal('daily_volume');
            $table->integer('new_users');
            $table->timestamps();

            $table->index('created_at');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('performance_indicators');
    }
}


================================================
FILE: database/migrations/2016_04_17_124530_create_announcements_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateAnnouncementsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('announcements', function (Blueprint $table) {
            $table->string('id')->primary();
            $table->integer('user_id');
            $table->text('body');
            $table->string('action_text')->nullable();
            $table->text('action_url')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('announcements');
    }
}


================================================
FILE: database/migrations/2016_04_17_124532_create_users_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->string('email')->unique();
            $table->string('password', 60);
            $table->rememberToken();
            $table->text('photo_url')->nullable();
            $table->tinyInteger('uses_two_factor_auth')->default(0);
            $table->string('authy_id')->nullable();
            $table->string('country_code', 10)->nullable();
            $table->string('phone', 25)->nullable();
            $table->string('two_factor_reset_code', 100)->nullable();
            $table->integer('current_team_id')->nullable();
            $table->string('stripe_id')->nullable();
            $table->string('current_billing_plan')->nullable();
            $table->string('card_brand')->nullable();
            $table->string('card_last_four')->nullable();
            $table->string('card_country')->nullable();
            $table->string('billing_address')->nullable();
            $table->string('billing_address_line_2')->nullable();
            $table->string('billing_city')->nullable();
            $table->string('billing_state')->nullable();
            $table->string('billing_zip', 25)->nullable();
            $table->string('billing_country', 2)->nullable();
            $table->string('vat_id', 50)->nullable();
            $table->text('extra_billing_information')->nullable();
            $table->timestamp('trial_ends_at')->nullable();
            $table->timestamp('last_read_announcements_at')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('users');
    }
}


================================================
FILE: database/migrations/2016_04_17_124535_create_password_resets_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreatePasswordResetsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('password_resets', function (Blueprint $table) {
            $table->string('email')->index();
            $table->string('token')->index();
            $table->timestamp('created_at');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('password_resets');
    }
}


================================================
FILE: database/migrations/2016_04_17_124539_create_api_tokens_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateApiTokensTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('api_tokens', function (Blueprint $table) {
            $table->string('id')->primary();
            $table->integer('user_id');
            $table->string('name');
            $table->string('token', 100)->unique();
            $table->text('metadata');
            $table->tinyInteger('transient')->default(0);
            $table->timestamp('last_used_at')->nullable();
            $table->timestamp('expires_at')->nullable();
            $table->timestamps();

            $table->index(['user_id', 'expires_at']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('api_tokens');
    }
}


================================================
FILE: database/migrations/2016_04_17_124544_create_subscriptions_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateSubscriptionsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('subscriptions', function ($table) {
            $table->increments('id');
            $table->integer('user_id');
            $table->string('name');
            $table->string('stripe_id');
            $table->string('stripe_plan');
            $table->integer('quantity');
            $table->timestamp('trial_ends_at')->nullable();
            $table->timestamp('ends_at')->nullable();
            $table->timestamps();
        });

        Schema::create('team_subscriptions', function ($table) {
            $table->increments('id');
            $table->integer('team_id');
            $table->string('name');
            $table->string('stripe_id');
            $table->string('stripe_plan');
            $table->integer('quantity');
            $table->timestamp('trial_ends_at')->nullable();
            $table->timestamp('ends_at')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('subscriptions');
        Schema::drop('team_subscriptions');
    }
}


================================================
FILE: database/migrations/2016_04_17_124550_create_invoices_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateInvoicesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('invoices', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('user_id')->nullable()->index();
            $table->integer('team_id')->nullable()->index();
            $table->string('provider_id');
            $table->decimal('total')->nullable();
            $table->decimal('tax')->nullable();
            $table->string('card_country')->nullable();
            $table->string('billing_state')->nullable();
            $table->string('billing_zip')->nullable();
            $table->string('billing_country')->nullable();
            $table->string('vat_id', 50)->nullable();
            $table->timestamps();

            $table->index('created_at');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('invoices');
    }
}


================================================
FILE: database/migrations/2016_04_17_124557_create_notifications_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateNotificationsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('notifications', function (Blueprint $table) {
            $table->string('id')->primary();
            $table->integer('user_id');
            $table->integer('created_by')->nullable();
            $table->string('icon', 50)->nullable();
            $table->text('body');
            $table->string('action_text')->nullable();
            $table->text('action_url')->nullable();
            $table->tinyInteger('read')->default(0);
            $table->timestamps();

            $table->index(['user_id', 'created_at']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('notifications');
    }
}


================================================
FILE: database/migrations/2016_04_17_124605_create_teams_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateTeamsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('teams', function (Blueprint $table) {
            $table->increments('id');
            $table->integer('owner_id')->index();
            $table->string('name');
            $table->text('photo_url')->nullable();
            $table->string('stripe_id')->nullable();
            $table->string('current_billing_plan')->nullable();
            $table->string('card_brand')->nullable();
            $table->string('card_last_four')->nullable();
            $table->string('card_country')->nullable();
            $table->string('billing_address')->nullable();
            $table->string('billing_address_line_2')->nullable();
            $table->string('billing_city')->nullable();
            $table->string('billing_state')->nullable();
            $table->string('billing_zip', 25)->nullable();
            $table->string('billing_country', 2)->nullable();
            $table->string('vat_id', 50)->nullable();
            $table->text('extra_billing_information')->nullable();
            $table->timestamp('trial_ends_at')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('teams');
    }
}


================================================
FILE: database/migrations/2016_04_17_124614_create_team_users_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateTeamUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('team_users', function (Blueprint $table) {
            $table->integer('team_id');
            $table->integer('user_id');
            $table->string('role', 20);

            $table->unique(['team_id', 'user_id']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('team_users');
    }
}


================================================
FILE: database/migrations/2016_04_17_124624_create_invitations_table.php
================================================
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateInvitationsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('invitations', function (Blueprint $table) {
            $table->string('id')->primary();
            $table->integer('team_id')->index();
            $table->integer('user_id')->nullable()->index();
            $table->string('email');
            $table->string('token', 40)->unique();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('invitations');
    }
}


================================================
FILE: database/seeds/.gitkeep
================================================


================================================
FILE: database/seeds/DatabaseSeeder.php
================================================
<?php

use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        // $this->call(UserTableSeeder::class);
    }
}


================================================
FILE: gulpfile.js
================================================
var elixir = require('laravel-elixir');
var path = require('path');

require('laravel-elixir-vue-2');

/*
 |--------------------------------------------------------------------------
 | Elixir Asset Management
 |--------------------------------------------------------------------------
 |
 | Elixir provides a clean, fluent API for defining some basic Gulp tasks
 | for your Laravel application. By default, we are compiling the Sass
 | file for our application, as well as publishing vendor resources.
 |
 */

elixir(function(mix) {
    mix.less('app.less')
        .webpack('app.js', null, null, {
            resolve: {
                modules: [
                    path.resolve(__dirname, 'vendor/laravel/spark/resources/assets/js'),
                    'node_modules'
                ]
            }
        })
        .copy('node_modules/sweetalert/dist/sweetalert.min.js', 'public/js/sweetalert.min.js')
        .copy('node_modules/sweetalert/dist/sweetalert.css', 'public/css/sweetalert.css');
});


================================================
FILE: package.json
================================================
{
  "private": true,
  "devDependencies": {
    "gulp": "^3.8.8"
  },
  "dependencies": {
    "bootstrap": "^3.0.0",
    "jquery": "^2.1.4",
    "js-cookie": "^2.1.0",
    "laravel-elixir": "^6.0.0-11",
    "laravel-elixir-vue-2": "^0.2.0",
    "moment": "^2.10.6",
    "promise": "^7.1.1",
    "sweetalert": "^1.1.3",
    "underscore": "^1.8.3",
    "urijs": "^1.17.0",
    "vue": "^2.0.1",
    "vue-resource": "~1.0.1"
  }
}


================================================
FILE: phpunit.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="bootstrap/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">app/</directory>
        </whitelist>
    </filter>
    <php>
        <env name="APP_ENV" value="testing"/>
        <env name="CASHIER_ENV" value="testing"/>
        <env name="CACHE_DRIVER" value="array"/>
        <env name="DB_CONNECTION" value="testing"/>
        <env name="SESSION_DRIVER" value="array"/>
        <env name="QUEUE_DRIVER" value="sync"/>
    </php>
</phpunit>


================================================
FILE: public/.htaccess
================================================
<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>


================================================
FILE: public/css/app.css
================================================
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #636b6f;
  background-color: #f5f8fa;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #3097D1;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #216a94;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.6;
  background-color: #f5f8fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 11px;
  margin-bottom: 11px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 11px;
}
.lead {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #3097D1;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2579a9;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #3097D1;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #2579a9;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 22px;
}
dt,
dd {
  line-height: 1.6;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.6;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.6;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}
pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #f5f8fa;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccd0d2;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #98cbe8;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(152, 203, 232, 0.6);
}
.form-control::-moz-placeholder {
  color: #b1b7ba;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #b1b7ba;
}
.form-control::-webkit-input-placeholder {
  color: #b1b7ba;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 36px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 22px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 36px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 40px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 45px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 27px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #a4aaae;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #636b6f;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #636b6f;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #636b6f;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #636b6f;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #636b6f;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #636b6f;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #636b6f;
}
.btn-primary {
  color: #fff;
  background-color: #3097D1;
  border-color: #2a88bd;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #2579a9;
  border-color: #133d55;
}
.btn-primary:hover {
  color: #fff;
  background-color: #2579a9;
  border-color: #1f648b;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #2579a9;
  border-color: #1f648b;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #1f648b;
  border-color: #133d55;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #3097D1;
  border-color: #2a88bd;
}
.btn-primary .badge {
  color: #3097D1;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #4eb76e;
  border-color: #44a762;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #3d9558;
  border-color: #1f4d2d;
}
.btn-success:hover {
  color: #fff;
  background-color: #3d9558;
  border-color: #327c49;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #3d9558;
  border-color: #327c49;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #327c49;
  border-color: #1f4d2d;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #4eb76e;
  border-color: #44a762;
}
.btn-success .badge {
  color: #4eb76e;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #8eb4cb;
  border-color: #7da8c3;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #6b9dbb;
  border-color: #3d6983;
}
.btn-info:hover {
  color: #fff;
  background-color: #6b9dbb;
  border-color: #538db0;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #6b9dbb;
  border-color: #538db0;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #538db0;
  border-color: #3d6983;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #8eb4cb;
  border-color: #7da8c3;
}
.btn-info .badge {
  color: #8eb4cb;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #cbb956;
  border-color: #c5b142;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #b6a338;
  border-color: #685d20;
}
.btn-warning:hover {
  color: #fff;
  background-color: #b6a338;
  border-color: #9b8a30;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #b6a338;
  border-color: #9b8a30;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #9b8a30;
  border-color: #685d20;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #cbb956;
  border-color: #c5b142;
}
.btn-warning .badge {
  color: #cbb956;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #bf5329;
  border-color: #aa4a24;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #954120;
  border-color: #411c0e;
}
.btn-danger:hover {
  color: #fff;
  background-color: #954120;
  border-color: #78341a;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #954120;
  border-color: #78341a;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #78341a;
  border-color: #411c0e;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #bf5329;
  border-color: #aa4a24;
}
.btn-danger .badge {
  color: #bf5329;
  background-color: #fff;
}
.btn-link {
  color: #3097D1;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #216a94;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid #d3e0e9;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e4ecf2;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.6;
  color: #636b6f;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #fff;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #3097D1;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #4b5154;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccd0d2;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #3097D1;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.6;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #f5f8fa;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #f5f8fa;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #3097D1;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #f5f8fa;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 0;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 14px 15px;
  font-size: 18px;
  line-height: 22px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #d3e0e9;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #d3e0e9;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #fff;
  border-color: #d3e0e9;
}
.navbar-inverse .navbar-brand {
  color: #a4aaae;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #b1b7ba;
}
.navbar-inverse .navbar-nav > li > a {
  color: #a4aaae;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #969ea2;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #969ea2;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #d3e0e9;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #fff;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #d3e0e9;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #ededed;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #969ea2;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #d3e0e9;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #d3e0e9;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #a4aaae;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #969ea2;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #969ea2;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #a4aaae;
}
.navbar-inverse .navbar-link:hover {
  color: #969ea2;
}
.navbar-inverse .btn-link {
  color: #a4aaae;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #969ea2;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.6;
  text-decoration: none;
  color: #3097D1;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #216a94;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #3097D1;
  border-color: #3097D1;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #3097D1;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #2579a9;
}
.label-success {
  background-color: #4eb76e;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #3d9558;
}
.label-info {
  background-color: #8eb4cb;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #6b9dbb;
}
.label-warning {
  background-color: #cbb956;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #b6a338;
}
.label-danger {
  background-color: #bf5329;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #954120;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #3097D1;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  line-height: 1.6;
  background-color: #f5f8fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #3097D1;
}
.thumbnail .caption {
  padding: 9px;
  color: #636b6f;
}
.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #3097D1;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #4eb76e;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #8eb4cb;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #cbb956;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #bf5329;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #d3e0e9;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #3097D1;
  border-color: #3097D1;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #d7ebf6;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-hea
Download .txt
gitextract_n3osw7oi/

├── .gitattributes
├── .gitignore
├── app/
│   ├── Console/
│   │   ├── Commands/
│   │   │   └── Inspire.php
│   │   └── Kernel.php
│   ├── Events/
│   │   └── Event.php
│   ├── Exceptions/
│   │   └── Handler.php
│   ├── Http/
│   │   ├── Controllers/
│   │   │   ├── Auth/
│   │   │   │   ├── AuthController.php
│   │   │   │   └── PasswordController.php
│   │   │   ├── Controller.php
│   │   │   ├── HomeController.php
│   │   │   └── WelcomeController.php
│   │   ├── Kernel.php
│   │   ├── Middleware/
│   │   │   ├── Authenticate.php
│   │   │   ├── EncryptCookies.php
│   │   │   ├── RedirectIfAuthenticated.php
│   │   │   └── VerifyCsrfToken.php
│   │   ├── Requests/
│   │   │   └── Request.php
│   │   ├── api.php
│   │   └── routes.php
│   ├── Jobs/
│   │   └── Job.php
│   ├── Listeners/
│   │   └── .gitkeep
│   ├── Policies/
│   │   └── .gitkeep
│   ├── Providers/
│   │   ├── AppServiceProvider.php
│   │   ├── AuthServiceProvider.php
│   │   ├── BroadcastServiceProvider.php
│   │   ├── EventServiceProvider.php
│   │   ├── RouteServiceProvider.php
│   │   ├── SparkServiceProvider.php
│   │   └── SparkTestServiceProvider.php
│   ├── Team.php
│   └── User.php
├── artisan
├── bootstrap/
│   ├── app.php
│   ├── autoload.php
│   └── cache/
│       └── .gitignore
├── composer.json
├── config/
│   ├── app.php
│   ├── auth.php
│   ├── broadcasting.php
│   ├── cache.php
│   ├── compile.php
│   ├── database.php
│   ├── filesystems.php
│   ├── mail.php
│   ├── queue.php
│   ├── services.php
│   ├── session.php
│   └── view.php
├── database/
│   ├── .gitignore
│   ├── factories/
│   │   └── ModelFactory.php
│   ├── migrations/
│   │   ├── 2016_04_17_124529_create_performance_indicators_table.php
│   │   ├── 2016_04_17_124530_create_announcements_table.php
│   │   ├── 2016_04_17_124532_create_users_table.php
│   │   ├── 2016_04_17_124535_create_password_resets_table.php
│   │   ├── 2016_04_17_124539_create_api_tokens_table.php
│   │   ├── 2016_04_17_124544_create_subscriptions_table.php
│   │   ├── 2016_04_17_124550_create_invoices_table.php
│   │   ├── 2016_04_17_124557_create_notifications_table.php
│   │   ├── 2016_04_17_124605_create_teams_table.php
│   │   ├── 2016_04_17_124614_create_team_users_table.php
│   │   └── 2016_04_17_124624_create_invitations_table.php
│   └── seeds/
│       ├── .gitkeep
│       └── DatabaseSeeder.php
├── gulpfile.js
├── package.json
├── phpunit.xml
├── public/
│   ├── .htaccess
│   ├── css/
│   │   ├── app.css
│   │   └── sweetalert.css
│   ├── index.php
│   ├── js/
│   │   └── app.js
│   ├── robots.txt
│   └── web.config
├── readme.md
├── resources/
│   ├── assets/
│   │   ├── js/
│   │   │   ├── app.js
│   │   │   ├── components/
│   │   │   │   ├── bootstrap.js
│   │   │   │   └── home.js
│   │   │   ├── spark-components/
│   │   │   │   ├── auth/
│   │   │   │   │   ├── register-braintree.js
│   │   │   │   │   └── register-stripe.js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── kiosk/
│   │   │   │   │   ├── add-discount.js
│   │   │   │   │   ├── announcements.js
│   │   │   │   │   ├── kiosk.js
│   │   │   │   │   ├── metrics.js
│   │   │   │   │   ├── profile.js
│   │   │   │   │   └── users.js
│   │   │   │   ├── navbar/
│   │   │   │   │   └── navbar.js
│   │   │   │   ├── notifications/
│   │   │   │   │   └── notifications.js
│   │   │   │   └── settings/
│   │   │   │       ├── api/
│   │   │   │       │   ├── create-token.js
│   │   │   │       │   └── tokens.js
│   │   │   │       ├── api.js
│   │   │   │       ├── invoices/
│   │   │   │       │   ├── invoice-list.js
│   │   │   │       │   └── update-extra-billing-information.js
│   │   │   │       ├── invoices.js
│   │   │   │       ├── payment-method/
│   │   │   │       │   ├── redeem-coupon.js
│   │   │   │       │   ├── update-payment-method-braintree.js
│   │   │   │       │   ├── update-payment-method-stripe.js
│   │   │   │       │   └── update-vat-id.js
│   │   │   │       ├── payment-method-braintree.js
│   │   │   │       ├── payment-method-stripe.js
│   │   │   │       ├── profile/
│   │   │   │       │   ├── update-contact-information.js
│   │   │   │       │   └── update-profile-photo.js
│   │   │   │       ├── profile.js
│   │   │   │       ├── security/
│   │   │   │       │   ├── disable-two-factor-auth.js
│   │   │   │       │   ├── enable-two-factor-auth.js
│   │   │   │       │   └── update-password.js
│   │   │   │       ├── security.js
│   │   │   │       ├── settings.js
│   │   │   │       ├── subscription/
│   │   │   │       │   ├── cancel-subscription.js
│   │   │   │       │   ├── resume-subscription.js
│   │   │   │       │   ├── subscribe-braintree.js
│   │   │   │       │   ├── subscribe-stripe.js
│   │   │   │       │   └── update-subscription.js
│   │   │   │       ├── subscription.js
│   │   │   │       ├── teams/
│   │   │   │       │   ├── create-team.js
│   │   │   │       │   ├── current-teams.js
│   │   │   │       │   ├── mailed-invitations.js
│   │   │   │       │   ├── pending-invitations.js
│   │   │   │       │   ├── send-invitation.js
│   │   │   │       │   ├── team-members.js
│   │   │   │       │   ├── team-membership.js
│   │   │   │       │   ├── team-profile.js
│   │   │   │       │   ├── team-settings.js
│   │   │   │       │   ├── update-team-name.js
│   │   │   │       │   └── update-team-photo.js
│   │   │   │       └── teams.js
│   │   │   └── spark-components.js
│   │   └── less/
│   │       ├── app.less
│   │       └── spark/
│   │           ├── components/
│   │           │   ├── features.less
│   │           │   ├── notifications.less
│   │           │   └── settings.less
│   │           ├── elements/
│   │           │   ├── alerts.less
│   │           │   ├── buttons.less
│   │           │   ├── forms.less
│   │           │   ├── navbar.less
│   │           │   ├── panels.less
│   │           │   └── tables.less
│   │           ├── spacing.less
│   │           ├── spark.less
│   │           └── variables.less
│   ├── lang/
│   │   └── en/
│   │       ├── auth.php
│   │       ├── pagination.php
│   │       ├── passwords.php
│   │       └── validation.php
│   └── views/
│       ├── errors/
│       │   └── 503.blade.php
│       ├── home.blade.php
│       └── welcome.blade.php
├── server.php
├── storage/
│   ├── app/
│   │   └── .gitignore
│   ├── framework/
│   │   ├── .gitignore
│   │   ├── cache/
│   │   │   └── .gitignore
│   │   ├── sessions/
│   │   │   └── .gitignore
│   │   └── views/
│   │       └── .gitignore
│   └── logs/
│       └── .gitignore
├── terms.md
└── tests/
    ├── BraintreeWebhookControllerTest.php
    ├── CanJoinTeamsTest.php
    ├── CancelBraintreeSubscriptionTest.php
    ├── CancelBraintreeTeamSubscriptionTest.php
    ├── CancelSubscriptionTest.php
    ├── CancelTeamSubscriptionTest.php
    ├── CreateApiTokenTest.php
    ├── CreateTeamTest.php
    ├── CreatesTeams.php
    ├── InteractsWithPaymentProviders.php
    ├── MailedInvitationTest.php
    ├── NotificationsTest.php
    ├── PendingInvitationTest.php
    ├── RedeemCouponTest.php
    ├── RedeemTeamCouponTest.php
    ├── RegistrationBillingAddressTest.php
    ├── RegistrationBraintreeTest.php
    ├── RegistrationTest.php
    ├── ResumeBraintreeSubscriptionTest.php
    ├── ResumeBraintreeTeamSubscriptionTest.php
    ├── ResumeSubscriptionTest.php
    ├── ResumeTeamSubscriptionTest.php
    ├── StripeWebhookControllerTest.php
    ├── SubscribeBillingAddressTest.php
    ├── SubscribeBraintreeTeamTest.php
    ├── SubscribeBraintreeTest.php
    ├── SubscribeTeamTest.php
    ├── SubscribeTest.php
    ├── SubscribedMiddlewareTest.php
    ├── TeamSubscribedMiddlewareTest.php
    ├── TestCase.php
    ├── TwoFactorAuthenticationTest.php
    ├── UpdateApiTokenTest.php
    ├── UpdateBraintreePaymentMethodTest.php
    ├── UpdateBraintreeSubscriptionTest.php
    ├── UpdateBraintreeTeamPaymentMethodTest.php
    ├── UpdateContactInformationTest.php
    ├── UpdateExtraBillingInformationTest.php
    ├── UpdatePasswordTest.php
    ├── UpdatePaymentMethodBillingAddressTest.php
    ├── UpdatePaymentMethodTest.php
    ├── UpdateProfilePhotoTest.php
    ├── UpdateSubscriptionTest.php
    ├── UpdateTeamExtraBillingInformationTest.php
    ├── UpdateTeamPaymentMethodBillingAddressTest.php
    ├── UpdateTeamPaymentMethodTest.php
    ├── UpdateTeamPhotoTest.php
    ├── UpdateTeamTest.php
    └── VatCalculationTest.php
Download .txt
SYMBOL INDEX (277 symbols across 88 files)

FILE: app/Console/Commands/Inspire.php
  class Inspire (line 8) | class Inspire extends Command
    method handle (line 29) | public function handle()

FILE: app/Console/Kernel.php
  class Kernel (line 8) | class Kernel extends ConsoleKernel
    method schedule (line 25) | protected function schedule(Schedule $schedule)

FILE: app/Events/Event.php
  class Event (line 5) | abstract class Event

FILE: app/Exceptions/Handler.php
  class Handler (line 12) | class Handler extends ExceptionHandler
    method report (line 34) | public function report(Exception $e)
    method render (line 46) | public function render($request, Exception $e)

FILE: app/Http/Controllers/Auth/AuthController.php
  class AuthController (line 11) | class AuthController extends Controller
    method __construct (line 38) | public function __construct()
    method validator (line 49) | protected function validator(array $data)
    method create (line 64) | protected function create(array $data)

FILE: app/Http/Controllers/Auth/PasswordController.php
  class PasswordController (line 8) | class PasswordController extends Controller
    method __construct (line 28) | public function __construct()

FILE: app/Http/Controllers/Controller.php
  class Controller (line 10) | class Controller extends BaseController

FILE: app/Http/Controllers/HomeController.php
  class HomeController (line 7) | class HomeController extends Controller
    method __construct (line 14) | public function __construct()
    method show (line 26) | public function show()

FILE: app/Http/Controllers/WelcomeController.php
  class WelcomeController (line 7) | class WelcomeController extends Controller
    method show (line 14) | public function show()

FILE: app/Http/Kernel.php
  class Kernel (line 7) | class Kernel extends HttpKernel

FILE: app/Http/Middleware/Authenticate.php
  class Authenticate (line 8) | class Authenticate
    method handle (line 18) | public function handle($request, Closure $next, $guard = null)

FILE: app/Http/Middleware/EncryptCookies.php
  class EncryptCookies (line 7) | class EncryptCookies extends BaseEncrypter

FILE: app/Http/Middleware/RedirectIfAuthenticated.php
  class RedirectIfAuthenticated (line 8) | class RedirectIfAuthenticated
    method handle (line 18) | public function handle($request, Closure $next, $guard = null)

FILE: app/Http/Middleware/VerifyCsrfToken.php
  class VerifyCsrfToken (line 7) | class VerifyCsrfToken extends BaseVerifier

FILE: app/Http/Requests/Request.php
  class Request (line 7) | abstract class Request extends FormRequest

FILE: app/Jobs/Job.php
  class Job (line 7) | abstract class Job

FILE: app/Providers/AppServiceProvider.php
  class AppServiceProvider (line 7) | class AppServiceProvider extends ServiceProvider
    method boot (line 14) | public function boot()
    method register (line 24) | public function register()

FILE: app/Providers/AuthServiceProvider.php
  class AuthServiceProvider (line 8) | class AuthServiceProvider extends ServiceProvider
    method boot (line 25) | public function boot(GateContract $gate)

FILE: app/Providers/BroadcastServiceProvider.php
  class BroadcastServiceProvider (line 8) | class BroadcastServiceProvider extends ServiceProvider
    method boot (line 15) | public function boot()

FILE: app/Providers/EventServiceProvider.php
  class EventServiceProvider (line 8) | class EventServiceProvider extends ServiceProvider
    method boot (line 75) | public function boot()

FILE: app/Providers/RouteServiceProvider.php
  class RouteServiceProvider (line 8) | class RouteServiceProvider extends ServiceProvider
    method boot (line 25) | public function boot()
    method map (line 38) | public function map(Router $router)
    method mapWebRoutes (line 55) | protected function mapWebRoutes(Router $router)
    method mapApiRoutes (line 70) | protected function mapApiRoutes(Router $router)

FILE: app/Providers/SparkServiceProvider.php
  class SparkServiceProvider (line 8) | class SparkServiceProvider extends ServiceProvider
    method booted (line 51) | public function booted()

FILE: app/Providers/SparkTestServiceProvider.php
  class SparkServiceProvider (line 8) | class SparkServiceProvider extends ServiceProvider
    method booted (line 53) | public function booted()

FILE: app/Team.php
  class Team (line 7) | class Team extends SparkTeam

FILE: app/User.php
  class User (line 9) | class User extends SparkUser

FILE: database/migrations/2016_04_17_124529_create_performance_indicators_table.php
  class CreatePerformanceIndicatorsTable (line 6) | class CreatePerformanceIndicatorsTable extends Migration
    method up (line 13) | public function up()
    method down (line 32) | public function down()

FILE: database/migrations/2016_04_17_124530_create_announcements_table.php
  class CreateAnnouncementsTable (line 6) | class CreateAnnouncementsTable extends Migration
    method up (line 13) | public function up()
    method down (line 30) | public function down()

FILE: database/migrations/2016_04_17_124532_create_users_table.php
  class CreateUsersTable (line 6) | class CreateUsersTable extends Migration
    method up (line 13) | public function up()
    method down (line 52) | public function down()

FILE: database/migrations/2016_04_17_124535_create_password_resets_table.php
  class CreatePasswordResetsTable (line 6) | class CreatePasswordResetsTable extends Migration
    method up (line 13) | public function up()
    method down (line 27) | public function down()

FILE: database/migrations/2016_04_17_124539_create_api_tokens_table.php
  class CreateApiTokensTable (line 6) | class CreateApiTokensTable extends Migration
    method up (line 13) | public function up()
    method down (line 35) | public function down()

FILE: database/migrations/2016_04_17_124544_create_subscriptions_table.php
  class CreateSubscriptionsTable (line 6) | class CreateSubscriptionsTable extends Migration
    method up (line 13) | public function up()
    method down (line 45) | public function down()

FILE: database/migrations/2016_04_17_124550_create_invoices_table.php
  class CreateInvoicesTable (line 6) | class CreateInvoicesTable extends Migration
    method up (line 13) | public function up()
    method down (line 38) | public function down()

FILE: database/migrations/2016_04_17_124557_create_notifications_table.php
  class CreateNotificationsTable (line 6) | class CreateNotificationsTable extends Migration
    method up (line 13) | public function up()
    method down (line 35) | public function down()

FILE: database/migrations/2016_04_17_124605_create_teams_table.php
  class CreateTeamsTable (line 6) | class CreateTeamsTable extends Migration
    method up (line 13) | public function up()
    method down (line 43) | public function down()

FILE: database/migrations/2016_04_17_124614_create_team_users_table.php
  class CreateTeamUsersTable (line 6) | class CreateTeamUsersTable extends Migration
    method up (line 13) | public function up()
    method down (line 29) | public function down()

FILE: database/migrations/2016_04_17_124624_create_invitations_table.php
  class CreateInvitationsTable (line 6) | class CreateInvitationsTable extends Migration
    method up (line 13) | public function up()
    method down (line 30) | public function down()

FILE: database/seeds/DatabaseSeeder.php
  class DatabaseSeeder (line 5) | class DatabaseSeeder extends Seeder
    method run (line 12) | public function run()

FILE: public/js/app.js
  function __webpack_require__ (line 6) | function __webpack_require__(moduleId) {

FILE: resources/assets/js/components/home.js
  method ready (line 4) | ready() {

FILE: tests/BraintreeWebhookControllerTest.php
  class BraintreeWebhookControllerTest (line 15) | class BraintreeWebhookControllerTest extends TestCase
    method test_local_invoices_are_stored (line 19) | public function test_local_invoices_are_stored()
    method test_local_team_invoices_are_stored (line 51) | public function test_local_team_invoices_are_stored()
    method test_events_are_fired_when_subscriptions_are_deleted (line 85) | public function test_events_are_fired_when_subscriptions_are_deleted()
    method test_team_events_are_fired_when_subscriptions_are_deleted (line 101) | public function test_team_events_are_fired_when_subscriptions_are_dele...
  class SparkBraintreeWebhookControllerTestStub (line 122) | class SparkBraintreeWebhookControllerTestStub extends Laravel\Spark\Http...
    method parseBraintreeNotification (line 130) | protected function parseBraintreeNotification($request)

FILE: tests/CanJoinTeamsTest.php
  class CanJoinTeamsTest (line 7) | class CanJoinTeamsTest extends TestCase
    method test_has_teams_indicates_if_user_belongs_to_any_teams (line 11) | public function test_has_teams_indicates_if_user_belongs_to_any_teams()
    method test_owns_team_returns_true_if_user_owns_the_given_team (line 25) | public function test_owns_team_returns_true_if_user_owns_the_given_team()
    method test_owns_team_returns_false_if_user_doesnt_own_the_given_team (line 35) | public function test_owns_team_returns_false_if_user_doesnt_own_the_gi...
    method test_current_role_can_be_retrieved_for_team (line 47) | public function test_current_role_can_be_retrieved_for_team()
    method test_current_team_returns_the_active_team_for_the_user (line 56) | public function test_current_team_returns_the_active_team_for_the_user()
    method test_current_team_on_trial_determines_if_current_team_is_on_trial (line 68) | public function test_current_team_on_trial_determines_if_current_team_...
    method test_current_team_on_trial_determines_if_current_team_is_on_trial_using_braintree (line 83) | public function test_current_team_on_trial_determines_if_current_team_...
    method test_current_team_will_gracefully_reset_when_current_team_id_is_null (line 95) | public function test_current_team_will_gracefully_reset_when_current_t...
    method test_users_can_switch_to_another_active_team (line 105) | public function test_users_can_switch_to_another_active_team()

FILE: tests/CancelBraintreeSubscriptionTest.php
  class CancelBraintreeSubscriptionTest (line 9) | class CancelBraintreeSubscriptionTest extends TestCase
    method test_subscription_can_be_cancelled (line 13) | public function test_subscription_can_be_cancelled()

FILE: tests/CancelBraintreeTeamSubscriptionTest.php
  class CancelBraintreeTeamSubscriptionTest (line 10) | class CancelBraintreeTeamSubscriptionTest extends TestCase
    method test_subscription_can_be_cancelled (line 14) | public function test_subscription_can_be_cancelled()

FILE: tests/CancelSubscriptionTest.php
  class CancelSubscriptionTest (line 9) | class CancelSubscriptionTest extends TestCase
    method test_subscription_can_be_cancelled (line 13) | public function test_subscription_can_be_cancelled()

FILE: tests/CancelTeamSubscriptionTest.php
  class CancelTeamSubscriptionTest (line 10) | class CancelTeamSubscriptionTest extends TestCase
    method test_subscription_can_be_cancelled (line 14) | public function test_subscription_can_be_cancelled()

FILE: tests/CreateApiTokenTest.php
  class CreateApiTokenTest (line 6) | class CreateApiTokenTest extends TestCase
    method test_api_token_can_be_created (line 10) | public function test_api_token_can_be_created()
    method test_name_is_required (line 23) | public function test_name_is_required()
    method test_tokens_can_be_created_with_abilities (line 34) | public function test_tokens_can_be_created_with_abilities()
    method test_abilities_must_be_valid_abilities (line 57) | public function test_abilities_must_be_valid_abilities()

FILE: tests/CreateTeamTest.php
  class CreateTeamTest (line 6) | class CreateTeamTest extends TestCase
    method test_teams_can_be_created (line 10) | public function test_teams_can_be_created()
    method test_name_is_required (line 23) | public function test_name_is_required()

FILE: tests/CreatesTeams.php
  type CreatesTeams (line 6) | trait CreatesTeams
    method createTeam (line 13) | public function createTeam($user = null, $role = 'owner')

FILE: tests/InteractsWithPaymentProviders.php
  type InteractsWithPaymentProviders (line 5) | trait InteractsWithPaymentProviders
    method createSubscribedUser (line 12) | public function createSubscribedUser($plan)
    method createBraintreeSubscribedUser (line 26) | public function createBraintreeSubscribedUser($plan)
    method getStripeToken (line 40) | protected function getStripeToken()

FILE: tests/MailedInvitationTest.php
  class MailedInvitationTest (line 7) | class MailedInvitationTest extends TestCase
    method test_invitations_can_be_created (line 11) | public function test_invitations_can_be_created()
    method test_email_addess_is_required (line 25) | public function test_email_addess_is_required()
    method test_email_must_not_already_be_on_team (line 38) | public function test_email_must_not_already_be_on_team()
    method test_email_must_not_already_be_invited (line 51) | public function test_email_must_not_already_be_invited()
    method test_invitation_cannot_be_created_if_would_exceed_max_team_members (line 70) | public function test_invitation_cannot_be_created_if_would_exceed_max_...
    method test_invitation_cannot_be_created_if_would_exceed_max_team_collaborators (line 90) | public function test_invitation_cannot_be_created_if_would_exceed_max_...
    method test_invitations_can_be_deleted (line 112) | public function test_invitations_can_be_deleted()
    method test_owner_is_only_one_who_can_delete_invitations (line 129) | public function test_owner_is_only_one_who_can_delete_invitations()

FILE: tests/NotificationsTest.php
  class NotificationsTest (line 9) | class NotificationsTest extends TestCase
    method test_notification_can_be_created (line 13) | public function test_notification_can_be_created()
    method test_notification_can_be_created_with_body_only (line 36) | public function test_notification_can_be_created_with_body_only()
  class TestNotificationStub (line 55) | class TestNotificationStub extends Notification
    method __construct (line 57) | public function __construct($message)
    method via (line 62) | public function via($notifiable)
    method toSpark (line 67) | public function toSpark($notifiable)

FILE: tests/PendingInvitationTest.php
  class PendingInvitationTest (line 7) | class PendingInvitationTest extends TestCase
    method test_invitations_can_be_accepted (line 11) | public function test_invitations_can_be_accepted()
    method test_invitatation_cannot_be_accepted_by_anyone_other_than_owner (line 33) | public function test_invitatation_cannot_be_accepted_by_anyone_other_t...
    method test_invitations_can_be_rejected (line 53) | public function test_invitations_can_be_rejected()
    method test_invitatation_cannot_be_rejected_by_anyone_other_than_owner (line 75) | public function test_invitatation_cannot_be_rejected_by_anyone_other_t...

FILE: tests/RedeemCouponTest.php
  class RedeemCouponTest (line 8) | class RedeemCouponTest extends TestCase
    method test_valid_coupon_can_be_redeemed (line 12) | public function test_valid_coupon_can_be_redeemed()
    method test_coupon_code_must_be_valid (line 33) | public function test_coupon_code_must_be_valid()

FILE: tests/RedeemTeamCouponTest.php
  class RedeemTeamCouponTest (line 9) | class RedeemTeamCouponTest extends TestCase
    method test_valid_coupon_can_be_redeemed (line 13) | public function test_valid_coupon_can_be_redeemed()
    method test_coupon_code_must_be_valid (line 35) | public function test_coupon_code_must_be_valid()

FILE: tests/RegistrationBillingAddressTest.php
  class RegistrationBillingAddressTest (line 10) | class RegistrationBillingAddressTest extends TestCase
    method test_user_can_register (line 14) | public function test_user_can_register()
    method test_address_is_required (line 40) | public function test_address_is_required()
    method test_declared_country_must_match_stripe_country (line 61) | public function test_declared_country_must_match_stripe_country()
    method test_state_must_be_valid_for_country (line 89) | public function test_state_must_be_valid_for_country()

FILE: tests/RegistrationBraintreeTest.php
  class RegistrationBraintreeTest (line 10) | class RegistrationBraintreeTest extends TestCase
    method test_user_can_subscribe_to_plan (line 14) | public function test_user_can_subscribe_to_plan()

FILE: tests/RegistrationTest.php
  class RegistrationTest (line 10) | class RegistrationTest extends TestCase
    method test_users_can_register (line 14) | public function test_users_can_register()
    method test_user_can_subscribe_to_plan (line 37) | public function test_user_can_subscribe_to_plan()
    method test_user_can_register_with_invitation (line 63) | public function test_user_can_register_with_invitation()

FILE: tests/ResumeBraintreeSubscriptionTest.php
  class ResumeBraintreeSubscriptionTest (line 9) | class ResumeBraintreeSubscriptionTest extends TestCase
    method test_subscription_can_be_resumed (line 13) | public function test_subscription_can_be_resumed()

FILE: tests/ResumeBraintreeTeamSubscriptionTest.php
  class ResumeBraintreeTeamSubscriptionTest (line 10) | class ResumeBraintreeTeamSubscriptionTest extends TestCase
    method test_team_subscription_can_be_resumed (line 14) | public function test_team_subscription_can_be_resumed()

FILE: tests/ResumeSubscriptionTest.php
  class ResumeSubscriptionTest (line 9) | class ResumeSubscriptionTest extends TestCase
    method test_subscription_can_be_resumed (line 13) | public function test_subscription_can_be_resumed()

FILE: tests/ResumeTeamSubscriptionTest.php
  class ResumeTeamSubscriptionTest (line 10) | class ResumeTeamSubscriptionTest extends TestCase
    method test_team_subscription_can_be_resumed (line 17) | public function test_team_subscription_can_be_resumed()

FILE: tests/StripeWebhookControllerTest.php
  class StripeWebhookControllerTest (line 12) | class StripeWebhookControllerTest extends TestCase
    method test_local_invoices_are_stored (line 16) | public function test_local_invoices_are_stored()
    method test_local_team_invoices_are_stored (line 46) | public function test_local_team_invoices_are_stored()
    method test_events_are_fired_when_subscriptions_are_deleted (line 78) | public function test_events_are_fired_when_subscriptions_are_deleted()
    method test_team_events_are_fired_when_subscriptions_are_deleted (line 98) | public function test_team_events_are_fired_when_subscriptions_are_dele...

FILE: tests/SubscribeBillingAddressTest.php
  class SubscribeBillingAddressTest (line 9) | class SubscribeBillingAddressTest extends TestCase
    method test_users_can_subscribe (line 13) | public function test_users_can_subscribe()
    method test_billing_address_country_must_match_stripe_country (line 38) | public function test_billing_address_country_must_match_stripe_country()
    method test_billing_address_state_must_be_valid_for_country (line 59) | public function test_billing_address_state_must_be_valid_for_country()

FILE: tests/SubscribeBraintreeTeamTest.php
  class SubscribeBraintreeTeamTest (line 10) | class SubscribeBraintreeTeamTest extends TestCase
    method test_teams_can_subscribe (line 14) | public function test_teams_can_subscribe()
    method test_braintree_token_is_required (line 34) | public function test_braintree_token_is_required()
    method test_braintree_type_is_required (line 47) | public function test_braintree_type_is_required()
    method test_plan_name_must_be_a_valid_team_plan (line 61) | public function test_plan_name_must_be_a_valid_team_plan()

FILE: tests/SubscribeBraintreeTest.php
  class SubscribeBraintreeTest (line 9) | class SubscribeBraintreeTest extends TestCase
    method test_users_can_subscribe (line 13) | public function test_users_can_subscribe()
    method test_braintree_token_is_required (line 30) | public function test_braintree_token_is_required()
    method test_braintree_type_is_required (line 40) | public function test_braintree_type_is_required()
    method test_plan_name_must_be_a_valid_plan (line 51) | public function test_plan_name_must_be_a_valid_plan()

FILE: tests/SubscribeTeamTest.php
  class SubscribeTeamTest (line 10) | class SubscribeTeamTest extends TestCase
    method test_teams_can_subscribe (line 14) | public function test_teams_can_subscribe()
    method test_stripe_token_is_required (line 33) | public function test_stripe_token_is_required()
    method test_plan_name_must_be_a_valid_team_plan (line 46) | public function test_plan_name_must_be_a_valid_team_plan()

FILE: tests/SubscribeTest.php
  class SubscribeTest (line 9) | class SubscribeTest extends TestCase
    method test_users_can_subscribe (line 13) | public function test_users_can_subscribe()
    method test_stripe_token_is_required (line 29) | public function test_stripe_token_is_required()
    method test_plan_name_must_be_a_valid_plan (line 39) | public function test_plan_name_must_be_a_valid_plan()

FILE: tests/SubscribedMiddlewareTest.php
  class SubscribedMiddlewareTest (line 10) | class SubscribedMiddlewareTest extends TestCase
    method test_middleware_allows_requests_to_pass_for_subscribed_users (line 14) | public function test_middleware_allows_requests_to_pass_for_subscribed...
    method test_middleware_allows_requests_to_pass_for_trialing_users (line 30) | public function test_middleware_allows_requests_to_pass_for_trialing_u...
    method test_middleware_allows_requests_to_fail_for_unsubscribed_users (line 48) | public function test_middleware_allows_requests_to_fail_for_unsubscrib...
    method test_middleware_allows_requests_to_pass_for_subscribed_users_for_a_specific_plan (line 62) | public function test_middleware_allows_requests_to_pass_for_subscribed...
    method test_middleware_allows_requests_to_fail_for_subscribed_users_for_a_missing_plan (line 80) | public function test_middleware_allows_requests_to_fail_for_subscribed...

FILE: tests/TeamSubscribedMiddlewareTest.php
  class TeamSubscribedMiddlewareTest (line 10) | class TeamSubscribedMiddlewareTest extends TestCase
    method test_middleware_allows_requests_to_pass_for_subscribed_users (line 14) | public function test_middleware_allows_requests_to_pass_for_subscribed...
    method test_middleware_allows_requests_to_pass_for_trialing_users (line 33) | public function test_middleware_allows_requests_to_pass_for_trialing_u...
    method test_middleware_allows_requests_to_fail_for_unsubscribed_users (line 52) | public function test_middleware_allows_requests_to_fail_for_unsubscrib...
    method test_middleware_allows_requests_to_pass_for_subscribed_users_for_a_specific_plan (line 67) | public function test_middleware_allows_requests_to_pass_for_subscribed...
    method test_middleware_allows_requests_to_fail_for_subscribed_users_for_a_missing_plan (line 87) | public function test_middleware_allows_requests_to_fail_for_subscribed...

FILE: tests/TestCase.php
  class TestCase (line 3) | class TestCase extends Illuminate\Foundation\Testing\TestCase
    method createApplication (line 17) | public function createApplication()

FILE: tests/TwoFactorAuthenticationTest.php
  class TwoFactorAuthenticationTest (line 6) | class TwoFactorAuthenticationTest extends TestCase
    method test_authentication_can_be_enabled (line 10) | public function test_authentication_can_be_enabled()
    method test_country_code_is_required (line 28) | public function test_country_code_is_required()
    method test_phone_is_required (line 42) | public function test_phone_is_required()
    method test_authentication_can_be_disabled (line 56) | public function test_authentication_can_be_disabled()

FILE: tests/UpdateApiTokenTest.php
  class UpdateApiTokenTest (line 7) | class UpdateApiTokenTest extends TestCase
    method test_name_can_be_updated (line 14) | public function test_name_can_be_updated()
    method test_name_is_required (line 39) | public function test_name_is_required()
    method test_abilities_can_be_updated (line 58) | public function test_abilities_can_be_updated()
    method test_abilities_must_be_valid_abilities (line 89) | public function test_abilities_must_be_valid_abilities()

FILE: tests/UpdateBraintreePaymentMethodTest.php
  class UpdateBraintreePaymentMethodTest (line 11) | class UpdateBraintreePaymentMethodTest extends TestCase
    method test_payment_method_for_braintree_can_be_updated (line 15) | public function test_payment_method_for_braintree_can_be_updated()
    method test_braintree_token_is_required_to_update_payment_method (line 32) | public function test_braintree_token_is_required_to_update_payment_met...
    method test_braintree_type_is_required_to_update_payment_method (line 48) | public function test_braintree_type_is_required_to_update_payment_meth...

FILE: tests/UpdateBraintreeSubscriptionTest.php
  class UpdateBraintreeSubscriptionTest (line 9) | class UpdateBraintreeSubscriptionTest extends TestCase
    method test_subscription_can_be_updated (line 13) | public function test_subscription_can_be_updated()
    method test_plan_is_required (line 30) | public function test_plan_is_required()
    method test_plan_must_be_a_valid_plan (line 39) | public function test_plan_must_be_a_valid_plan()

FILE: tests/UpdateBraintreeTeamPaymentMethodTest.php
  class UpdateBraintreeTeamPaymentMethodTest (line 12) | class UpdateBraintreeTeamPaymentMethodTest extends TestCase
    method test_payment_method_for_stripe_can_be_updated (line 16) | public function test_payment_method_for_stripe_can_be_updated()
    method test_braintree_token_is_required_to_update_payment_method (line 33) | public function test_braintree_token_is_required_to_update_payment_met...
    method test_braintree_type_is_required_to_update_payment_method (line 48) | public function test_braintree_type_is_required_to_update_payment_meth...

FILE: tests/UpdateContactInformationTest.php
  class UpdateContactInformationTest (line 6) | class UpdateContactInformationTest extends TestCase
    method test_contact_information_can_be_updated (line 10) | public function test_contact_information_can_be_updated()
    method test_name_is_required (line 25) | public function test_name_is_required()
    method test_email_is_required (line 36) | public function test_email_is_required()

FILE: tests/UpdateExtraBillingInformationTest.php
  class UpdateExtraBillingInformationTest (line 6) | class UpdateExtraBillingInformationTest extends TestCase
    method test_billing_information_can_be_updated (line 10) | public function test_billing_information_can_be_updated()

FILE: tests/UpdatePasswordTest.php
  class UpdatePasswordTest (line 6) | class UpdatePasswordTest extends TestCase
    method test_password_can_be_updated (line 10) | public function test_password_can_be_updated()
    method test_old_password_is_required (line 29) | public function test_old_password_is_required()
    method test_old_password_must_match_current_password (line 44) | public function test_old_password_must_match_current_password()
    method test_new_passwords_are_required (line 59) | public function test_new_passwords_are_required()
    method test_new_passwords_must_match (line 79) | public function test_new_passwords_must_match()
    method test_new_passwords_must_be_at_least_six_characters (line 92) | public function test_new_passwords_must_be_at_least_six_characters()

FILE: tests/UpdatePaymentMethodBillingAddressTest.php
  class UpdatePaymentMethodBillingAddressTest (line 12) | class UpdatePaymentMethodBillingAddressTest extends TestCase
    method test_payment_method_for_stripe_can_be_updated (line 16) | public function test_payment_method_for_stripe_can_be_updated()
    method test_payment_method_country_must_match_stripe_country (line 37) | public function test_payment_method_country_must_match_stripe_country()
    method test_payment_method_state_must_be_valid_for_country (line 58) | public function test_payment_method_state_must_be_valid_for_country()

FILE: tests/UpdatePaymentMethodTest.php
  class UpdatePaymentMethodTest (line 12) | class UpdatePaymentMethodTest extends TestCase
    method test_payment_method_for_stripe_can_be_updated (line 16) | public function test_payment_method_for_stripe_can_be_updated()
    method test_stripe_token_is_required_to_update_payment_method (line 29) | public function test_stripe_token_is_required_to_update_payment_method()

FILE: tests/UpdateProfilePhotoTest.php
  class UpdateProfilePhotoTest (line 7) | class UpdateProfilePhotoTest extends TestCase
    method test_profile_photo_can_be_updated (line 11) | public function test_profile_photo_can_be_updated()

FILE: tests/UpdateSubscriptionTest.php
  class UpdateSubscriptionTest (line 9) | class UpdateSubscriptionTest extends TestCase
    method test_subscription_can_be_updated (line 13) | public function test_subscription_can_be_updated()
    method test_plan_is_required (line 30) | public function test_plan_is_required()
    method test_plan_must_be_a_valid_plan (line 39) | public function test_plan_must_be_a_valid_plan()

FILE: tests/UpdateTeamExtraBillingInformationTest.php
  class UpdateTeamExtraBillingInformationTest (line 7) | class UpdateTeamExtraBillingInformationTest extends TestCase
    method test_billing_information_can_be_updated (line 11) | public function test_billing_information_can_be_updated()

FILE: tests/UpdateTeamPaymentMethodBillingAddressTest.php
  class UpdateTeamPaymentMethodBillingAddressTest (line 12) | class UpdateTeamPaymentMethodBillingAddressTest extends TestCase
    method test_payment_method_for_stripe_can_be_updated (line 16) | public function test_payment_method_for_stripe_can_be_updated()
    method test_payment_method_country_must_match_stripe_country (line 41) | public function test_payment_method_country_must_match_stripe_country()
    method test_payment_method_state_must_be_valid_for_country (line 65) | public function test_payment_method_state_must_be_valid_for_country()

FILE: tests/UpdateTeamPaymentMethodTest.php
  class UpdateTeamPaymentMethodTest (line 12) | class UpdateTeamPaymentMethodTest extends TestCase
    method test_payment_method_for_stripe_can_be_updated (line 16) | public function test_payment_method_for_stripe_can_be_updated()
    method test_stripe_token_is_required_to_update_payment_method (line 32) | public function test_stripe_token_is_required_to_update_payment_method()

FILE: tests/UpdateTeamPhotoTest.php
  class UpdateTeamPhotoTest (line 8) | class UpdateTeamPhotoTest extends TestCase
    method test_team_photo_can_be_updated (line 12) | public function test_team_photo_can_be_updated()

FILE: tests/UpdateTeamTest.php
  class UpdateTeamTest (line 7) | class UpdateTeamTest extends TestCase
    method test_name_can_be_updated (line 11) | public function test_name_can_be_updated()
    method test_name_is_required (line 28) | public function test_name_is_required()

FILE: tests/VatCalculationTest.php
  class VatCalculationTest (line 6) | class VatCalculationTest extends TestCase
    method test_vat_can_be_calculated (line 8) | public function test_vat_can_be_calculated()
    method test_vat_id_can_be_validated (line 47) | public function test_vat_id_can_be_validated()
Condensed preview — 204 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,267K chars).
[
  {
    "path": ".gitattributes",
    "chars": 61,
    "preview": "* text=auto\n*.css linguist-vendored\n*.less linguist-vendored\n"
  },
  {
    "path": ".gitignore",
    "chars": 64,
    "preview": "/vendor\n/node_modules\n/spark\nHomestead.yaml\nHomestead.json\n.env\n"
  },
  {
    "path": "app/Console/Commands/Inspire.php",
    "chars": 602,
    "preview": "<?php\n\nnamespace App\\Console\\Commands;\n\nuse Illuminate\\Console\\Command;\nuse Illuminate\\Foundation\\Inspiring;\n\nclass Insp"
  },
  {
    "path": "app/Console/Kernel.php",
    "chars": 641,
    "preview": "<?php\n\nnamespace App\\Console;\n\nuse Illuminate\\Console\\Scheduling\\Schedule;\nuse Illuminate\\Foundation\\Console\\Kernel as C"
  },
  {
    "path": "app/Events/Event.php",
    "chars": 62,
    "preview": "<?php\n\nnamespace App\\Events;\n\nabstract class Event\n{\n    //\n}\n"
  },
  {
    "path": "app/Exceptions/Handler.php",
    "chars": 1243,
    "preview": "<?php\n\nnamespace App\\Exceptions;\n\nuse Exception;\nuse Illuminate\\Auth\\Access\\AuthorizationException;\nuse Illuminate\\Datab"
  },
  {
    "path": "app/Http/Controllers/Auth/AuthController.php",
    "chars": 1909,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\User;\nuse Validator;\nuse App\\Http\\Controllers\\Controller;\nuse Illum"
  },
  {
    "path": "app/Http/Controllers/Auth/PasswordController.php",
    "chars": 813,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Foundation\\Auth\\ResetsP"
  },
  {
    "path": "app/Http/Controllers/Controller.php",
    "chars": 361,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Foundation\\Bus\\DispatchesJobs;\nuse Illuminate\\Routing\\Controller "
  },
  {
    "path": "app/Http/Controllers/HomeController.php",
    "chars": 479,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Http\\Request;\n\nclass HomeController extends Controller\n{\n    /**\n"
  },
  {
    "path": "app/Http/Controllers/WelcomeController.php",
    "chars": 278,
    "preview": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Http\\Request;\n\nclass WelcomeController extends Controller\n{\n    /"
  },
  {
    "path": "app/Http/Kernel.php",
    "chars": 1936,
    "preview": "<?php\n\nnamespace App\\Http;\n\nuse Illuminate\\Foundation\\Http\\Kernel as HttpKernel;\n\nclass Kernel extends HttpKernel\n{\n    "
  },
  {
    "path": "app/Http/Middleware/Authenticate.php",
    "chars": 651,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Closure;\nuse Illuminate\\Support\\Facades\\Auth;\n\nclass Authenticate\n{\n    /**\n "
  },
  {
    "path": "app/Http/Middleware/EncryptCookies.php",
    "chars": 314,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Cookie\\Middleware\\EncryptCookies as BaseEncrypter;\n\nclass EncryptC"
  },
  {
    "path": "app/Http/Middleware/RedirectIfAuthenticated.php",
    "chars": 523,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Closure;\nuse Illuminate\\Support\\Facades\\Auth;\n\nclass RedirectIfAuthenticated\n"
  },
  {
    "path": "app/Http/Middleware/VerifyCsrfToken.php",
    "chars": 311,
    "preview": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken as BaseVerifier;\n\nclass"
  },
  {
    "path": "app/Http/Requests/Request.php",
    "chars": 136,
    "preview": "<?php\n\nnamespace App\\Http\\Requests;\n\nuse Illuminate\\Foundation\\Http\\FormRequest;\n\nabstract class Request extends FormReq"
  },
  {
    "path": "app/Http/api.php",
    "chars": 490,
    "preview": "<?php\n\n/*\n|--------------------------------------------------------------------------\n| API Routes\n|--------------------"
  },
  {
    "path": "app/Http/routes.php",
    "chars": 482,
    "preview": "<?php\n\n/*\n|--------------------------------------------------------------------------\n| Application Routes\n|------------"
  },
  {
    "path": "app/Jobs/Job.php",
    "chars": 535,
    "preview": "<?php\n\nnamespace App\\Jobs;\n\nuse Illuminate\\Bus\\Queueable;\n\nabstract class Job\n{\n    /*\n    |----------------------------"
  },
  {
    "path": "app/Listeners/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "app/Policies/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "app/Providers/AppServiceProvider.php",
    "chars": 403,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Support\\ServiceProvider;\n\nclass AppServiceProvider extends ServiceProvid"
  },
  {
    "path": "app/Providers/AuthServiceProvider.php",
    "chars": 693,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Contracts\\Auth\\Access\\Gate as GateContract;\nuse Illuminate\\Foundation\\Su"
  },
  {
    "path": "app/Providers/BroadcastServiceProvider.php",
    "chars": 543,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Support\\ServiceProvider;\nuse Illuminate\\Support\\Facades\\Broadcast;\n\nclas"
  },
  {
    "path": "app/Providers/EventServiceProvider.php",
    "chars": 2738,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Contracts\\Events\\Dispatcher as DispatcherContract;\nuse Illuminate\\Founda"
  },
  {
    "path": "app/Providers/RouteServiceProvider.php",
    "chars": 1806,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Routing\\Router;\nuse Illuminate\\Foundation\\Support\\Providers\\RouteService"
  },
  {
    "path": "app/Providers/SparkServiceProvider.php",
    "chars": 2413,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Laravel\\Spark\\Spark;\nuse Laravel\\Spark\\Providers\\AppServiceProvider as ServiceProvi"
  },
  {
    "path": "app/Providers/SparkTestServiceProvider.php",
    "chars": 2475,
    "preview": "<?php\n\nnamespace App\\Providers;\n\nuse Laravel\\Spark\\Spark;\nuse Laravel\\Spark\\Providers\\AppServiceProvider as ServiceProvi"
  },
  {
    "path": "app/Team.php",
    "chars": 101,
    "preview": "<?php\n\nnamespace App;\n\nuse Laravel\\Spark\\Team as SparkTeam;\n\nclass Team extends SparkTeam\n{\n    //\n}\n"
  },
  {
    "path": "app/User.php",
    "chars": 1050,
    "preview": "<?php\n\nnamespace App;\n\nuse Laravel\\Spark\\HasApiTokens;\nuse Laravel\\Spark\\CanJoinTeams;\nuse Laravel\\Spark\\User as SparkUs"
  },
  {
    "path": "artisan",
    "chars": 1646,
    "preview": "#!/usr/bin/env php\n<?php\n\n/*\n|--------------------------------------------------------------------------\n| Register The "
  },
  {
    "path": "bootstrap/app.php",
    "chars": 1602,
    "preview": "<?php\n\n/*\n|--------------------------------------------------------------------------\n| Create The Application\n|--------"
  },
  {
    "path": "bootstrap/autoload.php",
    "chars": 1079,
    "preview": "<?php\n\ndefine('LARAVEL_START', microtime(true));\n\n/*\n|------------------------------------------------------------------"
  },
  {
    "path": "bootstrap/cache/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "composer.json",
    "chars": 1645,
    "preview": "{\n    \"name\": \"laravel/laravel\",\n    \"description\": \"The Laravel Framework.\",\n    \"keywords\": [\"framework\", \"laravel\"],\n"
  },
  {
    "path": "config/app.php",
    "chars": 8654,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Applicatio"
  },
  {
    "path": "config/auth.php",
    "chars": 3502,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentica"
  },
  {
    "path": "config/broadcasting.php",
    "chars": 1404,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Br"
  },
  {
    "path": "config/cache.php",
    "chars": 2141,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Ca"
  },
  {
    "path": "config/compile.php",
    "chars": 983,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Additional"
  },
  {
    "path": "config/database.php",
    "chars": 4323,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | PDO Fetch "
  },
  {
    "path": "config/filesystems.php",
    "chars": 2051,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Fi"
  },
  {
    "path": "config/mail.php",
    "chars": 3962,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Mail Drive"
  },
  {
    "path": "config/queue.php",
    "chars": 2508,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Qu"
  },
  {
    "path": "config/services.php",
    "chars": 979,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Third Part"
  },
  {
    "path": "config/session.php",
    "chars": 5301,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Se"
  },
  {
    "path": "config/view.php",
    "chars": 1047,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | View Stora"
  },
  {
    "path": "database/.gitignore",
    "chars": 9,
    "preview": "*.sqlite\n"
  },
  {
    "path": "database/factories/ModelFactory.php",
    "chars": 646,
    "preview": "<?php\n\n/*\n|--------------------------------------------------------------------------\n| Model Factories\n|---------------"
  },
  {
    "path": "database/migrations/2016_04_17_124529_create_performance_indicators_table.php",
    "chars": 833,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreatePerformanceI"
  },
  {
    "path": "database/migrations/2016_04_17_124530_create_announcements_table.php",
    "chars": 751,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateAnnouncement"
  },
  {
    "path": "database/migrations/2016_04_17_124532_create_users_table.php",
    "chars": 2016,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateUsersTable e"
  },
  {
    "path": "database/migrations/2016_04_17_124535_create_password_resets_table.php",
    "chars": 633,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreatePasswordRese"
  },
  {
    "path": "database/migrations/2016_04_17_124539_create_api_tokens_table.php",
    "chars": 955,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateApiTokensTab"
  },
  {
    "path": "database/migrations/2016_04_17_124544_create_subscriptions_table.php",
    "chars": 1377,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateSubscription"
  },
  {
    "path": "database/migrations/2016_04_17_124550_create_invoices_table.php",
    "chars": 1134,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateInvoicesTabl"
  },
  {
    "path": "database/migrations/2016_04_17_124557_create_notifications_table.php",
    "chars": 966,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateNotification"
  },
  {
    "path": "database/migrations/2016_04_17_124605_create_teams_table.php",
    "chars": 1501,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateTeamsTable e"
  },
  {
    "path": "database/migrations/2016_04_17_124614_create_team_users_table.php",
    "chars": 654,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateTeamUsersTab"
  },
  {
    "path": "database/migrations/2016_04_17_124624_create_invitations_table.php",
    "chars": 762,
    "preview": "<?php\n\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateInvitationsT"
  },
  {
    "path": "database/seeds/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "database/seeds/DatabaseSeeder.php",
    "chars": 240,
    "preview": "<?php\n\nuse Illuminate\\Database\\Seeder;\n\nclass DatabaseSeeder extends Seeder\n{\n    /**\n     * Run the database seeds.\n   "
  },
  {
    "path": "gulpfile.js",
    "chars": 1008,
    "preview": "var elixir = require('laravel-elixir');\nvar path = require('path');\n\nrequire('laravel-elixir-vue-2');\n\n/*\n |------------"
  },
  {
    "path": "package.json",
    "chars": 427,
    "preview": "{\n  \"private\": true,\n  \"devDependencies\": {\n    \"gulp\": \"^3.8.8\"\n  },\n  \"dependencies\": {\n    \"bootstrap\": \"^3.0.0\",\n   "
  },
  {
    "path": "phpunit.xml",
    "chars": 972,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<phpunit backupGlobals=\"false\"\n         backupStaticAttributes=\"false\"\n         b"
  },
  {
    "path": "public/.htaccess",
    "chars": 412,
    "preview": "<IfModule mod_rewrite.c>\n    <IfModule mod_negotiation.c>\n        Options -MultiViews\n    </IfModule>\n\n    RewriteEngine"
  },
  {
    "path": "public/css/app.css",
    "chars": 156458,
    "preview": "/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://gi"
  },
  {
    "path": "public/css/sweetalert.css",
    "chars": 22879,
    "preview": "body.stop-scrolling {\n  height: 100%;\n  overflow: hidden; }\n\n.sweet-overlay {\n  background-color: black;\n  /* IE8 */\n  -"
  },
  {
    "path": "public/index.php",
    "chars": 1786,
    "preview": "<?php\n\n/**\n * Laravel - A PHP Framework For Web Artisans\n *\n * @package  Laravel\n * @author   Taylor Otwell <taylorotwel"
  },
  {
    "path": "public/js/app.js",
    "chars": 3742289,
    "preview": "/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n\n/*"
  },
  {
    "path": "public/robots.txt",
    "chars": 24,
    "preview": "User-agent: *\nDisallow:\n"
  },
  {
    "path": "public/web.config",
    "chars": 907,
    "preview": "<configuration>\n  <system.webServer>\n    <rewrite>\n      <rules>\n        <rule name=\"Imported Rule 1\" stopProcessing=\"tr"
  },
  {
    "path": "readme.md",
    "chars": 110,
    "preview": "## Laravel Spark Tests\n\nThis repository contains a Laravel application with all of Spark's integration tests.\n"
  },
  {
    "path": "resources/assets/js/app.js",
    "chars": 747,
    "preview": "\n/*\n |--------------------------------------------------------------------------\n | Laravel Spark Bootstrap\n |----------"
  },
  {
    "path": "resources/assets/js/components/bootstrap.js",
    "chars": 469,
    "preview": "\n/*\n |--------------------------------------------------------------------------\n | Laravel Spark Components\n |---------"
  },
  {
    "path": "resources/assets/js/components/home.js",
    "chars": 81,
    "preview": "Vue.component('home', {\n    props: ['user'],\n\n    ready() {\n        //\n    }\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/auth/register-braintree.js",
    "chars": 115,
    "preview": "var base = require('auth/register-braintree');\n\nVue.component('spark-register-braintree', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/auth/register-stripe.js",
    "chars": 109,
    "preview": "var base = require('auth/register-stripe');\n\nVue.component('spark-register-stripe', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/bootstrap.js",
    "chars": 2530,
    "preview": "\n/**\n * Layout Components...\n */\nrequire('./navbar/navbar');\nrequire('./notifications/notifications');\n\n/**\n * Authentic"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/add-discount.js",
    "chars": 110,
    "preview": "var base = require('kiosk/add-discount');\n\nVue.component('spark-kiosk-add-discount', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/announcements.js",
    "chars": 112,
    "preview": "var base = require('kiosk/announcements');\n\nVue.component('spark-kiosk-announcements', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/kiosk.js",
    "chars": 90,
    "preview": "var base = require('kiosk/kiosk');\n\nVue.component('spark-kiosk', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/metrics.js",
    "chars": 100,
    "preview": "var base = require('kiosk/metrics');\n\nVue.component('spark-kiosk-metrics', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/profile.js",
    "chars": 100,
    "preview": "var base = require('kiosk/profile');\n\nVue.component('spark-kiosk-profile', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/kiosk/users.js",
    "chars": 96,
    "preview": "var base = require('kiosk/users');\n\nVue.component('spark-kiosk-users', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/navbar/navbar.js",
    "chars": 93,
    "preview": "var base = require('navbar/navbar');\n\nVue.component('spark-navbar', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/notifications/notifications.js",
    "chars": 114,
    "preview": "var base = require('notifications/notifications');\n\nVue.component('spark-notifications', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/api/create-token.js",
    "chars": 111,
    "preview": "var base = require('settings/api/create-token');\n\nVue.component('spark-create-token', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/api/tokens.js",
    "chars": 99,
    "preview": "var base = require('settings/api/tokens');\n\nVue.component('spark-tokens', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/api.js",
    "chars": 89,
    "preview": "var base = require('settings/api');\n\nVue.component('spark-api', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/invoices/invoice-list.js",
    "chars": 116,
    "preview": "var base = require('settings/invoices/invoice-list');\n\nVue.component('spark-invoice-list', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/invoices/update-extra-billing-information.js",
    "chars": 156,
    "preview": "var base = require('settings/invoices/update-extra-billing-information');\n\nVue.component('spark-update-extra-billing-inf"
  },
  {
    "path": "resources/assets/js/spark-components/settings/invoices.js",
    "chars": 99,
    "preview": "var base = require('settings/invoices');\n\nVue.component('spark-invoices', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method/redeem-coupon.js",
    "chars": 124,
    "preview": "var base = require('settings/payment-method/redeem-coupon');\n\nVue.component('spark-redeem-coupon', {\n    mixins: [base]\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method/update-payment-method-braintree.js",
    "chars": 160,
    "preview": "var base = require('settings/payment-method/update-payment-method-braintree');\n\nVue.component('spark-update-payment-meth"
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method/update-payment-method-stripe.js",
    "chars": 154,
    "preview": "var base = require('settings/payment-method/update-payment-method-stripe');\n\nVue.component('spark-update-payment-method-"
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method/update-vat-id.js",
    "chars": 124,
    "preview": "var base = require('settings/payment-method/update-vat-id');\n\nVue.component('spark-update-vat-id', {\n    mixins: [base]\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method-braintree.js",
    "chars": 131,
    "preview": "var base = require('settings/payment-method-braintree');\n\nVue.component('spark-payment-method-braintree', {\n    mixins: "
  },
  {
    "path": "resources/assets/js/spark-components/settings/payment-method-stripe.js",
    "chars": 125,
    "preview": "var base = require('settings/payment-method-stripe');\n\nVue.component('spark-payment-method-stripe', {\n    mixins: [base]"
  },
  {
    "path": "resources/assets/js/spark-components/settings/profile/update-contact-information.js",
    "chars": 143,
    "preview": "var base = require('settings/profile/update-contact-information');\n\nVue.component('spark-update-contact-information', {\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/profile/update-profile-photo.js",
    "chars": 131,
    "preview": "var base = require('settings/profile/update-profile-photo');\n\nVue.component('spark-update-profile-photo', {\n    mixins: "
  },
  {
    "path": "resources/assets/js/spark-components/settings/profile.js",
    "chars": 97,
    "preview": "var base = require('settings/profile');\n\nVue.component('spark-profile', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/security/disable-two-factor-auth.js",
    "chars": 138,
    "preview": "var base = require('settings/security/disable-two-factor-auth');\n\nVue.component('spark-disable-two-factor-auth', {\n    m"
  },
  {
    "path": "resources/assets/js/spark-components/settings/security/enable-two-factor-auth.js",
    "chars": 136,
    "preview": "var base = require('settings/security/enable-two-factor-auth');\n\nVue.component('spark-enable-two-factor-auth', {\n    mix"
  },
  {
    "path": "resources/assets/js/spark-components/settings/security/update-password.js",
    "chars": 122,
    "preview": "var base = require('settings/security/update-password');\n\nVue.component('spark-update-password', {\n    mixins: [base]\n})"
  },
  {
    "path": "resources/assets/js/spark-components/settings/security.js",
    "chars": 99,
    "preview": "var base = require('settings/security');\n\nVue.component('spark-security', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/settings.js",
    "chars": 99,
    "preview": "var base = require('settings/settings');\n\nVue.component('spark-settings', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription/cancel-subscription.js",
    "chars": 134,
    "preview": "var base = require('settings/subscription/cancel-subscription');\n\nVue.component('spark-cancel-subscription', {\n    mixin"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription/resume-subscription.js",
    "chars": 134,
    "preview": "var base = require('settings/subscription/resume-subscription');\n\nVue.component('spark-resume-subscription', {\n    mixin"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription/subscribe-braintree.js",
    "chars": 134,
    "preview": "var base = require('settings/subscription/subscribe-braintree');\n\nVue.component('spark-subscribe-braintree', {\n    mixin"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription/subscribe-stripe.js",
    "chars": 128,
    "preview": "var base = require('settings/subscription/subscribe-stripe');\n\nVue.component('spark-subscribe-stripe', {\n    mixins: [ba"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription/update-subscription.js",
    "chars": 134,
    "preview": "var base = require('settings/subscription/update-subscription');\n\nVue.component('spark-update-subscription', {\n    mixin"
  },
  {
    "path": "resources/assets/js/spark-components/settings/subscription.js",
    "chars": 107,
    "preview": "var base = require('settings/subscription');\n\nVue.component('spark-subscription', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/create-team.js",
    "chars": 111,
    "preview": "var base = require('settings/teams/create-team');\n\nVue.component('spark-create-team', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/current-teams.js",
    "chars": 115,
    "preview": "var base = require('settings/teams/current-teams');\n\nVue.component('spark-current-teams', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/mailed-invitations.js",
    "chars": 125,
    "preview": "var base = require('settings/teams/mailed-invitations');\n\nVue.component('spark-mailed-invitations', {\n    mixins: [base]"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/pending-invitations.js",
    "chars": 127,
    "preview": "var base = require('settings/teams/pending-invitations');\n\nVue.component('spark-pending-invitations', {\n    mixins: [bas"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/send-invitation.js",
    "chars": 119,
    "preview": "var base = require('settings/teams/send-invitation');\n\nVue.component('spark-send-invitation', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/team-members.js",
    "chars": 113,
    "preview": "var base = require('settings/teams/team-members');\n\nVue.component('spark-team-members', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/team-membership.js",
    "chars": 119,
    "preview": "var base = require('settings/teams/team-membership');\n\nVue.component('spark-team-membership', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/team-profile.js",
    "chars": 113,
    "preview": "var base = require('settings/teams/team-profile');\n\nVue.component('spark-team-profile', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/team-settings.js",
    "chars": 115,
    "preview": "var base = require('settings/teams/team-settings');\n\nVue.component('spark-team-settings', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/update-team-name.js",
    "chars": 121,
    "preview": "var base = require('settings/teams/update-team-name');\n\nVue.component('spark-update-team-name', {\n    mixins: [base]\n});"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams/update-team-photo.js",
    "chars": 123,
    "preview": "var base = require('settings/teams/update-team-photo');\n\nVue.component('spark-update-team-photo', {\n    mixins: [base]\n}"
  },
  {
    "path": "resources/assets/js/spark-components/settings/teams.js",
    "chars": 93,
    "preview": "var base = require('settings/teams');\n\nVue.component('spark-teams', {\n    mixins: [base]\n});\n"
  },
  {
    "path": "resources/assets/js/spark-components.js",
    "chars": 3277,
    "preview": "\n/**\n * Layout Components...\n */\nrequire('./spark-components/navbar/navbar');\nrequire('./spark-components/notifications/"
  },
  {
    "path": "resources/assets/less/app.less",
    "chars": 149,
    "preview": "@import \"node_modules/bootstrap/less/bootstrap\";\n\n// @import \"./spark/spark\";\n@import \"./../../../vendor/laravel/spark/r"
  },
  {
    "path": "resources/assets/less/spark/components/features.less",
    "chars": 46,
    "preview": ".plan-feature-list li {\n\tline-height: 35px;\n}\n"
  },
  {
    "path": "resources/assets/less/spark/components/notifications.less",
    "chars": 709,
    "preview": "#modal-notifications {\n    .modal-header {\n        border-bottom: 0;\n        margin-bottom: 0;\n\n        .btn-group {\n   "
  },
  {
    "path": "resources/assets/less/spark/components/settings.less",
    "chars": 430,
    "preview": ".spark-settings-stacked-tabs {\n\tborder-radius: @border-radius-base;\n\tfont-weight: 300;\n\n\ta {\n\t\tborder-bottom: 1px solid "
  },
  {
    "path": "resources/assets/less/spark/elements/alerts.less",
    "chars": 30,
    "preview": ".alert {\n\tfont-weight: 300;\n}\n"
  },
  {
    "path": "resources/assets/less/spark/elements/buttons.less",
    "chars": 1331,
    "preview": "// Basic Buttons\n.btn {\n  font-size: 13px;\n  font-weight: 600;\n  text-transform: uppercase;\n}\n\n// Outline Buttons\n.butto"
  },
  {
    "path": "resources/assets/less/spark/elements/forms.less",
    "chars": 92,
    "preview": ".control-label {\n\tfont-weight: 300;\n}\n\n.radio label, .checkbox label {\n\tfont-weight: 300;\n}\n"
  },
  {
    "path": "resources/assets/less/spark/elements/navbar.less",
    "chars": 906,
    "preview": ".navbar {\n    -webkit-font-smoothing: antialiased;\n}\n\n.navbar-nav > li > a { line-height: 25px; }\n\n.navbar-inverse .navb"
  },
  {
    "path": "resources/assets/less/spark/elements/panels.less",
    "chars": 139,
    "preview": ".panel-heading {\n\tfont-weight: 400;\n}\n\n.panel-body {\n\tfont-weight: 300;\n}\n\n.panel-flush {\n\t.panel-body, .panel-header {\n"
  },
  {
    "path": "resources/assets/less/spark/elements/tables.less",
    "chars": 120,
    "preview": ".table-borderless {\n    > thead > tr > th {\n        border-bottom: 0;\n    }\n\n\t> tbody > tr > td {\n\t\tborder-top: 0;\n\t}\n}\n"
  },
  {
    "path": "resources/assets/less/spark/spacing.less",
    "chars": 1214,
    "preview": ".p-t-lg { padding-top: 20px; }\n.p-r-lg { padding-right: 20px; }\n.p-b-lg { padding-bottom: 20px; }\n.p-l-lg { padding-left"
  },
  {
    "path": "resources/assets/less/spark/spark.less",
    "chars": 472,
    "preview": "// Import Variables\n@import \"variables\";\n\n// Spacing Helpers\n@import \"spacing\";\n\n// HTML Elements\n@import \"elements/aler"
  },
  {
    "path": "resources/assets/less/spark/variables.less",
    "chars": 2372,
    "preview": "// Body\n@body-bg: #f5f8fa;\n\n// Base Border Color\n@spark-border-color: darken(@body-bg, 10%);\n\n// Set Common Borders\n@lis"
  },
  {
    "path": "resources/lang/en/auth.php",
    "chars": 617,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentica"
  },
  {
    "path": "resources/lang/en/pagination.php",
    "chars": 538,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Pagination"
  },
  {
    "path": "resources/lang/en/passwords.php",
    "chars": 786,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Password R"
  },
  {
    "path": "resources/lang/en/validation.php",
    "chars": 6236,
    "preview": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation"
  },
  {
    "path": "resources/views/errors/503.blade.php",
    "chars": 1104,
    "preview": "<!DOCTYPE html>\n<html>\n    <head>\n        <title>Be right back.</title>\n\n        <link href=\"https://fonts.googleapis.co"
  },
  {
    "path": "resources/views/home.blade.php",
    "chars": 560,
    "preview": "@extends('spark::layouts.app')\n\n@section('content')\n<home :user=\"user\" inline-template>\n    <div class=\"container\">\n    "
  },
  {
    "path": "resources/views/welcome.blade.php",
    "chars": 2132,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <!-- Meta Information -->\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X"
  },
  {
    "path": "server.php",
    "chars": 567,
    "preview": "<?php\n\n/**\n * Laravel - A PHP Framework For Web Artisans\n *\n * @package  Laravel\n * @author   Taylor Otwell <taylorotwel"
  },
  {
    "path": "storage/app/.gitignore",
    "chars": 13,
    "preview": "*\n!.gitignore"
  },
  {
    "path": "storage/framework/.gitignore",
    "chars": 92,
    "preview": "config.php\nroutes.php\ncompiled.php\nservices.json\nevents.scanned.php\nroutes.scanned.php\ndown\n"
  },
  {
    "path": "storage/framework/cache/.gitignore",
    "chars": 13,
    "preview": "*\n!.gitignore"
  },
  {
    "path": "storage/framework/sessions/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "storage/framework/views/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "storage/logs/.gitignore",
    "chars": 14,
    "preview": "*\n!.gitignore\n"
  },
  {
    "path": "terms.md",
    "chars": 23,
    "preview": "Your terms of service.\n"
  },
  {
    "path": "tests/BraintreeWebhookControllerTest.php",
    "chars": 4803,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Http\\Request;\nuse Braintree\\TransactionSearch;\nuse Braintree\\Transacti"
  },
  {
    "path": "tests/CanJoinTeamsTest.php",
    "chars": 3451,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass CanJoinTeamsTest extends"
  },
  {
    "path": "tests/CancelBraintreeSubscriptionTest.php",
    "chars": 674,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\nclass CancelBrai"
  },
  {
    "path": "tests/CancelBraintreeTeamSubscriptionTest.php",
    "chars": 867,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\ncl"
  },
  {
    "path": "tests/CancelSubscriptionTest.php",
    "chars": 653,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass CancelSubscri"
  },
  {
    "path": "tests/CancelTeamSubscriptionTest.php",
    "chars": 860,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass"
  },
  {
    "path": "tests/CreateApiTokenTest.php",
    "chars": 1863,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass CreateApiTokenTest extends TestCase\n{\n"
  },
  {
    "path": "tests/CreateTeamTest.php",
    "chars": 720,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass CreateTeamTest extends TestCase\n{\n    "
  },
  {
    "path": "tests/CreatesTeams.php",
    "chars": 556,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\n\ntrait CreatesTeams\n{\n        /**\n         * Create a new team instance.\n         *\n "
  },
  {
    "path": "tests/InteractsWithPaymentProviders.php",
    "chars": 1066,
    "preview": "<?php\n\nuse App\\User;\n\ntrait InteractsWithPaymentProviders\n{\n    /**\n     * Create a new subscribed user.\n     *\n     * @"
  },
  {
    "path": "tests/MailedInvitationTest.php",
    "chars": 4056,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass MailedInvitation"
  },
  {
    "path": "tests/NotificationsTest.php",
    "chars": 1782,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Notifications\\Notification;\nuse Laravel\\Spark\\Notifications\\SparkChannel;\nuse Larave"
  },
  {
    "path": "tests/PendingInvitationTest.php",
    "chars": 2508,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass PendingInvitatio"
  },
  {
    "path": "tests/RedeemCouponTest.php",
    "chars": 1749,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\nuse Laravel\\Spark\\Contracts\\Repositories\\Coup"
  },
  {
    "path": "tests/RedeemTeamCouponTest.php",
    "chars": 1926,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\nuse Laravel\\Spark\\Contracts\\Rep"
  },
  {
    "path": "tests/RegistrationBillingAddressTest.php",
    "chars": 3185,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n "
  },
  {
    "path": "tests/RegistrationBraintreeTest.php",
    "chars": 1080,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintre"
  },
  {
    "path": "tests/RegistrationTest.php",
    "chars": 2573,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n "
  },
  {
    "path": "tests/ResumeBraintreeSubscriptionTest.php",
    "chars": 894,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\nclass ResumeBrai"
  },
  {
    "path": "tests/ResumeBraintreeTeamSubscriptionTest.php",
    "chars": 1058,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\ncl"
  },
  {
    "path": "tests/ResumeSubscriptionTest.php",
    "chars": 870,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass ResumeSubscri"
  },
  {
    "path": "tests/ResumeTeamSubscriptionTest.php",
    "chars": 1083,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass"
  },
  {
    "path": "tests/StripeWebhookControllerTest.php",
    "chars": 3834,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\nuse Laravel\\Spark\\Events\\Subscr"
  },
  {
    "path": "tests/SubscribeBillingAddressTest.php",
    "chars": 2323,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass SubscribeBill"
  },
  {
    "path": "tests/SubscribeBraintreeTeamTest.php",
    "chars": 2231,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\ncl"
  },
  {
    "path": "tests/SubscribeBraintreeTest.php",
    "chars": 1827,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\nclass SubscribeB"
  },
  {
    "path": "tests/SubscribeTeamTest.php",
    "chars": 1644,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass"
  },
  {
    "path": "tests/SubscribeTest.php",
    "chars": 1373,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass SubscribeTest"
  },
  {
    "path": "tests/SubscribedMiddlewareTest.php",
    "chars": 2955,
    "preview": "<?php\n\nuse App\\User;\nuse Carbon\\Carbon;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\n"
  },
  {
    "path": "tests/TeamSubscribedMiddlewareTest.php",
    "chars": 3438,
    "preview": "<?php\n\nuse App\\User;\nuse Carbon\\Carbon;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\n"
  },
  {
    "path": "tests/TestCase.php",
    "chars": 532,
    "preview": "<?php\n\nclass TestCase extends Illuminate\\Foundation\\Testing\\TestCase\n{\n    /**\n     * The base URL to use while testing "
  },
  {
    "path": "tests/TwoFactorAuthenticationTest.php",
    "chars": 1957,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass TwoFactorAuthenticationTest extends Te"
  },
  {
    "path": "tests/UpdateApiTokenTest.php",
    "chars": 2885,
    "preview": "<?php\n\nuse App\\User;\nuse Ramsey\\Uuid\\Uuid;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass UpdateApiTokenTe"
  },
  {
    "path": "tests/UpdateBraintreePaymentMethodTest.php",
    "chars": 1703,
    "preview": "<?php\n\nuse App\\User;\nuse Laravel\\Spark\\Spark;\nuse Illuminate\\Contracts\\Auth\\Authenticatable;\nuse Illuminate\\Foundation\\T"
  },
  {
    "path": "tests/UpdateBraintreeSubscriptionTest.php",
    "chars": 1231,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group braintree\n */\nclass UpdateBrai"
  },
  {
    "path": "tests/UpdateBraintreeTeamPaymentMethodTest.php",
    "chars": 1778,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Laravel\\Spark\\Spark;\nuse Illuminate\\Contracts\\Auth\\Authenticatable;\nuse Illuminat"
  },
  {
    "path": "tests/UpdateContactInformationTest.php",
    "chars": 1237,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass UpdateContactInformationTest extends T"
  },
  {
    "path": "tests/UpdateExtraBillingInformationTest.php",
    "chars": 627,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass UpdateExtraBillingInformationTest exte"
  },
  {
    "path": "tests/UpdatePasswordTest.php",
    "chars": 3241,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass UpdatePasswordTest extends TestCase\n{\n"
  },
  {
    "path": "tests/UpdatePaymentMethodBillingAddressTest.php",
    "chars": 2264,
    "preview": "<?php\n\nuse App\\User;\nuse Laravel\\Spark\\Spark;\nuse Illuminate\\Contracts\\Auth\\Authenticatable;\nuse Laravel\\Spark\\Services\\"
  },
  {
    "path": "tests/UpdatePaymentMethodTest.php",
    "chars": 1078,
    "preview": "<?php\n\nuse App\\User;\nuse Laravel\\Spark\\Spark;\nuse Illuminate\\Contracts\\Auth\\Authenticatable;\nuse Laravel\\Spark\\Services\\"
  },
  {
    "path": "tests/UpdateProfilePhotoTest.php",
    "chars": 996,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Http\\UploadedFile;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass Upda"
  },
  {
    "path": "tests/UpdateSubscriptionTest.php",
    "chars": 1207,
    "preview": "<?php\n\nuse App\\User;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\n/**\n * @group stripe\n */\nclass UpdateSubscri"
  },
  {
    "path": "tests/UpdateTeamExtraBillingInformationTest.php",
    "chars": 721,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Illuminate\\Foundation\\Testing\\DatabaseMigrations;\n\nclass UpdateTeamExtraBillingIn"
  },
  {
    "path": "tests/UpdateTeamPaymentMethodBillingAddressTest.php",
    "chars": 2671,
    "preview": "<?php\n\nuse App\\User;\nuse App\\Team;\nuse Laravel\\Spark\\Spark;\nuse Illuminate\\Contracts\\Auth\\Authenticatable;\nuse Illuminat"
  }
]

// ... and 4 more files (download for full content)

About this extraction

This page contains the full source code of the laravel/spark-tests GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 204 files (3.9 MB), approximately 1.0M tokens, and a symbol index with 277 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!