PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u264723324/domains/allgotrx.com/public_html/app/Http/Controllers/User/

Viewing File: TradeController.php

<?php

namespace App\Http\Controllers\User;

use App\Http\Controllers\Controller;
use App\Models\Instrument;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Carbon\Carbon;

class TradeController extends Controller
{
    /**
     * List of stablecoins to exclude from trading
     */
    private function getStablecoins()
    {
        return [
            'USDT', 'USDC', 'BUSD', 'DAI', 'TUSD', 'USDD', 'FRAX', 'LUSD',
            'USDP', 'GUSD', 'USDN', 'USTC', 'USDK', 'USDS', 'FDUSD', 'PYUSD',
            'SUSD', 'CUSD', 'OUSD', 'USDC.E', 'USDCE', 'USDT.E', 'USDTE',
            'TETHER', 'USD COIN', 'BINANCE USD', 'MULTI-COLLATERAL DAI',
            'TRUEUSD', 'FIRST DIGITAL USD', 'PAXOS STANDARD'
        ];
    }

    /**
     * Apply stablecoin filter to query
     */
    private function excludeStablecoins($query)
    {
        $stablecoins = $this->getStablecoins();

        return $query->where(function($q) use ($stablecoins) {
            foreach ($stablecoins as $stablecoin) {
                $q->where('symbol', '!=', $stablecoin)
                  ->where('name', 'NOT LIKE', "%{$stablecoin}%");
            }
        });
    }

    /**
     * Display the trading markets page with all instruments
     */
    public function index()
    {
        $instruments = $this->excludeStablecoins(Instrument::query())
            ->orderBy('volume', 'desc')
            ->orderBy('market_cap', 'desc')
            ->get();

        return view('user.trade.trade', [
            'title' => 'Trading Markets',
            'instruments' => $instruments
        ]);
    }

