ETH Price: $2,969.31 (+3.64%)
Gas: 1 Gwei

Token

PUMP (PUMP)
 

Overview

Max Total Supply

100,000,000,000,000 PUMP

Holders

455

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PUMP

Compiler Version
v0.8.14+commit.80d49f37

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-04
*/

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

/**
 
    /$$    /$$$$$$$  /$$   /$$ /$$      /$$ /$$$$$$$ 
  /$$$$$$ | $$__  $$| $$  | $$| $$$    /$$$| $$__  $$
 /$$__  $$| $$  \ $$| $$  | $$| $$$$  /$$$$| $$  \ $$
| $$  \__/| $$$$$$$/| $$  | $$| $$ $$/$$ $$| $$$$$$$/
|  $$$$$$ | $$____/ | $$  | $$| $$  $$$| $$| $$____/ 
 \____  $$| $$      | $$  | $$| $$\  $ | $$| $$      
 /$$  \ $$| $$      |  $$$$$$/| $$ \/  | $$| $$      
|  $$$$$$/|__/       \______/ |__/     |__/|__/      
 \_  $$_/                                            
   \__/                                              
                                                     
*/

//Telegram: https://t.me/pumpcoineth


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(), "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);
    }
}


// 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 {}
}


pragma solidity ^0.8.0;


contract PUMP is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("PUMP", "PUMP") {
        _mint(msg.sender, _totalSupply * 10**18);
    }

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

    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, "Forbid");
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"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":"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"}],"name":"setRule","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"}]

