ETH Price: $3,308.23 (-3.04%)
Gas: 16 Gwei

Token

CLIPS (CLIPS)
 

Overview

Max Total Supply

173,261,554,059.9822998046865 CLIPS

Holders

2,696 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,574,894.581775480151532329 CLIPS

Value
$0.00
0x89c064c7362883bc0031c7f28c6af3a2f3e2bb3a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$CLIPS is Capture the Flag x Memetoken.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Clips

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 7 of 7 : Clips.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";

contract Clips is ERC20Capped, Ownable {
    uint256 public constant maxSupply = 220000000000 * 10 ** 18; // 220b
		uint256 public prizePool = 50000000000 * 10 ** 18; // 50b
		uint256 public teamSupply = 20000000000 * 10 ** 18; // 20b
    uint256 public initialMintAmount = 5000000 * 10 ** 18; // 5m
    uint256 public clipCost = 250000 * 10 ** 18; // 250k
    uint256 public lastClipUpdate;
    address public clipOwner;
    string public clip = "FUCK JANNIES";
    mapping(address => uint256) public lastMintValue;
    mapping(address => uint256) public lastMintTime;

    event ClipUpdated(address indexed user, string message, uint256 newClipCost);
    event PrizePoolClaimed(address indexed clipOwner, uint256 amount);
		event Log(string func, uint gas);

    modifier maxLength(string memory message) {
        require(bytes(message).length <= 26, "Message must be 26 characters or less");
        _;
    }

    constructor() ERC20("CLIPS", "CLIPS") ERC20Capped(maxSupply) {
        _mint(address(this), maxSupply); 
				_transfer(address(this), msg.sender, teamSupply); 
        clipOwner = msg.sender; 
    }

    function mintClips() external {
        require(block.timestamp >= lastMintTime[msg.sender] + 1 days, "You can only mint once every 24 hours");
        uint256 mintAmount;
        if (lastMintValue[msg.sender] == 0) {
            mintAmount = initialMintAmount;
        } else {
						mintAmount = lastMintValue[msg.sender] / 2;
        }
        require(mintAmount > 0, "Mint amount is too small");
				require(balanceOf(address(this)) - prizePool >= mintAmount, "Not enough CLIPS left to mint");
        lastMintValue[msg.sender] = mintAmount;
				lastMintTime[msg.sender] = block.timestamp;
				_transfer(address(this), msg.sender, mintAmount);
    }

    function setClip(string memory message) external maxLength(message) {
				require(bytes(message).length > 0, "Message cannot be empty");
        if (msg.sender != clipOwner) {
            require(balanceOf(msg.sender) >= clipCost, "Insufficient CLIPS to set CLIP");
            IERC20(address(this)).transferFrom(msg.sender, address(this), clipCost);
						_burn(address(this), clipCost);
						clipCost = clipCost + (clipCost * 5000) / 10000;
        }
        clip = message;
        clipOwner = msg.sender;
        lastClipUpdate = block.timestamp;
        emit ClipUpdated(msg.sender, message, clipCost);
    }

    function claimPrizePool() external {
        require(block.timestamp >= lastClipUpdate + 7 days, "Prizepool can be claimed if 7 days have passed without a CLIP update");
        require(msg.sender == clipOwner, "Only the current clipOwner can claim the prizepool");
				uint256 claimAmount = prizePool;
        prizePool = 0;
				_transfer(address(this), msg.sender, claimAmount);
        emit PrizePoolClaimed(msg.sender, prizePool);
    }

    fallback() external payable {
        emit Log("fallback", gasleft());
    }

    receive() external payable {
        emit Log("receive", gasleft());
    }

    function getBalance() public view returns (uint) {
        return address(this).balance;
    }

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

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

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":"user","type":"address"},{"indexed":false,"internalType":"string","name":"message","type":"string"},{"indexed":false,"internalType":"uint256","name":"newClipCost","type":"uint256"}],"name":"ClipUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"func","type":"string"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"}],"name":"Log","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":"clipOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PrizePoolClaimed","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"},{"stateMutability":"payable","type":"fallback"},{"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimPrizePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clip","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clipCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clipOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"initialMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastClipUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastMintValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintClips","outputs":[],"stateMutability":"nonpayable","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":"prizePool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"setClip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526ba18f07d736b90be5500000006006556b409f9cbc7c4a04c2200000006007556a0422ca8b0a00a4250000006008556934f086f3b33b684000006009556040518060400160405280600c81526020017f4655434b204a414e4e4945530000000000000000000000000000000000000000815250600c908162000087919062000a15565b503480156200009557600080fd5b506c02c6dbbc19572e3457600000006040518060400160405280600581526020017f434c4950530000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434c495053000000000000000000000000000000000000000000000000000000815250816003908162000121919062000a15565b50806004908162000133919062000a15565b505050600081116200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000b5d565b60405180910390fd5b806080818152505050620001a5620001996200022060201b60201c565b6200022860201b60201c565b620001c4306c02c6dbbc19572e345760000000620002ee60201b60201c565b620001d930336007546200037f60201b60201c565b33600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000ec3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002fe6200061060201b60201c565b81620003146200061a60201b6200086f1760201c565b62000320919062000bae565b111562000364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035b9062000c39565b60405180910390fd5b6200037b82826200062460201b620013381760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e89062000cd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000463576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045a9062000d69565b60405180910390fd5b620004768383836200079160201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620004ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f69062000e01565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620005ef919062000e34565b60405180910390a36200060a8484846200079660201b60201c565b50505050565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000696576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068d9062000ea1565b60405180910390fd5b620006aa600083836200079160201b60201c565b8060026000828254620006be919062000bae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000771919062000e34565b60405180910390a36200078d600083836200079660201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081d57607f821691505b602082108103620008335762000832620007d5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200089d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200085e565b620008a986836200085e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008f6620008f0620008ea84620008c1565b620008cb565b620008c1565b9050919050565b6000819050919050565b6200091283620008d5565b6200092a6200092182620008fd565b8484546200086b565b825550505050565b600090565b6200094162000932565b6200094e81848462000907565b505050565b5b8181101562000976576200096a60008262000937565b60018101905062000954565b5050565b601f821115620009c5576200098f8162000839565b6200099a846200084e565b81016020851015620009aa578190505b620009c2620009b9856200084e565b83018262000953565b50505b505050565b600082821c905092915050565b6000620009ea60001984600802620009ca565b1980831691505092915050565b600062000a058383620009d7565b9150826002028217905092915050565b62000a20826200079b565b67ffffffffffffffff81111562000a3c5762000a3b620007a6565b5b62000a48825462000804565b62000a558282856200097a565b600060209050601f83116001811462000a8d576000841562000a78578287015190505b62000a848582620009f7565b86555062000af4565b601f19841662000a9d8662000839565b60005b8281101562000ac75784890151825560018201915060208501945060208101905062000aa0565b8683101562000ae7578489015162000ae3601f891682620009d7565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000b4560158362000afc565b915062000b528262000b0d565b602082019050919050565b6000602082019050818103600083015262000b788162000b36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bbb82620008c1565b915062000bc883620008c1565b925082820190508082111562000be35762000be262000b7f565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000c2160198362000afc565b915062000c2e8262000be9565b602082019050919050565b6000602082019050818103600083015262000c548162000c12565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000cb960258362000afc565b915062000cc68262000c5b565b604082019050919050565b6000602082019050818103600083015262000cec8162000caa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000d5160238362000afc565b915062000d5e8262000cf3565b604082019050919050565b6000602082019050818103600083015262000d848162000d42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062000de960268362000afc565b915062000df68262000d8b565b604082019050919050565b6000602082019050818103600083015262000e1c8162000dda565b9050919050565b62000e2e81620008c1565b82525050565b600060208201905062000e4b600083018462000e23565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e89601f8362000afc565b915062000e968262000e51565b602082019050919050565b6000602082019050818103600083015262000ebc8162000e7a565b9050919050565b6080516131c762000edf60003960006108d901526131c76000f3fe6080604052600436106101d15760003560e01c80636e9144fe116100f757806395d89b4111610095578063d5abeb0111610064578063d5abeb01146106f6578063dd62ed3e14610721578063f2fde38b1461075e578063f6bc94f2146107875761020f565b806395d89b411461063a578063a457c2d714610665578063a9059cbb146106a2578063c3b02d66146106df5761020f565b8063719ce73e116100d1578063719ce73e146105a257806384bc8c48146105cd5780638da5cb5b146105e45780638ed644471461060f5761020f565b80636e9144fe1461052557806370a082311461054e578063715018a61461058b5761020f565b80632cfac6ec1161016f57806339b00e411161013e57806339b00e411461046957806342966c681461049457806343b198a0146104bd5780636aa71d18146104e85761020f565b80632cfac6ec146103ab578063313ce567146103d6578063355274ea14610401578063395093511461042c5761020f565b806318160ddd116101ab57806318160ddd146102db5780631d801a741461030657806323b872dd146103435780632682789a146103805761020f565b806306fdde0314610248578063095ea7b31461027357806312065fe0146102b05761020f565b3661020f577fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b55a6040516102059190611cf2565b60405180910390a1005b7fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b55a60405161023e9190611d6c565b60405180910390a1005b34801561025457600080fd5b5061025d6107b2565b60405161026a9190611e19565b60405180910390f35b34801561027f57600080fd5b5061029a60048036038101906102959190611ed9565b610844565b6040516102a79190611f34565b60405180910390f35b3480156102bc57600080fd5b506102c5610867565b6040516102d29190611f4f565b60405180910390f35b3480156102e757600080fd5b506102f061086f565b6040516102fd9190611f4f565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190611f6a565b610879565b60405161033a9190611f4f565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190611f97565b610891565b6040516103779190611f34565b60405180910390f35b34801561038c57600080fd5b506103956108c0565b6040516103a29190611f4f565b60405180910390f35b3480156103b757600080fd5b506103c06108c6565b6040516103cd9190611f4f565b60405180910390f35b3480156103e257600080fd5b506103eb6108cc565b6040516103f89190612006565b60405180910390f35b34801561040d57600080fd5b506104166108d5565b6040516104239190611f4f565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190611ed9565b6108fd565b6040516104609190611f34565b60405180910390f35b34801561047557600080fd5b5061047e610934565b60405161048b9190611e19565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612021565b6109c2565b005b3480156104c957600080fd5b506104d26109cf565b6040516104df919061205d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190611f6a565b6109f5565b60405161051c9190611f4f565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906121ad565b610a0d565b005b34801561055a57600080fd5b5061057560048036038101906105709190611f6a565b610ca7565b6040516105829190611f4f565b60405180910390f35b34801561059757600080fd5b506105a0610cef565b005b3480156105ae57600080fd5b506105b7610d03565b6040516105c49190611f4f565b60405180910390f35b3480156105d957600080fd5b506105e2610d09565b005b3480156105f057600080fd5b506105f9610f6b565b604051610606919061205d565b60405180910390f35b34801561061b57600080fd5b50610624610f95565b6040516106319190611f4f565b60405180910390f35b34801561064657600080fd5b5061064f610f9b565b60405161065c9190611e19565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190611ed9565b61102d565b6040516106999190611f34565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190611ed9565b6110a4565b6040516106d69190611f34565b60405180910390f35b3480156106eb57600080fd5b506106f46110c7565b005b34801561070257600080fd5b5061070b611217565b6040516107189190611f4f565b60405180910390f35b34801561072d57600080fd5b50610748600480360381019061074391906121f6565b611228565b6040516107559190611f4f565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190611f6a565b6112af565b005b34801561079357600080fd5b5061079c611332565b6040516107a99190611f4f565b60405180910390f35b6060600380546107c190612265565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612265565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b60008061084f61148e565b905061085c818585611496565b600191505092915050565b600047905090565b6000600254905090565b600d6020528060005260406000206000915090505481565b60008061089c61148e565b90506108a985828561165f565b6108b48585856116eb565b60019150509392505050565b60085481565b60075481565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061090861148e565b905061092981858561091a8589611228565b61092491906122c5565b611496565b600191505092915050565b600c805461094190612265565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612265565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b505050505081565b6109cc3382611961565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b80601a81511115610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061236b565b60405180910390fd5b6000825111610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906123d7565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf957600954610af833610ca7565b1015610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612443565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306009546040518463ffffffff1660e01b8152600401610b7893929190612463565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906124c6565b50610bc830600954611961565b612710611388600954610bdb91906124f3565b610be59190612564565b600954610bf291906122c5565b6009819055505b81600c9081610c089190612741565b5033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600a819055503373ffffffffffffffffffffffffffffffffffffffff167ffdb61d42d05b147d72cf7e3151359edc181d2d227bf7e184ac7da48dc9a8cbfc83600954604051610c9b929190612813565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf7611b2e565b610d016000611bac565b565b60065481565b62015180600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d5791906122c5565b421015610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d90906128b5565b60405180910390fd5b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610deb576008549050610e3a565b6002600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e379190612564565b90505b60008111610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490612921565b60405180910390fd5b80600654610e8a30610ca7565b610e949190612941565b1015610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906129c1565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f683033836116eb565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060048054610faa90612265565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd690612265565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b5050505050905090565b60008061103861148e565b905060006110468286611228565b90508381101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612a53565b60405180910390fd5b6110988286868403611496565b60019250505092915050565b6000806110af61148e565b90506110bc8185856116eb565b600191505092915050565b62093a80600a546110d891906122c5565b42101561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612b0b565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612b9d565b60405180910390fd5b6000600654905060006006819055506111c43033836116eb565b3373ffffffffffffffffffffffffffffffffffffffff167f66fb1ba8c3450a0c057ac0185d8e5796368403e062dde36fb617f6f4a79b3f9e60065460405161120c9190611f4f565b60405180910390a250565b6c02c6dbbc19572e34576000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112b7611b2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90612c2f565b60405180910390fd5b61132f81611bac565b50565b600a5481565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612c9b565b60405180910390fd5b6113b360008383611c72565b80600260008282546113c591906122c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114769190611f4f565b60405180910390a361148a60008383611c77565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90612d2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612dbf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116529190611f4f565b60405180910390a3505050565b600061166b8484611228565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116e557818110156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612e2b565b60405180910390fd5b6116e48484848403611496565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090612f4f565b60405180910390fd5b6117d4838383611c72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612fe1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119489190611f4f565b60405180910390a361195b848484611c77565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613073565b60405180910390fd5b6119dc82600083611c72565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613105565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b159190611f4f565b60405180910390a3611b2983600084611c77565b505050565b611b3661148e565b73ffffffffffffffffffffffffffffffffffffffff16611b54610f6b565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190613171565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600082825260208201905092915050565b7f7265636569766500000000000000000000000000000000000000000000000000600082015250565b6000611cc3600783611c7c565b9150611cce82611c8d565b602082019050919050565b6000819050919050565b611cec81611cd9565b82525050565b60006040820190508181036000830152611d0b81611cb6565b9050611d1a6020830184611ce3565b92915050565b7f66616c6c6261636b000000000000000000000000000000000000000000000000600082015250565b6000611d56600883611c7c565b9150611d6182611d20565b602082019050919050565b60006040820190508181036000830152611d8581611d49565b9050611d946020830184611ce3565b92915050565b600081519050919050565b60005b83811015611dc3578082015181840152602081019050611da8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611deb82611d9a565b611df58185611c7c565b9350611e05818560208601611da5565b611e0e81611dcf565b840191505092915050565b60006020820190508181036000830152611e338184611de0565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7a82611e4f565b9050919050565b611e8a81611e6f565b8114611e9557600080fd5b50565b600081359050611ea781611e81565b92915050565b611eb681611cd9565b8114611ec157600080fd5b50565b600081359050611ed381611ead565b92915050565b60008060408385031215611ef057611eef611e45565b5b6000611efe85828601611e98565b9250506020611f0f85828601611ec4565b9150509250929050565b60008115159050919050565b611f2e81611f19565b82525050565b6000602082019050611f496000830184611f25565b92915050565b6000602082019050611f646000830184611ce3565b92915050565b600060208284031215611f8057611f7f611e45565b5b6000611f8e84828501611e98565b91505092915050565b600080600060608486031215611fb057611faf611e45565b5b6000611fbe86828701611e98565b9350506020611fcf86828701611e98565b9250506040611fe086828701611ec4565b9150509250925092565b600060ff82169050919050565b61200081611fea565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b60006020828403121561203757612036611e45565b5b600061204584828501611ec4565b91505092915050565b61205781611e6f565b82525050565b6000602082019050612072600083018461204e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120ba82611dcf565b810181811067ffffffffffffffff821117156120d9576120d8612082565b5b80604052505050565b60006120ec611e3b565b90506120f882826120b1565b919050565b600067ffffffffffffffff82111561211857612117612082565b5b61212182611dcf565b9050602081019050919050565b82818337600083830152505050565b600061215061214b846120fd565b6120e2565b90508281526020810184848401111561216c5761216b61207d565b5b61217784828561212e565b509392505050565b600082601f83011261219457612193612078565b5b81356121a484826020860161213d565b91505092915050565b6000602082840312156121c3576121c2611e45565b5b600082013567ffffffffffffffff8111156121e1576121e0611e4a565b5b6121ed8482850161217f565b91505092915050565b6000806040838503121561220d5761220c611e45565b5b600061221b85828601611e98565b925050602061222c85828601611e98565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061227d57607f821691505b6020821081036122905761228f612236565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d082611cd9565b91506122db83611cd9565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f4d657373616765206d7573742062652032362063686172616374657273206f7260008201527f206c657373000000000000000000000000000000000000000000000000000000602082015250565b6000612355602583611c7c565b9150612360826122f9565b604082019050919050565b6000602082019050818103600083015261238481612348565b9050919050565b7f4d6573736167652063616e6e6f7420626520656d707479000000000000000000600082015250565b60006123c1601783611c7c565b91506123cc8261238b565b602082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f496e73756666696369656e7420434c49505320746f2073657420434c49500000600082015250565b600061242d601e83611c7c565b9150612438826123f7565b602082019050919050565b6000602082019050818103600083015261245c81612420565b9050919050565b6000606082019050612478600083018661204e565b612485602083018561204e565b6124926040830184611ce3565b949350505050565b6124a381611f19565b81146124ae57600080fd5b50565b6000815190506124c08161249a565b92915050565b6000602082840312156124dc576124db611e45565b5b60006124ea848285016124b1565b91505092915050565b60006124fe82611cd9565b915061250983611cd9565b925082820261251781611cd9565b9150828204841483151761252e5761252d612296565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061256f82611cd9565b915061257a83611cd9565b92508261258a57612589612535565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125ba565b61260186836125ba565b95508019841693508086168417925050509392505050565b6000819050919050565b600061263e61263961263484611cd9565b612619565b611cd9565b9050919050565b6000819050919050565b61265883612623565b61266c61266482612645565b8484546125c7565b825550505050565b600090565b612681612674565b61268c81848461264f565b505050565b5b818110156126b0576126a5600082612679565b600181019050612692565b5050565b601f8211156126f5576126c681612595565b6126cf846125aa565b810160208510156126de578190505b6126f26126ea856125aa565b830182612691565b50505b505050565b600082821c905092915050565b6000612718600019846008026126fa565b1980831691505092915050565b60006127318383612707565b9150826002028217905092915050565b61274a82611d9a565b67ffffffffffffffff81111561276357612762612082565b5b61276d8254612265565b6127788282856126b4565b600060209050601f8311600181146127ab5760008415612799578287015190505b6127a38582612725565b86555061280b565b601f1984166127b986612595565b60005b828110156127e1578489015182556001820191506020850194506020810190506127bc565b868310156127fe57848901516127fa601f891682612707565b8355505b6001600288020188555050505b505050505050565b6000604082019050818103600083015261282d8185611de0565b905061283c6020830184611ce3565b9392505050565b7f596f752063616e206f6e6c79206d696e74206f6e63652065766572792032342060008201527f686f757273000000000000000000000000000000000000000000000000000000602082015250565b600061289f602583611c7c565b91506128aa82612843565b604082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f4d696e7420616d6f756e7420697320746f6f20736d616c6c0000000000000000600082015250565b600061290b601883611c7c565b9150612916826128d5565b602082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b600061294c82611cd9565b915061295783611cd9565b925082820390508181111561296f5761296e612296565b5b92915050565b7f4e6f7420656e6f75676820434c495053206c65667420746f206d696e74000000600082015250565b60006129ab601d83611c7c565b91506129b682612975565b602082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a3d602583611c7c565b9150612a48826129e1565b604082019050919050565b60006020820190508181036000830152612a6c81612a30565b9050919050565b7f5072697a65706f6f6c2063616e20626520636c61696d6564206966203720646160008201527f797320686176652070617373656420776974686f7574206120434c495020757060208201527f6461746500000000000000000000000000000000000000000000000000000000604082015250565b6000612af5604483611c7c565b9150612b0082612a73565b606082019050919050565b60006020820190508181036000830152612b2481612ae8565b9050919050565b7f4f6e6c79207468652063757272656e7420636c69704f776e65722063616e206360008201527f6c61696d20746865207072697a65706f6f6c0000000000000000000000000000602082015250565b6000612b87603283611c7c565b9150612b9282612b2b565b604082019050919050565b60006020820190508181036000830152612bb681612b7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c19602683611c7c565b9150612c2482612bbd565b604082019050919050565b60006020820190508181036000830152612c4881612c0c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c85601f83611c7c565b9150612c9082612c4f565b602082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d17602483611c7c565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612da9602283611c7c565b9150612db482612d4d565b604082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e15601d83611c7c565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ea7602583611c7c565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f39602383611c7c565b9150612f4482612edd565b604082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fcb602683611c7c565b9150612fd682612f6f565b604082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061305d602183611c7c565b915061306882613001565b604082019050919050565b6000602082019050818103600083015261308c81613050565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006130ef602283611c7c565b91506130fa82613093565b604082019050919050565b6000602082019050818103600083015261311e816130e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061315b602083611c7c565b915061316682613125565b602082019050919050565b6000602082019050818103600083015261318a8161314e565b905091905056fea264697066735822122043eb34ce73bc94639918d8c09dace14709fd60d2de5e0948719a6c8e4d6b4e2464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80636e9144fe116100f757806395d89b4111610095578063d5abeb0111610064578063d5abeb01146106f6578063dd62ed3e14610721578063f2fde38b1461075e578063f6bc94f2146107875761020f565b806395d89b411461063a578063a457c2d714610665578063a9059cbb146106a2578063c3b02d66146106df5761020f565b8063719ce73e116100d1578063719ce73e146105a257806384bc8c48146105cd5780638da5cb5b146105e45780638ed644471461060f5761020f565b80636e9144fe1461052557806370a082311461054e578063715018a61461058b5761020f565b80632cfac6ec1161016f57806339b00e411161013e57806339b00e411461046957806342966c681461049457806343b198a0146104bd5780636aa71d18146104e85761020f565b80632cfac6ec146103ab578063313ce567146103d6578063355274ea14610401578063395093511461042c5761020f565b806318160ddd116101ab57806318160ddd146102db5780631d801a741461030657806323b872dd146103435780632682789a146103805761020f565b806306fdde0314610248578063095ea7b31461027357806312065fe0146102b05761020f565b3661020f577fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b55a6040516102059190611cf2565b60405180910390a1005b7fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b55a60405161023e9190611d6c565b60405180910390a1005b34801561025457600080fd5b5061025d6107b2565b60405161026a9190611e19565b60405180910390f35b34801561027f57600080fd5b5061029a60048036038101906102959190611ed9565b610844565b6040516102a79190611f34565b60405180910390f35b3480156102bc57600080fd5b506102c5610867565b6040516102d29190611f4f565b60405180910390f35b3480156102e757600080fd5b506102f061086f565b6040516102fd9190611f4f565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190611f6a565b610879565b60405161033a9190611f4f565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190611f97565b610891565b6040516103779190611f34565b60405180910390f35b34801561038c57600080fd5b506103956108c0565b6040516103a29190611f4f565b60405180910390f35b3480156103b757600080fd5b506103c06108c6565b6040516103cd9190611f4f565b60405180910390f35b3480156103e257600080fd5b506103eb6108cc565b6040516103f89190612006565b60405180910390f35b34801561040d57600080fd5b506104166108d5565b6040516104239190611f4f565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190611ed9565b6108fd565b6040516104609190611f34565b60405180910390f35b34801561047557600080fd5b5061047e610934565b60405161048b9190611e19565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612021565b6109c2565b005b3480156104c957600080fd5b506104d26109cf565b6040516104df919061205d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190611f6a565b6109f5565b60405161051c9190611f4f565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906121ad565b610a0d565b005b34801561055a57600080fd5b5061057560048036038101906105709190611f6a565b610ca7565b6040516105829190611f4f565b60405180910390f35b34801561059757600080fd5b506105a0610cef565b005b3480156105ae57600080fd5b506105b7610d03565b6040516105c49190611f4f565b60405180910390f35b3480156105d957600080fd5b506105e2610d09565b005b3480156105f057600080fd5b506105f9610f6b565b604051610606919061205d565b60405180910390f35b34801561061b57600080fd5b50610624610f95565b6040516106319190611f4f565b60405180910390f35b34801561064657600080fd5b5061064f610f9b565b60405161065c9190611e19565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190611ed9565b61102d565b6040516106999190611f34565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190611ed9565b6110a4565b6040516106d69190611f34565b60405180910390f35b3480156106eb57600080fd5b506106f46110c7565b005b34801561070257600080fd5b5061070b611217565b6040516107189190611f4f565b60405180910390f35b34801561072d57600080fd5b50610748600480360381019061074391906121f6565b611228565b6040516107559190611f4f565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190611f6a565b6112af565b005b34801561079357600080fd5b5061079c611332565b6040516107a99190611f4f565b60405180910390f35b6060600380546107c190612265565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed90612265565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b60008061084f61148e565b905061085c818585611496565b600191505092915050565b600047905090565b6000600254905090565b600d6020528060005260406000206000915090505481565b60008061089c61148e565b90506108a985828561165f565b6108b48585856116eb565b60019150509392505050565b60085481565b60075481565b60006012905090565b60007f0000000000000000000000000000000000000002c6dbbc19572e345760000000905090565b60008061090861148e565b905061092981858561091a8589611228565b61092491906122c5565b611496565b600191505092915050565b600c805461094190612265565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612265565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b505050505081565b6109cc3382611961565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915090505481565b80601a81511115610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061236b565b60405180910390fd5b6000825111610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906123d7565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf957600954610af833610ca7565b1015610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612443565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306009546040518463ffffffff1660e01b8152600401610b7893929190612463565b6020604051808303816000875af1158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906124c6565b50610bc830600954611961565b612710611388600954610bdb91906124f3565b610be59190612564565b600954610bf291906122c5565b6009819055505b81600c9081610c089190612741565b5033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600a819055503373ffffffffffffffffffffffffffffffffffffffff167ffdb61d42d05b147d72cf7e3151359edc181d2d227bf7e184ac7da48dc9a8cbfc83600954604051610c9b929190612813565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf7611b2e565b610d016000611bac565b565b60065481565b62015180600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d5791906122c5565b421015610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d90906128b5565b60405180910390fd5b600080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610deb576008549050610e3a565b6002600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e379190612564565b90505b60008111610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7490612921565b60405180910390fd5b80600654610e8a30610ca7565b610e949190612941565b1015610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906129c1565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f683033836116eb565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b606060048054610faa90612265565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd690612265565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b5050505050905090565b60008061103861148e565b905060006110468286611228565b90508381101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612a53565b60405180910390fd5b6110988286868403611496565b60019250505092915050565b6000806110af61148e565b90506110bc8185856116eb565b600191505092915050565b62093a80600a546110d891906122c5565b42101561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612b0b565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612b9d565b60405180910390fd5b6000600654905060006006819055506111c43033836116eb565b3373ffffffffffffffffffffffffffffffffffffffff167f66fb1ba8c3450a0c057ac0185d8e5796368403e062dde36fb617f6f4a79b3f9e60065460405161120c9190611f4f565b60405180910390a250565b6c02c6dbbc19572e34576000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112b7611b2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90612c2f565b60405180910390fd5b61132f81611bac565b50565b600a5481565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90612c9b565b60405180910390fd5b6113b360008383611c72565b80600260008282546113c591906122c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114769190611f4f565b60405180910390a361148a60008383611c77565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90612d2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612dbf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116529190611f4f565b60405180910390a3505050565b600061166b8484611228565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116e557818110156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612e2b565b60405180910390fd5b6116e48484848403611496565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090612f4f565b60405180910390fd5b6117d4838383611c72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612fe1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119489190611f4f565b60405180910390a361195b848484611c77565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613073565b60405180910390fd5b6119dc82600083611c72565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613105565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b159190611f4f565b60405180910390a3611b2983600084611c77565b505050565b611b3661148e565b73ffffffffffffffffffffffffffffffffffffffff16611b54610f6b565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190613171565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600082825260208201905092915050565b7f7265636569766500000000000000000000000000000000000000000000000000600082015250565b6000611cc3600783611c7c565b9150611cce82611c8d565b602082019050919050565b6000819050919050565b611cec81611cd9565b82525050565b60006040820190508181036000830152611d0b81611cb6565b9050611d1a6020830184611ce3565b92915050565b7f66616c6c6261636b000000000000000000000000000000000000000000000000600082015250565b6000611d56600883611c7c565b9150611d6182611d20565b602082019050919050565b60006040820190508181036000830152611d8581611d49565b9050611d946020830184611ce3565b92915050565b600081519050919050565b60005b83811015611dc3578082015181840152602081019050611da8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611deb82611d9a565b611df58185611c7c565b9350611e05818560208601611da5565b611e0e81611dcf565b840191505092915050565b60006020820190508181036000830152611e338184611de0565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e7a82611e4f565b9050919050565b611e8a81611e6f565b8114611e9557600080fd5b50565b600081359050611ea781611e81565b92915050565b611eb681611cd9565b8114611ec157600080fd5b50565b600081359050611ed381611ead565b92915050565b60008060408385031215611ef057611eef611e45565b5b6000611efe85828601611e98565b9250506020611f0f85828601611ec4565b9150509250929050565b60008115159050919050565b611f2e81611f19565b82525050565b6000602082019050611f496000830184611f25565b92915050565b6000602082019050611f646000830184611ce3565b92915050565b600060208284031215611f8057611f7f611e45565b5b6000611f8e84828501611e98565b91505092915050565b600080600060608486031215611fb057611faf611e45565b5b6000611fbe86828701611e98565b9350506020611fcf86828701611e98565b9250506040611fe086828701611ec4565b9150509250925092565b600060ff82169050919050565b61200081611fea565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b60006020828403121561203757612036611e45565b5b600061204584828501611ec4565b91505092915050565b61205781611e6f565b82525050565b6000602082019050612072600083018461204e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6120ba82611dcf565b810181811067ffffffffffffffff821117156120d9576120d8612082565b5b80604052505050565b60006120ec611e3b565b90506120f882826120b1565b919050565b600067ffffffffffffffff82111561211857612117612082565b5b61212182611dcf565b9050602081019050919050565b82818337600083830152505050565b600061215061214b846120fd565b6120e2565b90508281526020810184848401111561216c5761216b61207d565b5b61217784828561212e565b509392505050565b600082601f83011261219457612193612078565b5b81356121a484826020860161213d565b91505092915050565b6000602082840312156121c3576121c2611e45565b5b600082013567ffffffffffffffff8111156121e1576121e0611e4a565b5b6121ed8482850161217f565b91505092915050565b6000806040838503121561220d5761220c611e45565b5b600061221b85828601611e98565b925050602061222c85828601611e98565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061227d57607f821691505b6020821081036122905761228f612236565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d082611cd9565b91506122db83611cd9565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f4d657373616765206d7573742062652032362063686172616374657273206f7260008201527f206c657373000000000000000000000000000000000000000000000000000000602082015250565b6000612355602583611c7c565b9150612360826122f9565b604082019050919050565b6000602082019050818103600083015261238481612348565b9050919050565b7f4d6573736167652063616e6e6f7420626520656d707479000000000000000000600082015250565b60006123c1601783611c7c565b91506123cc8261238b565b602082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f496e73756666696369656e7420434c49505320746f2073657420434c49500000600082015250565b600061242d601e83611c7c565b9150612438826123f7565b602082019050919050565b6000602082019050818103600083015261245c81612420565b9050919050565b6000606082019050612478600083018661204e565b612485602083018561204e565b6124926040830184611ce3565b949350505050565b6124a381611f19565b81146124ae57600080fd5b50565b6000815190506124c08161249a565b92915050565b6000602082840312156124dc576124db611e45565b5b60006124ea848285016124b1565b91505092915050565b60006124fe82611cd9565b915061250983611cd9565b925082820261251781611cd9565b9150828204841483151761252e5761252d612296565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061256f82611cd9565b915061257a83611cd9565b92508261258a57612589612535565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125ba565b61260186836125ba565b95508019841693508086168417925050509392505050565b6000819050919050565b600061263e61263961263484611cd9565b612619565b611cd9565b9050919050565b6000819050919050565b61265883612623565b61266c61266482612645565b8484546125c7565b825550505050565b600090565b612681612674565b61268c81848461264f565b505050565b5b818110156126b0576126a5600082612679565b600181019050612692565b5050565b601f8211156126f5576126c681612595565b6126cf846125aa565b810160208510156126de578190505b6126f26126ea856125aa565b830182612691565b50505b505050565b600082821c905092915050565b6000612718600019846008026126fa565b1980831691505092915050565b60006127318383612707565b9150826002028217905092915050565b61274a82611d9a565b67ffffffffffffffff81111561276357612762612082565b5b61276d8254612265565b6127788282856126b4565b600060209050601f8311600181146127ab5760008415612799578287015190505b6127a38582612725565b86555061280b565b601f1984166127b986612595565b60005b828110156127e1578489015182556001820191506020850194506020810190506127bc565b868310156127fe57848901516127fa601f891682612707565b8355505b6001600288020188555050505b505050505050565b6000604082019050818103600083015261282d8185611de0565b905061283c6020830184611ce3565b9392505050565b7f596f752063616e206f6e6c79206d696e74206f6e63652065766572792032342060008201527f686f757273000000000000000000000000000000000000000000000000000000602082015250565b600061289f602583611c7c565b91506128aa82612843565b604082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f4d696e7420616d6f756e7420697320746f6f20736d616c6c0000000000000000600082015250565b600061290b601883611c7c565b9150612916826128d5565b602082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b600061294c82611cd9565b915061295783611cd9565b925082820390508181111561296f5761296e612296565b5b92915050565b7f4e6f7420656e6f75676820434c495053206c65667420746f206d696e74000000600082015250565b60006129ab601d83611c7c565b91506129b682612975565b602082019050919050565b600060208201905081810360008301526129da8161299e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a3d602583611c7c565b9150612a48826129e1565b604082019050919050565b60006020820190508181036000830152612a6c81612a30565b9050919050565b7f5072697a65706f6f6c2063616e20626520636c61696d6564206966203720646160008201527f797320686176652070617373656420776974686f7574206120434c495020757060208201527f6461746500000000000000000000000000000000000000000000000000000000604082015250565b6000612af5604483611c7c565b9150612b0082612a73565b606082019050919050565b60006020820190508181036000830152612b2481612ae8565b9050919050565b7f4f6e6c79207468652063757272656e7420636c69704f776e65722063616e206360008201527f6c61696d20746865207072697a65706f6f6c0000000000000000000000000000602082015250565b6000612b87603283611c7c565b9150612b9282612b2b565b604082019050919050565b60006020820190508181036000830152612bb681612b7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c19602683611c7c565b9150612c2482612bbd565b604082019050919050565b60006020820190508181036000830152612c4881612c0c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c85601f83611c7c565b9150612c9082612c4f565b602082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d17602483611c7c565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612da9602283611c7c565b9150612db482612d4d565b604082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e15601d83611c7c565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ea7602583611c7c565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f39602383611c7c565b9150612f4482612edd565b604082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fcb602683611c7c565b9150612fd682612f6f565b604082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061305d602183611c7c565b915061306882613001565b604082019050919050565b6000602082019050818103600083015261308c81613050565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006130ef602283611c7c565b91506130fa82613093565b604082019050919050565b6000602082019050818103600083015261311e816130e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061315b602083611c7c565b915061316682613125565b602082019050919050565b6000602082019050818103600083015261318a8161314e565b905091905056fea264697066735822122043eb34ce73bc94639918d8c09dace14709fd60d2de5e0948719a6c8e4d6b4e2464736f6c63430008110033

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.