    /**
     * Display the trading interface for a specific instrument
     */
    public function single($id)
    {
        $instrument = Instrument::where('id', $id)->firstOrFail();

        // Try various approaches to find the user's trades for this instrument
        // This handles different symbol formats, partial matches, etc.

        // First, prepare an array of possible search terms
        $searchTerms = [
            $instrument->symbol,                       // Exact symbol
            strtolower($instrument->symbol),           // Lowercase symbol
            strtoupper($instrument->symbol),           // Uppercase symbol
            str_replace('/', '', $instrument->symbol), // Symbol without slashes (EUR/USD → EURUSD)
            str_replace(' ', '', $instrument->symbol), // Symbol without spaces
            str_replace('/', '-', $instrument->symbol), // Replace slash with dash (BTC/USD → BTC-USD)
            str_replace(['/', ' '], '', $instrument->symbol), // Remove slashes and spaces
        ];

        // Also add name-based search if available
        if (!empty($instrument->name)) {
            $searchTerms[] = $instrument->name;
            $searchTerms[] = strtolower($instrument->name);
            $searchTerms[] = str_replace(' ', '', $instrument->name); // Name without spaces
        }

        // Add common variations for crypto/forex
        if (stripos($instrument->symbol, '/') !== false) {
            // Handle pairs like BTC/USD
            $parts = explode('/', $instrument->symbol);
            if (count($parts) == 2) {
                $searchTerms[] = $parts[0] . $parts[1];  // BTCUSD
                $searchTerms[] = $parts[0];              // Just BTC
                $searchTerms[] = $parts[0] . '-' . $parts[1]; // BTC-USD
                $searchTerms[] = $parts[0] . ' ' . $parts[1]; // BTC USD
            }
        }

        // Add ultra-flexible match patterns for different database formats
        $baseSymbol = explode('/', $instrument->symbol)[0] ?? $instrument->symbol;
        $searchTerms[] = $baseSymbol; // Just the base currency (BTC, EUR, etc)

        // Some systems store as "Bitcoin" instead of "BTC" or vice versa
        if ($instrument->name && $instrument->symbol) {
            // Try to match either name or symbol anywhere in the fields
            $searchTerms[] = substr($instrument->symbol, 0, 3); // First 3 chars of symbol
            $searchTerms[] = substr($instrument->name, 0, 5);   // First 5 chars of name
        }

        // Get unique search terms and filter out any empty values
        $searchTerms = array_filter(array_unique($searchTerms));

        // Log all search terms we're using for debugging
        if (config('app.debug')) {
            \Log::info('Searching for trades with terms: ' . implode(', ', $searchTerms));
        }

        // Get trade history for open trades using a highly flexible approach
        $openTradesQuery = DB::table('user_plans')
            ->where('user', auth()->id())
            ->where(function($query) use ($instrument, $searchTerms) {
                // Only use columns that we know exist in the user_plans table
                // Based on the error, we'll focus on 'assets' and 'symbol' columns

                // First attempt exact matches on symbol
                $query->where('assets', $instrument->symbol)
                      ->orWhere('symbol', $instrument->symbol);

                // Then try flexible matching with all our search terms on existing columns only
                foreach ($searchTerms as $term) {
                    if (empty($term)) continue;

                    // Only query columns that actually exist in user_plans table
                    $query->orWhere('assets', 'like', "%{$term}%")
                          ->orWhere('symbol', 'like', "%{$term}%");
                }
            })
            ->where('active', 'yes')
            ->orderBy('created_at', 'desc');

        $openTrades = $openTradesQuery->get();

        // Debug info for development only
        if (config('app.debug')) {
            $openTradesSQL = $openTradesQuery->toSql();
            $openTradesBindings = $openTradesQuery->getBindings();
            \Log::info('Open trades SQL: ' . $openTradesSQL);
            \Log::info('Open trades bindings: ' . implode(', ', $openTradesBindings));
            \Log::info('Open trades count: ' . $openTrades->count());

            // Log some sample trades for debugging
            if ($openTrades->count() > 0) {
                \Log::info('Sample open trade: ' . json_encode($openTrades->first()));
            }
        }

        // Get trade history for closed trades using the same flexible approach
        $closedTradesQuery = DB::table('user_plans')
            ->where('user', auth()->id())
            ->where(function($query) use ($instrument, $searchTerms) {
                // Only use columns that we know exist in the user_plans table

                // First attempt exact matches on symbol
                $query->where('assets', $instrument->symbol)
                      ->orWhere('symbol', $instrument->symbol);

                // Then try flexible matching with all our search terms on existing columns only
                foreach ($searchTerms as $term) {
                    if (empty($term)) continue;

                    // Only query columns that actually exist in user_plans table
                    $query->orWhere('assets', 'like', "%{$term}%")
                          ->orWhere('symbol', 'like', "%{$term}%");
                }
            })
            ->where('active', 'expired')
            ->orderBy('created_at', 'desc')
            ->limit(10); // Limit to recent 10 closed trades

        $closedTrades = $closedTradesQuery->get();

        // Debug info for development only
        if (config('app.debug')) {
            \Log::info('Closed trades count: ' . $closedTrades->count());

            // If no trades were found at all (both open and closed), try a last-ditch approach
            // using broader matching. We only do this as a last resort since it could
            // potentially return false positives.
            if ($openTrades->count() == 0 && $closedTrades->count() == 0) {
                \Log::info('No trades found with standard matching. Trying broader approach...');

                // Try to find ANY trades that might be related using very loose matching
                // This is a super-broad approach that will catch almost any variation
                $basicSearchTerms = [
                    $baseSymbol, // Just the base currency (BTC, EUR, etc)
                    substr($instrument->symbol, 0, 3), // First 3 chars
                ];

                // Check for trades with ANY of these terms
                $lastResortQuery = DB::table('user_plans')
                    ->where('user', auth()->id())
                    ->where(function($query) use ($basicSearchTerms) {
                        foreach ($basicSearchTerms as $term) {
                            if (empty($term)) continue;

                            // Check only columns that exist in user_plans table
                            $query->orWhere('assets', 'like', "%{$term}%")
                                ->orWhere('symbol', 'like', "%{$term}%");
                        }
                    });

                $potentialMatches = $lastResortQuery->get();
                \Log::info('Last resort matching found ' . $potentialMatches->count() . ' potential matches');

                // If we found some potential matches, log them for analysis
                if ($potentialMatches->count() > 0) {
                    \Log::info('Potential matches: ' . json_encode($potentialMatches->take(3)));
                }
            }
        }



        return view('user.trade.single', [
            'title' => 'Trade ' . $instrument->name,
            'instrument' => $instrument,
            'openTrades' => $openTrades,
            'closedTrades' => $closedTrades
        ]);
    }