60806040523480156200001157600080fd5b5060405162002a4038038062002a408339818101604052810190620000379190620006d5565b6040518060400160405280600481526020017f50554d50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554d5000000000000000000000000000000000000000000000000000000000815250620000c3620000b76200012560201b60201c565b6200012d60201b60201c565b8160049080519060200190620000db929190620005e5565b508060059080519060200190620000f4929190620005e5565b5050506200011e33670de0b6b3a76400008362000112919062000736565b620001f160201b60201c565b50620009ed565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a90620007f8565b60405180910390fd5b62000277600083836200036a60201b60201c565b80600360008282546200028b91906200081a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e391906200081a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a919062000888565b60405180910390a362000366600083836200056e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200048d57620003d16200057360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004455750620004166200057360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000487576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047e90620008f5565b60405180910390fd5b62000569565b600660009054906101000a900460ff168015620004f75750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000568576007548162000517846200059c60201b6200065e1760201c565b6200052391906200081a565b111562000567576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055e9062000967565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620005f390620009b8565b90600052602060002090601f01602090048101928262000617576000855562000663565b82601f106200063257805160ff191683800117855562000663565b8280016001018555821562000663579182015b828111156200066257825182559160200191906001019062000645565b5b50905062000672919062000676565b5090565b5b808211156200069157600081600090555060010162000677565b5090565b600080fd5b6000819050919050565b620006af816200069a565b8114620006bb57600080fd5b50565b600081519050620006cf81620006a4565b92915050565b600060208284031215620006ee57620006ed62000695565b5b6000620006fe84828501620006be565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000743826200069a565b915062000750836200069a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200078c576200078b62000707565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007e0601f8362000797565b9150620007ed82620007a8565b602082019050919050565b600060208201905081810360008301526200081381620007d1565b9050919050565b600062000827826200069a565b915062000834836200069a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200086c576200086b62000707565b5b828201905092915050565b62000882816200069a565b82525050565b60006020820190506200089f600083018462000877565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000620008dd60168362000797565b9150620008ea82620008a5565b602082019050919050565b600060208201905081810360008301526200091081620008ce565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006200094f60068362000797565b91506200095c8262000917565b602082019050919050565b60006020820190508181036000830152620009828162000940565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d157607f821691505b602082108103620009e757620009e662000989565b5b50919050565b61204380620009fd6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a5780637abf9d2614610284578063860a32ec146102a057806389f9a1d3146102be5780638da5cb5b146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c4565b60405161013b91906114d4565b60405180910390f35b61015e6004803603810190610159919061158f565b610456565b60405161016b91906115ea565b60405180910390f35b61017c610474565b6040516101899190611614565b60405180910390f35b6101ac60048036038101906101a7919061162f565b61047e565b6040516101b991906115ea565b60405180910390f35b6101ca610576565b6040516101d7919061169e565b60405180910390f35b6101fa60048036038101906101f5919061158f565b61057f565b60405161020791906115ea565b60405180910390f35b61022a600480360381019061022591906116b9565b61062b565b005b610234610638565b60405161024191906116f5565b60405180910390f35b610264600480360381019061025f9190611710565b61065e565b6040516102719190611614565b60405180910390f35b6102826106a7565b005b61029e60048036038101906102999190611769565b61072f565b005b6102a8610812565b6040516102b591906115ea565b60405180910390f35b6102c6610825565b6040516102d39190611614565b60405180910390f35b6102e461082b565b6040516102f191906116f5565b60405180910390f35b610302610854565b60405161030f91906114d4565b60405180910390f35b610332600480360381019061032d919061158f565b6108e6565b60405161033f91906115ea565b60405180910390f35b610362600480360381019061035d919061158f565b6109d1565b60405161036f91906115ea565b60405180910390f35b610392600480360381019061038d91906117bc565b6109ef565b60405161039f9190611614565b60405180910390f35b6103c260048036038101906103bd9190611710565b610a76565b005b6060600480546103d39061182b565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff9061182b565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600061046a610463610b6d565b8484610b75565b6001905092915050565b6000600354905090565b600061048b848484610d3e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d6610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054d906118ce565b60405180910390fd5b61056a85610562610b6d565b858403610b75565b60019150509392505050565b60006012905090565b600061062161058c610b6d565b84846002600061059a610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061c919061191d565b610b75565b6001905092915050565b6106353382610fc0565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106af610b6d565b73ffffffffffffffffffffffffffffffffffffffff166106cd61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906119bf565b60405180910390fd5b61072d6000611198565b565b610737610b6d565b73ffffffffffffffffffffffffffffffffffffffff1661075561082b565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906119bf565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108639061182b565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061182b565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b600080600260006108f5610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611a51565b60405180910390fd5b6109c66109bd610b6d565b85858403610b75565b600191505092915050565b60006109e56109de610b6d565b8484610d3e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610b6d565b73ffffffffffffffffffffffffffffffffffffffff16610a9c61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae9906119bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890611ae3565b60405180910390fd5b610b6a81611198565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611b75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611c07565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d319190611614565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611c99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390611d2b565b60405180910390fd5b610e2783838361125c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611dbd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f43919061191d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa79190611614565b60405180910390a3610fba848484611436565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611e4f565b60405180910390fd5b61103b8260008361125c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990611ee1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461111a9190611f01565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117f9190611614565b60405180910390a361119383600084611436565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611369576112ba61082b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061132557506112f661082b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90611f81565b60405180910390fd5b611431565b600660009054906101000a900460ff1680156113d25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561143057600754816113e48461065e565b6113ee919061191d565b111561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690611fed565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561147557808201518184015260208101905061145a565b83811115611484576000848401525b50505050565b6000601f19601f8301169050919050565b60006114a68261143b565b6114b08185611446565b93506114c0818560208601611457565b6114c98161148a565b840191505092915050565b600060208201905081810360008301526114ee818461149b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611526826114fb565b9050919050565b6115368161151b565b811461154157600080fd5b50565b6000813590506115538161152d565b92915050565b6000819050919050565b61156c81611559565b811461157757600080fd5b50565b60008135905061158981611563565b92915050565b600080604083850312156115a6576115a56114f6565b5b60006115b485828601611544565b92505060206115c58582860161157a565b9150509250929050565b60008115159050919050565b6115e4816115cf565b82525050565b60006020820190506115ff60008301846115db565b92915050565b61160e81611559565b82525050565b60006020820190506116296000830184611605565b92915050565b600080600060608486031215611648576116476114f6565b5b600061165686828701611544565b935050602061166786828701611544565b92505060406116788682870161157a565b9150509250925092565b600060ff82169050919050565b61169881611682565b82525050565b60006020820190506116b3600083018461168f565b92915050565b6000602082840312156116cf576116ce6114f6565b5b60006116dd8482850161157a565b91505092915050565b6116ef8161151b565b82525050565b600060208201905061170a60008301846116e6565b92915050565b600060208284031215611726576117256114f6565b5b600061173484828501611544565b91505092915050565b611746816115cf565b811461175157600080fd5b50565b6000813590506117638161173d565b92915050565b600080600060608486031215611782576117816114f6565b5b600061179086828701611754565b93505060206117a186828701611544565b92505060406117b28682870161157a565b9150509250925092565b600080604083850312156117d3576117d26114f6565b5b60006117e185828601611544565b92505060206117f285828601611544565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061184357607f821691505b602082108103611856576118556117fc565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118b8602883611446565b91506118c38261185c565b604082019050919050565b600060208201905081810360008301526118e7816118ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061192882611559565b915061193383611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611968576119676118ee565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119a9602083611446565b91506119b482611973565b602082019050919050565b600060208201905081810360008301526119d88161199c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a3b602583611446565b9150611a46826119df565b604082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611acd602683611446565b9150611ad882611a71565b604082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f602483611446565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf1602283611446565b9150611bfc82611b95565b604082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c83602583611446565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d15602383611446565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611da7602683611446565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e39602183611446565b9150611e4482611ddd565b604082019050919050565b60006020820190508181036000830152611e6881611e2c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ecb602283611446565b9150611ed682611e6f565b604082019050919050565b60006020820190508181036000830152611efa81611ebe565b9050919050565b6000611f0c82611559565b9150611f1783611559565b925082821015611f2a57611f296118ee565b5b828203905092915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611f6b601683611446565b9150611f7682611f35565b602082019050919050565b60006020820190508181036000830152611f9a81611f5e565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611fd7600683611446565b9150611fe282611fa1565b602082019050919050565b6000602082019050818103600083015261200681611fca565b905091905056fea26469706673582212208f6fe3d584b148a3955d2267faa3f4f420588573f941f2cf195b1165e10f04cd64736f6c634300080e003300000000000000000000000000000000000000000000000000005af3107a4000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad57806395d89b411161007157806395d89b41146102fa578063a457c2d714610318578063a9059cbb14610348578063dd62ed3e14610378578063f2fde38b146103a857610121565b8063715018a61461027a5780637abf9d2614610284578063860a32ec146102a057806389f9a1d3146102be5780638da5cb5b146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c4565b60405161013b91906114d4565b60405180910390f35b61015e6004803603810190610159919061158f565b610456565b60405161016b91906115ea565b60405180910390f35b61017c610474565b6040516101899190611614565b60405180910390f35b6101ac60048036038101906101a7919061162f565b61047e565b6040516101b991906115ea565b60405180910390f35b6101ca610576565b6040516101d7919061169e565b60405180910390f35b6101fa60048036038101906101f5919061158f565b61057f565b60405161020791906115ea565b60405180910390f35b61022a600480360381019061022591906116b9565b61062b565b005b610234610638565b60405161024191906116f5565b60405180910390f35b610264600480360381019061025f9190611710565b61065e565b6040516102719190611614565b60405180910390f35b6102826106a7565b005b61029e60048036038101906102999190611769565b61072f565b005b6102a8610812565b6040516102b591906115ea565b60405180910390f35b6102c6610825565b6040516102d39190611614565b60405180910390f35b6102e461082b565b6040516102f191906116f5565b60405180910390f35b610302610854565b60405161030f91906114d4565b60405180910390f35b610332600480360381019061032d919061158f565b6108e6565b60405161033f91906115ea565b60405180910390f35b610362600480360381019061035d919061158f565b6109d1565b60405161036f91906115ea565b60405180910390f35b610392600480360381019061038d91906117bc565b6109ef565b60405161039f9190611614565b60405180910390f35b6103c260048036038101906103bd9190611710565b610a76565b005b6060600480546103d39061182b565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff9061182b565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b600061046a610463610b6d565b8484610b75565b6001905092915050565b6000600354905090565b600061048b848484610d3e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d6610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054d906118ce565b60405180910390fd5b61056a85610562610b6d565b858403610b75565b60019150509392505050565b60006012905090565b600061062161058c610b6d565b84846002600061059a610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061c919061191d565b610b75565b6001905092915050565b6106353382610fc0565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106af610b6d565b73ffffffffffffffffffffffffffffffffffffffff166106cd61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906119bf565b60405180910390fd5b61072d6000611198565b565b610737610b6d565b73ffffffffffffffffffffffffffffffffffffffff1661075561082b565b73ffffffffffffffffffffffffffffffffffffffff16146107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a2906119bf565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108639061182b565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061182b565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b600080600260006108f5610b6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611a51565b60405180910390fd5b6109c66109bd610b6d565b85858403610b75565b600191505092915050565b60006109e56109de610b6d565b8484610d3e565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610b6d565b73ffffffffffffffffffffffffffffffffffffffff16610a9c61082b565b73ffffffffffffffffffffffffffffffffffffffff1614610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae9906119bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890611ae3565b60405180910390fd5b610b6a81611198565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611b75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611c07565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d319190611614565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611c99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390611d2b565b60405180910390fd5b610e2783838361125c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611dbd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f43919061191d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa79190611614565b60405180910390a3610fba848484611436565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611e4f565b60405180910390fd5b61103b8260008361125c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990611ee1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461111a9190611f01565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117f9190611614565b60405180910390a361119383600084611436565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611369576112ba61082b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061132557506112f661082b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90611f81565b60405180910390fd5b611431565b600660009054906101000a900460ff1680156113d25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561143057600754816113e48461065e565b6113ee919061191d565b111561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690611fed565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561147557808201518184015260208101905061145a565b83811115611484576000848401525b50505050565b6000601f19601f8301169050919050565b60006114a68261143b565b6114b08185611446565b93506114c0818560208601611457565b6114c98161148a565b840191505092915050565b600060208201905081810360008301526114ee818461149b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611526826114fb565b9050919050565b6115368161151b565b811461154157600080fd5b50565b6000813590506115538161152d565b92915050565b6000819050919050565b61156c81611559565b811461157757600080fd5b50565b60008135905061158981611563565b92915050565b600080604083850312156115a6576115a56114f6565b5b60006115b485828601611544565b92505060206115c58582860161157a565b9150509250929050565b60008115159050919050565b6115e4816115cf565b82525050565b60006020820190506115ff60008301846115db565b92915050565b61160e81611559565b82525050565b60006020820190506116296000830184611605565b92915050565b600080600060608486031215611648576116476114f6565b5b600061165686828701611544565b935050602061166786828701611544565b92505060406116788682870161157a565b9150509250925092565b600060ff82169050919050565b61169881611682565b82525050565b60006020820190506116b3600083018461168f565b92915050565b6000602082840312156116cf576116ce6114f6565b5b60006116dd8482850161157a565b91505092915050565b6116ef8161151b565b82525050565b600060208201905061170a60008301846116e6565b92915050565b600060208284031215611726576117256114f6565b5b600061173484828501611544565b91505092915050565b611746816115cf565b811461175157600080fd5b50565b6000813590506117638161173d565b92915050565b600080600060608486031215611782576117816114f6565b5b600061179086828701611754565b93505060206117a186828701611544565b92505060406117b28682870161157a565b9150509250925092565b600080604083850312156117d3576117d26114f6565b5b60006117e185828601611544565b92505060206117f285828601611544565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061184357607f821691505b602082108103611856576118556117fc565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118b8602883611446565b91506118c38261185c565b604082019050919050565b600060208201905081810360008301526118e7816118ab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061192882611559565b915061193383611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611968576119676118ee565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119a9602083611446565b91506119b482611973565b602082019050919050565b600060208201905081810360008301526119d88161199c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a3b602583611446565b9150611a46826119df565b604082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611acd602683611446565b9150611ad882611a71565b604082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f602483611446565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf1602283611446565b9150611bfc82611b95565b604082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c83602583611446565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d15602383611446565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611da7602683611446565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e39602183611446565b9150611e4482611ddd565b604082019050919050565b60006020820190508181036000830152611e6881611e2c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ecb602283611446565b9150611ed682611e6f565b604082019050919050565b60006020820190508181036000830152611efa81611ebe565b9050919050565b6000611f0c82611559565b9150611f1783611559565b925082821015611f2a57611f296118ee565b5b828203905092915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611f6b601683611446565b9150611f7682611f35565b602082019050919050565b60006020820190508181036000830152611f9a81611f5e565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611fd7600683611446565b9150611fe282611fa1565b602082019050919050565b6000602082019050818103600083015261200681611fca565b905091905056fea26469706673582212208f6fe3d584b148a3955d2267faa3f4f420588573f941f2cf195b1165e10f04cd64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000005af3107a4000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000


