__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php

declare(strict_types=1);

namespace GeoIp2\Model;

/**
 * Model class for the data returned by GeoIP2 Country web service and database.
 *
 * See https://dev.maxmind.com/geoip/docs/web-services?lang=en for more details.
 */
class Country implements \JsonSerializable
{
    /**
     * @var \GeoIp2\Record\Continent continent data for the
     *                               requested IP address
     */
    public readonly \GeoIp2\Record\Continent $continent;

    /**
     * @var \GeoIp2\Record\Country Country data for the requested
     *                             IP address. This object represents the country where MaxMind believes the
     *                             end user is located.
     */
    public readonly \GeoIp2\Record\Country $country;

    /**
     * @var \GeoIp2\Record\MaxMind data related to your MaxMind
     *                             account
     */
    public readonly \GeoIp2\Record\MaxMind $maxmind;

    /**
     * @var \GeoIp2\Record\Country Registered country
     *                             data for the requested IP address. This record represents the country
     *                             where the ISP has registered a given IP block and may differ from the
     *                             user's country.
     */
    public readonly \GeoIp2\Record\Country $registeredCountry;

    /**
     * @var \GeoIp2\Record\RepresentedCountry * Represented country data for the requested IP address. The represented
     *                                        country is used for things like military bases. It is only present when
     *                                        the represented country differs from the country.
     */
    public readonly \GeoIp2\Record\RepresentedCountry $representedCountry;

    /**
     * @var \GeoIp2\Record\Traits data for the traits of the
     *                            requested IP address
     */
    public readonly \GeoIp2\Record\Traits $traits;

    /**
     * @ignore
     */
    public function __construct(array $raw, array $locales = ['en'])
    {
        $this->continent = new \GeoIp2\Record\Continent(
            $raw['continent'] ?? [],
            $locales
        );
        $this->country = new \GeoIp2\Record\Country(
            $raw['country'] ?? [],
            $locales
        );
        $this->maxmind = new \GeoIp2\Record\MaxMind($raw['maxmind'] ?? []);
        $this->registeredCountry = new \GeoIp2\Record\Country(
            $raw['registered_country'] ?? [],
            $locales
        );
        $this->representedCountry = new \GeoIp2\Record\RepresentedCountry(
            $raw['represented_country'] ?? [],
            $locales
        );
        $this->traits = new \GeoIp2\Record\Traits($raw['traits'] ?? []);
    }

    public function jsonSerialize(): ?array
    {
        $js = [];
        $continent = $this->continent->jsonSerialize();
        if (!empty($continent)) {
            $js['continent'] = $continent;
        }
        $country = $this->country->jsonSerialize();
        if (!empty($country)) {
            $js['country'] = $country;
        }
        $maxmind = $this->maxmind->jsonSerialize();
        if (!empty($maxmind)) {
            $js['maxmind'] = $maxmind;
        }
        $registeredCountry = $this->registeredCountry->jsonSerialize();
        if (!empty($registeredCountry)) {
            $js['registered_country'] = $registeredCountry;
        }
        $representedCountry = $this->representedCountry->jsonSerialize();
        if (!empty($representedCountry)) {
            $js['represented_country'] = $representedCountry;
        }
        $traits = $this->traits->jsonSerialize();
        if (!empty($traits)) {
            $js['traits'] = $traits;
        }

        return $js;
    }
}

Filemanager

Name Type Size Permission Actions
AnonymousIp.php File 3.28 KB 0777
Asn.php File 1.86 KB 0777
City.php File 3.68 KB 0777
ConnectionType.php File 1.47 KB 0777
Country.php File 3.67 KB 0777
Domain.php File 1.39 KB 0777
Enterprise.php File 279 B 0777
Insights.php File 270 B 0777
Isp.php File 3.35 KB 0777
Filemanager