    /**
     * Get instruments by type via API
     */
    public function getByType($type)
    {
        $instruments = $this->excludeStablecoins(Instrument::where('type', $type))
            ->orderBy('volume', 'desc')
            ->orderBy('market_cap', 'desc')
            ->get();

        return response()->json($instruments);
    }

    /**
     * Search instruments
     */
    public function search(Request $request)
    {
        $query = $request->get('q');
        $type = $request->get('type');

        $instruments = $this->excludeStablecoins(Instrument::query());

        if ($query) {
            $instruments->where(function($q) use ($query) {
                $q->where('name', 'LIKE', "%{$query}%")
                  ->orWhere('symbol', 'LIKE', "%{$query}%");
            });
        }

        if ($type && $type !== 'all') {
            $instruments->where('type', $type);
        }

        $results = $instruments->orderBy('volume', 'desc')
            ->orderBy('market_cap', 'desc')
            ->get();

        return response()->json($results);
    }

    /**
     * Display the trade monitoring page for a specific trade
     */
    public function monitor($tradeId)
    {
        $trade = DB::table('user_plans')
            ->where('id', $tradeId)
            ->where('user', auth()->id())
            ->first();

        if (!$trade) {
            return redirect()->route('trade.index')->with('error', 'Trade not found or you do not have permission to view it.');
        }

        // Get the instrument for additional market data
        $instrument = Instrument::where('symbol', $trade->assets)
            ->orWhere('name', $trade->assets)
            ->first();

        // Get related trades for this user and asset
        $relatedTrades = DB::table('user_plans')
            ->where('user', auth()->id())
            ->where('assets', $trade->assets)
            ->where('id', '!=', $tradeId)
            ->orderBy('created_at', 'desc')
            ->take(5)
            ->get();

        // Get user's trading statistics for this asset
        $stats = DB::table('user_plans')
            ->where('user', auth()->id())
            ->where('assets', $trade->assets)
            ->selectRaw('
                COUNT(*) as total_trades,
                COUNT(CASE WHEN active = "expired" THEN 1 END) as completed_trades,
                COUNT(CASE WHEN active = "yes" THEN 1 END) as active_trades,
                SUM(amount) as total_invested,
                AVG(amount) as avg_trade_size
            ')
            ->first();

        // Calculate P&L for this trade
        $pnl = $this->calculateTradesPnL($trade, $instrument);

        // Calculate time left for active trades
        $timeLeft = 'N/A';
        if ($trade->active === 'yes' && $trade->expire_date) {
            $now = Carbon::now();
            $expireDate = Carbon::parse($trade->expire_date);
            if ($now < $expireDate) {
                $timeLeft = $now->diffForHumans($expireDate);
            } else {
                $timeLeft = 'Expired';
            }
        }

        $title = 'Monitor Trade - ' . $trade->assets;

        return view('user.trade.monitor', compact('trade', 'instrument', 'relatedTrades', 'stats', 'pnl', 'timeLeft', 'title'));
    }

    /**
     * Calculate P&L for a trade based on current market data and trade status
     */
    private function calculateTradesPnL($trade, $instrument = null)
    {
        $pnl = [
            'current_value' => 0,
            'profit_loss' => 0,
            'return_percentage' => 0,
            'is_profit' => false,
            'status' => 'pending'
        ];

        if (!$trade) {
            return $pnl;
        }

        $tradeAmount = floatval($trade->amount);
        $leverage = floatval($trade->leverage ?? 1);

        if ($trade->active === 'expired') {
            // For completed trades, calculate based on result_type or use simulated data
            if (isset($trade->result_type)) {
                $isWin = $trade->result_type === 'WIN';
            } else {
                // Fallback: simulate based on trade data
                $isWin = $this->simulateTradeResult($trade);
            }

            if ($isWin) {
                // WIN: Calculate profit based on leverage (typical forex/crypto returns)
                $baseProfitRate = rand(3, 12); // 3-12% base return
                $leverageMultiplier = min($leverage / 10, 5); // Cap leverage effect
                $profitPercentage = $baseProfitRate * $leverageMultiplier;
                $profitPercentage = min($profitPercentage, 200); // Cap at 200%

                $pnl['profit_loss'] = ($tradeAmount * $profitPercentage) / 100;
                $pnl['is_profit'] = true;
                $pnl['status'] = 'completed_win';
            } else {
                // LOSE: Calculate loss with stop-loss protection
                if ($leverage >= 100) {
                    $lossPercentage = rand(60, 85);
                } elseif ($leverage >= 50) {
                    $lossPercentage = rand(45, 65);
                } elseif ($leverage >= 20) {
                    $lossPercentage = rand(30, 50);
                } else {
                    $lossPercentage = rand(15, 35);
                }

                $pnl['profit_loss'] = -($tradeAmount * $lossPercentage) / 100;
                $pnl['is_profit'] = false;
                $pnl['status'] = 'completed_loss';
            }

            $pnl['current_value'] = $tradeAmount + $pnl['profit_loss'];
            $pnl['return_percentage'] = ($pnl['profit_loss'] / $tradeAmount) * 100;

        } elseif ($trade->active === 'yes' && $instrument) {
            // For active trades, calculate current P&L based on market movement
            $entryPrice = floatval($trade->entry_price ?? $instrument->price);
            $currentPrice = floatval($instrument->price);

            if ($entryPrice > 0) {
                $priceChange = ($currentPrice - $entryPrice) / $entryPrice;

                // Apply trade direction
                if ($trade->type === 'Sell') {
                    $priceChange = -$priceChange;
                }

                // Apply leverage
                $leveragedChange = $priceChange * $leverage;

                // Calculate P&L
                $pnl['profit_loss'] = $tradeAmount * $leveragedChange;
                $pnl['current_value'] = $tradeAmount + $pnl['profit_loss'];
                $pnl['return_percentage'] = $leveragedChange * 100;
                $pnl['is_profit'] = $pnl['profit_loss'] > 0;
                $pnl['status'] = 'active';
            } else {
                // Fallback for active trades without entry price
                $pnl = $this->simulateActiveTradePnL($trade);
            }
        } else {
            // Unknown status
            $pnl['current_value'] = $tradeAmount;
            $pnl['status'] = 'unknown';
        }

        return $pnl;
    }

    /**
     * Simulate trade result for completed trades without result_type
     */
    private function simulateTradeResult($trade)
    {
        // Use trade ID and amount as seed for consistent results
        $seed = intval($trade->id) + intval($trade->amount * 100);
        mt_srand($seed);

        // Higher leverage = higher risk = lower win rate
        $leverage = floatval($trade->leverage ?? 1);
        if ($leverage >= 100) {
            $winRate = 0.3; // 30% win rate for high leverage
        } elseif ($leverage >= 50) {
            $winRate = 0.45; // 45% win rate
        } elseif ($leverage >= 20) {
            $winRate = 0.6; // 60% win rate
        } else {
            $winRate = 0.7; // 70% win rate for low leverage
        }

        return mt_rand() / mt_getrandmax() < $winRate;
    }

    /**
     * Simulate current P&L for active trades
     */
    private function simulateActiveTradePnL($trade)
    {
        $tradeAmount = floatval($trade->amount);
        $leverage = floatval($trade->leverage ?? 1);

        // Use trade ID as seed for consistent simulation
        mt_srand(intval($trade->id));

        // Simulate market movement (-5% to +5%)
        $marketMove = (mt_rand() / mt_getrandmax() - 0.5) * 0.1;

        // Apply leverage
        $leveragedMove = $marketMove * $leverage;

        $profitLoss = $tradeAmount * $leveragedMove;

        return [
            'current_value' => $tradeAmount + $profitLoss,
            'profit_loss' => $profitLoss,
            'return_percentage' => $leveragedMove * 100,
            'is_profit' => $profitLoss > 0,
            'status' => 'active'
        ];
    }
}
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`