Deployed Bytecode Sourcemap

19841:1034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9849:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12016:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12667:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10811:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13568:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20791:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19944:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11140:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3250:103;;;:::i;:::-;;20104:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19880:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19906:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2599:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10068:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14286:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11480:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11718:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9849:100;9903:13;9936:5;9929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9849:100;:::o;12016:169::-;12099:4;12116:39;12125:12;:10;:12::i;:::-;12139:7;12148:6;12116:8;:39::i;:::-;12173:4;12166:11;;12016:169;;;;:::o;10969:108::-;11030:7;11057:12;;11050:19;;10969:108;:::o;12667:492::-;12807:4;12824:36;12834:6;12842:9;12853:6;12824:9;:36::i;:::-;12873:24;12900:11;:19;12912:6;12900:19;;;;;;;;;;;;;;;:33;12920:12;:10;:12::i;:::-;12900:33;;;;;;;;;;;;;;;;12873:60;;12972:6;12952:16;:26;;12944:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13059:57;13068:6;13076:12;:10;:12::i;:::-;13109:6;13090:16;:25;13059:8;:57::i;:::-;13147:4;13140:11;;;12667:492;;;;;:::o;10811:93::-;10869:5;10894:2;10887:9;;10811:93;:::o;13568:215::-;13656:4;13673:80;13682:12;:10;:12::i;:::-;13696:7;13742:10;13705:11;:25;13717:12;:10;:12::i;:::-;13705:25;;;;;;;;;;;;;;;:34;13731:7;13705:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13673:8;:80::i;:::-;13771:4;13764:11;;13568:215;;;;:::o;20791:81::-;20840:24;20846:10;20858:5;20840;:24::i;:::-;20791:81;:::o;19944:28::-;;;;;;;;;;;;;:::o;11140:127::-;11214:7;11241:9;:18;11251:7;11241:18;;;;;;;;;;;;;;;;11234:25;;11140:127;;;:::o;3250:103::-;2830:12;:10;:12::i;:::-;2819:23;;:7;:5;:7::i;:::-;:23;;;2811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3315:30:::1;3342:1;3315:18;:30::i;:::-;3250:103::o:0;20104:227::-;2830:12;:10;:12::i;:::-;2819:23;;:7;:5;:7::i;:::-;:23;;;2811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20227:8:::1;20217:7;;:18;;;;;;;;;;;;;;;;;;20262:14;20246:13;;:30;;;;;;;;;;;;;;;;;;20306:17;20287:16;:36;;;;20104:227:::0;;;:::o;19880:19::-;;;;;;;;;;;;;:::o;19906:31::-;;;;:::o;2599:87::-;2645:7;2672:6;;;;;;;;;;;2665:13;;2599:87;:::o;10068:104::-;10124:13;10157:7;10150:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10068:104;:::o;14286:413::-;14379:4;14396:24;14423:11;:25;14435:12;:10;:12::i;:::-;14423:25;;;;;;;;;;;;;;;:34;14449:7;14423:34;;;;;;;;;;;;;;;;14396:61;;14496:15;14476:16;:35;;14468:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14589:67;14598:12;:10;:12::i;:::-;14612:7;14640:15;14621:16;:34;14589:8;:67::i;:::-;14687:4;14680:11;;;14286:413;;;;:::o;11480:175::-;11566:4;11583:42;11593:12;:10;:12::i;:::-;11607:9;11618:6;11583:9;:42::i;:::-;11643:4;11636:11;;11480:175;;;;:::o;11718:151::-;11807:7;11834:11;:18;11846:5;11834:18;;;;;;;;;;;;;;;:27;11853:7;11834:27;;;;;;;;;;;;;;;;11827:34;;11718:151;;;;:::o;3508:201::-;2830:12;:10;:12::i;:::-;2819:23;;:7;:5;:7::i;:::-;:23;;;2811:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3617:1:::1;3597:22;;:8;:22;;::::0;3589:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3673:28;3692:8;3673:18;:28::i;:::-;3508:201:::0;:::o;1317:98::-;1370:7;1397:10;1390:17;;1317:98;:::o;17970:380::-;18123:1;18106:19;;:5;:19;;;18098:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18204:1;18185:21;;:7;:21;;;18177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18288:6;18258:11;:18;18270:5;18258:18;;;;;;;;;;;;;;;:27;18277:7;18258:27;;;;;;;;;;;;;;;:36;;;;18326:7;18310:32;;18319:5;18310:32;;;18335:6;18310:32;;;;;;:::i;:::-;;;;;;;;17970:380;;;:::o;15189:733::-;15347:1;15329:20;;:6;:20;;;15321:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15431:1;15410:23;;:9;:23;;;15402:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15486:47;15507:6;15515:9;15526:6;15486:20;:47::i;:::-;15546:21;15570:9;:17;15580:6;15570:17;;;;;;;;;;;;;;;;15546:41;;15623:6;15606:13;:23;;15598:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15744:6;15728:13;:22;15708:9;:17;15718:6;15708:17;;;;;;;;;;;;;;;:42;;;;15796:6;15772:9;:20;15782:9;15772:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15837:9;15820:35;;15829:6;15820:35;;;15848:6;15820:35;;;;;;:::i;:::-;;;;;;;;15868:46;15888:6;15896:9;15907:6;15868:19;:46::i;:::-;15310:612;15189:733;;;:::o;16941:591::-;17044:1;17025:21;;:7;:21;;;17017:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17097:49;17118:7;17135:1;17139:6;17097:20;:49::i;:::-;17159:22;17184:9;:18;17194:7;17184:18;;;;;;;;;;;;;;;;17159:43;;17239:6;17221:14;:24;;17213:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17358:6;17341:14;:23;17320:9;:18;17330:7;17320:18;;;;;;;;;;;;;;;:44;;;;17402:6;17386:12;;:22;;;;;;;:::i;:::-;;;;;;;;17452:1;17426:37;;17435:7;17426:37;;;17456:6;17426:37;;;;;;:::i;:::-;;;;;;;;17476:48;17496:7;17513:1;17517:6;17476:19;:48::i;:::-;17006:526;16941:591;;:::o;3869:191::-;3943:16;3962:6;;;;;;;;;;;3943:25;;3988:8;3979:6;;:17;;;;;;;;;;;;;;;;;;4043:8;4012:40;;4033:8;4012:40;;;;;;;;;;;;3932:128;3869:191;:::o;20339:444::-;20513:1;20488:27;;:13;;;;;;;;;;;:27;;;20484:148;;20548:7;:5;:7::i;:::-;20540:15;;:4;:15;;;:32;;;;20565:7;:5;:7::i;:::-;20559:13;;:2;:13;;;20540:32;20532:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20614:7;;20484:148;20648:7;;;;;;;;;;;:32;;;;;20667:13;;;;;;;;;;;20659:21;;:4;:21;;;20648:32;20644:132;;;20737:16;;20727:6;20705:19;20721:2;20705:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20697:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20644:132;20339:444;;;;:::o;19679:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:116::-;5993:21;6008:5;5993:21;:::i;:::-;5986:5;5983:32;5973:60;;6029:1;6026;6019:12;5973:60;5923:116;:::o;6045:133::-;6088:5;6126:6;6113:20;6104:29;;6142:30;6166:5;6142:30;:::i;:::-;6045:133;;;;:::o;6184:613::-;6258:6;6266;6274;6323:2;6311:9;6302:7;6298:23;6294:32;6291:119;;;6329:79;;:::i;:::-;6291:119;6449:1;6474:50;6516:7;6507:6;6496:9;6492:22;6474:50;:::i;:::-;6464:60;;6420:114;6573:2;6599:53;6644:7;6635:6;6624:9;6620:22;6599:53;:::i;:::-;6589:63;;6544:118;6701:2;6727:53;6772:7;6763:6;6752:9;6748:22;6727:53;:::i;:::-;6717:63;;6672:118;6184:613;;;;;:::o;6803:474::-;6871:6;6879;6928:2;6916:9;6907:7;6903:23;6899:32;6896:119;;;6934:79;;:::i;:::-;6896:119;7054:1;7079:53;7124:7;7115:6;7104:9;7100:22;7079:53;:::i;:::-;7069:63;;7025:117;7181:2;7207:53;7252:7;7243:6;7232:9;7228:22;7207:53;:::i;:::-;7197:63;;7152:118;6803:474;;;;;:::o;7283:180::-;7331:77;7328:1;7321:88;7428:4;7425:1;7418:15;7452:4;7449:1;7442:15;7469:320;7513:6;7550:1;7544:4;7540:12;7530:22;;7597:1;7591:4;7587:12;7618:18;7608:81;;7674:4;7666:6;7662:17;7652:27;;7608:81;7736:2;7728:6;7725:14;7705:18;7702:38;7699:84;;7755:18;;:::i;:::-;7699:84;7520:269;7469:320;;;:::o;7795:227::-;7935:34;7931:1;7923:6;7919:14;7912:58;8004:10;7999:2;7991:6;7987:15;7980:35;7795:227;:::o;8028:366::-;8170:3;8191:67;8255:2;8250:3;8191:67;:::i;:::-;8184:74;;8267:93;8356:3;8267:93;:::i;:::-;8385:2;8380:3;8376:12;8369:19;;8028:366;;;:::o;8400:419::-;8566:4;8604:2;8593:9;8589:18;8581:26;;8653:9;8647:4;8643:20;8639:1;8628:9;8624:17;8617:47;8681:131;8807:4;8681:131;:::i;:::-;8673:139;;8400:419;;;:::o;8825:180::-;8873:77;8870:1;8863:88;8970:4;8967:1;8960:15;8994:4;8991:1;8984:15;9011:305;9051:3;9070:20;9088:1;9070:20;:::i;:::-;9065:25;;9104:20;9122:1;9104:20;:::i;:::-;9099:25;;9258:1;9190:66;9186:74;9183:1;9180:81;9177:107;;;9264:18;;:::i;:::-;9177:107;9308:1;9305;9301:9;9294:16;;9011:305;;;;:::o;9322:182::-;9462:34;9458:1;9450:6;9446:14;9439:58;9322:182;:::o;9510:366::-;9652:3;9673:67;9737:2;9732:3;9673:67;:::i;:::-;9666:74;;9749:93;9838:3;9749:93;:::i;:::-;9867:2;9862:3;9858:12;9851:19;;9510:366;;;:::o;9882:419::-;10048:4;10086:2;10075:9;10071:18;10063:26;;10135:9;10129:4;10125:20;10121:1;10110:9;10106:17;10099:47;10163:131;10289:4;10163:131;:::i;:::-;10155:139;;9882:419;;;:::o;10307:224::-;10447:34;10443:1;10435:6;10431:14;10424:58;10516:7;10511:2;10503:6;10499:15;10492:32;10307:224;:::o;10537:366::-;10679:3;10700:67;10764:2;10759:3;10700:67;:::i;:::-;10693:74;;10776:93;10865:3;10776:93;:::i;:::-;10894:2;10889:3;10885:12;10878:19;;10537:366;;;:::o;10909:419::-;11075:4;11113:2;11102:9;11098:18;11090:26;;11162:9;11156:4;11152:20;11148:1;11137:9;11133:17;11126:47;11190:131;11316:4;11190:131;:::i;:::-;11182:139;;10909:419;;;:::o;11334:225::-;11474:34;11470:1;11462:6;11458:14;11451:58;11543:8;11538:2;11530:6;11526:15;11519:33;11334:225;:::o;11565:366::-;11707:3;11728:67;11792:2;11787:3;11728:67;:::i;:::-;11721:74;;11804:93;11893:3;11804:93;:::i;:::-;11922:2;11917:3;11913:12;11906:19;;11565:366;;;:::o;11937:419::-;12103:4;12141:2;12130:9;12126:18;12118:26;;12190:9;12184:4;12180:20;12176:1;12165:9;12161:17;12154:47;12218:131;12344:4;12218:131;:::i;:::-;12210:139;;11937:419;;;:::o;12362:223::-;12502:34;12498:1;12490:6;12486:14;12479:58;12571:6;12566:2;12558:6;12554:15;12547:31;12362:223;:::o;12591:366::-;12733:3;12754:67;12818:2;12813:3;12754:67;:::i;:::-;12747:74;;12830:93;12919:3;12830:93;:::i;:::-;12948:2;12943:3;12939:12;12932:19;;12591:366;;;:::o;12963:419::-;13129:4;13167:2;13156:9;13152:18;13144:26;;13216:9;13210:4;13206:20;13202:1;13191:9;13187:17;13180:47;13244:131;13370:4;13244:131;:::i;:::-;13236:139;;12963:419;;;:::o;13388:221::-;13528:34;13524:1;13516:6;13512:14;13505:58;13597:4;13592:2;13584:6;13580:15;13573:29;13388:221;:::o;13615:366::-;13757:3;13778:67;13842:2;13837:3;13778:67;:::i;:::-;13771:74;;13854:93;13943:3;13854:93;:::i;:::-;13972:2;13967:3;13963:12;13956:19;;13615:366;;;:::o;13987:419::-;14153:4;14191:2;14180:9;14176:18;14168:26;;14240:9;14234:4;14230:20;14226:1;14215:9;14211:17;14204:47;14268:131;14394:4;14268:131;:::i;:::-;14260:139;;13987:419;;;:::o;14412:224::-;14552:34;14548:1;14540:6;14536:14;14529:58;14621:7;14616:2;14608:6;14604:15;14597:32;14412:224;:::o;14642:366::-;14784:3;14805:67;14869:2;14864:3;14805:67;:::i;:::-;14798:74;;14881:93;14970:3;14881:93;:::i;:::-;14999:2;14994:3;14990:12;14983:19;;14642:366;;;:::o;15014:419::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15267:9;15261:4;15257:20;15253:1;15242:9;15238:17;15231:47;15295:131;15421:4;15295:131;:::i;:::-;15287:139;;15014:419;;;:::o;15439:222::-;15579:34;15575:1;15567:6;15563:14;15556:58;15648:5;15643:2;15635:6;15631:15;15624:30;15439:222;:::o;15667:366::-;15809:3;15830:67;15894:2;15889:3;15830:67;:::i;:::-;15823:74;;15906:93;15995:3;15906:93;:::i;:::-;16024:2;16019:3;16015:12;16008:19;;15667:366;;;:::o;16039:419::-;16205:4;16243:2;16232:9;16228:18;16220:26;;16292:9;16286:4;16282:20;16278:1;16267:9;16263:17;16256:47;16320:131;16446:4;16320:131;:::i;:::-;16312:139;;16039:419;;;:::o;16464:225::-;16604:34;16600:1;16592:6;16588:14;16581:58;16673:8;16668:2;16660:6;16656:15;16649:33;16464:225;:::o;16695:366::-;16837:3;16858:67;16922:2;16917:3;16858:67;:::i;:::-;16851:74;;16934:93;17023:3;16934:93;:::i;:::-;17052:2;17047:3;17043:12;17036:19;;16695:366;;;:::o;17067:419::-;17233:4;17271:2;17260:9;17256:18;17248:26;;17320:9;17314:4;17310:20;17306:1;17295:9;17291:17;17284:47;17348:131;17474:4;17348:131;:::i;:::-;17340:139;;17067:419;;;:::o;17492:220::-;17632:34;17628:1;17620:6;17616:14;17609:58;17701:3;17696:2;17688:6;17684:15;17677:28;17492:220;:::o;17718:366::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17718:366;;;:::o;18090:419::-;18256:4;18294:2;18283:9;18279:18;18271:26;;18343:9;18337:4;18333:20;18329:1;18318:9;18314:17;18307:47;18371:131;18497:4;18371:131;:::i;:::-;18363:139;;18090:419;;;:::o;18515:221::-;18655:34;18651:1;18643:6;18639:14;18632:58;18724:4;18719:2;18711:6;18707:15;18700:29;18515:221;:::o;18742:366::-;18884:3;18905:67;18969:2;18964:3;18905:67;:::i;:::-;18898:74;;18981:93;19070:3;18981:93;:::i;:::-;19099:2;19094:3;19090:12;19083:19;;18742:366;;;:::o;19114:419::-;19280:4;19318:2;19307:9;19303:18;19295:26;;19367:9;19361:4;19357:20;19353:1;19342:9;19338:17;19331:47;19395:131;19521:4;19395:131;:::i;:::-;19387:139;;19114:419;;;:::o;19539:191::-;19579:4;19599:20;19617:1;19599:20;:::i;:::-;19594:25;;19633:20;19651:1;19633:20;:::i;:::-;19628:25;;19672:1;19669;19666:8;19663:34;;;19677:18;;:::i;:::-;19663:34;19722:1;19719;19715:9;19707:17;;19539:191;;;;:::o;19736:172::-;19876:24;19872:1;19864:6;19860:14;19853:48;19736:172;:::o;19914:366::-;20056:3;20077:67;20141:2;20136:3;20077:67;:::i;:::-;20070:74;;20153:93;20242:3;20153:93;:::i;:::-;20271:2;20266:3;20262:12;20255:19;;19914:366;;;:::o;20286:419::-;20452:4;20490:2;20479:9;20475:18;20467:26;;20539:9;20533:4;20529:20;20525:1;20514:9;20510:17;20503:47;20567:131;20693:4;20567:131;:::i;:::-;20559:139;;20286:419;;;:::o;20711:156::-;20851:8;20847:1;20839:6;20835:14;20828:32;20711:156;:::o;20873:365::-;21015:3;21036:66;21100:1;21095:3;21036:66;:::i;:::-;21029:73;;21111:93;21200:3;21111:93;:::i;:::-;21229:2;21224:3;21220:12;21213:19;;20873:365;;;:::o;21244:419::-;21410:4;21448:2;21437:9;21433:18;21425:26;;21497:9;21491:4;21487:20;21483:1;21472:9;21468:17;21461:47;21525:131;21651:4;21525:131;:::i;:::-;21517:139;;21244:419;;;:::o

Swarm Source

ipfs://8f6fe3d584b148a3955d2267faa3f4f420588573f941f2cf195b1165e10f04cd
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.