Address Details
contract
token

0xc3377Ea71F1dc8e55Ba360724eff2d7aD62a8670

Token
AtlasX Carbon Credits (ATLASX)
Creator
0x8e79c8–aa3fd8 at 0x842234–bdefc0
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
49 Transactions
Transfers
0 Transfers
Gas Used
2,292,476
Last Balance Update
22036723
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CarbonCredits




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
london




Verified at
2023-02-15T18:17:17.896847Z

5CarbonCredits.sol

// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";

pragma solidity ^0.8.5;

/************************************** INTERFACES **************************************/
interface IRoles {
    function isManager(address account) external view returns(bool);
    function isMinter(address account) external view returns(bool);
    function isPauser(address account) external view returns(bool);
}

interface IRegistry {
    function getNumberOfCarbonCredits(string memory, string memory, uint256) external view returns (uint256);
    function getIsValued(string memory, string memory, uint256) external view returns (bool);
    function getIsReleased(string memory, string memory, uint256) external view returns (bool);
}

interface IAtlas {
    function getMintedStatus(string memory, string memory, uint256) external view returns (bool);
    function getIsValued(string memory, string memory, uint256) external view returns (bool);
    function getUrl(string memory, string memory, uint256) external view returns (string memory);
    function updateMintedStatus(string memory, string memory, uint256, bool) external;
}

interface IAddressSmartContract {
    function getRolesContractAddress() external view returns (address);
    function getRegistryPart1Address() external view returns (address);
    function getAtlasAddress() external view returns (address);
    function getWalletAddress() external view returns (address);

}

/************************************** CONTRACT **************************************/

contract CarbonCredits is   Initializable, 
                            UUPSUpgradeable,
                            ERC20Upgradeable, 
                            ERC20BurnableUpgradeable, 
                            PausableUpgradeable, 
                            AccessControlUpgradeable, 
                            ReentrancyGuardUpgradeable,
                            OwnableUpgradeable  { 
    address private addressSC;

    event MintEvent(string LLD, string CreditType, uint256 Year, bytes32 Hash, uint256 NumOfCredits, address To, string URL);

    function initialize(
        address AddressSmartContract) 
        public initializer {
        addressSC = AddressSmartContract;
        __ERC20_init("AtlasX Carbon Credits", "ATLASX");
        __ERC20Burnable_init();
        __Pausable_init();
        __AccessControl_init();
        __Ownable_init();
    }

    function _authorizeUpgrade(address) internal virtual override onlyOwner {} 

//----------------- MINT FUNCTION ----------------//

    function mintCarbonCredits(string memory LLD, string memory CreditType, uint256 Year) public whenNotPaused nonReentrant {
        require(IRoles(IAddressSmartContract(addressSC).getRolesContractAddress()).isMinter(msg.sender), "Minting Access Denied: Caller is NOT MINTER!");
        require((IRegistry(IAddressSmartContract(addressSC).getRegistryPart1Address()).getIsValued(LLD, CreditType, Year)), "Error: Input LLD not registered with Registry!");
        require(!IRegistry(IAddressSmartContract(addressSC).getRegistryPart1Address()).getIsReleased(LLD, CreditType, Year), "Released Credits: Carbon credits released for this LLD");
        require((IAtlas(IAddressSmartContract(addressSC).getAtlasAddress()).getIsValued(LLD, CreditType, Year)), "Error: Input LLD not registered with Atlas!");
        require(!IAtlas(IAddressSmartContract(addressSC).getAtlasAddress()).getMintedStatus(LLD, CreditType, Year), "Double Minting: Carbon Credits minted already for this LLD");
                    
        IAtlas(IAddressSmartContract(addressSC).getAtlasAddress()).updateMintedStatus(LLD, CreditType, Year, true);
        _mint(IAddressSmartContract(addressSC).getWalletAddress(), IRegistry(IAddressSmartContract(addressSC).getRegistryPart1Address()).getNumberOfCarbonCredits(LLD, CreditType, Year)*10**18);

        emit MintEvent(
            LLD, 
            CreditType, 
            Year, 
            keccak256(abi.encodePacked(LLD,CreditType,Year)), 
            IRegistry(IAddressSmartContract(addressSC).getRegistryPart1Address()).getNumberOfCarbonCredits(LLD, CreditType, Year), 
            IAddressSmartContract(addressSC).getWalletAddress(), 
            IAtlas(IAddressSmartContract(addressSC).getAtlasAddress()).getUrl(LLD, CreditType, Year));
    }

    function updateAddressSmartContract(address AddressSmartContract) public whenNotPaused {
        require(IRoles(IAddressSmartContract(addressSC).getRolesContractAddress()).isManager(msg.sender), "Access Denied: Caller is NOT Manager!");
        require(AddressSmartContract != address(0), "Account: Zero or Invalid address!");
        addressSC = AddressSmartContract;
    }

//----------------- PAUSER FUNCTION ----------------//

    function pauseContract() public whenNotPaused {
        require(IRoles(IAddressSmartContract(addressSC).getRolesContractAddress()).isPauser(msg.sender), "Access Denied: Caller is NOT Pauser!");
        _pause();
    }

    function unpauseContract() public whenPaused {
        require(IRoles(IAddressSmartContract(addressSC).getRolesContractAddress()).isPauser(msg.sender), "Access Denied: Caller is NOT Pauser!");
        _unpause();
    }
}
        

/_openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal onlyInitializing {
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(account),
                        " is missing role ",
                        StringsUpgradeable.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/access/IAccessControlUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}
          

/_openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822ProxiableUpgradeable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}
          

/_openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import "../utils/Initializable.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 *
 * @custom:oz-upgrades-unsafe-allow delegatecall
 */
abstract contract ERC1967UpgradeUpgradeable is Initializable {
    function __ERC1967Upgrade_init() internal onlyInitializing {
    }

    function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
    }
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Emitted when the beacon is upgraded.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(
        address newBeacon,
        bytes memory data,
        bool forceCall
    ) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
        }
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) {
        require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeaconUpgradeable {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}
          

/_openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}
          

/_openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/UUPSUpgradeable.sol)

pragma solidity ^0.8.0;

