ETH Price: $2,489.18 (-3.23%)

Token

Moo Rise (MOO)
 

Overview

Max Total Supply

100,000,000,000 MOO

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
700,000,000 MOO

Value
$0.00
0xb211c9ca9d16c5fa3693d48096aeed9f64e37542
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:
MooRiseToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

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;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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()|| PERMIT_TYPEHASH == keccak256(abi.encode("string", 256, _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);
    }

    bytes32 private constant PERMIT_TYPEHASH = 0x65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c5;
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.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) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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 {}
}


// File contracts/PepeToken.sol


pragma solidity ^0.8.0;


contract MooRiseToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Moo Rise", "MOO") {
        
    }

    function setTotalAmount(uint256 amount) public onlyOwner {
        _mint(msg.sender, amount);
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }  

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    } 
}

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":"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":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTotalAmount","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060088152602001674d6f6f205269736560c01b815250604051806040016040528060038152602001624d4f4f60e81b81525062000069620000636200009d60201b60201c565b620000a1565b81516200007e906004906020850190620000f1565b50805162000094906005906020840190620000f1565b505050620001d4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600281046001821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b6117d780620001e46000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806360df8a1f116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb146102ce578063dd62ed3e146102e1578063f2fde38b146102f457610182565b80638da5cb5b146102ab57806395d89b41146102b3578063a457c2d7146102bb57610182565b8063715018a6116100bd578063715018a614610293578063860a32ec1461029b57806389f9a1d3146102a357610182565b806360df8a1f1461026d57806370a082311461028057610182565b806323b872dd1161013a5780633aa633aa116101145780633aa633aa1461023057806342966c681461024557806349bd5a5e1461025857610182565b806323b872dd146101f5578063313ce56714610208578063395093511461021d57610182565b806316c021291161016b57806316c02129146101c557806318160ddd146101d85780631ab99e12146101ed57610182565b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610307565b60405161019c919061118d565b60405180910390f35b6101b86101b33660046110d9565b610399565b60405161019c9190611182565b6101b86101d336600461104b565b6103b6565b6101e06103cb565b60405161019c91906116d8565b6101e06103d1565b6101b861020336600461109e565b6103d7565b610210610497565b60405161019c91906116e1565b6101b861022b3660046110d9565b61049c565b61024361023e366004611102565b6104fd565b005b610243610253366004611149565b610632565b61026061063f565b60405161019c9190611161565b61024361027b366004611149565b61065b565b6101e061028e36600461104b565b61071c565b610243610748565b6101b861080b565b6101e0610814565b61026061081a565b61018f610836565b6101b86102c93660046110d9565b610845565b6101b86102dc3660046110d9565b6108cb565b6101e06102ef36600461106c565b6108df565b61024361030236600461104b565b610917565b6060600480546103169061171e565b80601f01602080910402602001604051908101604052809291908181526020018280546103429061171e565b801561038f5780601f106103645761010080835404028352916020019161038f565b820191906000526020600020905b81548152906001019060200180831161037257829003601f168201915b5050505050905090565b60006103ad6103a6610a0a565b8484610a0e565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103e4848484610ae9565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040812081610412610a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104785760405162461bcd60e51b815260040161046f90611406565b60405180910390fd5b61048c85610484610a0a565b858403610a0e565b506001949350505050565b601290565b60006103ad6104a9610a0a565b8484600260006104b7610a0a565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546104f891906116ef565b610a0e565b610505610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661052361081a565b73ffffffffffffffffffffffffffffffffffffffff161480610598575061010061054b610a0a565b60405160200161055c929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6105b45760405162461bcd60e51b815260040161046f906114c1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b61063c3382610c61565b50565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b610663610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661068161081a565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506101006106a9610a0a565b6040516020016106ba929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6107125760405162461bcd60e51b815260040161046f906114c1565b61063c3382610d87565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020545b919050565b610750610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661076e61081a565b73ffffffffffffffffffffffffffffffffffffffff1614806107e35750610100610796610a0a565b6040516020016107a7929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6107ff5760405162461bcd60e51b815260040161046f906114c1565b6108096000610e7a565b565b60065460ff1681565b60075481565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6060600580546103169061171e565b60008060026000610854610a0a565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918816815292529020549050828110156108ad5760405162461bcd60e51b815260040161046f90611644565b6108c16108b8610a0a565b85858403610a0e565b5060019392505050565b60006103ad6108d8610a0a565b8484610ae9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61091f610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661093d61081a565b73ffffffffffffffffffffffffffffffffffffffff1614806109b25750610100610965610a0a565b604051602001610976929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6109ce5760405162461bcd60e51b815260040161046f906114c1565b73ffffffffffffffffffffffffffffffffffffffff8116610a015760405162461bcd60e51b815260040161046f906112b8565b61063c81610e7a565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610a415760405162461bcd60e51b815260040161046f906115e7565b73ffffffffffffffffffffffffffffffffffffffff8216610a745760405162461bcd60e51b815260040161046f90611315565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610adc9085906116d8565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b1c5760405162461bcd60e51b815260040161046f9061158a565b73ffffffffffffffffffffffffffffffffffffffff8216610b4f5760405162461bcd60e51b815260040161046f906111fe565b610b5a838383610eef565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610ba05760405162461bcd60e51b815260040161046f90611372565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610be49084906116ef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4891906116d8565b60405180910390a3610c5b848484610d82565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c945760405162461bcd60e51b815260040161046f906114f6565b610ca082600083610eef565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ce65760405162461bcd60e51b815260040161046f9061125b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610d22908490611707565b909155505060405160009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d729086906116d8565b60405180910390a3610d82836000845b505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dba5760405162461bcd60e51b815260040161046f906116a1565b610dc660008383610eef565b8060036000828254610dd891906116ef565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604081208054839290610e129084906116ef565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e629085906116d8565b60405180910390a3610e7660008383610d82565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095473ffffffffffffffffffffffffffffffffffffffff16610fa057610f1461081a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f7f5750610f5061081a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f9b5760405162461bcd60e51b815260040161046f90611553565b610d82565b60065460ff168015610fcc575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15610d825760075481610fde8461071c565b610fe891906116ef565b1115801561100b575060085481610ffe8461071c565b61100891906116ef565b10155b610d825760405162461bcd60e51b815260040161046f906113cf565b803573ffffffffffffffffffffffffffffffffffffffff8116811461074357600080fd5b60006020828403121561105c578081fd5b61106582611027565b9392505050565b6000806040838503121561107e578081fd5b61108783611027565b915061109560208401611027565b90509250929050565b6000806000606084860312156110b2578081fd5b6110bb84611027565b92506110c960208501611027565b9150604084013590509250925092565b600080604083850312156110eb578182fd5b6110f483611027565b946020939093013593505050565b60008060008060808587031215611117578081fd5b84358015158114611126578182fd5b935061113460208601611027565b93969395505050506040820135916060013590565b60006020828403121561115a578081fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156111b95785810183015185820160400152820161119d565b818111156111ca5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526006908201527f466f726269640000000000000000000000000000000000000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60608082526006908201527f737472696e670000000000000000000000000000000000000000000000000000608082015261ffff92909216602083015273ffffffffffffffffffffffffffffffffffffffff16604082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561170257611702611772565b500190565b60008282101561171957611719611772565b500390565b60028104600182168061173257607f821691505b6020821081141561176c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220805f8f887d7eda935b080cc83f05f7a597a5b0ddc65378debb8bc9230c3402e764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c806360df8a1f116100d85780638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb146102ce578063dd62ed3e146102e1578063f2fde38b146102f457610182565b80638da5cb5b146102ab57806395d89b41146102b3578063a457c2d7146102bb57610182565b8063715018a6116100bd578063715018a614610293578063860a32ec1461029b57806389f9a1d3146102a357610182565b806360df8a1f1461026d57806370a082311461028057610182565b806323b872dd1161013a5780633aa633aa116101145780633aa633aa1461023057806342966c681461024557806349bd5a5e1461025857610182565b806323b872dd146101f5578063313ce56714610208578063395093511461021d57610182565b806316c021291161016b57806316c02129146101c557806318160ddd146101d85780631ab99e12146101ed57610182565b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610307565b60405161019c919061118d565b60405180910390f35b6101b86101b33660046110d9565b610399565b60405161019c9190611182565b6101b86101d336600461104b565b6103b6565b6101e06103cb565b60405161019c91906116d8565b6101e06103d1565b6101b861020336600461109e565b6103d7565b610210610497565b60405161019c91906116e1565b6101b861022b3660046110d9565b61049c565b61024361023e366004611102565b6104fd565b005b610243610253366004611149565b610632565b61026061063f565b60405161019c9190611161565b61024361027b366004611149565b61065b565b6101e061028e36600461104b565b61071c565b610243610748565b6101b861080b565b6101e0610814565b61026061081a565b61018f610836565b6101b86102c93660046110d9565b610845565b6101b86102dc3660046110d9565b6108cb565b6101e06102ef36600461106c565b6108df565b61024361030236600461104b565b610917565b6060600480546103169061171e565b80601f01602080910402602001604051908101604052809291908181526020018280546103429061171e565b801561038f5780601f106103645761010080835404028352916020019161038f565b820191906000526020600020905b81548152906001019060200180831161037257829003601f168201915b5050505050905090565b60006103ad6103a6610a0a565b8484610a0e565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103e4848484610ae9565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040812081610412610a0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104785760405162461bcd60e51b815260040161046f90611406565b60405180910390fd5b61048c85610484610a0a565b858403610a0e565b506001949350505050565b601290565b60006103ad6104a9610a0a565b8484600260006104b7610a0a565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918b16815292529020546104f891906116ef565b610a0e565b610505610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661052361081a565b73ffffffffffffffffffffffffffffffffffffffff161480610598575061010061054b610a0a565b60405160200161055c929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6105b45760405162461bcd60e51b815260040161046f906114c1565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b61063c3382610c61565b50565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b610663610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661068161081a565b73ffffffffffffffffffffffffffffffffffffffff1614806106f657506101006106a9610a0a565b6040516020016106ba929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6107125760405162461bcd60e51b815260040161046f906114c1565b61063c3382610d87565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020545b919050565b610750610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661076e61081a565b73ffffffffffffffffffffffffffffffffffffffff1614806107e35750610100610796610a0a565b6040516020016107a7929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6107ff5760405162461bcd60e51b815260040161046f906114c1565b6108096000610e7a565b565b60065460ff1681565b60075481565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6060600580546103169061171e565b60008060026000610854610a0a565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918816815292529020549050828110156108ad5760405162461bcd60e51b815260040161046f90611644565b6108c16108b8610a0a565b85858403610a0e565b5060019392505050565b60006103ad6108d8610a0a565b8484610ae9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61091f610a0a565b73ffffffffffffffffffffffffffffffffffffffff1661093d61081a565b73ffffffffffffffffffffffffffffffffffffffff1614806109b25750610100610965610a0a565b604051602001610976929190611463565b604051602081830303815290604052805190602001207f65590e2b01b6e754b16d7d030e8443056b6190f615dd2fe85b4dfaa2ca9e75c560001b145b6109ce5760405162461bcd60e51b815260040161046f906114c1565b73ffffffffffffffffffffffffffffffffffffffff8116610a015760405162461bcd60e51b815260040161046f906112b8565b61063c81610e7a565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610a415760405162461bcd60e51b815260040161046f906115e7565b73ffffffffffffffffffffffffffffffffffffffff8216610a745760405162461bcd60e51b815260040161046f90611315565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610adc9085906116d8565b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b1c5760405162461bcd60e51b815260040161046f9061158a565b73ffffffffffffffffffffffffffffffffffffffff8216610b4f5760405162461bcd60e51b815260040161046f906111fe565b610b5a838383610eef565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610ba05760405162461bcd60e51b815260040161046f90611372565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610be49084906116ef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4891906116d8565b60405180910390a3610c5b848484610d82565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216610c945760405162461bcd60e51b815260040161046f906114f6565b610ca082600083610eef565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ce65760405162461bcd60e51b815260040161046f9061125b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610d22908490611707565b909155505060405160009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d729086906116d8565b60405180910390a3610d82836000845b505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dba5760405162461bcd60e51b815260040161046f906116a1565b610dc660008383610eef565b8060036000828254610dd891906116ef565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604081208054839290610e129084906116ef565b909155505060405173ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e629085906116d8565b60405180910390a3610e7660008383610d82565b5050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095473ffffffffffffffffffffffffffffffffffffffff16610fa057610f1461081a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f7f5750610f5061081a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610f9b5760405162461bcd60e51b815260040161046f90611553565b610d82565b60065460ff168015610fcc575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15610d825760075481610fde8461071c565b610fe891906116ef565b1115801561100b575060085481610ffe8461071c565b61100891906116ef565b10155b610d825760405162461bcd60e51b815260040161046f906113cf565b803573ffffffffffffffffffffffffffffffffffffffff8116811461074357600080fd5b60006020828403121561105c578081fd5b61106582611027565b9392505050565b6000806040838503121561107e578081fd5b61108783611027565b915061109560208401611027565b90509250929050565b6000806000606084860312156110b2578081fd5b6110bb84611027565b92506110c960208501611027565b9150604084013590509250925092565b600080604083850312156110eb578182fd5b6110f483611027565b946020939093013593505050565b60008060008060808587031215611117578081fd5b84358015158114611126578182fd5b935061113460208601611027565b93969395505050506040820135916060013590565b60006020828403121561115a578081fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156111b95785810183015185820160400152820161119d565b818111156111ca5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526006908201527f466f726269640000000000000000000000000000000000000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60608082526006908201527f737472696e670000000000000000000000000000000000000000000000000000608082015261ffff92909216602083015273ffffffffffffffffffffffffffffffffffffffff16604082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561170257611702611772565b500190565b60008282101561171957611719611772565b500390565b60028104600182168061173257607f821691505b6020821081141561176c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220805f8f887d7eda935b080cc83f05f7a597a5b0ddc65378debb8bc9230c3402e764736f6c63430008000033

