ETH Price: $3,411.49 (-0.97%)
Gas: 2 Gwei

Token

Chic-A-Dee EGGS (EGGS)
 

Overview

Max Total Supply

167,855,656 EGGS

Holders

96 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
duckingwhimsical.eth
Balance
6,480 EGGS

Value
$0.00
0xC1c0e9750fAB87ac871eA40D005063F3750fe143
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Chic-A-Dees is a gamified NFT experience. Each Chic-A-Dee is uniquely computer-generated with RPG game stats and the ability to lay eggs. The eggs are laid as ERC20 tokens and can be used in the EGG DAO. There is a maximum of 1 billion eggs and each Chic lays 1 per block.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ChicADeeEggs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Ownerfy-Contract_Eggs.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
/**
* This contract was deployed by Ownerfy Inc. of Ownerfy.com
*
* EGGS are layed by Chic-A-Dees NFTs 
* Chic-A-Dee NFT Contract 0xB352131fE48571B7661390E65BE4F12119e9686f
* To lay eggs you must be an owner of a Chic-A-Dee
* Then trigger the startOneLaying or harvestEggsFromChic methods
* If a Chic-A-Dee is transferred the last owner can still harvest
* their eggs. If the new owner begins a harvest it will send the 
* last eggs owed to the last owner first. This allows Chic-A-Dees
* to be on sale without worrying about harvesting the eggs
* at the last minute. Legendary Chics lay 2x the eggs.
* There will only be 1 billion eggs total.
* Once legendaries are all set ownership will be renounced.
*
*/
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface ERC1155Interface {
    function balanceOf(address account, uint256 id) external view returns (uint);
}

