ETH Price: $3,114.61 (+1.43%)
Gas: 5 Gwei

Token

Charge (CHARGE)
 

Overview

Max Total Supply

2,755,355 CHARGE

Holders

729

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15 CHARGE

Value
$0.00
0x4a5a83a975c967ec27880faa451ba7fd57d71280
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:
Charge

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-21
*/

// Charged Punks NFT collection's ERC 20 Token  - $CHARGE 
// Website : https://chargedpunks.com
// Discord : https://discord.gg/chargedpunks

// SPDX-License-Identifier: NONE

pragma solidity 0.6.12;



// Part: PunkC

interface PunkC {
	function ownerOf(uint256 _user) external view returns(address);
    function balanceOf(address owner) external view returns (uint256);
     function totalSupply() external view returns (uint256);
}

// Part: OpenZeppelin/[email protected]/Address

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// Part: OpenZeppelin/[email protected]/Context

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// Part: OpenZeppelin/[email protected]/IERC20

/**
 * @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);
}

// Part: OpenZeppelin/[email protected]/SafeMath

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// Part: OpenZeppelin/[email protected]/ERC20

/**
 * @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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}

// File: Charge.sol

contract Charge is ERC20("Charge", "CHARGE") {
	using SafeMath for uint256;

uint256 constant public rewardtimeframe = 86400; //43200
	uint256 public BASE_RATE = 10 ether; 
	uint256 public FirstRedeemRate = 70 ether; 
	    bool public isPauseEnabled;

	mapping(uint256 => uint256) public rewards;
	mapping(uint256 => uint256) public lastUpdate;
	
	address private _owner;

	PunkC public PunkContract;

	event RewardPaid(address indexed user, uint256 reward);
	event ChangeIsPausedEnabled(bool _isPauseEnabled);
	event BaseRateSet(uint256 baserate);
	event FirstRedeemRateSet(uint256 redeemfirstrate);
	constructor(address _punks) public{
		PunkContract = PunkC(_punks);
		_owner = _msgSender();
	}

    function setBaseRate(uint256 _baserate) external {
	       require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _baserate = _baserate * 1 ether;
		BASE_RATE=_baserate;
        emit BaseRateSet(_baserate);
    }
   function setFirstRedeemRate(uint256 _FirstRedeemRate) external {
	       require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _FirstRedeemRate = _FirstRedeemRate * 1 ether;
		FirstRedeemRate=_FirstRedeemRate;
        emit FirstRedeemRateSet(_FirstRedeemRate);
    }

	function getRewards(uint256[] calldata _tokenIds) external {
		uint256 ramount;
		uint256 tamount;
		 for(uint256 i = 0; i < _tokenIds.length; i++) {
			 uint256 _punk = _tokenIds[i];
		require(msg.sender == address(PunkContract.ownerOf(_punk)), "You are not the owner of this punk");
		require(!isPauseEnabled, "Staking is on pause");
		uint256 time = block.timestamp;
				if(lastUpdate[_punk] == 0) {
		   ramount= FirstRedeemRate;
		}else{
		ramount = uint(time - lastUpdate[_punk]) / rewardtimeframe * BASE_RATE; //daily 
		}
		if(ramount>1){
			lastUpdate[_punk] = time;
			tamount=tamount+ramount;
		}}
		 require(tamount > 1, "Your punks didn't work hard enough");	
			_mint(msg.sender, tamount);
			emit RewardPaid(msg.sender, tamount);
	}

	function getTotalClaimableU(address address_) external view returns(uint256) {
		
		
		  uint _balance = PunkContract.balanceOf(address_); // get balance of address
        uint contractMaxToken = PunkContract.totalSupply(); //total supply of contract
        uint[] memory _tokens = new uint[](_balance); // initialize array 
		require(_balance>=1,"You do not own a punk");
        uint _index;
            for (uint id = 1; id <= contractMaxToken; id++) {
                if (address_ == PunkContract.ownerOf(id)) { _tokens[_index] = id; _index++;}
            }
        uint256 _punk;
		uint256 tamount;
		for (uint256 ind = 0; ind < _tokens.length; ind++) {
			_punk=_tokens[ind];
		uint256 time = block.timestamp;
		uint256 ramount;
				if(lastUpdate[_punk] == 0) {
			ramount= FirstRedeemRate;
		}else{
		ramount = uint(time - lastUpdate[_punk]) / rewardtimeframe * BASE_RATE;} //daily 
	//uint256 ramount = rewards[_punk] + pending;
		    //require(lastUpdate[_punk] > 0, "Ask your punk to start grinding for you");
		tamount= tamount+ramount;
		
	}
	return tamount; }
	
	function getTotalClaimable(uint256[] calldata _tokenIds) external view returns(uint256) {
		
		uint256 _punk;
		uint256 tamount;
		for (uint256 ind = 0; ind < _tokenIds.length; ind++) {
			_punk=_tokenIds[ind];
		uint256 time = block.timestamp;
		uint256 ramount;
				if(lastUpdate[_punk] == 0) {
			ramount= FirstRedeemRate;
		}else{
		ramount = uint(time - lastUpdate[_punk]) / rewardtimeframe * BASE_RATE;} //daily 
	//uint256 ramount = rewards[_punk] + pending;
		    //require(lastUpdate[_punk] > 0, "Ask your punk to start grinding for you");
		tamount= tamount+ramount;
		
	}return tamount; }
	
	function getClaimable(uint256 _punk) external view returns(uint256) {
		uint256 time = block.timestamp;
		uint256 ramount;
	
				if(lastUpdate[_punk] == 0) {
			ramount= FirstRedeemRate;
		}else{
		ramount = uint(time - lastUpdate[_punk]) / rewardtimeframe * BASE_RATE;
        } //daily 
	//uint256 ramount = rewards[_punk] + pending;
		    //require(lastUpdate[_punk] > 0, "Ask your punk to start grinding for you");
		return ramount;
		
	}
	
		function burn(uint256 _amount) external {
	       require(_owner == _msgSender(), "Ownable: caller is not the owner");
    	    //require(_owner == _msgSender() || msg.sender == address(partner), "Ownable: caller is not the owner");
    	    _amount = _amount * 1 ether;
		_burn(_msgSender(), _amount);
	}
	
	
	function getReward(uint256 _punk) external {
		require(msg.sender == address(PunkContract.ownerOf(_punk)), "You are not the owner of this punk");
		require(!isPauseEnabled, "Staking is on pause");
		uint256 ramount;
		uint256 time = block.timestamp;
				if(lastUpdate[_punk] == 0) {
		   ramount= FirstRedeemRate;
		}else{
		ramount = uint(time - lastUpdate[_punk]) / rewardtimeframe * BASE_RATE; } //daily  

			require(ramount > 1, "Your punk didn't work hard enough");
			lastUpdate[_punk] = time;
			_mint(msg.sender, ramount);
			emit RewardPaid(msg.sender, ramount);
	}


	  function setPauseStatus(bool _isPauseEnabled) external {
	       require(_owner == _msgSender(), "Ownable: caller is not the owner");
        isPauseEnabled = _isPauseEnabled;
        emit ChangeIsPausedEnabled(_isPauseEnabled);
    }
	
	 function TokensOfOwner(address address_) public view returns (uint[] memory) {
        uint _balance = PunkContract.balanceOf(address_); // get balance of address
        uint contractMaxToken = PunkContract.totalSupply(); //total supply of contract
        uint[] memory _tokens = new uint[](_balance); // initialize array 
		require(_balance>=1,"You do not own a punk");
        uint _index;
            for (uint id = 1; id <= contractMaxToken; id++) {
                if (address_ == PunkContract.ownerOf(id)) { _tokens[_index] = id; _index++;}
            }
        return _tokens; 
    }
    

	function omint(uint256 coins) external {
	    require(_owner == _msgSender(), "Ownable: caller is not the owner");
	    coins = coins * 1 ether;
        			_mint(msg.sender, coins);
			emit RewardPaid(msg.sender, coins);
	}
	
	function airdrop(address[] calldata _addresses,uint256 coins) external {
	    require(_owner == _msgSender(), "Ownable: caller is not the owner");
		coins = coins * 1 ether;
		for (uint256 ind = 0; ind < _addresses.length; ind++) {
        			_mint(_addresses[ind], coins);
			emit RewardPaid(_addresses[ind], coins);
	}
	}
	function airdropToTokens(uint256[] calldata _tokenIds,uint256 coins) external {
	    require(_owner == _msgSender(), "Ownable: caller is not the owner");
		coins = coins * 1 ether;
		for (uint256 ind = 0; ind < _tokenIds.length; ind++) {
        			_mint(address(PunkContract.ownerOf(_tokenIds[ind])), coins);
			emit RewardPaid(PunkContract.ownerOf(_tokenIds[ind]), coins);
	}
	}	
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_punks","type":"address"}],"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":false,"internalType":"uint256","name":"baserate","type":"uint256"}],"name":"BaseRateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isPauseEnabled","type":"bool"}],"name":"ChangeIsPausedEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"redeemfirstrate","type":"uint256"}],"name":"FirstRedeemRateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FirstRedeemRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PunkContract","outputs":[{"internalType":"contract PunkC","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"TokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"coins","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"coins","type":"uint256"}],"name":"airdropToTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":"uint256","name":"_punk","type":"uint256"}],"name":"getClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_punk","type":"uint256"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"getRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"getTotalClaimableU","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":"isPauseEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"coins","type":"uint256"}],"name":"omint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardtimeframe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baserate","type":"uint256"}],"name":"setBaseRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FirstRedeemRate","type":"uint256"}],"name":"setFirstRedeemRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPauseEnabled","type":"bool"}],"name":"setPauseStatus","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"}]

6080604052678ac7230489e800006006556803cb71f51fc55800006007553480156200002a57600080fd5b506040516200373138038062003731833981810160405260208110156200005057600080fd5b81019080805190602001909291905050506040518060400160405280600681526020017f43686172676500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43484152474500000000000000000000000000000000000000000000000000008152508160039080519060200190620000e5929190620001bd565b508060049080519060200190620000fe929190620001bd565b506012600560006101000a81548160ff021916908360ff160217905550505080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200016e620001b560201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000263565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020057805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023057825182559160200191906001019062000213565b5b50905062000240919062000244565b5090565b5b808211156200025f57600081600090555060010162000245565b5090565b6134be80620002736000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806395d89b411161010f578063d5edc2f1116100a2578063f301af4211610071578063f301af42146109cf578063f490177214610a11578063f5b6e1c214610a8a578063fbfe0efb14610b0d576101e5565b8063d5edc2f11461086c578063dd62ed3e1461088a578063e3dc4f7c14610902578063ec8209441461099b576101e5565b8063a9059cbb116100de578063a9059cbb14610727578063c204642c1461078b578063c38bb5371461080e578063d45688171461083e576101e5565b806395d89b41146105d05780639c7e4a6614610653578063a20097ba14610695578063a457c2d7146106c3576101e5565b806323b872dd1161018757806341910f901161015657806341910f901461050e57806342966c681461052c57806370a082311461055a57806380bc242f146105b2576101e5565b806323b872dd146103e55780632a91090d14610469578063313ce5671461048957806339509351146104aa576101e5565b806318160ddd116101c357806318160ddd146103135780631c462233146103315780631c4b774b146103895780631d08837b146103b7576101e5565b806306fdde03146101ea578063095ea7b31461026d5780630bc5dec4146102d1575b600080fd5b6101f2610b9a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b96004803603604081101561028357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3c565b60405180821515815260200191505060405180910390f35b6102fd600480360360208110156102e757600080fd5b8101908080359060200190929190505050610c5a565b6040518082815260200191505060405180910390f35b61031b610c72565b6040518082815260200191505060405180910390f35b6103736004803603602081101561034757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c7c565b6040518082815260200191505060405180910390f35b6103b56004803603602081101561039f57600080fd5b810190808035906020019092919050505061106b565b005b6103e3600480360360208110156103cd57600080fd5b8101908080359060200190929190505050611342565b005b610451600480360360608110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061145a565b60405180821515815260200191505060405180910390f35b610471611533565b60405180821515815260200191505060405180910390f35b610491611546565b604051808260ff16815260200191505060405180910390f35b6104f6600480360360408110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061155d565b60405180821515815260200191505060405180910390f35b610516611610565b6040518082815260200191505060405180910390f35b6105586004803603602081101561054257600080fd5b8101908080359060200190929190505050611616565b005b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611701565b6040518082815260200191505060405180910390f35b6105ba611749565b6040518082815260200191505060405180910390f35b6105d8611750565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106185780820151818401526020810190506105fd565b50505050905090810190601f1680156106455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506117f2565b6040518082815260200191505060405180910390f35b6106c1600480360360208110156106ab57600080fd5b8101908080359060200190929190505050611852565b005b61070f600480360360408110156106d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061196a565b60405180821515815260200191505060405180910390f35b6107736004803603604081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a37565b60405180821515815260200191505060405180910390f35b61080c600480360360408110156107a157600080fd5b81019080803590602001906401000000008111156107be57600080fd5b8201836020820111156107d057600080fd5b803590602001918460208302840111640100000000831117156107f257600080fd5b909192939192939080359060200190929190505050611a55565b005b61083c6004803603602081101561082457600080fd5b81019080803515159060200190929190505050611bf5565b005b61086a6004803603602081101561085457600080fd5b8101908080359060200190929190505050611d15565b005b610874611e47565b6040518082815260200191505060405180910390f35b6108ec600480360360408110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e4d565b6040518082815260200191505060405180910390f35b6109446004803603602081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed4565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561098757808201518184015260208101905061096c565b505050509050019250505060405180910390f35b6109a3612233565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109fb600480360360208110156109e557600080fd5b8101908080359060200190929190505050612259565b6040518082815260200191505060405180910390f35b610a8860048036036020811015610a2757600080fd5b8101908080359060200190640100000000811115610a4457600080fd5b820183602082011115610a5657600080fd5b80359060200191846020830284011164010000000083111715610a7857600080fd5b9091929391929390505050612271565b005b610b0b60048036036040811015610aa057600080fd5b8101908080359060200190640100000000811115610abd57600080fd5b820183602082011115610acf57600080fd5b80359060200191846020830284011164010000000083111715610af157600080fd5b90919293919293908035906020019092919050505061258f565b005b610b8460048036036020811015610b2357600080fd5b8101908080359060200190640100000000811115610b4057600080fd5b820183602082011115610b5257600080fd5b80359060200191846020830284011164010000000083111715610b7457600080fd5b909192939192939050505061285d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c325780601f10610c0757610100808354040283529160200191610c32565b820191906000526020600020905b815481529060010190602001808311610c1557829003601f168201915b5050505050905090565b6000610c50610c496128fd565b8484612905565b6001905092915050565b600a6020528060005260406000206000915090505481565b6000600254905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d0857600080fd5b505afa158015610d1c573d6000803e3d6000fd5b505050506040513d6020811015610d3257600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610daf57600080fd5b505afa158015610dc3573d6000803e3d6000fd5b505050506040513d6020811015610dd957600080fd5b8101908080519060200190929190505050905060608267ffffffffffffffff81118015610e0557600080fd5b50604051908082528060200260200182016040528015610e345781602001602082028036833780820191505090505b5090506001831015610eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f596f7520646f206e6f74206f776e20612070756e6b000000000000000000000081525060200191505060405180910390fd5b600080600190505b838111610fcd57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f3057600080fd5b505afa158015610f44573d6000803e3d6000fd5b505050506040513d6020811015610f5a57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415610fc05780838381518110610fab57fe5b60200260200101818152505081806001019250505b8080600101915050610eb6565b5060008060005b845181101561105c57848181518110610fe957fe5b602002602001015192506000429050600080600a600087815260200190815260200160002054141561101f576007549050611048565b60065462015180600a60008881526020019081526020016000205484038161104357fe5b040290505b808401935050508080600101915050610fd4565b50809650505050505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156110de57600080fd5b505afa1580156110f2573d6000803e3d6000fd5b505050506040513d602081101561110857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133b06022913960400191505060405180910390fd5b600860009054906101000a900460ff161561121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5374616b696e67206973206f6e2070617573650000000000000000000000000081525060200191505060405180910390fd5b6000804290506000600a600085815260200190815260200160002054141561124b576007549150611274565b60065462015180600a60008681526020019081526020016000205483038161126f57fe5b040291505b600182116112cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061336d6021913960400191505060405180910390fd5b80600a6000858152602001908152602001600020819055506112ef3383612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a2505050565b61134a6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050806006819055507fc98034147b45762a645f5d7c4755be34747c222204b5f4c4a80442613041d4df816040518082815260200191505060405180910390a150565b6000611467848484612cc3565b611528846114736128fd565b611523856040518060600160405280602881526020016133d260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114d96128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b612905565b600190509392505050565b600860009054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b600061160661156a6128fd565b84611601856001600061157b6128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b612905565b6001905092915050565b60065481565b61161e6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000810290506116fe6116f86128fd565b826130cc565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6201518081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117e85780601f106117bd576101008083540402835291602001916117e8565b820191906000526020600020905b8154815290600101906020018083116117cb57829003601f168201915b5050505050905090565b600080429050600080600a600086815260200190815260200160002054141561181f576007549050611848565b60065462015180600a60008781526020019081526020016000205484038161184357fe5b040290505b8092505050919050565b61185a6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050806007819055507fa0b124aa4d61a4eb746b46b39b2733fb24b137e921012aa959d2cb537e2c80c7816040518082815260200191505060405180910390a150565b6000611a2d6119776128fd565b84611a288560405180606001604052806025815260200161346460259139600160006119a16128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b612905565b6001905092915050565b6000611a4b611a446128fd565b8484612cc3565b6001905092915050565b611a5d6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a76400008102905060005b83839050811015611bef57611b6c848483818110611b4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1683612afc565b838382818110611b7857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a28080600101915050611b2f565b50505050565b611bfd6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548160ff0219169083151502179055507f6c737c3860d0b11cf7881e1ca8256bc907fadfa5cbae1a5d760130239f97bb128160405180821515815260200191505060405180910390a150565b611d1d6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050611df63382612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a250565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f6157600080fd5b505afa158015611f75573d6000803e3d6000fd5b505050506040513d6020811015611f8b57600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561200857600080fd5b505afa15801561201c573d6000803e3d6000fd5b505050506040513d602081101561203257600080fd5b8101908080519060200190929190505050905060608267ffffffffffffffff8111801561205e57600080fd5b5060405190808252806020026020018201604052801561208d5781602001602082028036833780820191505090505b5090506001831015612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f596f7520646f206e6f74206f776e20612070756e6b000000000000000000000081525060200191505060405180910390fd5b600080600190505b83811161222657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d60208110156121b357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415612219578083838151811061220457fe5b60200260200101818152505081806001019250505b808060010191505061210f565b5081945050505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b60008060005b848490508110156124d757600085858381811061229057fe5b905060200201359050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561230c57600080fd5b505afa158015612320573d6000803e3d6000fd5b505050506040513d602081101561233657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133b06022913960400191505060405180910390fd5b600860009054906101000a900460ff161561244d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5374616b696e67206973206f6e2070617573650000000000000000000000000081525060200191505060405180910390fd5b60004290506000600a60008481526020019081526020016000205414156124785760075494506124a1565b60065462015180600a60008581526020019081526020016000205483038161249c57fe5b040294505b60018511156124c85780600a60008481526020019081526020016000208190555084840193505b50508080600101915050612277565b5060018111612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061338e6022913960400191505060405180910390fd5b61253b3382612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a250505050565b6125976128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a76400008102905060005b838390508110156128575761273d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8686858181106126c157fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156126fc57600080fd5b505afa158015612710573d6000803e3d6000fd5b505050506040513d602081101561272657600080fd5b810190808051906020019092919050505083612afc565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858481811061278757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156127c257600080fd5b505afa1580156127d6573d6000803e3d6000fd5b505050506040513d60208110156127ec57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a28080600101915050612669565b50505050565b600080600080600090505b858590508110156128f15785858281811061287f57fe5b9050602002013592506000429050600080600a60008781526020019081526020016000205414156128b45760075490506128dd565b60065462015180600a6000888152602001908152602001600020548403816128d857fe5b040290505b808401935050508080600101915050612868565b50809250505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561298b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134406024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133256022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612bab60008383613290565b612bc08160025461304490919063ffffffff16565b600281905550612c17816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061341b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132e06023913960400191505060405180910390fd5b612dda838383613290565b612e4581604051806060016040528060268152602001613347602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ff6578082015181840152602081019050612fdb565b50505050905090810190601f1680156130235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156130c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133fa6021913960400191505060405180910390fd5b61315e82600083613290565b6131c981604051806060016040528060228152602001613303602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506132208160025461329590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60006132d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f84565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365596f75722070756e6b206469646e277420776f726b206861726420656e6f756768596f75722070756e6b73206469646e277420776f726b206861726420656e6f756768596f7520617265206e6f7420746865206f776e6572206f6620746869732070756e6b45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220213b2bd84df91664a9c626fb0200da3d38895fd9d9c97c28496e6f264d592a3d64736f6c634300060c003300000000000000000000000014b98025b6e87c0b8f297f4456797d22cbdf99a8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806395d89b411161010f578063d5edc2f1116100a2578063f301af4211610071578063f301af42146109cf578063f490177214610a11578063f5b6e1c214610a8a578063fbfe0efb14610b0d576101e5565b8063d5edc2f11461086c578063dd62ed3e1461088a578063e3dc4f7c14610902578063ec8209441461099b576101e5565b8063a9059cbb116100de578063a9059cbb14610727578063c204642c1461078b578063c38bb5371461080e578063d45688171461083e576101e5565b806395d89b41146105d05780639c7e4a6614610653578063a20097ba14610695578063a457c2d7146106c3576101e5565b806323b872dd1161018757806341910f901161015657806341910f901461050e57806342966c681461052c57806370a082311461055a57806380bc242f146105b2576101e5565b806323b872dd146103e55780632a91090d14610469578063313ce5671461048957806339509351146104aa576101e5565b806318160ddd116101c357806318160ddd146103135780631c462233146103315780631c4b774b146103895780631d08837b146103b7576101e5565b806306fdde03146101ea578063095ea7b31461026d5780630bc5dec4146102d1575b600080fd5b6101f2610b9a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b96004803603604081101561028357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c3c565b60405180821515815260200191505060405180910390f35b6102fd600480360360208110156102e757600080fd5b8101908080359060200190929190505050610c5a565b6040518082815260200191505060405180910390f35b61031b610c72565b6040518082815260200191505060405180910390f35b6103736004803603602081101561034757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c7c565b6040518082815260200191505060405180910390f35b6103b56004803603602081101561039f57600080fd5b810190808035906020019092919050505061106b565b005b6103e3600480360360208110156103cd57600080fd5b8101908080359060200190929190505050611342565b005b610451600480360360608110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061145a565b60405180821515815260200191505060405180910390f35b610471611533565b60405180821515815260200191505060405180910390f35b610491611546565b604051808260ff16815260200191505060405180910390f35b6104f6600480360360408110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061155d565b60405180821515815260200191505060405180910390f35b610516611610565b6040518082815260200191505060405180910390f35b6105586004803603602081101561054257600080fd5b8101908080359060200190929190505050611616565b005b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611701565b6040518082815260200191505060405180910390f35b6105ba611749565b6040518082815260200191505060405180910390f35b6105d8611750565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106185780820151818401526020810190506105fd565b50505050905090810190601f1680156106455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61067f6004803603602081101561066957600080fd5b81019080803590602001909291905050506117f2565b6040518082815260200191505060405180910390f35b6106c1600480360360208110156106ab57600080fd5b8101908080359060200190929190505050611852565b005b61070f600480360360408110156106d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061196a565b60405180821515815260200191505060405180910390f35b6107736004803603604081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a37565b60405180821515815260200191505060405180910390f35b61080c600480360360408110156107a157600080fd5b81019080803590602001906401000000008111156107be57600080fd5b8201836020820111156107d057600080fd5b803590602001918460208302840111640100000000831117156107f257600080fd5b909192939192939080359060200190929190505050611a55565b005b61083c6004803603602081101561082457600080fd5b81019080803515159060200190929190505050611bf5565b005b61086a6004803603602081101561085457600080fd5b8101908080359060200190929190505050611d15565b005b610874611e47565b6040518082815260200191505060405180910390f35b6108ec600480360360408110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e4d565b6040518082815260200191505060405180910390f35b6109446004803603602081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed4565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561098757808201518184015260208101905061096c565b505050509050019250505060405180910390f35b6109a3612233565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109fb600480360360208110156109e557600080fd5b8101908080359060200190929190505050612259565b6040518082815260200191505060405180910390f35b610a8860048036036020811015610a2757600080fd5b8101908080359060200190640100000000811115610a4457600080fd5b820183602082011115610a5657600080fd5b80359060200191846020830284011164010000000083111715610a7857600080fd5b9091929391929390505050612271565b005b610b0b60048036036040811015610aa057600080fd5b8101908080359060200190640100000000811115610abd57600080fd5b820183602082011115610acf57600080fd5b80359060200191846020830284011164010000000083111715610af157600080fd5b90919293919293908035906020019092919050505061258f565b005b610b8460048036036020811015610b2357600080fd5b8101908080359060200190640100000000811115610b4057600080fd5b820183602082011115610b5257600080fd5b80359060200191846020830284011164010000000083111715610b7457600080fd5b909192939192939050505061285d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c325780601f10610c0757610100808354040283529160200191610c32565b820191906000526020600020905b815481529060010190602001808311610c1557829003601f168201915b5050505050905090565b6000610c50610c496128fd565b8484612905565b6001905092915050565b600a6020528060005260406000206000915090505481565b6000600254905090565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d0857600080fd5b505afa158015610d1c573d6000803e3d6000fd5b505050506040513d6020811015610d3257600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610daf57600080fd5b505afa158015610dc3573d6000803e3d6000fd5b505050506040513d6020811015610dd957600080fd5b8101908080519060200190929190505050905060608267ffffffffffffffff81118015610e0557600080fd5b50604051908082528060200260200182016040528015610e345781602001602082028036833780820191505090505b5090506001831015610eae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f596f7520646f206e6f74206f776e20612070756e6b000000000000000000000081525060200191505060405180910390fd5b600080600190505b838111610fcd57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610f3057600080fd5b505afa158015610f44573d6000803e3d6000fd5b505050506040513d6020811015610f5a57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415610fc05780838381518110610fab57fe5b60200260200101818152505081806001019250505b8080600101915050610eb6565b5060008060005b845181101561105c57848181518110610fe957fe5b602002602001015192506000429050600080600a600087815260200190815260200160002054141561101f576007549050611048565b60065462015180600a60008881526020019081526020016000205484038161104357fe5b040290505b808401935050508080600101915050610fd4565b50809650505050505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156110de57600080fd5b505afa1580156110f2573d6000803e3d6000fd5b505050506040513d602081101561110857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133b06022913960400191505060405180910390fd5b600860009054906101000a900460ff161561121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5374616b696e67206973206f6e2070617573650000000000000000000000000081525060200191505060405180910390fd5b6000804290506000600a600085815260200190815260200160002054141561124b576007549150611274565b60065462015180600a60008681526020019081526020016000205483038161126f57fe5b040291505b600182116112cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061336d6021913960400191505060405180910390fd5b80600a6000858152602001908152602001600020819055506112ef3383612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a2505050565b61134a6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050806006819055507fc98034147b45762a645f5d7c4755be34747c222204b5f4c4a80442613041d4df816040518082815260200191505060405180910390a150565b6000611467848484612cc3565b611528846114736128fd565b611523856040518060600160405280602881526020016133d260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114d96128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b612905565b600190509392505050565b600860009054906101000a900460ff1681565b6000600560009054906101000a900460ff16905090565b600061160661156a6128fd565b84611601856001600061157b6128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b612905565b6001905092915050565b60065481565b61161e6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000810290506116fe6116f86128fd565b826130cc565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6201518081565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117e85780601f106117bd576101008083540402835291602001916117e8565b820191906000526020600020905b8154815290600101906020018083116117cb57829003601f168201915b5050505050905090565b600080429050600080600a600086815260200190815260200160002054141561181f576007549050611848565b60065462015180600a60008781526020019081526020016000205484038161184357fe5b040290505b8092505050919050565b61185a6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050806007819055507fa0b124aa4d61a4eb746b46b39b2733fb24b137e921012aa959d2cb537e2c80c7816040518082815260200191505060405180910390a150565b6000611a2d6119776128fd565b84611a288560405180606001604052806025815260200161346460259139600160006119a16128fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b612905565b6001905092915050565b6000611a4b611a446128fd565b8484612cc3565b6001905092915050565b611a5d6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a76400008102905060005b83839050811015611bef57611b6c848483818110611b4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1683612afc565b838382818110611b7857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a28080600101915050611b2f565b50505050565b611bfd6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860006101000a81548160ff0219169083151502179055507f6c737c3860d0b11cf7881e1ca8256bc907fadfa5cbae1a5d760130239f97bb128160405180821515815260200191505060405180910390a150565b611d1d6128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a764000081029050611df63382612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a250565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60606000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f6157600080fd5b505afa158015611f75573d6000803e3d6000fd5b505050506040513d6020811015611f8b57600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561200857600080fd5b505afa15801561201c573d6000803e3d6000fd5b505050506040513d602081101561203257600080fd5b8101908080519060200190929190505050905060608267ffffffffffffffff8111801561205e57600080fd5b5060405190808252806020026020018201604052801561208d5781602001602082028036833780820191505090505b5090506001831015612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f596f7520646f206e6f74206f776e20612070756e6b000000000000000000000081525060200191505060405180910390fd5b600080600190505b83811161222657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561218957600080fd5b505afa15801561219d573d6000803e3d6000fd5b505050506040513d60208110156121b357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415612219578083838151811061220457fe5b60200260200101818152505081806001019250505b808060010191505061210f565b5081945050505050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915090505481565b60008060005b848490508110156124d757600085858381811061229057fe5b905060200201359050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561230c57600080fd5b505afa158015612320573d6000803e3d6000fd5b505050506040513d602081101561233657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133b06022913960400191505060405180910390fd5b600860009054906101000a900460ff161561244d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5374616b696e67206973206f6e2070617573650000000000000000000000000081525060200191505060405180910390fd5b60004290506000600a60008481526020019081526020016000205414156124785760075494506124a1565b60065462015180600a60008581526020019081526020016000205483038161249c57fe5b040294505b60018511156124c85780600a60008481526020019081526020016000208190555084840193505b50508080600101915050612277565b5060018111612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061338e6022913960400191505060405180910390fd5b61253b3382612afc565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a250505050565b6125976128fd565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a76400008102905060005b838390508110156128575761273d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e8686858181106126c157fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156126fc57600080fd5b505afa158015612710573d6000803e3d6000fd5b505050506040513d602081101561272657600080fd5b810190808051906020019092919050505083612afc565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858481811061278757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156127c257600080fd5b505afa1580156127d6573d6000803e3d6000fd5b505050506040513d60208110156127ec57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486836040518082815260200191505060405180910390a28080600101915050612669565b50505050565b600080600080600090505b858590508110156128f15785858281811061287f57fe5b9050602002013592506000429050600080600a60008781526020019081526020016000205414156128b45760075490506128dd565b60065462015180600a6000888152602001908152602001600020548403816128d857fe5b040290505b808401935050508080600101915050612868565b50809250505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561298b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806134406024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133256022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612bab60008383613290565b612bc08160025461304490919063ffffffff16565b600281905550612c17816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061341b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132e06023913960400191505060405180910390fd5b612dda838383613290565b612e4581604051806060016040528060268152602001613347602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed8816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ff6578082015181840152602081019050612fdb565b50505050905090810190601f1680156130235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156130c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133fa6021913960400191505060405180910390fd5b61315e82600083613290565b6131c981604051806060016040528060228152602001613303602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f849092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506132208160025461329590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60006132d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f84565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365596f75722070756e6b206469646e277420776f726b206861726420656e6f756768596f75722070756e6b73206469646e277420776f726b206861726420656e6f756768596f7520617265206e6f7420746865206f776e6572206f6620746869732070756e6b45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220213b2bd84df91664a9c626fb0200da3d38895fd9d9c97c28496e6f264d592a3d64736f6c634300060c0033

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

00000000000000000000000014b98025b6e87c0b8f297f4456797d22cbdf99a8

-----Decoded View---------------
Arg [0] : _punks (address): 0x14b98025B6e87c0B8F297F4456797D22cbDF99a8

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000014b98025b6e87c0b8f297f4456797d22cbdf99a8


Deployed Bytecode Sourcemap

26567:6966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17729:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19835:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26874:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18804:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28609:1101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31118:589;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27294:239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20478:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26796:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18656:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21208:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26706:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30799:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18967:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26647:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17931:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30337:455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27538:294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21929:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19299:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32809:330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31716:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32575:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26746:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19537:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31961:603;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26954:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26828:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27837:767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33142:387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29716:615;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17729:83;17766:13;17799:5;17792:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17729:83;:::o;19835:169::-;19918:4;19935:39;19944:12;:10;:12::i;:::-;19958:7;19967:6;19935:8;:39::i;:::-;19992:4;19985:11;;19835:169;;;;:::o;26874:45::-;;;;;;;;;;;;;;;;;:::o;18804:100::-;18857:7;18884:12;;18877:19;;18804:100;:::o;28609:1101::-;28677:7;28701:13;28717:12;;;;;;;;;;;:22;;;28740:8;28717:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28701:48;;28786:21;28810:12;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28786:50;;28874:21;28909:8;28898:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28874:44;;28962:1;28952:8;:11;;28944:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28999:11;29030:7;29040:1;29030:11;;29025:158;29049:16;29043:2;:22;29025:158;;29108:12;;;;;;;;;;;:20;;;29129:2;29108:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29096:36;;:8;:36;;;29092:76;;;29154:2;29136:7;29144:6;29136:15;;;;;;;;;;;;;:20;;;;;29158:8;;;;;;;29092:76;29067:4;;;;;;;29025:158;;;;29193:13;29211:15;29236:11;29231:459;29259:7;:14;29253:3;:20;29231:459;;;29294:7;29302:3;29294:12;;;;;;;;;;;;;;29288:18;;29311:12;29326:15;29311:30;;29346:15;29392:1;29371:10;:17;29382:5;29371:17;;;;;;;;;;;;:22;29368:144;;;29410:15;;29401:24;;29368:144;;;29501:9;;26689:5;29462:10;:17;29473:5;29462:17;;;;;;;;;;;;29455:4;:24;29450:48;;;;;;:60;29440:70;;29368:144;29674:7;29666;:15;29657:24;;29231:459;;29275:5;;;;;;;29231:459;;;;29700:7;29693:14;;;;;;;;28609:1101;;;:::o;31118:589::-;31196:12;;;;;;;;;;;:20;;;31217:5;31196:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31174:50;;:10;:50;;;31166:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31277:14;;;;;;;;;;;31276:15;31268:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31320:15;31340:12;31355:15;31340:30;;31401:1;31380:10;:17;31391:5;31380:17;;;;;;;;;;;;:22;31377:147;;;31421:15;;31412:24;;31377:147;;;31512:9;;26689:5;31473:10;:17;31484:5;31473:17;;;;;;;;;;;;31466:4;:24;31461:48;;;;;;:60;31451:70;;31377:147;31559:1;31549:7;:11;31541:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31624:4;31604:10;:17;31615:5;31604:17;;;;;;;;;;;:24;;;;31634:26;31640:10;31652:7;31634:5;:26::i;:::-;31682:10;31671:31;;;31694:7;31671:31;;;;;;;;;;;;;;;;;;31118:589;;;:::o;27294:239::-;27372:12;:10;:12::i;:::-;27362:22;;:6;;;;;;;;;;;:22;;;27354:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27456:7;27444:9;:19;27432:31;;27478:9;27468;:19;;;;27503:22;27515:9;27503:22;;;;;;;;;;;;;;;;;;27294:239;:::o;20478:321::-;20584:4;20601:36;20611:6;20619:9;20630:6;20601:9;:36::i;:::-;20648:121;20657:6;20665:12;:10;:12::i;:::-;20679:89;20717:6;20679:89;;;;;;;;;;;;;;;;;:11;:19;20691:6;20679:19;;;;;;;;;;;;;;;:33;20699:12;:10;:12::i;:::-;20679:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20648:8;:121::i;:::-;20787:4;20780:11;;20478:321;;;;;:::o;26796:26::-;;;;;;;;;;;;;:::o;18656:83::-;18697:5;18722:9;;;;;;;;;;;18715:16;;18656:83;:::o;21208:218::-;21296:4;21313:83;21322:12;:10;:12::i;:::-;21336:7;21345:50;21384:10;21345:11;:25;21357:12;:10;:12::i;:::-;21345:25;;;;;;;;;;;;;;;:34;21371:7;21345:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21313:8;:83::i;:::-;21414:4;21407:11;;21208:218;;;;:::o;26706:35::-;;;;:::o;30799:310::-;30868:12;:10;:12::i;:::-;30858:22;;:6;;;;;;;;;;;:22;;;30850:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31064:7;31054;:17;31044:27;;31076:28;31082:12;:10;:12::i;:::-;31096:7;31076:5;:28::i;:::-;30799:310;:::o;18967:119::-;19033:7;19060:9;:18;19070:7;19060:18;;;;;;;;;;;;;;;;19053:25;;18967:119;;;:::o;26647:47::-;26689:5;26647:47;:::o;17931:87::-;17970:13;18003:7;17996:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17931:87;:::o;30337:455::-;30396:7;30410:12;30425:15;30410:30;;30445:15;30494:1;30473:10;:17;30484:5;30473:17;;;;;;;;;;;;:22;30470:154;;;30512:15;;30503:24;;30470:154;;;30603:9;;26689:5;30564:10;:17;30575:5;30564:17;;;;;;;;;;;;30557:4;:24;30552:48;;;;;;:60;30542:70;;30470:154;30776:7;30769:14;;;;30337:455;;;:::o;27538:294::-;27630:12;:10;:12::i;:::-;27620:22;;:6;;;;;;;;;;;:22;;;27612:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27728:7;27709:16;:26;27690:45;;27756:16;27740:15;:32;;;;27788:36;27807:16;27788:36;;;;;;;;;;;;;;;;;;27538:294;:::o;21929:269::-;22022:4;22039:129;22048:12;:10;:12::i;:::-;22062:7;22071:96;22110:15;22071:96;;;;;;;;;;;;;;;;;:11;:25;22083:12;:10;:12::i;:::-;22071:25;;;;;;;;;;;;;;;:34;22097:7;22071:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22039:8;:129::i;:::-;22186:4;22179:11;;21929:269;;;;:::o;19299:175::-;19385:4;19402:42;19412:12;:10;:12::i;:::-;19426:9;19437:6;19402:9;:42::i;:::-;19462:4;19455:11;;19299:175;;;;:::o;32809:330::-;32906:12;:10;:12::i;:::-;32896:22;;:6;;;;;;;;;;;:22;;;32888:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32976:7;32968:5;:15;32960:23;;32993:11;32988:147;33016:10;;:17;;33010:3;:23;32988:147;;;33056:29;33062:10;;33073:3;33062:15;;;;;;;;;;;;;;;33079:5;33056;:29::i;:::-;33107:10;;33118:3;33107:15;;;;;;;;;;;;;;;33096:34;;;33124:5;33096:34;;;;;;;;;;;;;;;;;;33035:5;;;;;;;32988:147;;;;32809:330;;;:::o;31716:238::-;31800:12;:10;:12::i;:::-;31790:22;;:6;;;;;;;;;;;:22;;;31782:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31877:15;31860:14;;:32;;;;;;;;;;;;;;;;;;31908:38;31930:15;31908:38;;;;;;;;;;;;;;;;;;;;31716:238;:::o;32575:228::-;32640:12;:10;:12::i;:::-;32630:22;;:6;;;;;;;;;;;:22;;;32622:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32713:7;32705:5;:15;32697:23;;32734:24;32740:10;32752:5;32734;:24::i;:::-;32780:10;32769:29;;;32792:5;32769:29;;;;;;;;;;;;;;;;;;32575:228;:::o;26746:41::-;;;;:::o;19537:151::-;19626:7;19653:11;:18;19665:5;19653:18;;;;;;;;;;;;;;;:27;19672:7;19653:27;;;;;;;;;;;;;;;;19646:34;;19537:151;;;;:::o;31961:603::-;32023:13;32049;32065:12;;;;;;;;;;;:22;;;32088:8;32065:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32049:48;;32134:21;32158:12;;;;;;;;;;;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32134:50;;32222:21;32257:8;32246:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32222:44;;32310:1;32300:8;:11;;32292:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32347:11;32378:7;32388:1;32378:11;;32373:158;32397:16;32391:2;:22;32373:158;;32456:12;;;;;;;;;;;:20;;;32477:2;32456:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32444:36;;:8;:36;;;32440:76;;;32502:2;32484:7;32492:6;32484:15;;;;;;;;;;;;;:20;;;;;32506:8;;;;;;;32440:76;32415:4;;;;;;;32373:158;;;;32548:7;32541:14;;;;;;31961:603;;;:::o;26954:25::-;;;;;;;;;;;;;:::o;26828:42::-;;;;;;;;;;;;;;;;;:::o;27837:767::-;27901:15;27921;27946:9;27942:519;27965:9;;:16;;27961:1;:20;27942:519;;;27995:13;28011:9;;28021:1;28011:12;;;;;;;;;;;;;27995:28;;28058:12;;;;;;;;;;;:20;;;28079:5;28058:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28036:50;;:10;:50;;;28028:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28139:14;;;;;;;;;;;28138:15;28130:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28182:12;28197:15;28182:30;;28243:1;28222:10;:17;28233:5;28222:17;;;;;;;;;;;;:22;28219:159;;;28263:15;;28254:24;;28219:159;;;28354:9;;26689:5;28315:10;:17;28326:5;28315:17;;;;;;;;;;;;28308:4;:24;28303:48;;;;;;:60;28293:70;;28219:159;28393:1;28385:7;:9;28382:78;;;28421:4;28401:10;:17;28412:5;28401:17;;;;;;;;;;;:24;;;;28447:7;28439;:15;28431:23;;28382:78;27942:519;;27983:3;;;;;;;27942:519;;;;28484:1;28474:7;:11;28466:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28531:26;28537:10;28549:7;28531:5;:26::i;:::-;28579:10;28568:31;;;28591:7;28568:31;;;;;;;;;;;;;;;;;;27837:767;;;;:::o;33142:387::-;33246:12;:10;:12::i;:::-;33236:22;;:6;;;;;;;;;;;:22;;;33228:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33316:7;33308:5;:15;33300:23;;33333:11;33328:197;33356:9;;:16;;33350:3;:22;33328:197;;;33395:59;33409:12;;;;;;;;;;;:20;;;33430:9;;33440:3;33430:14;;;;;;;;;;;;;33409:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33448:5;33395;:59::i;:::-;33476:12;;;;;;;;;;;:20;;;33497:9;;33507:3;33497:14;;;;;;;;;;;;;33476:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33465:55;;;33514:5;33465:55;;;;;;;;;;;;;;;;;;33374:5;;;;;;;33328:197;;;;33142:387;;;:::o;29716:615::-;29795:7;29813:13;29831:15;29856:11;29870:1;29856:15;;29851:463;29879:9;;:16;;29873:3;:22;29851:463;;;29916:9;;29926:3;29916:14;;;;;;;;;;;;;29910:20;;29935:12;29950:15;29935:30;;29970:15;30016:1;29995:10;:17;30006:5;29995:17;;;;;;;;;;;;:22;29992:144;;;30034:15;;30025:24;;29992:144;;;30125:9;;26689:5;30086:10;:17;30097:5;30086:17;;;;;;;;;;;;30079:4;:24;30074:48;;;;;;:60;30064:70;;29992:144;30298:7;30290;:15;30281:24;;29851:463;;29897:5;;;;;;;29851:463;;;;30321:7;30314:14;;;;29716:615;;;;:::o;7085:106::-;7138:15;7173:10;7166:17;;7085:106;:::o;25074:346::-;25193:1;25176:19;;:5;:19;;;;25168:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25274:1;25255:21;;:7;:21;;;;25247:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25358:6;25328:11;:18;25340:5;25328:18;;;;;;;;;;;;;;;:27;25347:7;25328:27;;;;;;;;;;;;;;;:36;;;;25396:7;25380:32;;25389:5;25380:32;;;25405:6;25380:32;;;;;;;;;;;;;;;;;;25074:346;;;:::o;23508:378::-;23611:1;23592:21;;:7;:21;;;;23584:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:49;23691:1;23695:7;23704:6;23662:20;:49::i;:::-;23739:24;23756:6;23739:12;;:16;;:24;;;;:::i;:::-;23724:12;:39;;;;23795:30;23818:6;23795:9;:18;23805:7;23795:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23774:9;:18;23784:7;23774:18;;;;;;;;;;;;;;;:51;;;;23862:7;23841:37;;23858:1;23841:37;;;23871:6;23841:37;;;;;;;;;;;;;;;;;;23508:378;;:::o;22688:539::-;22812:1;22794:20;;:6;:20;;;;22786:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22896:1;22875:23;;:9;:23;;;;22867:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22951:47;22972:6;22980:9;22991:6;22951:20;:47::i;:::-;23031:71;23053:6;23031:71;;;;;;;;;;;;;;;;;:9;:17;23041:6;23031:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23011:9;:17;23021:6;23011:17;;;;;;;;;;;;;;;:91;;;;23136:32;23161:6;23136:9;:20;23146:9;23136:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23113:9;:20;23123:9;23113:20;;;;;;;;;;;;;;;:55;;;;23201:9;23184:35;;23193:6;23184:35;;;23212:6;23184:35;;;;;;;;;;;;;;;;;;22688:539;;;:::o;12019:192::-;12105:7;12138:1;12133;:6;;12141:12;12125:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12165:9;12181:1;12177;:5;12165:17;;12202:1;12195:8;;;12019:192;;;;;:::o;11116:181::-;11174:7;11194:9;11210:1;11206;:5;11194:17;;11235:1;11230;:6;;11222:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11288:1;11281:8;;;11116:181;;;;:::o;24218:418::-;24321:1;24302:21;;:7;:21;;;;24294:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24374:49;24395:7;24412:1;24416:6;24374:20;:49::i;:::-;24457:68;24480:6;24457:68;;;;;;;;;;;;;;;;;:9;:18;24467:7;24457:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;24436:9;:18;24446:7;24436:18;;;;;;;;;;;;;;;:89;;;;24551:24;24568:6;24551:12;;:16;;:24;;;;:::i;:::-;24536:12;:39;;;;24617:1;24591:37;;24600:7;24591:37;;;24621:6;24591:37;;;;;;;;;;;;;;;;;;24218:418;;:::o;26445:92::-;;;;:::o;11580:136::-;11638:7;11665:43;11669:1;11672;11665:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;11658:50;;11580:136;;;;:::o

Swarm Source

ipfs://213b2bd84df91664a9c626fb0200da3d38895fd9d9c97c28496e6f264d592a3d
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.