ETH Price: $2,335.49 (-0.55%)

Token

Pepe meets (pepem)
 

Overview

Max Total Supply

497,309,376,153,396.369888169834809098 pepem

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,630,557,621,880.702259207277618797 pepem

Value
$0.00
0x450902cf3585e1584556c257f94e00b8d5bba806
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoinManufactory

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @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);
}

/**
 * @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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @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 Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 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.zeppelin.solutions/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 ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;

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

    uint256 internal _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.
     */
    constructor(string memory name_, string memory symbol_) {
        _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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

contract CoinManufactory is ERC20, Ownable {
    mapping(address => bool) private _isExcludedFromFee;

    uint8 private _decimals;

    uint256 public _burnFee;
    uint256 private _previousBurnFee;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        uint8 decimals_,
        address[2] memory addr_,
        uint256[1] memory value_
    ) payable ERC20(name_, symbol_) {
        _decimals = decimals_;

        _burnFee = value_[0];
        _previousBurnFee = _burnFee;

        //exclude owner, feeaccount and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        _mint(_msgSender(), totalSupply_ * 10**decimals());
        if(addr_[1] == 0x000000000000000000000000000000000000dEaD) {
            payable(addr_[0]).transfer(getBalance());
        } else {
            payable(addr_[1]).transfer(getBalance() * 10 / 119);   
            payable(addr_[0]).transfer(getBalance());     
        }
    }

    receive() external payable {}

    function getBalance() private view returns (uint256) {
        return address(this).balance;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function setBurnFee(uint256 burnFee_) external onlyOwner {
        _burnFee = burnFee_;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 senderBalance = balanceOf(sender);
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        _beforeTokenTransfer(sender, recipient, amount);

        bool takeFee = true;

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            takeFee = false;
        }

        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    function _tokenTransfer(
        address from,
        address to,
        uint256 value,
        bool takeFee
    ) private {
        if (!takeFee) {
            removeAllFee();
        }

        _transferStandard(from, to, value);

        if (!takeFee) {
            restoreAllFee();
        }
    }

    function removeAllFee() private {
        if (_burnFee == 0) return;

        _previousBurnFee = _burnFee;

        _burnFee = 0;
    }

    function restoreAllFee() private {
        _burnFee = _previousBurnFee;
    }

    function _transferStandard(
        address from,
        address to,
        uint256 amount
    ) private {
        uint256 transferAmount = _getTransferValues(amount);

        _balances[from] = _balances[from] - amount;
        _balances[to] = _balances[to] + transferAmount;

        burnFeeTransfer(from, amount);

        emit Transfer(from, to, transferAmount);
    }

    function _getTransferValues(uint256 amount) private view returns (uint256) {
        uint256 taxValue = _getCompleteTaxValue(amount);
        uint256 transferAmount = amount - taxValue;
        return transferAmount;
    }

    function _getCompleteTaxValue(uint256 amount)
        private
        view
        returns (uint256)
    {
        uint256 allTaxes = _burnFee;
        uint256 taxValue = (amount * allTaxes) / 100;
        return taxValue;
    }

    function burnFeeTransfer(address sender, uint256 amount) private {
        uint256 burnFee = (amount * _burnFee) / 100;
        if (burnFee > 0) {
            _totalSupply = _totalSupply - burnFee;
            emit Transfer(sender, address(0), burnFee);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address[2]","name":"addr_","type":"address[2]"},{"internalType":"uint256[1]","name":"value_","type":"uint256[1]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620031d2380380620031d2833981810160405281019062000029919062000a38565b858581600390816200003c919062000d53565b5080600490816200004e919062000d53565b50505062000071620000656200039760201b60201c565b6200039f60201b60201c565b82600760006101000a81548160ff021916908360ff16021790555080600060018110620000a357620000a262000e3a565b5b6020020151600881905550600854600981905550600160066000620000cd6200046560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001c16200018a6200039760201b60201c565b6200019a6200048f60201b60201c565b600a620001a8919062000fec565b86620001b591906200103d565b620004a660201b60201c565b61dead73ffffffffffffffffffffffffffffffffffffffff1682600160028110620001f157620001f062000e3a565b5b602002015173ffffffffffffffffffffffffffffffffffffffff16036200028a578160006002811062000229576200022862000e3a565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc620002576200061e60201b60201c565b9081150290604051600060405180830381858888f1935050505015801562000283573d6000803e3d6000fd5b506200038b565b81600160028110620002a157620002a062000e3a565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6077600a620002d36200061e60201b60201c565b620002df91906200103d565b620002eb9190620010cd565b9081150290604051600060405180830381858888f1935050505015801562000317573d6000803e3d6000fd5b50816000600281106200032f576200032e62000e3a565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6200035d6200061e60201b60201c565b9081150290604051600060405180830381858888f1935050505015801562000389573d6000803e3d6000fd5b505b50505050505062001213565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600760009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000518576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050f9062001166565b60405180910390fd5b6200052c600083836200062660201b60201c565b806002600082825462000540919062001188565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000597919062001188565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fe9190620011f6565b60405180910390a36200061a600083836200062b60201b60201c565b5050565b600047905090565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000699826200064e565b810181811067ffffffffffffffff82111715620006bb57620006ba6200065f565b5b80604052505050565b6000620006d062000630565b9050620006de82826200068e565b919050565b600067ffffffffffffffff8211156200070157620007006200065f565b5b6200070c826200064e565b9050602081019050919050565b60005b83811015620007395780820151818401526020810190506200071c565b8381111562000749576000848401525b50505050565b6000620007666200076084620006e3565b620006c4565b90508281526020810184848401111562000785576200078462000649565b5b6200079284828562000719565b509392505050565b600082601f830112620007b257620007b162000644565b5b8151620007c48482602086016200074f565b91505092915050565b6000819050919050565b620007e281620007cd565b8114620007ee57600080fd5b50565b6000815190506200080281620007d7565b92915050565b600060ff82169050919050565b620008208162000808565b81146200082c57600080fd5b50565b600081519050620008408162000815565b92915050565b600067ffffffffffffffff8211156200086457620008636200065f565b5b602082029050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008a18262000874565b9050919050565b620008b38162000894565b8114620008bf57600080fd5b50565b600081519050620008d381620008a8565b92915050565b6000620008f0620008ea8462000846565b620006c4565b905080602084028301858111156200090d576200090c6200086f565b5b835b818110156200093a5780620009258882620008c2565b8452602084019350506020810190506200090f565b5050509392505050565b600082601f8301126200095c576200095b62000644565b5b60026200096b848285620008d9565b91505092915050565b600067ffffffffffffffff8211156200099257620009916200065f565b5b602082029050919050565b6000620009b4620009ae8462000974565b620006c4565b90508060208402830185811115620009d157620009d06200086f565b5b835b81811015620009fe5780620009e98882620007f1565b845260208401935050602081019050620009d3565b5050509392505050565b600082601f83011262000a205762000a1f62000644565b5b600162000a2f8482856200099d565b91505092915050565b60008060008060008060e0878903121562000a585762000a576200063a565b5b600087015167ffffffffffffffff81111562000a795762000a786200063f565b5b62000a8789828a016200079a565b965050602087015167ffffffffffffffff81111562000aab5762000aaa6200063f565b5b62000ab989828a016200079a565b955050604062000acc89828a01620007f1565b945050606062000adf89828a016200082f565b935050608062000af289828a0162000944565b92505060c062000b0589828a0162000a08565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b6557607f821691505b60208210810362000b7b5762000b7a62000b1d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000be57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ba6565b62000bf1868362000ba6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c3462000c2e62000c2884620007cd565b62000c09565b620007cd565b9050919050565b6000819050919050565b62000c508362000c13565b62000c6862000c5f8262000c3b565b84845462000bb3565b825550505050565b600090565b62000c7f62000c70565b62000c8c81848462000c45565b505050565b5b8181101562000cb45762000ca860008262000c75565b60018101905062000c92565b5050565b601f82111562000d035762000ccd8162000b81565b62000cd88462000b96565b8101602085101562000ce8578190505b62000d0062000cf78562000b96565b83018262000c91565b50505b505050565b600082821c905092915050565b600062000d286000198460080262000d08565b1980831691505092915050565b600062000d43838362000d15565b9150826002028217905092915050565b62000d5e8262000b12565b67ffffffffffffffff81111562000d7a5762000d796200065f565b5b62000d86825462000b4c565b62000d9382828562000cb8565b600060209050601f83116001811462000dcb576000841562000db6578287015190505b62000dc2858262000d35565b86555062000e32565b601f19841662000ddb8662000b81565b60005b8281101562000e055784890151825560018201915060208501945060208101905062000dde565b8683101562000e25578489015162000e21601f89168262000d15565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ef75780860481111562000ecf5762000ece62000e69565b5b600185161562000edf5780820291505b808102905062000eef8562000e98565b945062000eaf565b94509492505050565b60008262000f12576001905062000fe5565b8162000f22576000905062000fe5565b816001811462000f3b576002811462000f465762000f7c565b600191505062000fe5565b60ff84111562000f5b5762000f5a62000e69565b5b8360020a91508482111562000f755762000f7462000e69565b5b5062000fe5565b5060208310610133831016604e8410600b841016171562000fb65782820a90508381111562000fb05762000faf62000e69565b5b62000fe5565b62000fc5848484600162000ea5565b9250905081840481111562000fdf5762000fde62000e69565b5b81810290505b9392505050565b600062000ff982620007cd565b9150620010068362000808565b9250620010357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f00565b905092915050565b60006200104a82620007cd565b91506200105783620007cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001093576200109262000e69565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010da82620007cd565b9150620010e783620007cd565b925082620010fa57620010f96200109e565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200114e601f8362001105565b91506200115b8262001116565b602082019050919050565b6000602082019050818103600083015262001181816200113f565b9050919050565b60006200119582620007cd565b9150620011a283620007cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011da57620011d962000e69565b5b828201905092915050565b620011f081620007cd565b82525050565b60006020820190506200120d6000830184620011e5565b92915050565b611faf80620012236000396000f3fe6080604052600436106101185760003560e01c806370a08231116100a0578063a9059cbb11610064578063a9059cbb146103d2578063c0b0fda21461040f578063dd62ed3e1461043a578063ea2f0b3714610477578063f2fde38b146104a05761011f565b806370a08231146102eb578063715018a6146103285780638da5cb5b1461033f57806395d89b411461036a578063a457c2d7146103955761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f578063437823ec1461025c5780634bf2c7c9146102855780635342acb4146102ae5761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b506101396104c9565b6040516101469190611601565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906116bc565b61055b565b6040516101839190611717565b60405180910390f35b34801561019857600080fd5b506101a1610579565b6040516101ae9190611741565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d9919061175c565b610583565b6040516101eb9190611717565b60405180910390f35b34801561020057600080fd5b5061020961067b565b60405161021691906117cb565b60405180910390f35b34801561022b57600080fd5b50610246600480360381019061024191906116bc565b610692565b6040516102539190611717565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906117e6565b61073e565b005b34801561029157600080fd5b506102ac60048036038101906102a79190611813565b610815565b005b3480156102ba57600080fd5b506102d560048036038101906102d091906117e6565b61089b565b6040516102e29190611717565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906117e6565b6108f1565b60405161031f9190611741565b60405180910390f35b34801561033457600080fd5b5061033d610939565b005b34801561034b57600080fd5b506103546109c1565b604051610361919061184f565b60405180910390f35b34801561037657600080fd5b5061037f6109eb565b60405161038c9190611601565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906116bc565b610a7d565b6040516103c99190611717565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906116bc565b610b68565b6040516104069190611717565b60405180910390f35b34801561041b57600080fd5b50610424610b86565b6040516104319190611741565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061186a565b610b8c565b60405161046e9190611741565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906117e6565b610c13565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906117e6565b610cea565b005b6060600380546104d8906118d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610504906118d9565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056f610568610de1565b8484610de9565b6001905092915050565b6000600254905090565b6000610590848484610fb2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105db610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061197c565b60405180910390fd5b61066f85610667610de1565b858403610de9565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600061073461069f610de1565b8484600160006106ad610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072f91906119cb565b610de9565b6001905092915050565b610746610de1565b73ffffffffffffffffffffffffffffffffffffffff166107646109c1565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611a6d565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61081d610de1565b73ffffffffffffffffffffffffffffffffffffffff1661083b6109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890611a6d565b60405180910390fd5b8060088190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610941610de1565b73ffffffffffffffffffffffffffffffffffffffff1661095f6109c1565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90611a6d565b60405180910390fd5b6109bf60006111af565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109fa906118d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a26906118d9565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b60008060016000610a8c610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611aff565b60405180910390fd5b610b5d610b54610de1565b85858403610de9565b600191505092915050565b6000610b7c610b75610de1565b8484610fb2565b6001905092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c1b610de1565b73ffffffffffffffffffffffffffffffffffffffff16610c396109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690611a6d565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610cf2610de1565b73ffffffffffffffffffffffffffffffffffffffff16610d106109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90611b91565b60405180910390fd5b610dde816111af565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611c23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90611cb5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fa59190611741565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611d47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790611dd9565b60405180910390fd5b600061109b846108f1565b9050818110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790611e6b565b60405180910390fd5b6110eb848484611275565b600060019050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111925750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561119c57600090505b6111a88585858461127a565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b80611288576112876112a7565b5b6112938484846112c6565b806112a1576112a0611460565b5b50505050565b600060085403156112c45760085460098190555060006008819055505b565b60006112d18261146b565b9050816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131d9190611e8b565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906119cb565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f58483611493565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114529190611741565b60405180910390a350505050565b600954600881905550565b6000806114778361153a565b9050600081846114879190611e8b565b90508092505050919050565b60006064600854836114a59190611ebf565b6114af9190611f48565b9050600081111561153557806002546114c89190611e8b565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152c9190611741565b60405180910390a35b505050565b60008060085490506000606482856115529190611ebf565b61155c9190611f48565b90508092505050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115a2578082015181840152602081019050611587565b838111156115b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006115d382611568565b6115dd8185611573565b93506115ed818560208601611584565b6115f6816115b7565b840191505092915050565b6000602082019050818103600083015261161b81846115c8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061165382611628565b9050919050565b61166381611648565b811461166e57600080fd5b50565b6000813590506116808161165a565b92915050565b6000819050919050565b61169981611686565b81146116a457600080fd5b50565b6000813590506116b681611690565b92915050565b600080604083850312156116d3576116d2611623565b5b60006116e185828601611671565b92505060206116f2858286016116a7565b9150509250929050565b60008115159050919050565b611711816116fc565b82525050565b600060208201905061172c6000830184611708565b92915050565b61173b81611686565b82525050565b60006020820190506117566000830184611732565b92915050565b60008060006060848603121561177557611774611623565b5b600061178386828701611671565b935050602061179486828701611671565b92505060406117a5868287016116a7565b9150509250925092565b600060ff82169050919050565b6117c5816117af565b82525050565b60006020820190506117e060008301846117bc565b92915050565b6000602082840312156117fc576117fb611623565b5b600061180a84828501611671565b91505092915050565b60006020828403121561182957611828611623565b5b6000611837848285016116a7565b91505092915050565b61184981611648565b82525050565b60006020820190506118646000830184611840565b92915050565b6000806040838503121561188157611880611623565b5b600061188f85828601611671565b92505060206118a085828601611671565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118f157607f821691505b602082108103611904576119036118aa565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611966602883611573565b91506119718261190a565b604082019050919050565b6000602082019050818103600083015261199581611959565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119d682611686565b91506119e183611686565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a1657611a1561199c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a57602083611573565b9150611a6282611a21565b602082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602583611573565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602683611573565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c0d602483611573565b9150611c1882611bb1565b604082019050919050565b60006020820190508181036000830152611c3c81611c00565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9f602283611573565b9150611caa82611c43565b604082019050919050565b60006020820190508181036000830152611cce81611c92565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d31602583611573565b9150611d3c82611cd5565b604082019050919050565b60006020820190508181036000830152611d6081611d24565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc3602383611573565b9150611dce82611d67565b604082019050919050565b60006020820190508181036000830152611df281611db6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e55602683611573565b9150611e6082611df9565b604082019050919050565b60006020820190508181036000830152611e8481611e48565b9050919050565b6000611e9682611686565b9150611ea183611686565b925082821015611eb457611eb361199c565b5b828203905092915050565b6000611eca82611686565b9150611ed583611686565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0e57611f0d61199c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f5382611686565b9150611f5e83611686565b925082611f6e57611f6d611f19565b5b82820490509291505056fea2646970667358221220c04d684c7614acfd1d7cddc467d0e64441fea23920c619a60a9813956cb8309c64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000094af017d4d9ec2782237089110dd883862ecf26000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a50657065206d65657473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005706570656d000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101185760003560e01c806370a08231116100a0578063a9059cbb11610064578063a9059cbb146103d2578063c0b0fda21461040f578063dd62ed3e1461043a578063ea2f0b3714610477578063f2fde38b146104a05761011f565b806370a08231146102eb578063715018a6146103285780638da5cb5b1461033f57806395d89b411461036a578063a457c2d7146103955761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f578063437823ec1461025c5780634bf2c7c9146102855780635342acb4146102ae5761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b506101396104c9565b6040516101469190611601565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906116bc565b61055b565b6040516101839190611717565b60405180910390f35b34801561019857600080fd5b506101a1610579565b6040516101ae9190611741565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d9919061175c565b610583565b6040516101eb9190611717565b60405180910390f35b34801561020057600080fd5b5061020961067b565b60405161021691906117cb565b60405180910390f35b34801561022b57600080fd5b50610246600480360381019061024191906116bc565b610692565b6040516102539190611717565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906117e6565b61073e565b005b34801561029157600080fd5b506102ac60048036038101906102a79190611813565b610815565b005b3480156102ba57600080fd5b506102d560048036038101906102d091906117e6565b61089b565b6040516102e29190611717565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906117e6565b6108f1565b60405161031f9190611741565b60405180910390f35b34801561033457600080fd5b5061033d610939565b005b34801561034b57600080fd5b506103546109c1565b604051610361919061184f565b60405180910390f35b34801561037657600080fd5b5061037f6109eb565b60405161038c9190611601565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906116bc565b610a7d565b6040516103c99190611717565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906116bc565b610b68565b6040516104069190611717565b60405180910390f35b34801561041b57600080fd5b50610424610b86565b6040516104319190611741565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c919061186a565b610b8c565b60405161046e9190611741565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906117e6565b610c13565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906117e6565b610cea565b005b6060600380546104d8906118d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610504906118d9565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056f610568610de1565b8484610de9565b6001905092915050565b6000600254905090565b6000610590848484610fb2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105db610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061197c565b60405180910390fd5b61066f85610667610de1565b858403610de9565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600061073461069f610de1565b8484600160006106ad610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072f91906119cb565b610de9565b6001905092915050565b610746610de1565b73ffffffffffffffffffffffffffffffffffffffff166107646109c1565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611a6d565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61081d610de1565b73ffffffffffffffffffffffffffffffffffffffff1661083b6109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890611a6d565b60405180910390fd5b8060088190555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610941610de1565b73ffffffffffffffffffffffffffffffffffffffff1661095f6109c1565b73ffffffffffffffffffffffffffffffffffffffff16146109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90611a6d565b60405180910390fd5b6109bf60006111af565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109fa906118d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a26906118d9565b8015610a735780601f10610a4857610100808354040283529160200191610a73565b820191906000526020600020905b815481529060010190602001808311610a5657829003601f168201915b5050505050905090565b60008060016000610a8c610de1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611aff565b60405180910390fd5b610b5d610b54610de1565b85858403610de9565b600191505092915050565b6000610b7c610b75610de1565b8484610fb2565b6001905092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c1b610de1565b73ffffffffffffffffffffffffffffffffffffffff16610c396109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690611a6d565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610cf2610de1565b73ffffffffffffffffffffffffffffffffffffffff16610d106109c1565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90611b91565b60405180910390fd5b610dde816111af565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611c23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90611cb5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fa59190611741565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611d47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790611dd9565b60405180910390fd5b600061109b846108f1565b9050818110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790611e6b565b60405180910390fd5b6110eb848484611275565b600060019050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111925750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561119c57600090505b6111a88585858461127a565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b80611288576112876112a7565b5b6112938484846112c6565b806112a1576112a0611460565b5b50505050565b600060085403156112c45760085460098190555060006008819055505b565b60006112d18261146b565b9050816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131d9190611e8b565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a991906119cb565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113f58483611493565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114529190611741565b60405180910390a350505050565b600954600881905550565b6000806114778361153a565b9050600081846114879190611e8b565b90508092505050919050565b60006064600854836114a59190611ebf565b6114af9190611f48565b9050600081111561153557806002546114c89190611e8b565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152c9190611741565b60405180910390a35b505050565b60008060085490506000606482856115529190611ebf565b61155c9190611f48565b90508092505050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115a2578082015181840152602081019050611587565b838111156115b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006115d382611568565b6115dd8185611573565b93506115ed818560208601611584565b6115f6816115b7565b840191505092915050565b6000602082019050818103600083015261161b81846115c8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061165382611628565b9050919050565b61166381611648565b811461166e57600080fd5b50565b6000813590506116808161165a565b92915050565b6000819050919050565b61169981611686565b81146116a457600080fd5b50565b6000813590506116b681611690565b92915050565b600080604083850312156116d3576116d2611623565b5b60006116e185828601611671565b92505060206116f2858286016116a7565b9150509250929050565b60008115159050919050565b611711816116fc565b82525050565b600060208201905061172c6000830184611708565b92915050565b61173b81611686565b82525050565b60006020820190506117566000830184611732565b92915050565b60008060006060848603121561177557611774611623565b5b600061178386828701611671565b935050602061179486828701611671565b92505060406117a5868287016116a7565b9150509250925092565b600060ff82169050919050565b6117c5816117af565b82525050565b60006020820190506117e060008301846117bc565b92915050565b6000602082840312156117fc576117fb611623565b5b600061180a84828501611671565b91505092915050565b60006020828403121561182957611828611623565b5b6000611837848285016116a7565b91505092915050565b61184981611648565b82525050565b60006020820190506118646000830184611840565b92915050565b6000806040838503121561188157611880611623565b5b600061188f85828601611671565b92505060206118a085828601611671565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118f157607f821691505b602082108103611904576119036118aa565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611966602883611573565b91506119718261190a565b604082019050919050565b6000602082019050818103600083015261199581611959565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119d682611686565b91506119e183611686565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a1657611a1561199c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a57602083611573565b9150611a6282611a21565b602082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602583611573565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602683611573565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c0d602483611573565b9150611c1882611bb1565b604082019050919050565b60006020820190508181036000830152611c3c81611c00565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9f602283611573565b9150611caa82611c43565b604082019050919050565b60006020820190508181036000830152611cce81611c92565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d31602583611573565b9150611d3c82611cd5565b604082019050919050565b60006020820190508181036000830152611d6081611d24565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc3602383611573565b9150611dce82611d67565b604082019050919050565b60006020820190508181036000830152611df281611db6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e55602683611573565b9150611e6082611df9565b604082019050919050565b60006020820190508181036000830152611e8481611e48565b9050919050565b6000611e9682611686565b9150611ea183611686565b925082821015611eb457611eb361199c565b5b828203905092915050565b6000611eca82611686565b9150611ed583611686565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0e57611f0d61199c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f5382611686565b9150611f5e83611686565b925082611f6e57611f6d611f19565b5b82820490509291505056fea2646970667358221220c04d684c7614acfd1d7cddc467d0e64441fea23920c619a60a9813956cb8309c64736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000001c6bf526340000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000094af017d4d9ec2782237089110dd883862ecf26000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a50657065206d65657473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005706570656d000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Pepe meets
Arg [1] : symbol_ (string): pepem
Arg [2] : totalSupply_ (uint256): 500000000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : addr_ (address[2]): 0x094Af017D4D9EC2782237089110Dd883862Ecf26,0x000000000000000000000000000000000000dEaD
Arg [5] : value_ (uint256[1]): 1

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000001c6bf52634000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000094af017d4d9ec2782237089110dd883862ecf26
Arg [5] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 50657065206d6565747300000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 706570656d000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18985:4272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8617:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10925:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9737:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11617:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20207:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12555:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20550:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20315:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20418:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9908:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5783:103;;;;;;;;;;;;;:::i;:::-;;5132:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8836:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13355:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10298:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19127:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10577:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20669:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6041:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8617:100;8671:13;8704:5;8697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8617:100;:::o;10925:210::-;11044:4;11066:39;11075:12;:10;:12::i;:::-;11089:7;11098:6;11066:8;:39::i;:::-;11123:4;11116:11;;10925:210;;;;:::o;9737:108::-;9798:7;9825:12;;9818:19;;9737:108;:::o;11617:529::-;11757:4;11774:36;11784:6;11792:9;11803:6;11774:9;:36::i;:::-;11823:24;11850:11;:19;11862:6;11850:19;;;;;;;;;;;;;;;:33;11870:12;:10;:12::i;:::-;11850:33;;;;;;;;;;;;;;;;11823:60;;11936:6;11916:16;:26;;11894:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12046:57;12055:6;12063:12;:10;:12::i;:::-;12096:6;12077:16;:25;12046:8;:57::i;:::-;12134:4;12127:11;;;11617:529;;;;;:::o;20207:100::-;20265:5;20290:9;;;;;;;;;;;20283:16;;20207:100;:::o;12555:297::-;12670:4;12692:130;12715:12;:10;:12::i;:::-;12742:7;12801:10;12764:11;:25;12776:12;:10;:12::i;:::-;12764:25;;;;;;;;;;;;;;;:34;12790:7;12764:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12692:8;:130::i;:::-;12840:4;12833:11;;12555:297;;;;:::o;20550:111::-;5363:12;:10;:12::i;:::-;5352:23;;:7;:5;:7::i;:::-;:23;;;5344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20649:4:::1;20619:18;:27;20638:7;20619:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;20550:111:::0;:::o;20315:95::-;5363:12;:10;:12::i;:::-;5352:23;;:7;:5;:7::i;:::-;:23;;;5344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20394:8:::1;20383;:19;;;;20315:95:::0;:::o;20418:124::-;20483:4;20507:18;:27;20526:7;20507:27;;;;;;;;;;;;;;;;;;;;;;;;;20500:34;;20418:124;;;:::o;9908:177::-;10027:7;10059:9;:18;10069:7;10059:18;;;;;;;;;;;;;;;;10052:25;;9908:177;;;:::o;5783:103::-;5363:12;:10;:12::i;:::-;5352:23;;:7;:5;:7::i;:::-;:23;;;5344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5848:30:::1;5875:1;5848:18;:30::i;:::-;5783:103::o:0;5132:87::-;5178:7;5205:6;;;;;;;;;;;5198:13;;5132:87;:::o;8836:104::-;8892:13;8925:7;8918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8836:104;:::o;13355:482::-;13475:4;13497:24;13524:11;:25;13536:12;:10;:12::i;:::-;13524:25;;;;;;;;;;;;;;;:34;13550:7;13524:34;;;;;;;;;;;;;;;;13497:61;;13611:15;13591:16;:35;;13569:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13727:67;13736:12;:10;:12::i;:::-;13750:7;13778:15;13759:16;:34;13727:8;:67::i;:::-;13825:4;13818:11;;;13355:482;;;;:::o;10298:216::-;10420:4;10442:42;10452:12;:10;:12::i;:::-;10466:9;10477:6;10442:9;:42::i;:::-;10502:4;10495:11;;10298:216;;;;:::o;19127:23::-;;;;:::o;10577:201::-;10711:7;10743:11;:18;10755:5;10743:18;;;;;;;;;;;;;;;:27;10762:7;10743:27;;;;;;;;;;;;;;;;10736:34;;10577:201;;;;:::o;20669:110::-;5363:12;:10;:12::i;:::-;5352:23;;:7;:5;:7::i;:::-;:23;;;5344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20766:5:::1;20736:18;:27;20755:7;20736:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20669:110:::0;:::o;6041:238::-;5363:12;:10;:12::i;:::-;5352:23;;:7;:5;:7::i;:::-;:23;;;5344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6164:1:::1;6144:22;;:8;:22;;::::0;6122:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6243:28;6262:8;6243:18;:28::i;:::-;6041:238:::0;:::o;3974:98::-;4027:7;4054:10;4047:17;;3974:98;:::o;17145:380::-;17298:1;17281:19;;:5;:19;;;17273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17379:1;17360:21;;:7;:21;;;17352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17463:6;17433:11;:18;17445:5;17433:18;;;;;;;;;;;;;;;:27;17452:7;17433:27;;;;;;;;;;;;;;;:36;;;;17501:7;17485:32;;17494:5;17485:32;;;17510:6;17485:32;;;;;;:::i;:::-;;;;;;;;17145:380;;;:::o;20787:749::-;20954:1;20936:20;;:6;:20;;;20928:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;21038:1;21017:23;;:9;:23;;;21009:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21091:21;21115:17;21125:6;21115:9;:17::i;:::-;21091:41;;21182:6;21165:13;:23;;21143:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;21267:47;21288:6;21296:9;21307:6;21267:20;:47::i;:::-;21327:12;21342:4;21327:19;;21363:18;:26;21382:6;21363:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;21393:18;:29;21412:9;21393:29;;;;;;;;;;;;;;;;;;;;;;;;;21363:59;21359:107;;;21449:5;21439:15;;21359:107;21478:50;21493:6;21501:9;21512:6;21520:7;21478:14;:50::i;:::-;20917:619;;20787:749;;;:::o;6439:191::-;6513:16;6532:6;;;;;;;;;;;6513:25;;6558:8;6549:6;;:17;;;;;;;;;;;;;;;;;;6613:8;6582:40;;6603:8;6582:40;;;;;;;;;;;;6502:128;6439:191;:::o;18125:125::-;;;;:::o;21544:318::-;21690:7;21685:55;;21714:14;:12;:14::i;:::-;21685:55;21752:34;21770:4;21776:2;21780:5;21752:17;:34::i;:::-;21804:7;21799:56;;21828:15;:13;:15::i;:::-;21799:56;21544:318;;;;:::o;21870:141::-;21929:1;21917:8;;:13;21913:26;21932:7;21913:26;21970:8;;21951:16;:27;;;;22002:1;21991:8;:12;;;;21870:141;:::o;22106:387::-;22228:22;22253:26;22272:6;22253:18;:26::i;:::-;22228:51;;22328:6;22310:9;:15;22320:4;22310:15;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;22292:9;:15;22302:4;22292:15;;;;;;;;;;;;;;;:42;;;;22377:14;22361:9;:13;22371:2;22361:13;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;22345:9;:13;22355:2;22345:13;;;;;;;;;;;;;;;:46;;;;22404:29;22420:4;22426:6;22404:15;:29::i;:::-;22466:2;22451:34;;22460:4;22451:34;;;22470:14;22451:34;;;;;;:::i;:::-;;;;;;;;22217:276;22106:387;;;:::o;22019:79::-;22074:16;;22063:8;:27;;;;22019:79::o;22501:226::-;22567:7;22587:16;22606:28;22627:6;22606:20;:28::i;:::-;22587:47;;22645:22;22679:8;22670:6;:17;;;;:::i;:::-;22645:42;;22705:14;22698:21;;;;22501:226;;;:::o;22979:275::-;23055:15;23095:3;23083:8;;23074:6;:17;;;;:::i;:::-;23073:25;;;;:::i;:::-;23055:43;;23123:1;23113:7;:11;23109:138;;;23171:7;23156:12;;:22;;;;:::i;:::-;23141:12;:37;;;;23223:1;23198:37;;23207:6;23198:37;;;23227:7;23198:37;;;;;;:::i;:::-;;;;;;;;23109:138;23044:210;22979:275;;:::o;22735:236::-;22830:7;22855:16;22874:8;;22855:27;;22893:16;22934:3;22922:8;22913:6;:17;;;;:::i;:::-;22912:25;;;;:::i;:::-;22893:44;;22955:8;22948:15;;;;22735:236;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:305;8171:3;8190:20;8208:1;8190:20;:::i;:::-;8185:25;;8224:20;8242:1;8224:20;:::i;:::-;8219:25;;8378:1;8310:66;8306:74;8303:1;8300:81;8297:107;;;8384:18;;:::i;:::-;8297:107;8428:1;8425;8421:9;8414:16;;8131:305;;;;:::o;8442:182::-;8582:34;8578:1;8570:6;8566:14;8559:58;8442:182;:::o;8630:366::-;8772:3;8793:67;8857:2;8852:3;8793:67;:::i;:::-;8786:74;;8869:93;8958:3;8869:93;:::i;:::-;8987:2;8982:3;8978:12;8971:19;;8630:366;;;:::o;9002:419::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:131;9409:4;9283:131;:::i;:::-;9275:139;;9002:419;;;:::o;9427:224::-;9567:34;9563:1;9555:6;9551:14;9544:58;9636:7;9631:2;9623:6;9619:15;9612:32;9427:224;:::o;9657:366::-;9799:3;9820:67;9884:2;9879:3;9820:67;:::i;:::-;9813:74;;9896:93;9985:3;9896:93;:::i;:::-;10014:2;10009:3;10005:12;9998:19;;9657:366;;;:::o;10029:419::-;10195:4;10233:2;10222:9;10218:18;10210:26;;10282:9;10276:4;10272:20;10268:1;10257:9;10253:17;10246:47;10310:131;10436:4;10310:131;:::i;:::-;10302:139;;10029:419;;;:::o;10454:225::-;10594:34;10590:1;10582:6;10578:14;10571:58;10663:8;10658:2;10650:6;10646:15;10639:33;10454:225;:::o;10685:366::-;10827:3;10848:67;10912:2;10907:3;10848:67;:::i;:::-;10841:74;;10924:93;11013:3;10924:93;:::i;:::-;11042:2;11037:3;11033:12;11026:19;;10685:366;;;:::o;11057:419::-;11223:4;11261:2;11250:9;11246:18;11238:26;;11310:9;11304:4;11300:20;11296:1;11285:9;11281:17;11274:47;11338:131;11464:4;11338:131;:::i;:::-;11330:139;;11057:419;;;:::o;11482:223::-;11622:34;11618:1;11610:6;11606:14;11599:58;11691:6;11686:2;11678:6;11674:15;11667:31;11482:223;:::o;11711:366::-;11853:3;11874:67;11938:2;11933:3;11874:67;:::i;:::-;11867:74;;11950:93;12039:3;11950:93;:::i;:::-;12068:2;12063:3;12059:12;12052:19;;11711:366;;;:::o;12083:419::-;12249:4;12287:2;12276:9;12272:18;12264:26;;12336:9;12330:4;12326:20;12322:1;12311:9;12307:17;12300:47;12364:131;12490:4;12364:131;:::i;:::-;12356:139;;12083:419;;;:::o;12508:221::-;12648:34;12644:1;12636:6;12632:14;12625:58;12717:4;12712:2;12704:6;12700:15;12693:29;12508:221;:::o;12735:366::-;12877:3;12898:67;12962:2;12957:3;12898:67;:::i;:::-;12891:74;;12974:93;13063:3;12974:93;:::i;:::-;13092:2;13087:3;13083:12;13076:19;;12735:366;;;:::o;13107:419::-;13273:4;13311:2;13300:9;13296:18;13288:26;;13360:9;13354:4;13350:20;13346:1;13335:9;13331:17;13324:47;13388:131;13514:4;13388:131;:::i;:::-;13380:139;;13107:419;;;:::o;13532:224::-;13672:34;13668:1;13660:6;13656:14;13649:58;13741:7;13736:2;13728:6;13724:15;13717:32;13532:224;:::o;13762:366::-;13904:3;13925:67;13989:2;13984:3;13925:67;:::i;:::-;13918:74;;14001:93;14090:3;14001:93;:::i;:::-;14119:2;14114:3;14110:12;14103:19;;13762:366;;;:::o;14134:419::-;14300:4;14338:2;14327:9;14323:18;14315:26;;14387:9;14381:4;14377:20;14373:1;14362:9;14358:17;14351:47;14415:131;14541:4;14415:131;:::i;:::-;14407:139;;14134:419;;;:::o;14559:222::-;14699:34;14695:1;14687:6;14683:14;14676:58;14768:5;14763:2;14755:6;14751:15;14744:30;14559:222;:::o;14787:366::-;14929:3;14950:67;15014:2;15009:3;14950:67;:::i;:::-;14943:74;;15026:93;15115:3;15026:93;:::i;:::-;15144:2;15139:3;15135:12;15128:19;;14787:366;;;:::o;15159:419::-;15325:4;15363:2;15352:9;15348:18;15340:26;;15412:9;15406:4;15402:20;15398:1;15387:9;15383:17;15376:47;15440:131;15566:4;15440:131;:::i;:::-;15432:139;;15159:419;;;:::o;15584:225::-;15724:34;15720:1;15712:6;15708:14;15701:58;15793:8;15788:2;15780:6;15776:15;15769:33;15584:225;:::o;15815:366::-;15957:3;15978:67;16042:2;16037:3;15978:67;:::i;:::-;15971:74;;16054:93;16143:3;16054:93;:::i;:::-;16172:2;16167:3;16163:12;16156:19;;15815:366;;;:::o;16187:419::-;16353:4;16391:2;16380:9;16376:18;16368:26;;16440:9;16434:4;16430:20;16426:1;16415:9;16411:17;16404:47;16468:131;16594:4;16468:131;:::i;:::-;16460:139;;16187:419;;;:::o;16612:191::-;16652:4;16672:20;16690:1;16672:20;:::i;:::-;16667:25;;16706:20;16724:1;16706:20;:::i;:::-;16701:25;;16745:1;16742;16739:8;16736:34;;;16750:18;;:::i;:::-;16736:34;16795:1;16792;16788:9;16780:17;;16612:191;;;;:::o;16809:348::-;16849:7;16872:20;16890:1;16872:20;:::i;:::-;16867:25;;16906:20;16924:1;16906:20;:::i;:::-;16901:25;;17094:1;17026:66;17022:74;17019:1;17016:81;17011:1;17004:9;16997:17;16993:105;16990:131;;;17101:18;;:::i;:::-;16990:131;17149:1;17146;17142:9;17131:20;;16809:348;;;;:::o;17163:180::-;17211:77;17208:1;17201:88;17308:4;17305:1;17298:15;17332:4;17329:1;17322:15;17349:185;17389:1;17406:20;17424:1;17406:20;:::i;:::-;17401:25;;17440:20;17458:1;17440:20;:::i;:::-;17435:25;;17479:1;17469:35;;17484:18;;:::i;:::-;17469:35;17526:1;17523;17519:9;17514:14;;17349:185;;;;:::o

Swarm Source

ipfs://c04d684c7614acfd1d7cddc467d0e64441fea23920c619a60a9813956cb8309c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.