contract ChicADeeEggs is ERC20, Ownable {
    
    uint256 public constant MAX_EGGS = 1000000000000000000000000000;
    //uint public totalSupply = 0;

    //TODO: this might not take a string
    address public chicContract = 0xB352131fE48571B7661390E65BE4F12119e9686f;

    ERC1155Interface ERC1155Contract = ERC1155Interface(chicContract);

    struct ChicStatus {
      address recipient;
      uint startBlock;
    }
    mapping (uint256 => ChicStatus) public chicStatusMap;
    mapping (uint256 => bool) public isLegendary;


    event StartedLayingEggs(address indexed owner, uint256 indexed id, uint256 blockNumber);
    event HarvestEggs(address indexed recipient, uint256 indexed id, uint256 amount);

    constructor() ERC20("Chic-A-Dee EGGS", "EGGS") {}

    /**
     * @dev Checks `ids` of Chics if they are owned by owner.
     *
     */
    function _ownsChics(uint256[] memory ids) internal virtual returns(bool owns){

        for (uint i = 0; i < ids.length; i++) {

          if(_ownsChic(ids[i]) == false) {
            return false;
          }

        }
        return true;
        
    }

    /**
     * @dev Checks `ids` of Chics if they are owned by owner.
     *
     */
    function _ownsChic(uint256 id) internal virtual returns(bool owns){

        uint256 payload = ERC1155Contract.balanceOf(msg.sender, id);

        if(payload > 0) {
          return true;
        } else {
          return false;
        }

    }

     /**
     * @dev Checks `ids` of Chics if they are owned by owner.
     *
     */
    function _harvestEggs(uint256 id) internal virtual {
        require(totalSupply() < MAX_EGGS, "Max Eggs Reached");
        address lastRecipient = chicStatusMap[id].recipient;
        bool isCurrentOwner = _ownsChic(id);
        require(isCurrentOwner || lastRecipient == msg.sender, "Must be owner or past last");
      
        if(chicStatusMap[id].startBlock == 0) {
          chicStatusMap[id].startBlock = block.number;
        }
        
        uint256 eggsLayed = block.number - chicStatusMap[id].startBlock;

        if(isLegendary[id] == true) {
          eggsLayed = eggsLayed * 2;
        }

        eggsLayed = eggsLayed * 10**18;

        if(isCurrentOwner == false) {
          // If harvest is coming from last owner

          if(eggsLayed > 0) {
            _mint(lastRecipient, eggsLayed);

            emit HarvestEggs(lastRecipient, id, eggsLayed);
          }

          // New owner has to initialize
          // Last owner can't tell who new owner is
          chicStatusMap[id].recipient = address(0);
          
        } else {
          // For current owner

          // If harvest is owner but old owner still has some eggs and hasn't got them
          if(chicStatusMap[id].recipient != msg.sender && chicStatusMap[id].recipient != address(0)) {

            if(eggsLayed > 0) {
              _mint(lastRecipient, eggsLayed);
              emit HarvestEggs(lastRecipient, id, eggsLayed);
            }
            
          } else {
            // If owner is already recipient
            if(eggsLayed > 0) {
              _mint(msg.sender, eggsLayed);
            }
             
            emit HarvestEggs(msg.sender, id, eggsLayed);

          }

          // Set to new owner if it hasn't been
          chicStatusMap[id].recipient = msg.sender;
          
        }

        // Always trigger block reset
        chicStatusMap[id].startBlock = block.number;
        
    }

    // Start laying
    /**
     * @dev Starting to lay `ids`.
     *
     */
    function _startLaying(uint256 id) internal virtual {

      if(chicStatusMap[id].startBlock == 0){
        chicStatusMap[id].startBlock = block.number;
      }

      _harvestEggs(id);

      emit StartedLayingEggs(msg.sender, id, block.number);

    }

    // Start One laying
    /**
     * @dev Starting to lay `ids`.
     *
     */
    function startOneLaying(uint256 id) public virtual {
        // Check that caller owns these IDS
        // Must own to initialize the first time
        require(_ownsChic(id), "Ownerfy: must own this Chic");

        _startLaying(id);

    }

    // Start Many laying
    /**
     * @dev Starting to lay `ids`.
     *
     */
    function startManyLaying(uint256[] memory ids) public virtual {

        // Must own to initialize the first time
        require(_ownsChics(ids), "Ownerfy: must own all these Chics");
        for (uint i = 0; i < ids.length; i++) {
          _startLaying(ids[i]);
        }
    }

    // Harvest Eggs
    /**
     * @dev Harvests list of chics.
     *
     */
    function harvestEggsFromManyChics(uint256[] memory ids) public virtual {

        for (uint i = 0; i < ids.length; i++) {
          _harvestEggs(ids[i]);
        }
    }

    // Harvest Chic
    /**
     * @dev Harvests eggs for 1 chic.
     *
     */
    function harvestEggsFromChic(uint256 id) public virtual {
        _harvestEggs(id);
    }

    // Check chic balance
    /**
     * @dev Check chic balance
     *
     */
    function checkChicBalance(uint256 id) public view returns (uint256 balance){
        if(chicStatusMap[id].startBlock != 0) {
          uint eggsLayed = block.number - chicStatusMap[id].startBlock;
          eggsLayed = eggsLayed * 10**18;
          if(isLegendary[id] == true) {
            eggsLayed = eggsLayed * 2;
          }
          return eggsLayed;
        }
        return 0;   
    }

    // Set Legends
    /**
     * @dev Set Legends.
     *
     */
    function setLegendary(uint256[] memory ids, bool _isLegendary) public virtual onlyOwner{
        for (uint i = 0; i < ids.length; i++) {
          isLegendary[ids[i]] = _isLegendary;
        }
    }

}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"HarvestEggs","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"StartedLayingEggs","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":"MAX_EGGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"checkChicBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chicContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chicStatusMap","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"startBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"harvestEggsFromChic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"harvestEggsFromManyChics","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isLegendary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"bool","name":"_isLegendary","type":"bool"}],"name":"setLegendary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"startManyLaying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"startOneLaying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273b352131fe48571b7661390e65be4f12119e9686f600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c957600080fd5b506040518060400160405280600f81526020017f436869632d412d446565204547475300000000000000000000000000000000008152506040518060400160405280600481526020017f454747530000000000000000000000000000000000000000000000000000000081525081600390805190602001906200014e9291906200025e565b508060049080519060200190620001679291906200025e565b5050506200018a6200017e6200019060201b60201c565b6200019860201b60201c565b62000373565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026c906200030e565b90600052602060002090601f016020900481019282620002905760008555620002dc565b82601f10620002ab57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002db578251825591602001919060010190620002be565b5b509050620002eb9190620002ef565b5090565b5b808211156200030a576000816000905550600101620002f0565b5090565b600060028204905060018216806200032757607f821691505b602082108114156200033e576200033d62000344565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612a2f80620003836000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063aa88754f1161007c578063aa88754f146103dc578063c5a991f8146103f8578063dd62ed3e14610428578063e2c7aa1714610458578063e349f9a714610488578063f2fde38b146104a657610158565b80638da5cb5b1461030857806392124e921461032657806395d1015c1461034257806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac57610158565b8063313ce56711610115578063313ce5671461023357806339509351146102515780634a6a1a2e14610281578063501d687a146102b257806370a08231146102ce578063715018a6146102fe57610158565b8063031d13df1461015d57806306fdde0314610179578063076439ed14610197578063095ea7b3146101b557806318160ddd146101e557806323b872dd14610203575b600080fd5b61017760048036038101906101729190611e0d565b6104c2565b005b61018161052e565b60405161018e919061249e565b60405180910390f35b61019f6105c0565b6040516101ac9190612680565b60405180910390f35b6101cf60048036038101906101ca9190611dd1565b6105d0565b6040516101dc9190612483565b60405180910390f35b6101ed6105ee565b6040516101fa9190612680565b60405180910390f35b61021d60048036038101906102189190611d82565b6105f8565b60405161022a9190612483565b60405180910390f35b61023b6106f0565b604051610248919061269b565b60405180910390f35b61026b60048036038101906102669190611dd1565b6106f9565b6040516102789190612483565b60405180910390f35b61029b60048036038101906102969190611ea2565b6107a5565b6040516102a992919061245a565b60405180910390f35b6102cc60048036038101906102c79190611e4e565b6107e9565b005b6102e860048036038101906102e39190611d1d565b6108f4565b6040516102f59190612680565b60405180910390f35b61030661093c565b005b6103106109c4565b60405161031d919061243f565b60405180910390f35b610340600480360381019061033b9190611ea2565b6109ee565b005b61035c60048036038101906103579190611ea2565b6109fa565b005b610366610a4e565b604051610373919061249e565b60405180910390f35b61039660048036038101906103919190611dd1565b610ae0565b6040516103a39190612483565b60405180910390f35b6103c660048036038101906103c19190611dd1565b610bcb565b6040516103d39190612483565b60405180910390f35b6103f660048036038101906103f19190611e0d565b610be9565b005b610412600480360381019061040d9190611ea2565b610c9d565b60405161041f9190612483565b60405180910390f35b610442600480360381019061043d9190611d46565b610cbd565b60405161044f9190612680565b60405180910390f35b610472600480360381019061046d9190611ea2565b610d44565b60405161047f9190612680565b60405180910390f35b610490610def565b60405161049d919061243f565b60405180910390f35b6104c060048036038101906104bb9190611d1d565b610e15565b005b60005b815181101561052a5761051782828151811061050a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610f0d565b8080610522906128cd565b9150506104c5565b5050565b60606003805461053d9061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061289b565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b60006105e46105dd6113bc565b84846113c4565b6001905092915050565b6000600254905090565b600061060584848461158f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106506113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c790612580565b60405180910390fd5b6106e4856106dc6113bc565b8584036113c4565b60019150509392505050565b60006012905090565b600061079b6107066113bc565b8484600160006107146113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610796919061272f565b6113c4565b6001905092915050565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6107f16113bc565b73ffffffffffffffffffffffffffffffffffffffff1661080f6109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c906125a0565b60405180910390fd5b60005b82518110156108ef5781600960008584815181106108af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108e7906128cd565b915050610868565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109446113bc565b73ffffffffffffffffffffffffffffffffffffffff166109626109c4565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906125a0565b60405180910390fd5b6109c26000611810565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109f781610f0d565b50565b610a03816118d6565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612640565b60405180910390fd5b610a4b816119a5565b50565b606060048054610a5d9061289b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a899061289b565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b60008060016000610aef6113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612620565b60405180910390fd5b610bc0610bb76113bc565b858584036113c4565b600191505092915050565b6000610bdf610bd86113bc565b848461158f565b6001905092915050565b610bf281611a3b565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906125c0565b60405180910390fd5b60005b8151811015610c9957610c86828281518110610c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516119a5565b8080610c91906128cd565b915050610c34565b5050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600860008481526020019081526020016000206001015414610de5576000600860008481526020019081526020016000206001015443610d8791906127df565b9050670de0b6b3a764000081610d9d9190612785565b9050600115156009600085815260200190815260200160002060009054906101000a900460ff1615151415610ddc57600281610dd99190612785565b90505b80915050610dea565b600090505b919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e1d6113bc565b73ffffffffffffffffffffffffffffffffffffffff16610e3b6109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e88906125a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906124e0565b60405180910390fd5b610f0a81611810565b50565b6b033b2e3c9fd0803ce8000000610f226105ee565b10610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612540565b60405180910390fd5b60006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610fa8836118d6565b90508080610fe157503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612560565b60405180910390fd5b60006008600085815260200190815260200160002060010154141561105b574360086000858152602001908152602001600020600101819055505b600060086000858152602001908152602001600020600101544361107f91906127df565b9050600115156009600086815260200190815260200160002060009054906101000a900460ff16151514156110be576002816110bb9190612785565b90505b670de0b6b3a7640000816110d29190612785565b905060001515821515141561119f576000811115611144576110f48382611ac9565b838373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c78360405161113b9190612680565b60405180910390a35b60006008600086815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061139b565b3373ffffffffffffffffffffffffffffffffffffffff166008600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156112745750600073ffffffffffffffffffffffffffffffffffffffff166008600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156112e15760008111156112dc5761128c8382611ac9565b838373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c7836040516112d39190612680565b60405180910390a35b611345565b60008111156112f5576112f43382611ac9565b5b833373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c78360405161133c9190612680565b60405180910390a35b336008600086815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b43600860008681526020019081526020016000206001018190555050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90612600565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612500565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115829190612680565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906125e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906124c0565b60405180910390fd5b61167a838383611c29565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790612520565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611793919061272f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f79190612680565b60405180910390a361180a848484611c2e565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33856040518363ffffffff1660e01b815260040161193592919061245a565b60206040518083038186803b15801561194d57600080fd5b505afa158015611961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119859190611ecb565b9050600081111561199a5760019150506119a0565b60009150505b919050565b6000600860008381526020019081526020016000206001015414156119e0574360086000838152602001908152602001600020600101819055505b6119e981610f0d565b803373ffffffffffffffffffffffffffffffffffffffff167fe0ce28bd01ce72dd6cf4c032c0fd3e36e139b72a845d685e4c37cb7af3e97c2a43604051611a309190612680565b60405180910390a350565b600080600090505b8251811015611abe5760001515611a99848381518110611a8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516118d6565b15151415611aab576000915050611ac4565b8080611ab6906128cd565b915050611a43565b50600190505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612660565b60405180910390fd5b611b4560008383611c29565b8060026000828254611b57919061272f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bac919061272f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c119190612680565b60405180910390a3611c2560008383611c2e565b5050565b505050565b505050565b6000611c46611c41846126e7565b6126b6565b90508083825260208201905082856020860282011115611c6557600080fd5b60005b85811015611c955781611c7b8882611cf3565b845260208401935060208301925050600181019050611c68565b5050509392505050565b600081359050611cae816129b4565b92915050565b600082601f830112611cc557600080fd5b8135611cd5848260208601611c33565b91505092915050565b600081359050611ced816129cb565b92915050565b600081359050611d02816129e2565b92915050565b600081519050611d17816129e2565b92915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611c9f565b91505092915050565b60008060408385031215611d5957600080fd5b6000611d6785828601611c9f565b9250506020611d7885828601611c9f565b9150509250929050565b600080600060608486031215611d9757600080fd5b6000611da586828701611c9f565b9350506020611db686828701611c9f565b9250506040611dc786828701611cf3565b9150509250925092565b60008060408385031215611de457600080fd5b6000611df285828601611c9f565b9250506020611e0385828601611cf3565b9150509250929050565b600060208284031215611e1f57600080fd5b600082013567ffffffffffffffff811115611e3957600080fd5b611e4584828501611cb4565b91505092915050565b60008060408385031215611e6157600080fd5b600083013567ffffffffffffffff811115611e7b57600080fd5b611e8785828601611cb4565b9250506020611e9885828601611cde565b9150509250929050565b600060208284031215611eb457600080fd5b6000611ec284828501611cf3565b91505092915050565b600060208284031215611edd57600080fd5b6000611eeb84828501611d08565b91505092915050565b611efd81612813565b82525050565b611f0c81612825565b82525050565b6000611f1d82612713565b611f27818561271e565b9350611f37818560208601612868565b611f40816129a3565b840191505092915050565b6000611f5860238361271e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fbe60268361271e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061202460228361271e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061208a60268361271e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120f060108361271e565b91507f4d617820456767732052656163686564000000000000000000000000000000006000830152602082019050919050565b6000612130601a8361271e565b91507f4d757374206265206f776e6572206f722070617374206c6173740000000000006000830152602082019050919050565b600061217060288361271e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121d660208361271e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061221660218361271e565b91507f4f776e657266793a206d757374206f776e20616c6c207468657365204368696360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061227c60258361271e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122e260248361271e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061234860258361271e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ae601b8361271e565b91507f4f776e657266793a206d757374206f776e2074686973204368696300000000006000830152602082019050919050565b60006123ee601f8361271e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61242a81612851565b82525050565b6124398161285b565b82525050565b60006020820190506124546000830184611ef4565b92915050565b600060408201905061246f6000830185611ef4565b61247c6020830184612421565b9392505050565b60006020820190506124986000830184611f03565b92915050565b600060208201905081810360008301526124b88184611f12565b905092915050565b600060208201905081810360008301526124d981611f4b565b9050919050565b600060208201905081810360008301526124f981611fb1565b9050919050565b6000602082019050818103600083015261251981612017565b9050919050565b600060208201905081810360008301526125398161207d565b9050919050565b60006020820190508181036000830152612559816120e3565b9050919050565b6000602082019050818103600083015261257981612123565b9050919050565b6000602082019050818103600083015261259981612163565b9050919050565b600060208201905081810360008301526125b9816121c9565b9050919050565b600060208201905081810360008301526125d981612209565b9050919050565b600060208201905081810360008301526125f98161226f565b9050919050565b60006020820190508181036000830152612619816122d5565b9050919050565b600060208201905081810360008301526126398161233b565b9050919050565b60006020820190508181036000830152612659816123a1565b9050919050565b60006020820190508181036000830152612679816123e1565b9050919050565b60006020820190506126956000830184612421565b92915050565b60006020820190506126b06000830184612430565b92915050565b6000604051905081810181811067ffffffffffffffff821117156126dd576126dc612974565b5b8060405250919050565b600067ffffffffffffffff82111561270257612701612974565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061273a82612851565b915061274583612851565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561277a57612779612916565b5b828201905092915050565b600061279082612851565b915061279b83612851565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d4576127d3612916565b5b828202905092915050565b60006127ea82612851565b91506127f583612851565b92508282101561280857612807612916565b5b828203905092915050565b600061281e82612831565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561288657808201518184015260208101905061286b565b83811115612895576000848401525b50505050565b600060028204905060018216806128b357607f821691505b602082108114156128c7576128c6612945565b5b50919050565b60006128d882612851565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561290b5761290a612916565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6129bd81612813565b81146129c857600080fd5b50565b6129d481612825565b81146129df57600080fd5b50565b6129eb81612851565b81146129f657600080fd5b5056fea2646970667358221220bc7e45251933b84e396293a07bdff91f4bf3e37c08f31e61d38bea5a286e0da164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063aa88754f1161007c578063aa88754f146103dc578063c5a991f8146103f8578063dd62ed3e14610428578063e2c7aa1714610458578063e349f9a714610488578063f2fde38b146104a657610158565b80638da5cb5b1461030857806392124e921461032657806395d1015c1461034257806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac57610158565b8063313ce56711610115578063313ce5671461023357806339509351146102515780634a6a1a2e14610281578063501d687a146102b257806370a08231146102ce578063715018a6146102fe57610158565b8063031d13df1461015d57806306fdde0314610179578063076439ed14610197578063095ea7b3146101b557806318160ddd146101e557806323b872dd14610203575b600080fd5b61017760048036038101906101729190611e0d565b6104c2565b005b61018161052e565b60405161018e919061249e565b60405180910390f35b61019f6105c0565b6040516101ac9190612680565b60405180910390f35b6101cf60048036038101906101ca9190611dd1565b6105d0565b6040516101dc9190612483565b60405180910390f35b6101ed6105ee565b6040516101fa9190612680565b60405180910390f35b61021d60048036038101906102189190611d82565b6105f8565b60405161022a9190612483565b60405180910390f35b61023b6106f0565b604051610248919061269b565b60405180910390f35b61026b60048036038101906102669190611dd1565b6106f9565b6040516102789190612483565b60405180910390f35b61029b60048036038101906102969190611ea2565b6107a5565b6040516102a992919061245a565b60405180910390f35b6102cc60048036038101906102c79190611e4e565b6107e9565b005b6102e860048036038101906102e39190611d1d565b6108f4565b6040516102f59190612680565b60405180910390f35b61030661093c565b005b6103106109c4565b60405161031d919061243f565b60405180910390f35b610340600480360381019061033b9190611ea2565b6109ee565b005b61035c60048036038101906103579190611ea2565b6109fa565b005b610366610a4e565b604051610373919061249e565b60405180910390f35b61039660048036038101906103919190611dd1565b610ae0565b6040516103a39190612483565b60405180910390f35b6103c660048036038101906103c19190611dd1565b610bcb565b6040516103d39190612483565b60405180910390f35b6103f660048036038101906103f19190611e0d565b610be9565b005b610412600480360381019061040d9190611ea2565b610c9d565b60405161041f9190612483565b60405180910390f35b610442600480360381019061043d9190611d46565b610cbd565b60405161044f9190612680565b60405180910390f35b610472600480360381019061046d9190611ea2565b610d44565b60405161047f9190612680565b60405180910390f35b610490610def565b60405161049d919061243f565b60405180910390f35b6104c060048036038101906104bb9190611d1d565b610e15565b005b60005b815181101561052a5761051782828151811061050a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610f0d565b8080610522906128cd565b9150506104c5565b5050565b60606003805461053d9061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061289b565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b60006105e46105dd6113bc565b84846113c4565b6001905092915050565b6000600254905090565b600061060584848461158f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106506113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c790612580565b60405180910390fd5b6106e4856106dc6113bc565b8584036113c4565b60019150509392505050565b60006012905090565b600061079b6107066113bc565b8484600160006107146113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610796919061272f565b6113c4565b6001905092915050565b60086020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6107f16113bc565b73ffffffffffffffffffffffffffffffffffffffff1661080f6109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c906125a0565b60405180910390fd5b60005b82518110156108ef5781600960008584815181106108af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108e7906128cd565b915050610868565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109446113bc565b73ffffffffffffffffffffffffffffffffffffffff166109626109c4565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906125a0565b60405180910390fd5b6109c26000611810565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109f781610f0d565b50565b610a03816118d6565b610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612640565b60405180910390fd5b610a4b816119a5565b50565b606060048054610a5d9061289b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a899061289b565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b60008060016000610aef6113bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390612620565b60405180910390fd5b610bc0610bb76113bc565b858584036113c4565b600191505092915050565b6000610bdf610bd86113bc565b848461158f565b6001905092915050565b610bf281611a3b565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906125c0565b60405180910390fd5b60005b8151811015610c9957610c86828281518110610c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516119a5565b8080610c91906128cd565b915050610c34565b5050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600860008481526020019081526020016000206001015414610de5576000600860008481526020019081526020016000206001015443610d8791906127df565b9050670de0b6b3a764000081610d9d9190612785565b9050600115156009600085815260200190815260200160002060009054906101000a900460ff1615151415610ddc57600281610dd99190612785565b90505b80915050610dea565b600090505b919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e1d6113bc565b73ffffffffffffffffffffffffffffffffffffffff16610e3b6109c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e88906125a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906124e0565b60405180910390fd5b610f0a81611810565b50565b6b033b2e3c9fd0803ce8000000610f226105ee565b10610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990612540565b60405180910390fd5b60006008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610fa8836118d6565b90508080610fe157503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612560565b60405180910390fd5b60006008600085815260200190815260200160002060010154141561105b574360086000858152602001908152602001600020600101819055505b600060086000858152602001908152602001600020600101544361107f91906127df565b9050600115156009600086815260200190815260200160002060009054906101000a900460ff16151514156110be576002816110bb9190612785565b90505b670de0b6b3a7640000816110d29190612785565b905060001515821515141561119f576000811115611144576110f48382611ac9565b838373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c78360405161113b9190612680565b60405180910390a35b60006008600086815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061139b565b3373ffffffffffffffffffffffffffffffffffffffff166008600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156112745750600073ffffffffffffffffffffffffffffffffffffffff166008600086815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156112e15760008111156112dc5761128c8382611ac9565b838373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c7836040516112d39190612680565b60405180910390a35b611345565b60008111156112f5576112f43382611ac9565b5b833373ffffffffffffffffffffffffffffffffffffffff167ff438350ec0e235a3ee5f1d1bb3b7db7925a1628c7adac16d64629ee2c1e974c78360405161133c9190612680565b60405180910390a35b336008600086815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b43600860008681526020019081526020016000206001018190555050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90612600565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612500565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115829190612680565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f6906125e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906124c0565b60405180910390fd5b61167a838383611c29565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790612520565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611793919061272f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117f79190612680565b60405180910390a361180a848484611c2e565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33856040518363ffffffff1660e01b815260040161193592919061245a565b60206040518083038186803b15801561194d57600080fd5b505afa158015611961573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119859190611ecb565b9050600081111561199a5760019150506119a0565b60009150505b919050565b6000600860008381526020019081526020016000206001015414156119e0574360086000838152602001908152602001600020600101819055505b6119e981610f0d565b803373ffffffffffffffffffffffffffffffffffffffff167fe0ce28bd01ce72dd6cf4c032c0fd3e36e139b72a845d685e4c37cb7af3e97c2a43604051611a309190612680565b60405180910390a350565b600080600090505b8251811015611abe5760001515611a99848381518110611a8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516118d6565b15151415611aab576000915050611ac4565b8080611ab6906128cd565b915050611a43565b50600190505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090612660565b60405180910390fd5b611b4560008383611c29565b8060026000828254611b57919061272f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bac919061272f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c119190612680565b60405180910390a3611c2560008383611c2e565b5050565b505050565b505050565b6000611c46611c41846126e7565b6126b6565b90508083825260208201905082856020860282011115611c6557600080fd5b60005b85811015611c955781611c7b8882611cf3565b845260208401935060208301925050600181019050611c68565b5050509392505050565b600081359050611cae816129b4565b92915050565b600082601f830112611cc557600080fd5b8135611cd5848260208601611c33565b91505092915050565b600081359050611ced816129cb565b92915050565b600081359050611d02816129e2565b92915050565b600081519050611d17816129e2565b92915050565b600060208284031215611d2f57600080fd5b6000611d3d84828501611c9f565b91505092915050565b60008060408385031215611d5957600080fd5b6000611d6785828601611c9f565b9250506020611d7885828601611c9f565b9150509250929050565b600080600060608486031215611d9757600080fd5b6000611da586828701611c9f565b9350506020611db686828701611c9f565b9250506040611dc786828701611cf3565b9150509250925092565b60008060408385031215611de457600080fd5b6000611df285828601611c9f565b9250506020611e0385828601611cf3565b9150509250929050565b600060208284031215611e1f57600080fd5b600082013567ffffffffffffffff811115611e3957600080fd5b611e4584828501611cb4565b91505092915050565b60008060408385031215611e6157600080fd5b600083013567ffffffffffffffff811115611e7b57600080fd5b611e8785828601611cb4565b9250506020611e9885828601611cde565b9150509250929050565b600060208284031215611eb457600080fd5b6000611ec284828501611cf3565b91505092915050565b600060208284031215611edd57600080fd5b6000611eeb84828501611d08565b91505092915050565b611efd81612813565b82525050565b611f0c81612825565b82525050565b6000611f1d82612713565b611f27818561271e565b9350611f37818560208601612868565b611f40816129a3565b840191505092915050565b6000611f5860238361271e565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fbe60268361271e565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061202460228361271e565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061208a60268361271e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006120f060108361271e565b91507f4d617820456767732052656163686564000000000000000000000000000000006000830152602082019050919050565b6000612130601a8361271e565b91507f4d757374206265206f776e6572206f722070617374206c6173740000000000006000830152602082019050919050565b600061217060288361271e565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006121d660208361271e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061221660218361271e565b91507f4f776e657266793a206d757374206f776e20616c6c207468657365204368696360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061227c60258361271e565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122e260248361271e565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061234860258361271e565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ae601b8361271e565b91507f4f776e657266793a206d757374206f776e2074686973204368696300000000006000830152602082019050919050565b60006123ee601f8361271e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61242a81612851565b82525050565b6124398161285b565b82525050565b60006020820190506124546000830184611ef4565b92915050565b600060408201905061246f6000830185611ef4565b61247c6020830184612421565b9392505050565b60006020820190506124986000830184611f03565b92915050565b600060208201905081810360008301526124b88184611f12565b905092915050565b600060208201905081810360008301526124d981611f4b565b9050919050565b600060208201905081810360008301526124f981611fb1565b9050919050565b6000602082019050818103600083015261251981612017565b9050919050565b600060208201905081810360008301526125398161207d565b9050919050565b60006020820190508181036000830152612559816120e3565b9050919050565b6000602082019050818103600083015261257981612123565b9050919050565b6000602082019050818103600083015261259981612163565b9050919050565b600060208201905081810360008301526125b9816121c9565b9050919050565b600060208201905081810360008301526125d981612209565b9050919050565b600060208201905081810360008301526125f98161226f565b9050919050565b60006020820190508181036000830152612619816122d5565b9050919050565b600060208201905081810360008301526126398161233b565b9050919050565b60006020820190508181036000830152612659816123a1565b9050919050565b60006020820190508181036000830152612679816123e1565b9050919050565b60006020820190506126956000830184612421565b92915050565b60006020820190506126b06000830184612430565b92915050565b6000604051905081810181811067ffffffffffffffff821117156126dd576126dc612974565b5b8060405250919050565b600067ffffffffffffffff82111561270257612701612974565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061273a82612851565b915061274583612851565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561277a57612779612916565b5b828201905092915050565b600061279082612851565b915061279b83612851565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d4576127d3612916565b5b828202905092915050565b60006127ea82612851565b91506127f583612851565b92508282101561280857612807612916565b5b828203905092915050565b600061281e82612831565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561288657808201518184015260208101905061286b565b83811115612895576000848401525b50505050565b600060028204905060018216806128b357607f821691505b602082108114156128c7576128c6612945565b5b50919050565b60006128d882612851565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561290b5761290a612916565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6129bd81612813565b81146129c857600080fd5b50565b6129d481612825565b81146129df57600080fd5b50565b6129eb81612851565b81146129f657600080fd5b5056fea2646970667358221220bc7e45251933b84e396293a07bdff91f4bf3e37c08f31e61d38bea5a286e0da164736f6c63430008000033

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.