ETH Price: $3,412.18 (-1.47%)
Gas: 9 Gwei

Token

LePEPE (LePEPE)
 

Overview

Max Total Supply

1,000,000 LePEPE

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,499.973998748272073295 LePEPE

Value
$0.00
0x87cace43b86183d636f0941cd2a3352eeb22d226
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:
LebronPepe

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-24
*/

// SPDX-License-Identifier: MIT

// Telegram https://t.me/lepepecoin
// Twitter https://twitter.com/LePepe_Coin
// Website https://lepepe.space/

 
pragma solidity ^0.8.0;
 
/**
 * @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;
    }
}

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 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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
 
/**
 * @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);
}
 
// File: @openzeppelin/contracts/utils/Context.sol
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.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.
 */

 
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
 
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
 
pragma solidity ^0.8.0;
 
 
 
/**
 * @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) public _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.
     */
    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:
     *
     * - `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;
        }
        _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;
        _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 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 {}
}
 
contract LebronPepe is ERC20, Ownable {
    constructor() ERC20("LePEPE", "LePEPE"){
        _mint(msg.sender, 1000000*10**18);
    }
 
    

    uint256 public maxWalletSize = 100000*10**18;

 

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(_balances[to] + amount <=  maxWalletSize, "Max Wallet limit");


 
        _beforeTokenTransfer(from, to, amount);
 
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;
 
        emit Transfer(from, to, amount);
 
        _afterTokenTransfer(from, to, amount);
    }

    function changeMaxWallet(uint256 newMax) public onlyOwner {
        maxWalletSize = newMax;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","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":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

608060405269152d02c7e14af68000006006553480156200001f57600080fd5b506040518060400160405280600681526020017f4c655045504500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c655045504500000000000000000000000000000000000000000000000000008152508160039080519060200190620000a492919062000353565b508060049080519060200190620000bd92919062000353565b505050620000e0620000d46200010260201b60201c565b6200010a60201b60201c565b620000fc3369d3c21bcecceda1000000620001d060201b60201c565b620005a1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023a9062000456565b60405180910390fd5b62000257600083836200034960201b60201c565b80600260008282546200026b9190620004a6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c29190620004a6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000329919062000478565b60405180910390a362000345600083836200034e60201b60201c565b5050565b505050565b505050565b82805462000361906200050d565b90600052602060002090601f016020900481019282620003855760008555620003d1565b82601f10620003a057805160ff1916838001178555620003d1565b82800160010185558215620003d1579182015b82811115620003d0578251825591602001919060010190620003b3565b5b509050620003e09190620003e4565b5090565b5b80821115620003ff576000816000905550600101620003e5565b5090565b600062000412601f8362000495565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004508162000503565b82525050565b60006020820190508181036000830152620004718162000403565b9050919050565b60006020820190506200048f600083018462000445565b92915050565b600082825260208201905092915050565b6000620004b38262000503565b9150620004c08362000503565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f857620004f762000543565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200052657607f821691505b602082108114156200053d576200053c62000572565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61176c80620005b16000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102bc578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b146102805780638f3fa8601461029e5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780636ebcf607146102165761010b565b806306fdde0314610110578063095ea7b31461012e5780630b006d601461015e57806318160ddd1461017a575b600080fd5b610118610386565b60405161012591906113d5565b60405180910390f35b61014860048036038101906101439190610f3b565b610418565b60405161015591906113ba565b60405180910390f35b61017860048036038101906101739190610f77565b61043b565b005b61018261044d565b60405161018f9190611537565b60405180910390f35b6101b260048036038101906101ad9190610eec565b610457565b6040516101bf91906113ba565b60405180910390f35b6101d0610486565b6040516101dd9190611552565b60405180910390f35b61020060048036038101906101fb9190610f3b565b61048f565b60405161020d91906113ba565b60405180910390f35b610230600480360381019061022b9190610e87565b6104c6565b60405161023d9190611537565b60405180910390f35b610260600480360381019061025b9190610e87565b6104de565b60405161026d9190611537565b60405180910390f35b61027e610526565b005b61028861053a565b604051610295919061139f565b60405180910390f35b6102a6610564565b6040516102b39190611537565b60405180910390f35b6102c461056a565b6040516102d191906113d5565b60405180910390f35b6102f460048036038101906102ef9190610f3b565b6105fc565b60405161030191906113ba565b60405180910390f35b610324600480360381019061031f9190610f3b565b610673565b60405161033191906113ba565b60405180910390f35b610354600480360381019061034f9190610eb0565b610696565b6040516103619190611537565b60405180910390f35b610384600480360381019061037f9190610e87565b61071d565b005b60606003805461039590611667565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611667565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107a1565b90506104308185856107a9565b600191505092915050565b610443610974565b8060068190555050565b6000600254905090565b6000806104626107a1565b905061046f8582856109f2565b61047a858585610a7e565b60019150509392505050565b60006012905090565b60008061049a6107a1565b90506104bb8185856104ac8589610696565b6104b69190611589565b6107a9565b600191505092915050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61052e610974565b6105386000610d8d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461057990611667565b80601f01602080910402602001604051908101604052809291908181526020018280546105a590611667565b80156105f25780601f106105c7576101008083540402835291602001916105f2565b820191906000526020600020905b8154815290600101906020018083116105d557829003601f168201915b5050505050905090565b6000806106076107a1565b905060006106158286610696565b90508381101561065a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065190611517565b60405180910390fd5b61066782868684036107a9565b60019250505092915050565b60008061067e6107a1565b905061068b818585610a7e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610725610974565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078c90611417565b60405180910390fd5b61079e81610d8d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610810906114f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611437565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109679190611537565b60405180910390a3505050565b61097c6107a1565b73ffffffffffffffffffffffffffffffffffffffff1661099a61053a565b73ffffffffffffffffffffffffffffffffffffffff16146109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906114b7565b60405180910390fd5b565b60006109fe8484610696565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a785781811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190611477565b60405180910390fd5b610a7784848484036107a9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906114d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906113f7565b60405180910390fd5b600654816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bab9190611589565b1115610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611457565b60405180910390fd5b610bf7838383610e53565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490611497565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d109190611589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d749190611537565b60405180910390a3610d87848484610e58565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610e6c81611708565b92915050565b600081359050610e818161171f565b92915050565b600060208284031215610e9957600080fd5b6000610ea784828501610e5d565b91505092915050565b60008060408385031215610ec357600080fd5b6000610ed185828601610e5d565b9250506020610ee285828601610e5d565b9150509250929050565b600080600060608486031215610f0157600080fd5b6000610f0f86828701610e5d565b9350506020610f2086828701610e5d565b9250506040610f3186828701610e72565b9150509250925092565b60008060408385031215610f4e57600080fd5b6000610f5c85828601610e5d565b9250506020610f6d85828601610e72565b9150509250929050565b600060208284031215610f8957600080fd5b6000610f9784828501610e72565b91505092915050565b610fa9816115df565b82525050565b610fb8816115f1565b82525050565b6000610fc98261156d565b610fd38185611578565b9350610fe3818560208601611634565b610fec816116f7565b840191505092915050565b6000611004602383611578565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061106a602683611578565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110d0602283611578565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611136601083611578565b91507f4d61782057616c6c6574206c696d6974000000000000000000000000000000006000830152602082019050919050565b6000611176601d83611578565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006111b6602683611578565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121c602083611578565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061125c602583611578565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112c2602483611578565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611328602583611578565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61138a8161161d565b82525050565b61139981611627565b82525050565b60006020820190506113b46000830184610fa0565b92915050565b60006020820190506113cf6000830184610faf565b92915050565b600060208201905081810360008301526113ef8184610fbe565b905092915050565b6000602082019050818103600083015261141081610ff7565b9050919050565b600060208201905081810360008301526114308161105d565b9050919050565b60006020820190508181036000830152611450816110c3565b9050919050565b6000602082019050818103600083015261147081611129565b9050919050565b6000602082019050818103600083015261149081611169565b9050919050565b600060208201905081810360008301526114b0816111a9565b9050919050565b600060208201905081810360008301526114d08161120f565b9050919050565b600060208201905081810360008301526114f08161124f565b9050919050565b60006020820190508181036000830152611510816112b5565b9050919050565b600060208201905081810360008301526115308161131b565b9050919050565b600060208201905061154c6000830184611381565b92915050565b60006020820190506115676000830184611390565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115948261161d565b915061159f8361161d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115d4576115d3611699565b5b828201905092915050565b60006115ea826115fd565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611652578082015181840152602081019050611637565b83811115611661576000848401525b50505050565b6000600282049050600182168061167f57607f821691505b60208210811415611693576116926116c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611711816115df565b811461171c57600080fd5b50565b6117288161161d565b811461173357600080fd5b5056fea26469706673582212201d206941ae07d1209da49f66237a4ff93bc251f37872a042b173a34cf49dd9f164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102bc578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b146102805780638f3fa8601461029e5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e65780636ebcf607146102165761010b565b806306fdde0314610110578063095ea7b31461012e5780630b006d601461015e57806318160ddd1461017a575b600080fd5b610118610386565b60405161012591906113d5565b60405180910390f35b61014860048036038101906101439190610f3b565b610418565b60405161015591906113ba565b60405180910390f35b61017860048036038101906101739190610f77565b61043b565b005b61018261044d565b60405161018f9190611537565b60405180910390f35b6101b260048036038101906101ad9190610eec565b610457565b6040516101bf91906113ba565b60405180910390f35b6101d0610486565b6040516101dd9190611552565b60405180910390f35b61020060048036038101906101fb9190610f3b565b61048f565b60405161020d91906113ba565b60405180910390f35b610230600480360381019061022b9190610e87565b6104c6565b60405161023d9190611537565b60405180910390f35b610260600480360381019061025b9190610e87565b6104de565b60405161026d9190611537565b60405180910390f35b61027e610526565b005b61028861053a565b604051610295919061139f565b60405180910390f35b6102a6610564565b6040516102b39190611537565b60405180910390f35b6102c461056a565b6040516102d191906113d5565b60405180910390f35b6102f460048036038101906102ef9190610f3b565b6105fc565b60405161030191906113ba565b60405180910390f35b610324600480360381019061031f9190610f3b565b610673565b60405161033191906113ba565b60405180910390f35b610354600480360381019061034f9190610eb0565b610696565b6040516103619190611537565b60405180910390f35b610384600480360381019061037f9190610e87565b61071d565b005b60606003805461039590611667565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611667565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107a1565b90506104308185856107a9565b600191505092915050565b610443610974565b8060068190555050565b6000600254905090565b6000806104626107a1565b905061046f8582856109f2565b61047a858585610a7e565b60019150509392505050565b60006012905090565b60008061049a6107a1565b90506104bb8185856104ac8589610696565b6104b69190611589565b6107a9565b600191505092915050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61052e610974565b6105386000610d8d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b60606004805461057990611667565b80601f01602080910402602001604051908101604052809291908181526020018280546105a590611667565b80156105f25780601f106105c7576101008083540402835291602001916105f2565b820191906000526020600020905b8154815290600101906020018083116105d557829003601f168201915b5050505050905090565b6000806106076107a1565b905060006106158286610696565b90508381101561065a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065190611517565b60405180910390fd5b61066782868684036107a9565b60019250505092915050565b60008061067e6107a1565b905061068b818585610a7e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610725610974565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078c90611417565b60405180910390fd5b61079e81610d8d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610810906114f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611437565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109679190611537565b60405180910390a3505050565b61097c6107a1565b73ffffffffffffffffffffffffffffffffffffffff1661099a61053a565b73ffffffffffffffffffffffffffffffffffffffff16146109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906114b7565b60405180910390fd5b565b60006109fe8484610696565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a785781811015610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6190611477565b60405180910390fd5b610a7784848484036107a9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906114d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906113f7565b60405180910390fd5b600654816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bab9190611589565b1115610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611457565b60405180910390fd5b610bf7838383610e53565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490611497565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d109190611589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d749190611537565b60405180910390a3610d87848484610e58565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610e6c81611708565b92915050565b600081359050610e818161171f565b92915050565b600060208284031215610e9957600080fd5b6000610ea784828501610e5d565b91505092915050565b60008060408385031215610ec357600080fd5b6000610ed185828601610e5d565b9250506020610ee285828601610e5d565b9150509250929050565b600080600060608486031215610f0157600080fd5b6000610f0f86828701610e5d565b9350506020610f2086828701610e5d565b9250506040610f3186828701610e72565b9150509250925092565b60008060408385031215610f4e57600080fd5b6000610f5c85828601610e5d565b9250506020610f6d85828601610e72565b9150509250929050565b600060208284031215610f8957600080fd5b6000610f9784828501610e72565b91505092915050565b610fa9816115df565b82525050565b610fb8816115f1565b82525050565b6000610fc98261156d565b610fd38185611578565b9350610fe3818560208601611634565b610fec816116f7565b840191505092915050565b6000611004602383611578565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061106a602683611578565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110d0602283611578565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611136601083611578565b91507f4d61782057616c6c6574206c696d6974000000000000000000000000000000006000830152602082019050919050565b6000611176601d83611578565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006111b6602683611578565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121c602083611578565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061125c602583611578565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112c2602483611578565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611328602583611578565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61138a8161161d565b82525050565b61139981611627565b82525050565b60006020820190506113b46000830184610fa0565b92915050565b60006020820190506113cf6000830184610faf565b92915050565b600060208201905081810360008301526113ef8184610fbe565b905092915050565b6000602082019050818103600083015261141081610ff7565b9050919050565b600060208201905081810360008301526114308161105d565b9050919050565b60006020820190508181036000830152611450816110c3565b9050919050565b6000602082019050818103600083015261147081611129565b9050919050565b6000602082019050818103600083015261149081611169565b9050919050565b600060208201905081810360008301526114b0816111a9565b9050919050565b600060208201905081810360008301526114d08161120f565b9050919050565b600060208201905081810360008301526114f08161124f565b9050919050565b60006020820190508181036000830152611510816112b5565b9050919050565b600060208201905081810360008301526115308161131b565b9050919050565b600060208201905061154c6000830184611381565b92915050565b60006020820190506115676000830184611390565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115948261161d565b915061159f8361161d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115d4576115d3611699565b5b828201905092915050565b60006115ea826115fd565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611652578082015181840152602081019050611637565b83811115611661576000848401525b50505050565b6000600282049050600182168061167f57607f821691505b60208210811415611693576116926116c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611711816115df565b811461171c57600080fd5b50565b6117288161161d565b811461173357600080fd5b5056fea26469706673582212201d206941ae07d1209da49f66237a4ff93bc251f37872a042b173a34cf49dd9f164736f6c63430008000033

Deployed Bytecode Sourcemap

20004:1085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9187:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11545:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20983:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10310:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12327:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10151:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13032:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8460:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10482:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2155:103;;;:::i;:::-;;1507:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20157:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9407:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13774:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10816:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11073:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2413:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9187:100;9241:13;9274:5;9267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9187:100;:::o;11545:201::-;11628:4;11645:13;11661:12;:10;:12::i;:::-;11645:28;;11684:32;11693:5;11700:7;11709:6;11684:8;:32::i;:::-;11734:4;11727:11;;;11545:201;;;;:::o;20983:99::-;1393:13;:11;:13::i;:::-;21068:6:::1;21052:13;:22;;;;20983:99:::0;:::o;10310:108::-;10371:7;10398:12;;10391:19;;10310:108;:::o;12327:295::-;12458:4;12475:15;12493:12;:10;:12::i;:::-;12475:30;;12516:38;12532:4;12538:7;12547:6;12516:15;:38::i;:::-;12565:27;12575:4;12581:2;12585:6;12565:9;:27::i;:::-;12610:4;12603:11;;;12327:295;;;;;:::o;10151:93::-;10209:5;10234:2;10227:9;;10151:93;:::o;13032:238::-;13120:4;13137:13;13153:12;:10;:12::i;:::-;13137:28;;13176:64;13185:5;13192:7;13229:10;13201:25;13211:5;13218:7;13201:9;:25::i;:::-;:38;;;;:::i;:::-;13176:8;:64::i;:::-;13258:4;13251:11;;;13032:238;;;;:::o;8460:44::-;;;;;;;;;;;;;;;;;:::o;10482:127::-;10556:7;10583:9;:18;10593:7;10583:18;;;;;;;;;;;;;;;;10576:25;;10482:127;;;:::o;2155:103::-;1393:13;:11;:13::i;:::-;2220:30:::1;2247:1;2220:18;:30::i;:::-;2155:103::o:0;1507:87::-;1553:7;1580:6;;;;;;;;;;;1573:13;;1507:87;:::o;20157:44::-;;;;:::o;9407:104::-;9463:13;9496:7;9489:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9407:104;:::o;13774:437::-;13867:4;13884:13;13900:12;:10;:12::i;:::-;13884:28;;13923:24;13950:25;13960:5;13967:7;13950:9;:25::i;:::-;13923:52;;14014:15;13994:16;:35;;13986:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14107:60;14116:5;14123:7;14151:15;14132:16;:34;14107:8;:60::i;:::-;14199:4;14192:11;;;;13774:437;;;;:::o;10816:193::-;10895:4;10912:13;10928:12;:10;:12::i;:::-;10912:28;;10951;10961:5;10968:2;10972:6;10951:9;:28::i;:::-;10997:4;10990:11;;;10816:193;;;;:::o;11073:151::-;11162:7;11189:11;:18;11201:5;11189:18;;;;;;;;;;;;;;;:27;11208:7;11189:27;;;;;;;;;;;;;;;;11182:34;;11073:151;;;;:::o;2413:201::-;1393:13;:11;:13::i;:::-;2522:1:::1;2502:22;;:8;:22;;;;2494:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2578:28;2597:8;2578:18;:28::i;:::-;2413:201:::0;:::o;723:98::-;776:7;803:10;796:17;;723:98;:::o;17415:381::-;17568:1;17551:19;;:5;:19;;;;17543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17649:1;17630:21;;:7;:21;;;;17622:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17734:6;17704:11;:18;17716:5;17704:18;;;;;;;;;;;;;;;:27;17723:7;17704:27;;;;;;;;;;;;;;;:36;;;;17772:7;17756:32;;17765:5;17756:32;;;17781:6;17756:32;;;;;;:::i;:::-;;;;;;;;17415:381;;;:::o;1672:132::-;1747:12;:10;:12::i;:::-;1736:23;;:7;:5;:7::i;:::-;:23;;;1728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1672:132::o;18088:453::-;18223:24;18250:25;18260:5;18267:7;18250:9;:25::i;:::-;18223:52;;18310:17;18290:16;:37;18286:248;;18372:6;18352:16;:26;;18344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18456:51;18465:5;18472:7;18500:6;18481:16;:25;18456:8;:51::i;:::-;18286:248;18088:453;;;;:::o;20215:760::-;20363:1;20347:18;;:4;:18;;;;20339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20440:1;20426:16;;:2;:16;;;;20418:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20528:13;;20517:6;20501:9;:13;20511:2;20501:13;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;:40;;20493:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20580:38;20601:4;20607:2;20611:6;20580:20;:38::i;:::-;20632:19;20654:9;:15;20664:4;20654:15;;;;;;;;;;;;;;;;20632:37;;20703:6;20688:11;:21;;20680:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20820:6;20806:11;:20;20788:9;:15;20798:4;20788:15;;;;;;;;;;;;;;;:38;;;;20865:6;20848:9;:13;20858:2;20848:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;20905:2;20890:26;;20899:4;20890:26;;;20909:6;20890:26;;;;;;:::i;:::-;;;;;;;;20930:37;20950:4;20956:2;20960:6;20930:19;:37::i;:::-;20215:760;;;;:::o;2774:191::-;2848:16;2867:6;;;;;;;;;;;2848:25;;2893:8;2884:6;;:17;;;;;;;;;;;;;;;;;;2948:8;2917:40;;2938:8;2917:40;;;;;;;;;;;;2774:191;;:::o;19142:125::-;;;;:::o;19872:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:370::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:8;3520:2;3515:3;3511:12;3504:30;3560:2;3555:3;3551:12;3544:19;;3345:224;;;:::o;3575:366::-;;3738:67;3802:2;3797:3;3738:67;:::i;:::-;3731:74;;3835:34;3831:1;3826:3;3822:11;3815:55;3901:4;3896:2;3891:3;3887:12;3880:26;3932:2;3927:3;3923:12;3916:19;;3721:220;;;:::o;3947:314::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:18;4203:1;4198:3;4194:11;4187:39;4252:2;4247:3;4243:12;4236:19;;4093:168;;;:::o;4267:327::-;;4430:67;4494:2;4489:3;4430:67;:::i;:::-;4423:74;;4527:31;4523:1;4518:3;4514:11;4507:52;4585:2;4580:3;4576:12;4569:19;;4413:181;;;:::o;4600:370::-;;4763:67;4827:2;4822:3;4763:67;:::i;:::-;4756:74;;4860:34;4856:1;4851:3;4847:11;4840:55;4926:8;4921:2;4916:3;4912:12;4905:30;4961:2;4956:3;4952:12;4945:19;;4746:224;;;:::o;4976:330::-;;5139:67;5203:2;5198:3;5139:67;:::i;:::-;5132:74;;5236:34;5232:1;5227:3;5223:11;5216:55;5297:2;5292:3;5288:12;5281:19;;5122:184;;;:::o;5312:369::-;;5475:67;5539:2;5534:3;5475:67;:::i;:::-;5468:74;;5572:34;5568:1;5563:3;5559:11;5552:55;5638:7;5633:2;5628:3;5624:12;5617:29;5672:2;5667:3;5663:12;5656:19;;5458:223;;;:::o;5687:368::-;;5850:67;5914:2;5909:3;5850:67;:::i;:::-;5843:74;;5947:34;5943:1;5938:3;5934:11;5927:55;6013:6;6008:2;6003:3;5999:12;5992:28;6046:2;6041:3;6037:12;6030:19;;5833:222;;;:::o;6061:369::-;;6224:67;6288:2;6283:3;6224:67;:::i;:::-;6217:74;;6321:34;6317:1;6312:3;6308:11;6301:55;6387:7;6382:2;6377:3;6373:12;6366:29;6421:2;6416:3;6412:12;6405:19;;6207:223;;;:::o;6436:118::-;6523:24;6541:5;6523:24;:::i;:::-;6518:3;6511:37;6501:53;;:::o;6560:112::-;6643:22;6659:5;6643:22;:::i;:::-;6638:3;6631:35;6621:51;;:::o;6678:222::-;;6809:2;6798:9;6794:18;6786:26;;6822:71;6890:1;6879:9;6875:17;6866:6;6822:71;:::i;:::-;6776:124;;;;:::o;6906:210::-;;7031:2;7020:9;7016:18;7008:26;;7044:65;7106:1;7095:9;7091:17;7082:6;7044:65;:::i;:::-;6998:118;;;;:::o;7122:313::-;;7273:2;7262:9;7258:18;7250:26;;7322:9;7316:4;7312:20;7308:1;7297:9;7293:17;7286:47;7350:78;7423:4;7414:6;7350:78;:::i;:::-;7342:86;;7240:195;;;;:::o;7441:419::-;;7645:2;7634:9;7630:18;7622:26;;7694:9;7688:4;7684:20;7680:1;7669:9;7665:17;7658:47;7722:131;7848:4;7722:131;:::i;:::-;7714:139;;7612:248;;;:::o;7866:419::-;;8070:2;8059:9;8055:18;8047:26;;8119:9;8113:4;8109:20;8105:1;8094:9;8090:17;8083:47;8147:131;8273:4;8147:131;:::i;:::-;8139:139;;8037:248;;;:::o;8291:419::-;;8495:2;8484:9;8480:18;8472:26;;8544:9;8538:4;8534:20;8530:1;8519:9;8515:17;8508:47;8572:131;8698:4;8572:131;:::i;:::-;8564:139;;8462:248;;;:::o;8716:419::-;;8920:2;8909:9;8905:18;8897:26;;8969:9;8963:4;8959:20;8955:1;8944:9;8940:17;8933:47;8997:131;9123:4;8997:131;:::i;:::-;8989:139;;8887:248;;;:::o;9141:419::-;;9345:2;9334:9;9330:18;9322:26;;9394:9;9388:4;9384:20;9380:1;9369:9;9365:17;9358:47;9422:131;9548:4;9422:131;:::i;:::-;9414:139;;9312:248;;;:::o;9566:419::-;;9770:2;9759:9;9755:18;9747:26;;9819:9;9813:4;9809:20;9805:1;9794:9;9790:17;9783:47;9847:131;9973:4;9847:131;:::i;:::-;9839:139;;9737:248;;;:::o;9991:419::-;;10195:2;10184:9;10180:18;10172:26;;10244:9;10238:4;10234:20;10230:1;10219:9;10215:17;10208:47;10272:131;10398:4;10272:131;:::i;:::-;10264:139;;10162:248;;;:::o;10416:419::-;;10620:2;10609:9;10605:18;10597:26;;10669:9;10663:4;10659:20;10655:1;10644:9;10640:17;10633:47;10697:131;10823:4;10697:131;:::i;:::-;10689:139;;10587:248;;;:::o;10841:419::-;;11045:2;11034:9;11030:18;11022:26;;11094:9;11088:4;11084:20;11080:1;11069:9;11065:17;11058:47;11122:131;11248:4;11122:131;:::i;:::-;11114:139;;11012:248;;;:::o;11266:419::-;;11470:2;11459:9;11455:18;11447:26;;11519:9;11513:4;11509:20;11505:1;11494:9;11490:17;11483:47;11547:131;11673:4;11547:131;:::i;:::-;11539:139;;11437:248;;;:::o;11691:222::-;;11822:2;11811:9;11807:18;11799:26;;11835:71;11903:1;11892:9;11888:17;11879:6;11835:71;:::i;:::-;11789:124;;;;:::o;11919:214::-;;12046:2;12035:9;12031:18;12023:26;;12059:67;12123:1;12112:9;12108:17;12099:6;12059:67;:::i;:::-;12013:120;;;;:::o;12139:99::-;;12225:5;12219:12;12209:22;;12198:40;;;:::o;12244:169::-;;12362:6;12357:3;12350:19;12402:4;12397:3;12393:14;12378:29;;12340:73;;;;:::o;12419:305::-;;12478:20;12496:1;12478:20;:::i;:::-;12473:25;;12512:20;12530:1;12512:20;:::i;:::-;12507:25;;12666:1;12598:66;12594:74;12591:1;12588:81;12585:2;;;12672:18;;:::i;:::-;12585:2;12716:1;12713;12709:9;12702:16;;12463:261;;;;:::o;12730:96::-;;12796:24;12814:5;12796:24;:::i;:::-;12785:35;;12775:51;;;:::o;12832:90::-;;12909:5;12902:13;12895:21;12884:32;;12874:48;;;:::o;12928:126::-;;13005:42;12998:5;12994:54;12983:65;;12973:81;;;:::o;13060:77::-;;13126:5;13115:16;;13105:32;;;:::o;13143:86::-;;13218:4;13211:5;13207:16;13196:27;;13186:43;;;:::o;13235:307::-;13303:1;13313:113;13327:6;13324:1;13321:13;13313:113;;;13412:1;13407:3;13403:11;13397:18;13393:1;13388:3;13384:11;13377:39;13349:2;13346:1;13342:10;13337:15;;13313:113;;;13444:6;13441:1;13438:13;13435:2;;;13524:1;13515:6;13510:3;13506:16;13499:27;13435:2;13284:258;;;;:::o;13548:320::-;;13629:1;13623:4;13619:12;13609:22;;13676:1;13670:4;13666:12;13697:18;13687:2;;13753:4;13745:6;13741:17;13731:27;;13687:2;13815;13807:6;13804:14;13784:18;13781:38;13778:2;;;13834:18;;:::i;:::-;13778:2;13599:269;;;;:::o;13874:180::-;13922:77;13919:1;13912:88;14019:4;14016:1;14009:15;14043:4;14040:1;14033:15;14060:180;14108:77;14105:1;14098:88;14205:4;14202:1;14195:15;14229:4;14226:1;14219:15;14246:102;;14338:2;14334:7;14329:2;14322:5;14318:14;14314:28;14304:38;;14294:54;;;:::o;14354:122::-;14427:24;14445:5;14427:24;:::i;:::-;14420:5;14417:35;14407:2;;14466:1;14463;14456:12;14407:2;14397:79;:::o;14482:122::-;14555:24;14573:5;14555:24;:::i;:::-;14548:5;14545:35;14535:2;;14594:1;14591;14584:12;14535:2;14525:79;:::o

Swarm Source

ipfs://1d206941ae07d1209da49f66237a4ff93bc251f37872a042b173a34cf49dd9f1
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.