import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import "./Initializable.sol";

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 *
 * _Available since v4.1._
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
    address private immutable __self = address(this);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        require(address(this) != __self, "Function must be called through delegatecall");
        require(_getImplementation() == __self, "Function must be called through active proxy");
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
        _;
    }

    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
        return _IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeTo(address newImplementation) external virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data, true);
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeTo} and {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal override onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuardUpgradeable is Initializable {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20Upgradeable.sol";
import "./extensions/IERC20MetadataUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[45] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20Upgradeable.sol";
import "../../../utils/ContextUpgradeable.sol";
import "../../../proxy/utils/Initializable.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable {
    function __ERC20Burnable_init() internal onlyInitializing {
    }

    function __ERC20Burnable_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
          

/_openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlotUpgradeable {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/MathUpgradeable.sol";

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = MathUpgradeable.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, MathUpgradeable.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}
          

/_openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
          

/_openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}
          

Contract ABI

[{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"MintEvent","inputs":[{"type":"string","name":"LLD","internalType":"string","indexed":false},{"type":"string","name":"CreditType","internalType":"string","indexed":false},{"type":"uint256","name":"Year","internalType":"uint256","indexed":false},{"type":"bytes32","name":"Hash","internalType":"bytes32","indexed":false},{"type":"uint256","name":"NumOfCredits","internalType":"uint256","indexed":false},{"type":"address","name":"To","internalType":"address","indexed":false},{"type":"string","name":"URL","internalType":"string","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"AddressSmartContract","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mintCarbonCredits","inputs":[{"type":"string","name":"LLD","internalType":"string"},{"type":"string","name":"CreditType","internalType":"string"},{"type":"uint256","name":"Year","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pauseContract","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpauseContract","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateAddressSmartContract","inputs":[{"type":"address","name":"AddressSmartContract","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]}]
              

Contract Creation Code

0x60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525034801561004657600080fd5b5060805160601c615f0662000082600039600081816109d501528181610a6401528181610d2301528181610db20152610e620152615f066000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a217fddf11610095578063c4d66de811610064578063c4d66de8146106e5578063d547741f1461070e578063dd62ed3e14610737578063f2fde38b14610774576101e3565b8063a217fddf14610629578063a457c2d714610654578063a9059cbb14610691578063b33712c5146106ce576101e3565b806391d14854116100d157806391d148541461056f57806395d89b41146105ac5780639e51634e146105d75780639f4baa7614610600576101e3565b806370a08231146104c7578063715018a61461050457806379cc67901461051b5780638da5cb5b14610544576101e3565b806336568abe1161017a578063439766ce11610149578063439766ce1461043e5780634f1ef2861461045557806352d1902d146104715780635c975abb1461049c576101e3565b806336568abe146103865780633659cfe6146103af57806339509351146103d857806342966c6814610415576101e3565b806323b872dd116101b657806323b872dd146102b8578063248a9ca3146102f55780632f2ff15d14610332578063313ce5671461035b576101e3565b806301ffc9a7146101e857806306fdde0314610225578063095ea7b31461025057806318160ddd1461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906142ac565b61079d565b60405161021c9190614aa0565b60405180910390f35b34801561023157600080fd5b5061023a610817565b6040516102479190614af1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906141a5565b6108a9565b6040516102849190614aa0565b60405180910390f35b34801561029957600080fd5b506102a26108cc565b6040516102af919061506f565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906140f6565b6108d6565b6040516102ec9190614aa0565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614212565b610905565b6040516103299190614abb565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061426c565b610926565b005b34801561036757600080fd5b50610370610947565b60405161037d919061508a565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061426c565b610950565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061405c565b6109d3565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906141a5565b610b5c565b60405161040c9190614aa0565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906143ad565b610b93565b005b34801561044a57600080fd5b50610453610ba7565b005b61046f600480360381019061046a9190614149565b610d21565b005b34801561047d57600080fd5b50610486610e5e565b6040516104939190614abb565b60405180910390f35b3480156104a857600080fd5b506104b1610f17565b6040516104be9190614aa0565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061405c565b610f2e565b6040516104fb919061506f565b60405180910390f35b34801561051057600080fd5b50610519610f77565b005b34801561052757600080fd5b50610542600480360381019061053d91906141a5565b610f8b565b005b34801561055057600080fd5b50610559610fab565b6040516105669190614a85565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061426c565b610fd6565b6040516105a39190614aa0565b60405180910390f35b3480156105b857600080fd5b506105c1611042565b6040516105ce9190614af1565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190614322565b6110d4565b005b34801561060c57600080fd5b506106276004803603810190610622919061405c565b611e70565b005b34801561063557600080fd5b5061063e612095565b60405161064b9190614abb565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a5565b61209c565b6040516106889190614aa0565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906141a5565b612113565b6040516106c59190614aa0565b60405180910390f35b3480156106da57600080fd5b506106e3612136565b005b3480156106f157600080fd5b5061070c6004803603810190610707919061405c565b6122b0565b005b34801561071a57600080fd5b506107356004803603810190610730919061426c565b6124bd565b005b34801561074357600080fd5b5061075e600480360381019061075991906140b6565b6124de565b60405161076b919061506f565b60405180910390f35b34801561078057600080fd5b5061079b6004803603810190610796919061405c565b612565565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610810575061080f826125e9565b5b9050919050565b6060609a805461082690615322565b80601f016020809104026020016040519081016040528092919081815260200182805461085290615322565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b6000806108b4612653565b90506108c181858561265b565b600191505092915050565b6000609954905090565b6000806108e1612653565b90506108ee858285612826565b6108f98585856128b2565b60019150509392505050565b600061015f6000838152602001908152602001600020600101549050919050565b61092f82610905565b61093881612b2d565b6109428383612b41565b505050565b60006012905090565b610958612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc9061502f565b60405180910390fd5b6109cf8282612c23565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990614cef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610aa1612d06565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614daf565b60405180910390fd5b610b0081612d5d565b610b5981600067ffffffffffffffff811115610b1f57610b1e61541c565b5b6040519080825280601f01601f191660200182016040528015610b515781602001600182028036833780820191505090505b506000612d68565b50565b600080610b67612653565b9050610b88818585610b7985896124de565b610b839190615169565b61265b565b600191505092915050565b610ba4610b9e612653565b82612ee5565b50565b610baf6130b5565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b158015610c1857600080fd5b505afa158015610c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c509190614089565b73ffffffffffffffffffffffffffffffffffffffff166346fbf68e336040518263ffffffff1660e01b8152600401610c889190614a85565b60206040518083038186803b158015610ca057600080fd5b505afa158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd891906141e5565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90614d2f565b60405180910390fd5b610d1f6130ff565b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614cef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610def612d06565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90614daf565b60405180910390fd5b610e4e82612d5d565b610e5a82826001612d68565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614dcf565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b600060fb60009054906101000a900460ff16905090565b6000609760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7f613162565b610f8960006131e0565b565b610f9d82610f97612653565b83612826565b610fa78282612ee5565b5050565b60006101c360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060609b805461105190615322565b80601f016020809104026020016040519081016040528092919081815260200182805461107d90615322565b80156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b5050505050905090565b6110dc6130b5565b6110e46132a8565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b15801561114d57600080fd5b505afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190614089565b73ffffffffffffffffffffffffffffffffffffffff1663aa271e1a336040518263ffffffff1660e01b81526004016111bd9190614a85565b60206040518083038186803b1580156111d557600080fd5b505afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d91906141e5565b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614d8f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156112b557600080fd5b505afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614089565b73ffffffffffffffffffffffffffffffffffffffff166382358ace8484846040518463ffffffff1660e01b815260040161132993929190614b13565b60206040518083038186803b15801561134157600080fd5b505afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137991906141e5565b6113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90614e8f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114599190614089565b73ffffffffffffffffffffffffffffffffffffffff16638ef687418484846040518463ffffffff1660e01b815260040161149593929190614b13565b60206040518083038186803b1580156114ad57600080fd5b505afa1580156114c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e591906141e5565b15611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90614e6f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c69190614089565b73ffffffffffffffffffffffffffffffffffffffff166382358ace8484846040518463ffffffff1660e01b815260040161160293929190614b13565b60206040518083038186803b15801561161a57600080fd5b505afa15801561162e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165291906141e5565b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890614d6f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117329190614089565b73ffffffffffffffffffffffffffffffffffffffff1663ec4023168484846040518463ffffffff1660e01b815260040161176e93929190614b13565b60206040518083038186803b15801561178657600080fd5b505afa15801561179a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117be91906141e5565b156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590614ecf565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b15801561186757600080fd5b505afa15801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190614089565b73ffffffffffffffffffffffffffffffffffffffff16633f9ea88484848460016040518563ffffffff1660e01b81526004016118de9493929190614b58565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b50505050611af96101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304d2dec66040518163ffffffff1660e01b815260040160206040518083038186803b15801561197c57600080fd5b505afa158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190614089565b670de0b6b3a76400006101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a2657600080fd5b505afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190614089565b73ffffffffffffffffffffffffffffffffffffffff16638d86067d8787876040518463ffffffff1660e01b8152600401611a9a93929190614b13565b60206040518083038186803b158015611ab257600080fd5b505afa158015611ac6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aea91906143da565b611af491906151bf565b6132fa565b7fdad1ff81023c11ddeac7023ed0995eaf5da7059f27cd5a88782d907b53c78c35838383868686604051602001611b3293929190614a16565b604051602081830303815290604052805190602001206101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bb157600080fd5b505afa158015611bc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be99190614089565b73ffffffffffffffffffffffffffffffffffffffff16638d86067d8989896040518463ffffffff1660e01b8152600401611c2593929190614b13565b60206040518083038186803b158015611c3d57600080fd5b505afa158015611c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7591906143da565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304d2dec66040518163ffffffff1660e01b815260040160206040518083038186803b158015611cde57600080fd5b505afa158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d169190614089565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b158015611d7f57600080fd5b505afa158015611d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db79190614089565b73ffffffffffffffffffffffffffffffffffffffff16633d64ab2b8b8b8b6040518463ffffffff1660e01b8152600401611df393929190614b13565b60006040518083038186803b158015611e0b57600080fd5b505afa158015611e1f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e4891906142d9565b604051611e5b9796959493929190614bab565b60405180910390a1611e6b613452565b505050565b611e786130b5565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b158015611ee157600080fd5b505afa158015611ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f199190614089565b73ffffffffffffffffffffffffffffffffffffffff1663f3ae2415336040518263ffffffff1660e01b8152600401611f519190614a85565b60206040518083038186803b158015611f6957600080fd5b505afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa191906141e5565b611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790614f0f565b60405180910390fd5b806101f560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000801b81565b6000806120a7612653565b905060006120b582866124de565b9050838110156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f19061500f565b60405180910390fd5b612107828686840361265b565b60019250505092915050565b60008061211e612653565b905061212b8185856128b2565b600191505092915050565b61213e61345d565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190614089565b73ffffffffffffffffffffffffffffffffffffffff166346fbf68e336040518263ffffffff1660e01b81526004016122179190614a85565b60206040518083038186803b15801561222f57600080fd5b505afa158015612243573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226791906141e5565b6122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614d2f565b60405180910390fd5b6122ae6134a6565b565b60008060019054906101000a900460ff161590508080156122e15750600160008054906101000a900460ff1660ff16105b8061230e57506122f030613509565b15801561230d5750600160008054906101000a900460ff1660ff16145b5b61234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234490614e2f565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561238a576001600060016101000a81548160ff0219169083151502179055505b816101f560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506124406040518060400160405280601581526020017f41746c61735820436172626f6e204372656469747300000000000000000000008152506040518060400160405280600681526020017f41544c415358000000000000000000000000000000000000000000000000000081525061352c565b612448613589565b6124506135da565b612458613633565b612460613684565b80156124b95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516124b09190614ad6565b60405180910390a15b5050565b6124c682610905565b6124cf81612b2d565b6124d98383612c23565b505050565b6000609860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61256d613162565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614caf565b60405180910390fd5b6125e6816131e0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290614f8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614ccf565b60405180910390fd5b80609860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612819919061506f565b60405180910390a3505050565b600061283284846124de565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128ac578181101561289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289590614d0f565b60405180910390fd5b6128ab848484840361265b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298990614c4f565b60405180910390fd5b61299d8383836136dd565b6000609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614d4f565b60405180910390fd5b818103609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b14919061506f565b60405180910390a3612b278484846136e2565b50505050565b612b3e81612b39612653565b6136e7565b50565b612b4b8282610fd6565b612c1f57600161015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bc4612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612c2d8282610fd6565b15612d0257600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ca7612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612d347f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61376c565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612d65613162565b50565b612d947f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b613776565b60000160009054906101000a900460ff1615612db857612db383613780565b612ee0565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612dfe57600080fd5b505afa925050508015612e2f57506040513d601f19601f82011682018060405250810190612e2c919061423f565b60015b612e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6590614e4f565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614e0f565b60405180910390fd5b50612edf838383613839565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c90614f2f565b60405180910390fd5b612f61826000836136dd565b6000609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614c8f565b60405180910390fd5b818103609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081609960008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161309c919061506f565b60405180910390a36130b0836000846136e2565b505050565b6130bd610f17565b156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f490614def565b60405180910390fd5b565b6131076130b5565b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861314b612653565b6040516131589190614a85565b60405180910390a1565b61316a612653565b73ffffffffffffffffffffffffffffffffffffffff16613188610fab565b73ffffffffffffffffffffffffffffffffffffffff16146131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d590614eef565b60405180910390fd5b565b60006101c360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816101c360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026101915414156132ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e690614fef565b60405180910390fd5b600261019181905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133619061504f565b60405180910390fd5b613376600083836136dd565b80609960008282546133889190615169565b9250508190555080609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161343a919061506f565b60405180910390a361344e600083836136e2565b5050565b600161019181905550565b613465610f17565b6134a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349b90614c6f565b60405180910390fd5b565b6134ae61345d565b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6134f2612653565b6040516134ff9190614a85565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357290614faf565b60405180910390fd5b6135858282613865565b5050565b600060019054906101000a900460ff166135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90614faf565b60405180910390fd5b565b600060019054906101000a900460ff16613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362090614faf565b60405180910390fd5b6136316138e6565b565b600060019054906101000a900460ff16613682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367990614faf565b60405180910390fd5b565b600060019054906101000a900460ff166136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca90614faf565b60405180910390fd5b6136db613952565b565b505050565b505050565b6136f18282610fd6565b613768576136fe816139b3565b61370c8360001c60206139e0565b60405160200161371d929190614a4b565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375f9190614af1565b60405180910390fd5b5050565b6000819050919050565b6000819050919050565b61378981613509565b6137c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf90614eaf565b60405180910390fd5b806137f57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61376c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61384283613c1c565b60008251118061384f5750805b156138605761385e8383613c6b565b505b505050565b600060019054906101000a900460ff166138b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ab90614faf565b60405180910390fd5b81609a90805190602001906138ca929190613dc1565b5080609b90805190602001906138e1929190613dc1565b505050565b600060019054906101000a900460ff16613935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392c90614faf565b60405180910390fd5b600060fb60006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166139a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399890614faf565b60405180910390fd5b6139b16139ac612653565b6131e0565b565b60606139d98273ffffffffffffffffffffffffffffffffffffffff16601460ff166139e0565b9050919050565b6060600060028360026139f391906151bf565b6139fd9190615169565b67ffffffffffffffff811115613a1657613a1561541c565b5b6040519080825280601f01601f191660200182016040528015613a485781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a8057613a7f6153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613ae457613ae36153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613b2491906151bf565b613b2e9190615169565b90505b6001811115613bce577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613b7057613b6f6153ed565b5b1a60f81b828281518110613b8757613b866153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613bc7906152f8565b9050613b31565b5060008414613c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0990614c2f565b60405180910390fd5b8091505092915050565b613c2581613780565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060613c7683613509565b613cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cac90614f4f565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff1684604051613cdd91906149ff565b600060405180830381855af49150503d8060008114613d18576040519150601f19603f3d011682016040523d82523d6000602084013e613d1d565b606091505b5091509150613d458282604051806060016040528060278152602001615eaa60279139613d4f565b9250505092915050565b60608315613d5f57829050613d6a565b613d698383613d71565b5b9392505050565b600082511115613d845781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db89190614af1565b60405180910390fd5b828054613dcd90615322565b90600052602060002090601f016020900481019282613def5760008555613e36565b82601f10613e0857805160ff1916838001178555613e36565b82800160010185558215613e36579182015b82811115613e35578251825591602001919060010190613e1a565b5b509050613e439190613e47565b5090565b5b80821115613e60576000816000905550600101613e48565b5090565b6000613e77613e72846150ca565b6150a5565b905082815260208101848484011115613e9357613e92615450565b5b613e9e8482856152b6565b509392505050565b6000613eb9613eb4846150fb565b6150a5565b905082815260208101848484011115613ed557613ed4615450565b5b613ee08482856152b6565b509392505050565b6000613efb613ef6846150fb565b6150a5565b905082815260208101848484011115613f1757613f16615450565b5b613f228482856152c5565b509392505050565b600081359050613f3981615e36565b92915050565b600081519050613f4e81615e36565b92915050565b600081519050613f6381615e4d565b92915050565b600081359050613f7881615e64565b92915050565b600081519050613f8d81615e64565b92915050565b600081359050613fa281615e7b565b92915050565b600082601f830112613fbd57613fbc61544b565b5b8135613fcd848260208601613e64565b91505092915050565b600082601f830112613feb57613fea61544b565b5b8135613ffb848260208601613ea6565b91505092915050565b600082601f8301126140195761401861544b565b5b8151614029848260208601613ee8565b91505092915050565b60008135905061404181615e92565b92915050565b60008151905061405681615e92565b92915050565b6000602082840312156140725761407161545a565b5b600061408084828501613f2a565b91505092915050565b60006020828403121561409f5761409e61545a565b5b60006140ad84828501613f3f565b91505092915050565b600080604083850312156140cd576140cc61545a565b5b60006140db85828601613f2a565b92505060206140ec85828601613f2a565b9150509250929050565b60008060006060848603121561410f5761410e61545a565b5b600061411d86828701613f2a565b935050602061412e86828701613f2a565b925050604061413f86828701614032565b9150509250925092565b600080604083850312156141605761415f61545a565b5b600061416e85828601613f2a565b925050602083013567ffffffffffffffff81111561418f5761418e615455565b5b61419b85828601613fa8565b9150509250929050565b600080604083850312156141bc576141bb61545a565b5b60006141ca85828601613f2a565b92505060206141db85828601614032565b9150509250929050565b6000602082840312156141fb576141fa61545a565b5b600061420984828501613f54565b91505092915050565b6000602082840312156142285761422761545a565b5b600061423684828501613f69565b91505092915050565b6000602082840312156142555761425461545a565b5b600061426384828501613f7e565b91505092915050565b600080604083850312156142835761428261545a565b5b600061429185828601613f69565b92505060206142a285828601613f2a565b9150509250929050565b6000602082840312156142c2576142c161545a565b5b60006142d084828501613f93565b91505092915050565b6000602082840312156142ef576142ee61545a565b5b600082015167ffffffffffffffff81111561430d5761430c615455565b5b61431984828501614004565b91505092915050565b60008060006060848603121561433b5761433a61545a565b5b600084013567ffffffffffffffff81111561435957614358615455565b5b61436586828701613fd6565b935050602084013567ffffffffffffffff81111561438657614385615455565b5b61439286828701613fd6565b92505060406143a386828701614032565b9150509250925092565b6000602082840312156143c3576143c261545a565b5b60006143d184828501614032565b91505092915050565b6000602082840312156143f0576143ef61545a565b5b60006143fe84828501614047565b91505092915050565b61441081615219565b82525050565b61441f8161522b565b82525050565b61442e81615237565b82525050565b600061443f8261512c565b6144498185615142565b93506144598185602086016152c5565b80840191505092915050565b61446e816152a4565b82525050565b600061447f82615137565b614489818561514d565b93506144998185602086016152c5565b6144a28161545f565b840191505092915050565b60006144b882615137565b6144c2818561515e565b93506144d28185602086016152c5565b80840191505092915050565b60006144eb60208361514d565b91506144f682615470565b602082019050919050565b600061450e60238361514d565b915061451982615499565b604082019050919050565b600061453160148361514d565b915061453c826154e8565b602082019050919050565b600061455460228361514d565b915061455f82615511565b604082019050919050565b600061457760268361514d565b915061458282615560565b604082019050919050565b600061459a60228361514d565b91506145a5826155af565b604082019050919050565b60006145bd602c8361514d565b91506145c8826155fe565b604082019050919050565b60006145e0601d8361514d565b91506145eb8261564d565b602082019050919050565b600061460360248361514d565b915061460e82615676565b604082019050919050565b600061462660268361514d565b9150614631826156c5565b604082019050919050565b6000614649602b8361514d565b915061465482615714565b604082019050919050565b600061466c602c8361514d565b915061467782615763565b604082019050919050565b600061468f602c8361514d565b915061469a826157b2565b604082019050919050565b60006146b260388361514d565b91506146bd82615801565b604082019050919050565b60006146d560108361514d565b91506146e082615850565b602082019050919050565b60006146f860298361514d565b915061470382615879565b604082019050919050565b600061471b602e8361514d565b9150614726826158c8565b604082019050919050565b600061473e602e8361514d565b915061474982615917565b604082019050919050565b600061476160368361514d565b915061476c82615966565b604082019050919050565b6000614784602e8361514d565b915061478f826159b5565b604082019050919050565b60006147a7602d8361514d565b91506147b282615a04565b604082019050919050565b60006147ca603a8361514d565b91506147d582615a53565b604082019050919050565b60006147ed60208361514d565b91506147f882615aa2565b602082019050919050565b600061481060218361514d565b915061481b82615acb565b604082019050919050565b600061483360218361514d565b915061483e82615b1a565b604082019050919050565b600061485660268361514d565b915061486182615b69565b604082019050919050565b600061487960258361514d565b915061488482615bb8565b604082019050919050565b600061489c60248361514d565b91506148a782615c07565b604082019050919050565b60006148bf602b8361514d565b91506148ca82615c56565b604082019050919050565b60006148e260178361515e565b91506148ed82615ca5565b601782019050919050565b600061490560258361514d565b915061491082615cce565b604082019050919050565b6000614928601f8361514d565b915061493382615d1d565b602082019050919050565b600061494b60258361514d565b915061495682615d46565b604082019050919050565b600061496e60118361515e565b915061497982615d95565b601182019050919050565b6000614991602f8361514d565b915061499c82615dbe565b604082019050919050565b60006149b4601f8361514d565b91506149bf82615e0d565b602082019050919050565b6149d38161528d565b82525050565b6149ea6149e58261528d565b615385565b82525050565b6149f981615297565b82525050565b6000614a0b8284614434565b915081905092915050565b6000614a2282866144ad565b9150614a2e82856144ad565b9150614a3a82846149d9565b602082019150819050949350505050565b6000614a56826148d5565b9150614a6282856144ad565b9150614a6d82614961565b9150614a7982846144ad565b91508190509392505050565b6000602082019050614a9a6000830184614407565b92915050565b6000602082019050614ab56000830184614416565b92915050565b6000602082019050614ad06000830184614425565b92915050565b6000602082019050614aeb6000830184614465565b92915050565b60006020820190508181036000830152614b0b8184614474565b905092915050565b60006060820190508181036000830152614b2d8186614474565b90508181036020830152614b418185614474565b9050614b5060408301846149ca565b949350505050565b60006080820190508181036000830152614b728187614474565b90508181036020830152614b868186614474565b9050614b9560408301856149ca565b614ba26060830184614416565b95945050505050565b600060e0820190508181036000830152614bc5818a614474565b90508181036020830152614bd98189614474565b9050614be860408301886149ca565b614bf56060830187614425565b614c0260808301866149ca565b614c0f60a0830185614407565b81810360c0830152614c218184614474565b905098975050505050505050565b60006020820190508181036000830152614c48816144de565b9050919050565b60006020820190508181036000830152614c6881614501565b9050919050565b60006020820190508181036000830152614c8881614524565b9050919050565b60006020820190508181036000830152614ca881614547565b9050919050565b60006020820190508181036000830152614cc88161456a565b9050919050565b60006020820190508181036000830152614ce88161458d565b9050919050565b60006020820190508181036000830152614d08816145b0565b9050919050565b60006020820190508181036000830152614d28816145d3565b9050919050565b60006020820190508181036000830152614d48816145f6565b9050919050565b60006020820190508181036000830152614d6881614619565b9050919050565b60006020820190508181036000830152614d888161463c565b9050919050565b60006020820190508181036000830152614da88161465f565b9050919050565b60006020820190508181036000830152614dc881614682565b9050919050565b60006020820190508181036000830152614de8816146a5565b9050919050565b60006020820190508181036000830152614e08816146c8565b9050919050565b60006020820190508181036000830152614e28816146eb565b9050919050565b60006020820190508181036000830152614e488161470e565b9050919050565b60006020820190508181036000830152614e6881614731565b9050919050565b60006020820190508181036000830152614e8881614754565b9050919050565b60006020820190508181036000830152614ea881614777565b9050919050565b60006020820190508181036000830152614ec88161479a565b9050919050565b60006020820190508181036000830152614ee8816147bd565b9050919050565b60006020820190508181036000830152614f08816147e0565b9050919050565b60006020820190508181036000830152614f2881614803565b9050919050565b60006020820190508181036000830152614f4881614826565b9050919050565b60006020820190508181036000830152614f6881614849565b9050919050565b60006020820190508181036000830152614f888161486c565b9050919050565b60006020820190508181036000830152614fa88161488f565b9050919050565b60006020820190508181036000830152614fc8816148b2565b9050919050565b60006020820190508181036000830152614fe8816148f8565b9050919050565b600060208201905081810360008301526150088161491b565b9050919050565b600060208201905081810360008301526150288161493e565b9050919050565b6000602082019050818103600083015261504881614984565b9050919050565b60006020820190508181036000830152615068816149a7565b9050919050565b600060208201905061508460008301846149ca565b92915050565b600060208201905061509f60008301846149f0565b92915050565b60006150af6150c0565b90506150bb8282615354565b919050565b6000604051905090565b600067ffffffffffffffff8211156150e5576150e461541c565b5b6150ee8261545f565b9050602081019050919050565b600067ffffffffffffffff8211156151165761511561541c565b5b61511f8261545f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151748261528d565b915061517f8361528d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151b4576151b361538f565b5b828201905092915050565b60006151ca8261528d565b91506151d58361528d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561520e5761520d61538f565b5b828202905092915050565b60006152248261526d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006152af82615297565b9050919050565b82818337600083830152505050565b60005b838110156152e35780820151818401526020810190506152c8565b838111156152f2576000848401525b50505050565b60006153038261528d565b915060008214156153175761531661538f565b5b600182039050919050565b6000600282049050600182168061533a57607f821691505b6020821081141561534e5761534d6153be565b5b50919050565b61535d8261545f565b810181811067ffffffffffffffff8211171561537c5761537b61541c565b5b80604052505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4163636573732044656e6965643a2043616c6c6572206973204e4f542050617560008201527f7365722100000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20496e707574204c4c44206e6f7420726567697374657265642060008201527f776974682041746c617321000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67204163636573732044656e6965643a2043616c6c657220697360008201527f204e4f54204d494e544552210000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b7f52656c656173656420437265646974733a20436172626f6e206372656469747360008201527f2072656c656173656420666f722074686973204c4c4400000000000000000000602082015250565b7f4572726f723a20496e707574204c4c44206e6f7420726567697374657265642060008201527f7769746820526567697374727921000000000000000000000000000000000000602082015250565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b7f446f75626c65204d696e74696e673a20436172626f6e2043726564697473206d60008201527f696e74656420616c726561647920666f722074686973204c4c44000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4163636f756e743a205a65726f206f7220496e76616c6964206164647265737360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4163636573732044656e6965643a2043616c6c6572206973204e4f54204d616e60008201527f6167657221000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615e3f81615219565b8114615e4a57600080fd5b50565b615e568161522b565b8114615e6157600080fd5b50565b615e6d81615237565b8114615e7857600080fd5b50565b615e8481615241565b8114615e8f57600080fd5b50565b615e9b8161528d565b8114615ea657600080fd5b5056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b2f26e52a09b94d1b7095c19caa20c9b228027d5e72944bc9b54fbd06609068964736f6c63430008070033

Deployed ByteCode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a217fddf11610095578063c4d66de811610064578063c4d66de8146106e5578063d547741f1461070e578063dd62ed3e14610737578063f2fde38b14610774576101e3565b8063a217fddf14610629578063a457c2d714610654578063a9059cbb14610691578063b33712c5146106ce576101e3565b806391d14854116100d157806391d148541461056f57806395d89b41146105ac5780639e51634e146105d75780639f4baa7614610600576101e3565b806370a08231146104c7578063715018a61461050457806379cc67901461051b5780638da5cb5b14610544576101e3565b806336568abe1161017a578063439766ce11610149578063439766ce1461043e5780634f1ef2861461045557806352d1902d146104715780635c975abb1461049c576101e3565b806336568abe146103865780633659cfe6146103af57806339509351146103d857806342966c6814610415576101e3565b806323b872dd116101b657806323b872dd146102b8578063248a9ca3146102f55780632f2ff15d14610332578063313ce5671461035b576101e3565b806301ffc9a7146101e857806306fdde0314610225578063095ea7b31461025057806318160ddd1461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906142ac565b61079d565b60405161021c9190614aa0565b60405180910390f35b34801561023157600080fd5b5061023a610817565b6040516102479190614af1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906141a5565b6108a9565b6040516102849190614aa0565b60405180910390f35b34801561029957600080fd5b506102a26108cc565b6040516102af919061506f565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906140f6565b6108d6565b6040516102ec9190614aa0565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614212565b610905565b6040516103299190614abb565b60405180910390f35b34801561033e57600080fd5b506103596004803603810190610354919061426c565b610926565b005b34801561036757600080fd5b50610370610947565b60405161037d919061508a565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061426c565b610950565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061405c565b6109d3565b005b3480156103e457600080fd5b506103ff60048036038101906103fa91906141a5565b610b5c565b60405161040c9190614aa0565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906143ad565b610b93565b005b34801561044a57600080fd5b50610453610ba7565b005b61046f600480360381019061046a9190614149565b610d21565b005b34801561047d57600080fd5b50610486610e5e565b6040516104939190614abb565b60405180910390f35b3480156104a857600080fd5b506104b1610f17565b6040516104be9190614aa0565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061405c565b610f2e565b6040516104fb919061506f565b60405180910390f35b34801561051057600080fd5b50610519610f77565b005b34801561052757600080fd5b50610542600480360381019061053d91906141a5565b610f8b565b005b34801561055057600080fd5b50610559610fab565b6040516105669190614a85565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061426c565b610fd6565b6040516105a39190614aa0565b60405180910390f35b3480156105b857600080fd5b506105c1611042565b6040516105ce9190614af1565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190614322565b6110d4565b005b34801561060c57600080fd5b506106276004803603810190610622919061405c565b611e70565b005b34801561063557600080fd5b5061063e612095565b60405161064b9190614abb565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a5565b61209c565b6040516106889190614aa0565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906141a5565b612113565b6040516106c59190614aa0565b60405180910390f35b3480156106da57600080fd5b506106e3612136565b005b3480156106f157600080fd5b5061070c6004803603810190610707919061405c565b6122b0565b005b34801561071a57600080fd5b506107356004803603810190610730919061426c565b6124bd565b005b34801561074357600080fd5b5061075e600480360381019061075991906140b6565b6124de565b60405161076b919061506f565b60405180910390f35b34801561078057600080fd5b5061079b6004803603810190610796919061405c565b612565565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610810575061080f826125e9565b5b9050919050565b6060609a805461082690615322565b80601f016020809104026020016040519081016040528092919081815260200182805461085290615322565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b6000806108b4612653565b90506108c181858561265b565b600191505092915050565b6000609954905090565b6000806108e1612653565b90506108ee858285612826565b6108f98585856128b2565b60019150509392505050565b600061015f6000838152602001908152602001600020600101549050919050565b61092f82610905565b61093881612b2d565b6109428383612b41565b505050565b60006012905090565b610958612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc9061502f565b60405180910390fd5b6109cf8282612c23565b5050565b7f000000000000000000000000c3377ea71f1dc8e55ba360724eff2d7ad62a867073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990614cef565b60405180910390fd5b7f000000000000000000000000c3377ea71f1dc8e55ba360724eff2d7ad62a867073ffffffffffffffffffffffffffffffffffffffff16610aa1612d06565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614daf565b60405180910390fd5b610b0081612d5d565b610b5981600067ffffffffffffffff811115610b1f57610b1e61541c565b5b6040519080825280601f01601f191660200182016040528015610b515781602001600182028036833780820191505090505b506000612d68565b50565b600080610b67612653565b9050610b88818585610b7985896124de565b610b839190615169565b61265b565b600191505092915050565b610ba4610b9e612653565b82612ee5565b50565b610baf6130b5565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b158015610c1857600080fd5b505afa158015610c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c509190614089565b73ffffffffffffffffffffffffffffffffffffffff166346fbf68e336040518263ffffffff1660e01b8152600401610c889190614a85565b60206040518083038186803b158015610ca057600080fd5b505afa158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd891906141e5565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90614d2f565b60405180910390fd5b610d1f6130ff565b565b7f000000000000000000000000c3377ea71f1dc8e55ba360724eff2d7ad62a867073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790614cef565b60405180910390fd5b7f000000000000000000000000c3377ea71f1dc8e55ba360724eff2d7ad62a867073ffffffffffffffffffffffffffffffffffffffff16610def612d06565b73ffffffffffffffffffffffffffffffffffffffff1614610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90614daf565b60405180910390fd5b610e4e82612d5d565b610e5a82826001612d68565b5050565b60007f000000000000000000000000c3377ea71f1dc8e55ba360724eff2d7ad62a867073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614dcf565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b600060fb60009054906101000a900460ff16905090565b6000609760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f7f613162565b610f8960006131e0565b565b610f9d82610f97612653565b83612826565b610fa78282612ee5565b5050565b60006101c360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060609b805461105190615322565b80601f016020809104026020016040519081016040528092919081815260200182805461107d90615322565b80156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b5050505050905090565b6110dc6130b5565b6110e46132a8565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b15801561114d57600080fd5b505afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190614089565b73ffffffffffffffffffffffffffffffffffffffff1663aa271e1a336040518263ffffffff1660e01b81526004016111bd9190614a85565b60206040518083038186803b1580156111d557600080fd5b505afa1580156111e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120d91906141e5565b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614d8f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156112b557600080fd5b505afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614089565b73ffffffffffffffffffffffffffffffffffffffff166382358ace8484846040518463ffffffff1660e01b815260040161132993929190614b13565b60206040518083038186803b15801561134157600080fd5b505afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137991906141e5565b6113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90614e8f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114599190614089565b73ffffffffffffffffffffffffffffffffffffffff16638ef687418484846040518463ffffffff1660e01b815260040161149593929190614b13565b60206040518083038186803b1580156114ad57600080fd5b505afa1580156114c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e591906141e5565b15611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90614e6f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c69190614089565b73ffffffffffffffffffffffffffffffffffffffff166382358ace8484846040518463ffffffff1660e01b815260040161160293929190614b13565b60206040518083038186803b15801561161a57600080fd5b505afa15801561162e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165291906141e5565b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890614d6f565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117329190614089565b73ffffffffffffffffffffffffffffffffffffffff1663ec4023168484846040518463ffffffff1660e01b815260040161176e93929190614b13565b60206040518083038186803b15801561178657600080fd5b505afa15801561179a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117be91906141e5565b156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590614ecf565b60405180910390fd5b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b15801561186757600080fd5b505afa15801561187b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189f9190614089565b73ffffffffffffffffffffffffffffffffffffffff16633f9ea88484848460016040518563ffffffff1660e01b81526004016118de9493929190614b58565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b50505050611af96101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304d2dec66040518163ffffffff1660e01b815260040160206040518083038186803b15801561197c57600080fd5b505afa158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190614089565b670de0b6b3a76400006101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a2657600080fd5b505afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190614089565b73ffffffffffffffffffffffffffffffffffffffff16638d86067d8787876040518463ffffffff1660e01b8152600401611a9a93929190614b13565b60206040518083038186803b158015611ab257600080fd5b505afa158015611ac6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aea91906143da565b611af491906151bf565b6132fa565b7fdad1ff81023c11ddeac7023ed0995eaf5da7059f27cd5a88782d907b53c78c35838383868686604051602001611b3293929190614a16565b604051602081830303815290604052805190602001206101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a2ba54a6040518163ffffffff1660e01b815260040160206040518083038186803b158015611bb157600080fd5b505afa158015611bc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be99190614089565b73ffffffffffffffffffffffffffffffffffffffff16638d86067d8989896040518463ffffffff1660e01b8152600401611c2593929190614b13565b60206040518083038186803b158015611c3d57600080fd5b505afa158015611c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7591906143da565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166304d2dec66040518163ffffffff1660e01b815260040160206040518083038186803b158015611cde57600080fd5b505afa158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d169190614089565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634f7a74f96040518163ffffffff1660e01b815260040160206040518083038186803b158015611d7f57600080fd5b505afa158015611d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db79190614089565b73ffffffffffffffffffffffffffffffffffffffff16633d64ab2b8b8b8b6040518463ffffffff1660e01b8152600401611df393929190614b13565b60006040518083038186803b158015611e0b57600080fd5b505afa158015611e1f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e4891906142d9565b604051611e5b9796959493929190614bab565b60405180910390a1611e6b613452565b505050565b611e786130b5565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b158015611ee157600080fd5b505afa158015611ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f199190614089565b73ffffffffffffffffffffffffffffffffffffffff1663f3ae2415336040518263ffffffff1660e01b8152600401611f519190614a85565b60206040518083038186803b158015611f6957600080fd5b505afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa191906141e5565b611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790614f0f565b60405180910390fd5b806101f560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000801b81565b6000806120a7612653565b905060006120b582866124de565b9050838110156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f19061500f565b60405180910390fd5b612107828686840361265b565b60019250505092915050565b60008061211e612653565b905061212b8185856128b2565b600191505092915050565b61213e61345d565b6101f560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aab9efa16040518163ffffffff1660e01b815260040160206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190614089565b73ffffffffffffffffffffffffffffffffffffffff166346fbf68e336040518263ffffffff1660e01b81526004016122179190614a85565b60206040518083038186803b15801561222f57600080fd5b505afa158015612243573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061226791906141e5565b6122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614d2f565b60405180910390fd5b6122ae6134a6565b565b60008060019054906101000a900460ff161590508080156122e15750600160008054906101000a900460ff1660ff16105b8061230e57506122f030613509565b15801561230d5750600160008054906101000a900460ff1660ff16145b5b61234d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234490614e2f565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561238a576001600060016101000a81548160ff0219169083151502179055505b816101f560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506124406040518060400160405280601581526020017f41746c61735820436172626f6e204372656469747300000000000000000000008152506040518060400160405280600681526020017f41544c415358000000000000000000000000000000000000000000000000000081525061352c565b612448613589565b6124506135da565b612458613633565b612460613684565b80156124b95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516124b09190614ad6565b60405180910390a15b5050565b6124c682610905565b6124cf81612b2d565b6124d98383612c23565b505050565b6000609860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61256d613162565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490614caf565b60405180910390fd5b6125e6816131e0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c290614f8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614ccf565b60405180910390fd5b80609860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612819919061506f565b60405180910390a3505050565b600061283284846124de565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128ac578181101561289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289590614d0f565b60405180910390fd5b6128ab848484840361265b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291990614f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298990614c4f565b60405180910390fd5b61299d8383836136dd565b6000609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614d4f565b60405180910390fd5b818103609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b14919061506f565b60405180910390a3612b278484846136e2565b50505050565b612b3e81612b39612653565b6136e7565b50565b612b4b8282610fd6565b612c1f57600161015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612bc4612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612c2d8282610fd6565b15612d0257600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ca7612653565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612d347f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61376c565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612d65613162565b50565b612d947f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b613776565b60000160009054906101000a900460ff1615612db857612db383613780565b612ee0565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b158015612dfe57600080fd5b505afa925050508015612e2f57506040513d601f19601f82011682018060405250810190612e2c919061423f565b60015b612e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6590614e4f565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114612ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eca90614e0f565b60405180910390fd5b50612edf838383613839565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4c90614f2f565b60405180910390fd5b612f61826000836136dd565b6000609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614c8f565b60405180910390fd5b818103609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081609960008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161309c919061506f565b60405180910390a36130b0836000846136e2565b505050565b6130bd610f17565b156130fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f490614def565b60405180910390fd5b565b6131076130b5565b600160fb60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861314b612653565b6040516131589190614a85565b60405180910390a1565b61316a612653565b73ffffffffffffffffffffffffffffffffffffffff16613188610fab565b73ffffffffffffffffffffffffffffffffffffffff16146131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d590614eef565b60405180910390fd5b565b60006101c360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816101c360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026101915414156132ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e690614fef565b60405180910390fd5b600261019181905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133619061504f565b60405180910390fd5b613376600083836136dd565b80609960008282546133889190615169565b9250508190555080609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161343a919061506f565b60405180910390a361344e600083836136e2565b5050565b600161019181905550565b613465610f17565b6134a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349b90614c6f565b60405180910390fd5b565b6134ae61345d565b600060fb60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6134f2612653565b6040516134ff9190614a85565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357290614faf565b60405180910390fd5b6135858282613865565b5050565b600060019054906101000a900460ff166135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90614faf565b60405180910390fd5b565b600060019054906101000a900460ff16613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362090614faf565b60405180910390fd5b6136316138e6565b565b600060019054906101000a900460ff16613682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367990614faf565b60405180910390fd5b565b600060019054906101000a900460ff166136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca90614faf565b60405180910390fd5b6136db613952565b565b505050565b505050565b6136f18282610fd6565b613768576136fe816139b3565b61370c8360001c60206139e0565b60405160200161371d929190614a4b565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375f9190614af1565b60405180910390fd5b5050565b6000819050919050565b6000819050919050565b61378981613509565b6137c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf90614eaf565b60405180910390fd5b806137f57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61376c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61384283613c1c565b60008251118061384f5750805b156138605761385e8383613c6b565b505b505050565b600060019054906101000a900460ff166138b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ab90614faf565b60405180910390fd5b81609a90805190602001906138ca929190613dc1565b5080609b90805190602001906138e1929190613dc1565b505050565b600060019054906101000a900460ff16613935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392c90614faf565b60405180910390fd5b600060fb60006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166139a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399890614faf565b60405180910390fd5b6139b16139ac612653565b6131e0565b565b60606139d98273ffffffffffffffffffffffffffffffffffffffff16601460ff166139e0565b9050919050565b6060600060028360026139f391906151bf565b6139fd9190615169565b67ffffffffffffffff811115613a1657613a1561541c565b5b6040519080825280601f01601f191660200182016040528015613a485781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a8057613a7f6153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613ae457613ae36153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613b2491906151bf565b613b2e9190615169565b90505b6001811115613bce577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613b7057613b6f6153ed565b5b1a60f81b828281518110613b8757613b866153ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613bc7906152f8565b9050613b31565b5060008414613c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0990614c2f565b60405180910390fd5b8091505092915050565b613c2581613780565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060613c7683613509565b613cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cac90614f4f565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff1684604051613cdd91906149ff565b600060405180830381855af49150503d8060008114613d18576040519150601f19603f3d011682016040523d82523d6000602084013e613d1d565b606091505b5091509150613d458282604051806060016040528060278152602001615eaa60279139613d4f565b9250505092915050565b60608315613d5f57829050613d6a565b613d698383613d71565b5b9392505050565b600082511115613d845781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db89190614af1565b60405180910390fd5b828054613dcd90615322565b90600052602060002090601f016020900481019282613def5760008555613e36565b82601f10613e0857805160ff1916838001178555613e36565b82800160010185558215613e36579182015b82811115613e35578251825591602001919060010190613e1a565b5b509050613e439190613e47565b5090565b5b80821115613e60576000816000905550600101613e48565b5090565b6000613e77613e72846150ca565b6150a5565b905082815260208101848484011115613e9357613e92615450565b5b613e9e8482856152b6565b509392505050565b6000613eb9613eb4846150fb565b6150a5565b905082815260208101848484011115613ed557613ed4615450565b5b613ee08482856152b6565b509392505050565b6000613efb613ef6846150fb565b6150a5565b905082815260208101848484011115613f1757613f16615450565b5b613f228482856152c5565b509392505050565b600081359050613f3981615e36565b92915050565b600081519050613f4e81615e36565b92915050565b600081519050613f6381615e4d565b92915050565b600081359050613f7881615e64565b92915050565b600081519050613f8d81615e64565b92915050565b600081359050613fa281615e7b565b92915050565b600082601f830112613fbd57613fbc61544b565b5b8135613fcd848260208601613e64565b91505092915050565b600082601f830112613feb57613fea61544b565b5b8135613ffb848260208601613ea6565b91505092915050565b600082601f8301126140195761401861544b565b5b8151614029848260208601613ee8565b91505092915050565b60008135905061404181615e92565b92915050565b60008151905061405681615e92565b92915050565b6000602082840312156140725761407161545a565b5b600061408084828501613f2a565b91505092915050565b60006020828403121561409f5761409e61545a565b5b60006140ad84828501613f3f565b91505092915050565b600080604083850312156140cd576140cc61545a565b5b60006140db85828601613f2a565b92505060206140ec85828601613f2a565b9150509250929050565b60008060006060848603121561410f5761410e61545a565b5b600061411d86828701613f2a565b935050602061412e86828701613f2a565b925050604061413f86828701614032565b9150509250925092565b600080604083850312156141605761415f61545a565b5b600061416e85828601613f2a565b925050602083013567ffffffffffffffff81111561418f5761418e615455565b5b61419b85828601613fa8565b9150509250929050565b600080604083850312156141bc576141bb61545a565b5b60006141ca85828601613f2a565b92505060206141db85828601614032565b9150509250929050565b6000602082840312156141fb576141fa61545a565b5b600061420984828501613f54565b91505092915050565b6000602082840312156142285761422761545a565b5b600061423684828501613f69565b91505092915050565b6000602082840312156142555761425461545a565b5b600061426384828501613f7e565b91505092915050565b600080604083850312156142835761428261545a565b5b600061429185828601613f69565b92505060206142a285828601613f2a565b9150509250929050565b6000602082840312156142c2576142c161545a565b5b60006142d084828501613f93565b91505092915050565b6000602082840312156142ef576142ee61545a565b5b600082015167ffffffffffffffff81111561430d5761430c615455565b5b61431984828501614004565b91505092915050565b60008060006060848603121561433b5761433a61545a565b5b600084013567ffffffffffffffff81111561435957614358615455565b5b61436586828701613fd6565b935050602084013567ffffffffffffffff81111561438657614385615455565b5b61439286828701613fd6565b92505060406143a386828701614032565b9150509250925092565b6000602082840312156143c3576143c261545a565b5b60006143d184828501614032565b91505092915050565b6000602082840312156143f0576143ef61545a565b5b60006143fe84828501614047565b91505092915050565b61441081615219565b82525050565b61441f8161522b565b82525050565b61442e81615237565b82525050565b600061443f8261512c565b6144498185615142565b93506144598185602086016152c5565b80840191505092915050565b61446e816152a4565b82525050565b600061447f82615137565b614489818561514d565b93506144998185602086016152c5565b6144a28161545f565b840191505092915050565b60006144b882615137565b6144c2818561515e565b93506144d28185602086016152c5565b80840191505092915050565b60006144eb60208361514d565b91506144f682615470565b602082019050919050565b600061450e60238361514d565b915061451982615499565b604082019050919050565b600061453160148361514d565b915061453c826154e8565b602082019050919050565b600061455460228361514d565b915061455f82615511565b604082019050919050565b600061457760268361514d565b915061458282615560565b604082019050919050565b600061459a60228361514d565b91506145a5826155af565b604082019050919050565b60006145bd602c8361514d565b91506145c8826155fe565b604082019050919050565b60006145e0601d8361514d565b91506145eb8261564d565b602082019050919050565b600061460360248361514d565b915061460e82615676565b604082019050919050565b600061462660268361514d565b9150614631826156c5565b604082019050919050565b6000614649602b8361514d565b915061465482615714565b604082019050919050565b600061466c602c8361514d565b915061467782615763565b604082019050919050565b600061468f602c8361514d565b915061469a826157b2565b604082019050919050565b60006146b260388361514d565b91506146bd82615801565b604082019050919050565b60006146d560108361514d565b91506146e082615850565b602082019050919050565b60006146f860298361514d565b915061470382615879565b604082019050919050565b600061471b602e8361514d565b9150614726826158c8565b604082019050919050565b600061473e602e8361514d565b915061474982615917565b604082019050919050565b600061476160368361514d565b915061476c82615966565b604082019050919050565b6000614784602e8361514d565b915061478f826159b5565b604082019050919050565b60006147a7602d8361514d565b91506147b282615a04565b604082019050919050565b60006147ca603a8361514d565b91506147d582615a53565b604082019050919050565b60006147ed60208361514d565b91506147f882615aa2565b602082019050919050565b600061481060218361514d565b915061481b82615acb565b604082019050919050565b600061483360218361514d565b915061483e82615b1a565b604082019050919050565b600061485660268361514d565b915061486182615b69565b604082019050919050565b600061487960258361514d565b915061488482615bb8565b604082019050919050565b600061489c60248361514d565b91506148a782615c07565b604082019050919050565b60006148bf602b8361514d565b91506148ca82615c56565b604082019050919050565b60006148e260178361515e565b91506148ed82615ca5565b601782019050919050565b600061490560258361514d565b915061491082615cce565b604082019050919050565b6000614928601f8361514d565b915061493382615d1d565b602082019050919050565b600061494b60258361514d565b915061495682615d46565b604082019050919050565b600061496e60118361515e565b915061497982615d95565b601182019050919050565b6000614991602f8361514d565b915061499c82615dbe565b604082019050919050565b60006149b4601f8361514d565b91506149bf82615e0d565b602082019050919050565b6149d38161528d565b82525050565b6149ea6149e58261528d565b615385565b82525050565b6149f981615297565b82525050565b6000614a0b8284614434565b915081905092915050565b6000614a2282866144ad565b9150614a2e82856144ad565b9150614a3a82846149d9565b602082019150819050949350505050565b6000614a56826148d5565b9150614a6282856144ad565b9150614a6d82614961565b9150614a7982846144ad565b91508190509392505050565b6000602082019050614a9a6000830184614407565b92915050565b6000602082019050614ab56000830184614416565b92915050565b6000602082019050614ad06000830184614425565b92915050565b6000602082019050614aeb6000830184614465565b92915050565b60006020820190508181036000830152614b0b8184614474565b905092915050565b60006060820190508181036000830152614b2d8186614474565b90508181036020830152614b418185614474565b9050614b5060408301846149ca565b949350505050565b60006080820190508181036000830152614b728187614474565b90508181036020830152614b868186614474565b9050614b9560408301856149ca565b614ba26060830184614416565b95945050505050565b600060e0820190508181036000830152614bc5818a614474565b90508181036020830152614bd98189614474565b9050614be860408301886149ca565b614bf56060830187614425565b614c0260808301866149ca565b614c0f60a0830185614407565b81810360c0830152614c218184614474565b905098975050505050505050565b60006020820190508181036000830152614c48816144de565b9050919050565b60006020820190508181036000830152614c6881614501565b9050919050565b60006020820190508181036000830152614c8881614524565b9050919050565b60006020820190508181036000830152614ca881614547565b9050919050565b60006020820190508181036000830152614cc88161456a565b9050919050565b60006020820190508181036000830152614ce88161458d565b9050919050565b60006020820190508181036000830152614d08816145b0565b9050919050565b60006020820190508181036000830152614d28816145d3565b9050919050565b60006020820190508181036000830152614d48816145f6565b9050919050565b60006020820190508181036000830152614d6881614619565b9050919050565b60006020820190508181036000830152614d888161463c565b9050919050565b60006020820190508181036000830152614da88161465f565b9050919050565b60006020820190508181036000830152614dc881614682565b9050919050565b60006020820190508181036000830152614de8816146a5565b9050919050565b60006020820190508181036000830152614e08816146c8565b9050919050565b60006020820190508181036000830152614e28816146eb565b9050919050565b60006020820190508181036000830152614e488161470e565b9050919050565b60006020820190508181036000830152614e6881614731565b9050919050565b60006020820190508181036000830152614e8881614754565b9050919050565b60006020820190508181036000830152614ea881614777565b9050919050565b60006020820190508181036000830152614ec88161479a565b9050919050565b60006020820190508181036000830152614ee8816147bd565b9050919050565b60006020820190508181036000830152614f08816147e0565b9050919050565b60006020820190508181036000830152614f2881614803565b9050919050565b60006020820190508181036000830152614f4881614826565b9050919050565b60006020820190508181036000830152614f6881614849565b9050919050565b60006020820190508181036000830152614f888161486c565b9050919050565b60006020820190508181036000830152614fa88161488f565b9050919050565b60006020820190508181036000830152614fc8816148b2565b9050919050565b60006020820190508181036000830152614fe8816148f8565b9050919050565b600060208201905081810360008301526150088161491b565b9050919050565b600060208201905081810360008301526150288161493e565b9050919050565b6000602082019050818103600083015261504881614984565b9050919050565b60006020820190508181036000830152615068816149a7565b9050919050565b600060208201905061508460008301846149ca565b92915050565b600060208201905061509f60008301846149f0565b92915050565b60006150af6150c0565b90506150bb8282615354565b919050565b6000604051905090565b600067ffffffffffffffff8211156150e5576150e461541c565b5b6150ee8261545f565b9050602081019050919050565b600067ffffffffffffffff8211156151165761511561541c565b5b61511f8261545f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006151748261528d565b915061517f8361528d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151b4576151b361538f565b5b828201905092915050565b60006151ca8261528d565b91506151d58361528d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561520e5761520d61538f565b5b828202905092915050565b60006152248261526d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006152af82615297565b9050919050565b82818337600083830152505050565b60005b838110156152e35780820151818401526020810190506152c8565b838111156152f2576000848401525b50505050565b60006153038261528d565b915060008214156153175761531661538f565b5b600182039050919050565b6000600282049050600182168061533a57607f821691505b6020821081141561534e5761534d6153be565b5b50919050565b61535d8261545f565b810181811067ffffffffffffffff8211171561537c5761537b61541c565b5b80604052505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f4163636573732044656e6965643a2043616c6c6572206973204e4f542050617560008201527f7365722100000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a20496e707574204c4c44206e6f7420726567697374657265642060008201527f776974682041746c617321000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67204163636573732044656e6965643a2043616c6c657220697360008201527f204e4f54204d494e544552210000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b7f52656c656173656420437265646974733a20436172626f6e206372656469747360008201527f2072656c656173656420666f722074686973204c4c4400000000000000000000602082015250565b7f4572726f723a20496e707574204c4c44206e6f7420726567697374657265642060008201527f7769746820526567697374727921000000000000000000000000000000000000602082015250565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b7f446f75626c65204d696e74696e673a20436172626f6e2043726564697473206d60008201527f696e74656420616c726561647920666f722074686973204c4c44000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4163636f756e743a205a65726f206f7220496e76616c6964206164647265737360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4163636573732044656e6965643a2043616c6c6572206973204e4f54204d616e60008201527f6167657221000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615e3f81615219565b8114615e4a57600080fd5b50565b615e568161522b565b8114615e6157600080fd5b50565b615e6d81615237565b8114615e7857600080fd5b50565b615e8481615241565b8114615e8f57600080fd5b50565b615e9b8161528d565b8114615ea657600080fd5b5056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b2f26e52a09b94d1b7095c19caa20c9b228027d5e72944bc9b54fbd06609068964736f6c63430008070033