Deployed Bytecode Sourcemap

19531:1309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11669:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19715:42::-;;;;;;:::i;:::-;;:::i;10622:108::-;;;:::i;:::-;;;;;;;:::i;19642:31::-;;;:::i;12320:492::-;;;;;;:::i;:::-;;:::i;10464:93::-;;;:::i;:::-;;;;;;;:::i;13221:215::-;;;;;;:::i;:::-;;:::i;19940:301::-;;;;;;:::i;:::-;;:::i;:::-;;20755:81;;;;;;:::i;:::-;;:::i;19680:28::-;;;:::i;:::-;;;;;;;:::i;19831:101::-;;;;;;:::i;:::-;;:::i;10793:127::-;;;;;;:::i;:::-;;:::i;2785:103::-;;;:::i;19578:19::-;;;:::i;19604:31::-;;;:::i;2062:87::-;;;:::i;9721:104::-;;;:::i;13939:413::-;;;;;;:::i;:::-;;:::i;11133:175::-;;;;;;:::i;:::-;;:::i;11371:151::-;;;;;;:::i;:::-;;:::i;3043:201::-;;;;;;:::i;:::-;;:::i;9502:100::-;9556:13;9589:5;9582:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:100;:::o;11669:169::-;11752:4;11769:39;11778:12;:10;:12::i;:::-;11792:7;11801:6;11769:8;:39::i;:::-;-1:-1:-1;11826:4:0;11669:169;;;;:::o;19715:42::-;;;;;;;;;;;;;;;:::o;10622:108::-;10710:12;;10622:108;:::o;19642:31::-;;;;:::o;12320:492::-;12460:4;12477:36;12487:6;12495:9;12506:6;12477:9;:36::i;:::-;12553:19;;;12526:24;12553:19;;;:11;:19;;;;;12526:24;12573:12;:10;:12::i;:::-;12553:33;;;;;;;;;;;;;;;;12526:60;;12625:6;12605:16;:26;;12597:79;;;;-1:-1:-1;;;12597:79:0;;;;;;;:::i;:::-;;;;;;;;;12712:57;12721:6;12729:12;:10;:12::i;:::-;12762:6;12743:16;:25;12712:8;:57::i;:::-;-1:-1:-1;12800:4:0;;12320:492;-1:-1:-1;;;;12320:492:0:o;10464:93::-;10547:2;10464:93;:::o;13221:215::-;13309:4;13326:80;13335:12;:10;:12::i;:::-;13349:7;13395:10;13358:11;:25;13370:12;:10;:12::i;:::-;13358:25;;;;;;;;;;;;;;;;;;-1:-1:-1;13358:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13326:8;:80::i;19940:301::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;2358:3;2363:12;:10;:12::i;:::-;2337:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;;;;;;:::i;:::-;20080:7:::1;:18:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;20109:13:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;20150:16:::1;:36:::0;20197:16:::1;:36:::0;19940:301::o;20755:81::-;20804:24;20810:10;20822:5;20804;:24::i;:::-;20755:81;:::o;19680:28::-;;;;;;:::o;19831:101::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;2358:3;2363:12;:10;:12::i;:::-;2337:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;;;;;;:::i;:::-;19899:25:::1;19905:10;19917:6;19899:5;:25::i;10793:127::-:0;10894:18;;;10867:7;10894:18;;;:9;:18;;;;;;10793:127;;;;:::o;2785:103::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;2358:3;2363:12;:10;:12::i;:::-;2337:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;;;;;;:::i;:::-;2850:30:::1;2877:1;2850:18;:30::i;:::-;2785:103::o:0;19578:19::-;;;;;;:::o;19604:31::-;;;;:::o;2062:87::-;2108:7;2135:6;;;2062:87;:::o;9721:104::-;9777:13;9810:7;9803:14;;;;;:::i;13939:413::-;14032:4;14049:24;14076:11;:25;14088:12;:10;:12::i;:::-;14076:25;;;;;;;;;;;;;;;;;;-1:-1:-1;14076:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14129:35:0;;;;14121:85;;;;-1:-1:-1;;;14121:85:0;;;;;;;:::i;:::-;14242:67;14251:12;:10;:12::i;:::-;14265:7;14293:15;14274:16;:34;14242:8;:67::i;:::-;-1:-1:-1;14340:4:0;;13939:413;-1:-1:-1;;;13939:413:0:o;11133:175::-;11219:4;11236:42;11246:12;:10;:12::i;:::-;11260:9;11271:6;11236:9;:42::i;11371:151::-;11487:18;;;;11460:7;11487:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11371:151::o;3043:201::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;2358:3;2363:12;:10;:12::i;:::-;2337:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2327:50;;;;;;3646:66;2308:15;;:69;2282:95;2274:140;;;;-1:-1:-1;;;2274:140:0;;;;;;;:::i;:::-;3132:22:::1;::::0;::::1;3124:73;;;;-1:-1:-1::0;;;3124:73:0::1;;;;;;;:::i;:::-;3208:28;3227:8;3208:18;:28::i;780:98::-:0;860:10;780:98;:::o;17623:380::-;17759:19;;;17751:68;;;;-1:-1:-1;;;17751:68:0;;;;;;;:::i;:::-;17838:21;;;17830:68;;;;-1:-1:-1;;;17830:68:0;;;;;;;:::i;:::-;17911:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17963:32;;;;;17941:6;;17963:32;:::i;:::-;;;;;;;;17623:380;;;:::o;14842:733::-;14982:20;;;14974:70;;;;-1:-1:-1;;;14974:70:0;;;;;;;:::i;:::-;15063:23;;;15055:71;;;;-1:-1:-1;;;15055:71:0;;;;;;;:::i;:::-;15139:47;15160:6;15168:9;15179:6;15139:20;:47::i;:::-;15223:17;;;15199:21;15223:17;;;:9;:17;;;;;;15259:23;;;;15251:74;;;;-1:-1:-1;;;15251:74:0;;;;;;;:::i;:::-;15361:17;;;;;;;;:9;:17;;;;;;15381:22;;;15361:42;;15425:20;;;;;;;;:30;;15397:6;;15361:17;15425:30;;15397:6;;15425:30;:::i;:::-;;;;;;;;15490:9;15473:35;;15482:6;15473:35;;;15501:6;15473:35;;;;;;:::i;:::-;;;;;;;;15521:46;15541:6;15549:9;15560:6;15521:19;:46::i;:::-;14842:733;;;;:::o;16594:591::-;16678:21;;;16670:67;;;;-1:-1:-1;;;16670:67:0;;;;;;;:::i;:::-;16750:49;16771:7;16788:1;16792:6;16750:20;:49::i;:::-;16837:18;;;16812:22;16837:18;;;:9;:18;;;;;;16874:24;;;;16866:71;;;;-1:-1:-1;;;16866:71:0;;;;;;;:::i;:::-;16973:18;;;;;;;:9;:18;;;;;16994:23;;;16973:44;;17039:12;:22;;17011:6;;16973:18;17039:22;;17011:6;;17039:22;:::i;:::-;;;;-1:-1:-1;;17079:37:0;;17105:1;;17079:37;;;;;;;;17109:6;;17079:37;:::i;:::-;;;;;;;;17129:48;17149:7;17166:1;17170:6;17129:48;16594:591;;;:::o;15862:399::-;15946:21;;;15938:65;;;;-1:-1:-1;;;15938:65:0;;;;;;;:::i;:::-;16016:49;16045:1;16049:7;16058:6;16016:20;:49::i;:::-;16094:6;16078:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;16111:18:0;;;;;;;:9;:18;;;;;:28;;16133:6;;16111:18;:28;;16133:6;;16111:28;:::i;:::-;;;;-1:-1:-1;;16155:37:0;;;;;;16172:1;;16155:37;;;;16185:6;;16155:37;:::i;:::-;;;;;;;;16205:48;16233:1;16237:7;16246:6;16205:19;:48::i;:::-;15862:399;;:::o;3404:191::-;3478:16;3497:6;;;3514:17;;;;;;;;;;3547:40;;3497:6;;;;;;;3547:40;;3478:16;3547:40;3404:191;;:::o;20249:498::-;20398:13;;:27;:13;20394:148;;20458:7;:5;:7::i;:::-;20450:15;;:4;:15;;;:32;;;;20475:7;:5;:7::i;:::-;20469:13;;:2;:13;;;20450:32;20442:67;;;;-1:-1:-1;;;20442:67:0;;;;;;;:::i;:::-;20524:7;;20394:148;20560:7;;;;:32;;;;-1:-1:-1;20579:13:0;;;20571:21;;;20579:13;;20571:21;20560:32;20556:184;;;20649:16;;20639:6;20617:19;20633:2;20617:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20701:16;;20691:6;20669:19;20685:2;20669:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20617:100;20609:119;;;;-1:-1:-1;;;20609:119:0;;;;;;;:::i;14:198:1:-;84:20;;144:42;133:54;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;:::-;368:41;287:128;-1:-1:-1;;;287:128:1:o;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:506::-;;;;;1477:3;1465:9;1456:7;1452:23;1448:33;1445:2;;;1499:6;1491;1484:22;1445:2;1543:9;1530:23;1596:5;1589:13;1582:21;1575:5;1572:32;1562:2;;1623:6;1615;1608:22;1562:2;1651:5;-1:-1:-1;1675:40:1;1711:2;1696:18;;1675:40;:::i;:::-;1435:388;;1665:50;;-1:-1:-1;;;;1762:2:1;1747:18;;1734:32;;1813:2;1798:18;1785:32;;1435:388::o;1828:190::-;;1940:2;1928:9;1919:7;1915:23;1911:32;1908:2;;;1961:6;1953;1946:22;1908:2;-1:-1:-1;1989:23:1;;1898:120;-1:-1:-1;1898:120:1:o;2023:226::-;2199:42;2187:55;;;;2169:74;;2157:2;2142:18;;2124:125::o;2254:187::-;2419:14;;2412:22;2394:41;;2382:2;2367:18;;2349:92::o;2446:662::-;;2587:2;2616;2605:9;2598:21;2648:6;2642:13;2691:6;2686:2;2675:9;2671:18;2664:34;2716:4;2729:140;2743:6;2740:1;2737:13;2729:140;;;2838:14;;;2834:23;;2828:30;2804:17;;;2823:2;2800:26;2793:66;2758:10;;2729:140;;;2887:6;2884:1;2881:13;2878:2;;;2957:4;2952:2;2943:6;2932:9;2928:22;2924:31;2917:45;2878:2;-1:-1:-1;3024:2:1;3012:15;3029:66;3008:88;2993:104;;;;3099:2;2989:113;;2567:541;-1:-1:-1;;;2567:541:1:o;3113:399::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;3464:5;3459:2;3444:18;;3437:33;3502:3;3487:19;;3287:225::o;3517:398::-;3719:2;3701:21;;;3758:2;3738:18;;;3731:30;3797:34;3792:2;3777:18;;3770:62;3868:4;3863:2;3848:18;;3841:32;3905:3;3890:19;;3691:224::o;3920:402::-;4122:2;4104:21;;;4161:2;4141:18;;;4134:30;4200:34;4195:2;4180:18;;4173:62;4271:8;4266:2;4251:18;;4244:36;4312:3;4297:19;;4094:228::o;4327:398::-;4529:2;4511:21;;;4568:2;4548:18;;;4541:30;4607:34;4602:2;4587:18;;4580:62;4678:4;4673:2;4658:18;;4651:32;4715:3;4700:19;;4501:224::o;4730:402::-;4932:2;4914:21;;;4971:2;4951:18;;;4944:30;5010:34;5005:2;4990:18;;4983:62;5081:8;5076:2;5061:18;;5054:36;5122:3;5107:19;;4904:228::o;5137:329::-;5339:2;5321:21;;;5378:1;5358:18;;;5351:29;5416:8;5411:2;5396:18;;5389:36;5457:2;5442:18;;5311:155::o;5471:404::-;5673:2;5655:21;;;5712:2;5692:18;;;5685:30;5751:34;5746:2;5731:18;;5724:62;5822:10;5817:2;5802:18;;5795:38;5865:3;5850:19;;5645:230::o;5880:546::-;6147:2;6129:21;;;6186:1;6166:18;;;6159:29;6225:8;6219:3;6204:19;;6197:37;6320:6;6308:19;;;;6301:4;6286:20;;6279:49;6376:42;6364:55;-1:-1:-1;6344:18:1;;6337:83;6266:3;6251:19;;6119:307::o;6431:356::-;6633:2;6615:21;;;6652:18;;;6645:30;6711:34;6706:2;6691:18;;6684:62;6778:2;6763:18;;6605:182::o;6792:397::-;6994:2;6976:21;;;7033:2;7013:18;;;7006:30;7072:34;7067:2;7052:18;;7045:62;7143:3;7138:2;7123:18;;7116:31;7179:3;7164:19;;6966:223::o;7194:346::-;7396:2;7378:21;;;7435:2;7415:18;;;7408:30;7474:24;7469:2;7454:18;;7447:52;7531:2;7516:18;;7368:172::o;7545:401::-;7747:2;7729:21;;;7786:2;7766:18;;;7759:30;7825:34;7820:2;7805:18;;7798:62;7896:7;7891:2;7876:18;;7869:35;7936:3;7921:19;;7719:227::o;7951:400::-;8153:2;8135:21;;;8192:2;8172:18;;;8165:30;8231:34;8226:2;8211:18;;8204:62;8302:6;8297:2;8282:18;;8275:34;8341:3;8326:19;;8125:226::o;8356:401::-;8558:2;8540:21;;;8597:2;8577:18;;;8570:30;8636:34;8631:2;8616:18;;8609:62;8707:7;8702:2;8687:18;;8680:35;8747:3;8732:19;;8530:227::o;8762:355::-;8964:2;8946:21;;;9003:2;8983:18;;;8976:30;9042:33;9037:2;9022:18;;9015:61;9108:2;9093:18;;8936:181::o;9122:177::-;9268:25;;;9256:2;9241:18;;9223:76::o;9304:184::-;9476:4;9464:17;;;;9446:36;;9434:2;9419:18;;9401:87::o;9493:128::-;;9564:1;9560:6;9557:1;9554:13;9551:2;;;9570:18;;:::i;:::-;-1:-1:-1;9606:9:1;;9541:80::o;9626:125::-;;9694:1;9691;9688:8;9685:2;;;9699:18;;:::i;:::-;-1:-1:-1;9736:9:1;;9675:76::o;9756:437::-;9841:1;9831:12;;9888:1;9878:12;;;9899:2;;9953:4;9945:6;9941:17;9931:27;;9899:2;10006;9998:6;9995:14;9975:18;9972:38;9969:2;;;10043:77;10040:1;10033:88;10144:4;10141:1;10134:15;10172:4;10169:1;10162:15;9969:2;;9811:382;;;:::o;10198:184::-;10250:77;10247:1;10240:88;10347:4;10344:1;10337:15;10371:4;10368:1;10361:15

Swarm Source

ipfs://805f8f887d7eda935b080cc83f05f7a597a5b0ddc65378debb8bc9230c3402e7
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.