ETH Price: $3,361.43 (-0.66%)
Gas: 1 Gwei

Token

PixelBeasts (PB)
 

Overview

Max Total Supply

9,999 PB

Holders

3,482

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
chumwithnodick.eth
Balance
1 PB
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PixelBeasts are 10,000 unique NFT collectibles, 24x24 pixels each by artist and VC, Yohei Nakajima.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelBeasts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: pixelbeasts.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";

/*

   ▄███████▄ ▀█████████▄  
  ███    ███   ███    ███ 
  ███    ███   ███    ███ 
  ███    ███  ▄███▄▄▄██▀  
▀█████████▀  ▀▀███▀▀▀██▄  
  ███          ███    ██▄ 
  ███          ███    ███ 
 ▄████▀      ▄█████████▀  

    PIXELBEASTS

    https://www.pixelbeasts.xyz/

*/

contract PixelBeasts is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;

    address addr_1 = 0x8CD7b7962b9753DB32A6E0FB47741A2fbBdea6D3;

    //reserved for giveaways
    uint256 private _reserved = 150;

    uint256 private _price = 0.045 ether;
    uint256 private _generatorPrice = 0.00 ether;
    uint256 public _generatorStartCount = 10000;
    bool public _paused = true;
    bool public _generatorPaused = true;

    constructor(string memory baseURI) ERC721("PixelBeasts", "PB")  {
        setBaseURI(baseURI);

        //pre-minted
        uint256 premint = 9;
        for(uint256 i; i < premint; i++){
            _safeMint( addr_1, i );
        }

    }

    function purchase(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 21,                              "You can purchase a maximum of 20 NFTs" );
        require( supply + num < 10000 - _reserved,      "Exceeds maximum NFTs supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

    function setGeneratorPrice(uint256 _newPrice) public onlyOwner() {
        _generatorPrice = _newPrice;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function getGeneratorPrice() public view returns (uint256){
        return _generatorPrice;
    }

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved NFTs supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function _generateProcess() private  {
        require( _generatorStartCount + 1 < 15000,         "Exceeds maximum NFTs that can be created" );
        require( msg.value >= _generatorPrice,             "Ether sent is not correct" );
        _safeMint( msg.sender, _generatorStartCount + 1 );
        _generatorStartCount = _generatorStartCount+1;
    }

    function sendGenerator(uint256 nft1, uint256 nft2) public {
        require( !_generatorPaused,                  "Generator is offline" );
        require(_exists(nft1),                    "sendGenerator: NFT 1 does not exist.");
        require(_exists(nft2),                    "sendGenerator: NFT 2 does not exist.");
        require(ownerOf(nft1) == _msgSender(),    "sendGenerator: NFT 1 caller is not token owner.");
        require(ownerOf(nft2) == _msgSender(),    "sendGenerator: NFT 2 caller is not token owner.");
        require( nft1 <=  10000,             "NFT 1 is not a genesis NFT" );
        require( nft2 <=  10000,             "NFT 2 is not a genesis NFT" );

        require(nft1 != nft2, "Both NFTs can't be the same ");
        _burn(nft1);
        _burn(nft2);
        _generateProcess();
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721Enumerable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function generatorPause(bool val) public onlyOwner {
        _generatorPaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _all = address(this).balance;
        require(payable(addr_1).send(_all));
    }
}

File 1 of 14: Address.sol
pragma solidity ^0.8.0;

/**
 * @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 on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        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");

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 14: Context.sol
pragma solidity ^0.8.0;

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

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

File 3 of 14: ERC165.sol
pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 14: ERC721.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 5 of 14: ERC721Burnable.sol
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 6 of 14: ERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 14: IERC165.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 8 of 14: IERC721.sol
pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 9 of 14: IERC721Enumerable.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 14: IERC721Metadata.sol
pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 14: IERC721Receiver.sol
pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14: Ownable.sol
pragma solidity ^0.8.0;

import "./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 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_generatorPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_generatorStartCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"generatorPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGeneratorPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nft1","type":"uint256"},{"internalType":"uint256","name":"nft2","type":"uint256"}],"name":"sendGenerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setGeneratorPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600c80546001600160a01b031916738cd7b7962b9753db32a6e0fb47741a2fbbdea6d31790556096600d55669fdf42f6e48000600e556000600f556127106010556011805461ff001960ff19909116600117166101001790553480156200006a57600080fd5b5060405162003626380380620036268339810160408190526200008d91620008cb565b604080518082018252600b81526a506978656c42656173747360a81b602080830191825283518085019094526002845261282160f11b908401528151919291620000da91600091620007f4565b508051620000f0906001906020840190620007f4565b5050506200010d620001076200015c60201b60201c565b62000160565b6200011881620001b2565b600960005b818110156200015357600c546200013e906001600160a01b0316826200021a565b806200014a8162000bb1565b9150506200011d565b50505062000bfb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001bc6200015c565b6001600160a01b0316620001cf6200023c565b6001600160a01b031614620002015760405162461bcd60e51b8152600401620001f89062000ad7565b60405180910390fd5b80516200021690600b906020840190620007f4565b5050565b620002168282604051806020016040528060008152506200024b60201b60201c565b600a546001600160a01b031690565b6200025783836200028a565b62000266600084848462000375565b620002855760405162461bcd60e51b8152600401620001f890620009cf565b505050565b6001600160a01b038216620002b35760405162461bcd60e51b8152600401620001f89062000aa2565b620002be81620004ae565b15620002de5760405162461bcd60e51b8152600401620001f89062000a21565b620002ec60008383620004cb565b6001600160a01b03821660009081526003602052604081208054600192906200031790849062000b0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000396846001600160a01b0316620004e360201b620011981760201c565b15620004a2576001600160a01b03841663150b7a02620003b56200015c565b8786866040518563ffffffff1660e01b8152600401620003d9949392919062000979565b602060405180830381600087803b158015620003f457600080fd5b505af192505050801562000427575060408051601f3d908101601f1916820190925262000424918101906200089a565b60015b62000487573d80801562000458576040519150601f19603f3d011682016040523d82523d6000602084013e6200045d565b606091505b5080516200047f5760405162461bcd60e51b8152600401620001f890620009cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004a6565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b62000285838383620004e960201b6200119e1760201c565b3b151590565b620005018383836200028560201b620008821760201c565b6001600160a01b03831662000521576200051b816200058d565b62000547565b816001600160a01b0316836001600160a01b0316146200054757620005478382620005d1565b6001600160a01b038216620005675762000561816200067e565b62000285565b826001600160a01b0316826001600160a01b03161462000285576200028582826200075c565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001620005eb84620007ad60201b62000ae51760201c565b620005f7919062000b27565b6000838152600760205260409020549091508082146200064b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006929060019062000b27565b60008381526009602052604081205460088054939450909284908110620006c957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110620006f957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200074057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006200077483620007ad60201b62000ae51760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620007d85760405162461bcd60e51b8152600401620001f89062000a58565b506001600160a01b031660009081526003602052604090205490565b828054620008029062000b74565b90600052602060002090601f01602090048101928262000826576000855562000871565b82601f106200084157805160ff191683800117855562000871565b8280016001018555821562000871579182015b828111156200087157825182559160200191906001019062000854565b506200087f92915062000883565b5090565b5b808211156200087f576000815560010162000884565b600060208284031215620008ac578081fd5b81516001600160e01b031981168114620008c4578182fd5b9392505050565b600060208284031215620008dd578081fd5b81516001600160401b0380821115620008f4578283fd5b818401915084601f83011262000908578283fd5b8151818111156200091d576200091d62000be5565b604051601f8201601f19168101602001838111828210171562000944576200094462000be5565b6040528181528382016020018710156200095c578485fd5b6200096f82602083016020870162000b41565b9695505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009b88160a085016020870162000b41565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111562000b225762000b2262000bcf565b500190565b60008282101562000b3c5762000b3c62000bcf565b500390565b60005b8381101562000b5e57818101518382015260200162000b44565b8381111562000b6e576000848401525b50505050565b60028104600182168062000b8957607f821691505b6020821081141562000bab57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000bc85762000bc862000bcf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612a1b8062000c0b6000396000f3fe6080604052600436106101f75760003560e01c806370a082311161010d578063a22cb465116100a0578063ca8001441161006f578063ca80014414610562578063dae11b7c14610582578063e985e9c5146105a2578063efef39a1146105c2578063f2fde38b146105d5576101f7565b8063a22cb465146104ed578063b808f99c1461050d578063b88d4fde14610522578063c87b56dd14610542576101f7565b80638da5cb5b116100dc5780638da5cb5b1461048e57806391b7f5ed146104a357806395d89b41146104c357806398d5fdca146104d8576101f7565b806370a082311461043c578063715018a61461045c578063766536af14610471578063853828b614610486576101f7565b806318160ddd116101905780634380053d1161015f5780634380053d1461039a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780636352211e1461041c576101f7565b806318160ddd1461031857806323b872dd1461033a5780632f745c591461035a57806342842e0e1461037a576101f7565b806306fdde03116101cc57806306fdde0314610294578063081812fc146102b6578063095ea7b3146102e357806316c61ccc14610303576101f7565b80626d2a76146101fc5780628578121461021e57806301ffc9a71461023e57806302329a2914610274575b600080fd5b34801561020857600080fd5b5061021c610217366004611ef8565b6105f5565b005b34801561022a57600080fd5b5061021c610239366004611e60565b610642565b34801561024a57600080fd5b5061025e610259366004611e7a565b61069b565b60405161026b9190612021565b60405180910390f35b34801561028057600080fd5b5061021c61028f366004611e60565b6106c8565b3480156102a057600080fd5b506102a961071a565b60405161026b919061202c565b3480156102c257600080fd5b506102d66102d1366004611ef8565b6107ac565b60405161026b9190611f8c565b3480156102ef57600080fd5b5061021c6102fe366004611e37565b6107ef565b34801561030f57600080fd5b5061025e610887565b34801561032457600080fd5b5061032d610890565b60405161026b919061288c565b34801561034657600080fd5b5061021c610355366004611d5a565b610896565b34801561036657600080fd5b5061032d610375366004611e37565b6108ce565b34801561038657600080fd5b5061021c610395366004611d5a565b610920565b3480156103a657600080fd5b5061032d61093b565b3480156103bb57600080fd5b506103cf6103ca366004611d0e565b610941565b60405161026b9190611fdd565b3480156103e857600080fd5b5061032d6103f7366004611ef8565b6109ff565b34801561040857600080fd5b5061021c610417366004611eb2565b610a5a565b34801561042857600080fd5b506102d6610437366004611ef8565b610ab0565b34801561044857600080fd5b5061032d610457366004611d0e565b610ae5565b34801561046857600080fd5b5061021c610b29565b34801561047d57600080fd5b5061032d610b74565b61021c610b7a565b34801561049a57600080fd5b506102d6610bee565b3480156104af57600080fd5b5061021c6104be366004611ef8565b610bfd565b3480156104cf57600080fd5b506102a9610c41565b3480156104e457600080fd5b5061032d610c50565b3480156104f957600080fd5b5061021c610508366004611e0e565b610c56565b34801561051957600080fd5b5061025e610d24565b34801561052e57600080fd5b5061021c61053d366004611d95565b610d32565b34801561054e57600080fd5b506102a961055d366004611ef8565b610d71565b34801561056e57600080fd5b5061021c61057d366004611e37565b610df4565b34801561058e57600080fd5b5061021c61059d366004611f10565b610eae565b3480156105ae57600080fd5b5061025e6105bd366004611d28565b61101e565b61021c6105d0366004611ef8565b61104c565b3480156105e157600080fd5b5061021c6105f0366004611d0e565b61112a565b6105fd611227565b6001600160a01b031661060e610bee565b6001600160a01b03161461063d5760405162461bcd60e51b8152600401610634906124ba565b60405180910390fd5b600f55565b61064a611227565b6001600160a01b031661065b610bee565b6001600160a01b0316146106815760405162461bcd60e51b8152600401610634906124ba565b601180549115156101000261ff0019909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c057506106c08261122b565b90505b919050565b6106d0611227565b6001600160a01b03166106e1610bee565b6001600160a01b0316146107075760405162461bcd60e51b8152600401610634906124ba565b6011805460ff1916911515919091179055565b60606000805461072990612923565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612923565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b78261126b565b6107d35760405162461bcd60e51b815260040161063490612437565b506000908152600460205260409020546001600160a01b031690565b60006107fa82610ab0565b9050806001600160a01b0316836001600160a01b0316141561082e5760405162461bcd60e51b8152600401610634906125be565b806001600160a01b0316610840611227565b6001600160a01b0316148061085c575061085c816105bd611227565b6108785760405162461bcd60e51b815260040161063490612312565b6108828383611288565b505050565b60115460ff1681565b60085490565b6108a76108a1611227565b826112f6565b6108c35760405162461bcd60e51b81526004016106349061267e565b61088283838361137b565b60006108d983610ae5565b82106108f75760405162461bcd60e51b8152600401610634906120a9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088283838360405180602001604052806000815250610d32565b600f5490565b6060600061094e83610ae5565b905060008167ffffffffffffffff81111561097957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b828110156109f7576109ba85826108ce565b8282815181106109da57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109ef8161295e565b9150506109a8565b509392505050565b6000610a09610890565b8210610a275760405162461bcd60e51b815260040161063490612734565b60088281548110610a4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a62611227565b6001600160a01b0316610a73610bee565b6001600160a01b031614610a995760405162461bcd60e51b8152600401610634906124ba565b8051610aac90600b906020840190611bde565b5050565b6000818152600260205260408120546001600160a01b0316806106c05760405162461bcd60e51b8152600401610634906123b9565b60006001600160a01b038216610b0d5760405162461bcd60e51b81526004016106349061236f565b506001600160a01b031660009081526003602052604090205490565b610b31611227565b6001600160a01b0316610b42610bee565b6001600160a01b031614610b685760405162461bcd60e51b8152600401610634906124ba565b610b7260006114a8565b565b60105481565b610b82611227565b6001600160a01b0316610b93610bee565b6001600160a01b031614610bb95760405162461bcd60e51b8152600401610634906124ba565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050610beb57600080fd5b50565b600a546001600160a01b031690565b610c05611227565b6001600160a01b0316610c16610bee565b6001600160a01b031614610c3c5760405162461bcd60e51b8152600401610634906124ba565b600e55565b60606001805461072990612923565b600e5490565b610c5e611227565b6001600160a01b0316826001600160a01b03161415610c8f5760405162461bcd60e51b81526004016106349061224b565b8060056000610c9c611227565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce0611227565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d189190612021565b60405180910390a35050565b601154610100900460ff1681565b610d43610d3d611227565b836112f6565b610d5f5760405162461bcd60e51b81526004016106349061267e565b610d6b848484846114fa565b50505050565b6060610d7c8261126b565b610d985760405162461bcd60e51b81526004016106349061256f565b6000610da261152d565b90506000815111610dc25760405180602001604052806000815250610ded565b80610dcc8461153c565b604051602001610ddd929190611f5d565b6040516020818303038152906040525b9392505050565b610dfc611227565b6001600160a01b0316610e0d610bee565b6001600160a01b031614610e335760405162461bcd60e51b8152600401610634906124ba565b600d54811115610e555760405162461bcd60e51b815260040161063490612483565b6000610e5f610890565b905060005b82811015610e9157610e7f84610e7a8385612895565b611657565b80610e898161295e565b915050610e64565b5081600d6000828254610ea491906128e0565b9091555050505050565b601154610100900460ff1615610ed65760405162461bcd60e51b8152600401610634906126cf565b610edf8261126b565b610efb5760405162461bcd60e51b815260040161063490612282565b610f048161126b565b610f205760405162461bcd60e51b81526004016106349061218c565b610f28611227565b6001600160a01b0316610f3a83610ab0565b6001600160a01b031614610f605760405162461bcd60e51b815260040161063490612780565b610f68611227565b6001600160a01b0316610f7a82610ab0565b6001600160a01b031614610fa05760405162461bcd60e51b81526004016106349061283d565b612710821115610fc25760405162461bcd60e51b8152600401610634906126fd565b612710811115610fe45760405162461bcd60e51b815260040161063490612806565b808214156110045760405162461bcd60e51b8152600401610634906124ef565b61100d82611671565b61101681611671565b610aac611718565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000611056610890565b60115490915060ff161561107c5760405162461bcd60e51b815260040161063490612084565b6015821061109c5760405162461bcd60e51b81526004016106349061203f565b600d546110ab906127106128e0565b6110b58383612895565b106110d25760405162461bcd60e51b8152600401610634906127cf565b81600e546110e091906128c1565b3410156110ff5760405162461bcd60e51b8152600401610634906125ff565b60005b828110156108825761111833610e7a8385612895565b806111228161295e565b915050611102565b611132611227565b6001600160a01b0316611143610bee565b6001600160a01b0316146111695760405162461bcd60e51b8152600401610634906124ba565b6001600160a01b03811661118f5760405162461bcd60e51b815260040161063490612146565b610beb816114a8565b3b151590565b6111a9838383610882565b6001600160a01b0383166111c5576111c08161178f565b6111e8565b816001600160a01b0316836001600160a01b0316146111e8576111e883826117d3565b6001600160a01b038216611204576111ff81611870565b610882565b826001600160a01b0316826001600160a01b031614610882576108828282611949565b3390565b60006001600160e01b031982166380ac58cd60e01b148061125c57506001600160e01b03198216635b5e139f60e01b145b806106c057506106c08261198d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112bd82610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113018261126b565b61131d5760405162461bcd60e51b8152600401610634906122c6565b600061132883610ab0565b9050806001600160a01b0316846001600160a01b031614806113635750836001600160a01b0316611358846107ac565b6001600160a01b0316145b806113735750611373818561101e565b949350505050565b826001600160a01b031661138e82610ab0565b6001600160a01b0316146113b45760405162461bcd60e51b815260040161063490612526565b6001600160a01b0382166113da5760405162461bcd60e51b815260040161063490612207565b6113e58383836119a6565b6113f0600082611288565b6001600160a01b03831660009081526003602052604081208054600192906114199084906128e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611447908490612895565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61150584848461137b565b611511848484846119b1565b610d6b5760405162461bcd60e51b8152600401610634906120f4565b6060600b805461072990612923565b60608161156157506040805180820190915260018152600360fc1b60208201526106c3565b8160005b811561158b57806115758161295e565b91506115849050600a836128ad565b9150611565565b60008167ffffffffffffffff8111156115b457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115de576020820181803683370190505b5090505b8415611373576115f36001836128e0565b9150611600600a86612979565b61160b906030612895565b60f81b81838151811061162e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611650600a866128ad565b94506115e2565b610aac828260405180602001604052806000815250611acc565b600061167c82610ab0565b905061168a816000846119a6565b611695600083611288565b6001600160a01b03811660009081526003602052604081208054600192906116be9084906128e0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b613a98601054600161172a9190612895565b106117475760405162461bcd60e51b815260040161063490612636565b600f543410156117695760405162461bcd60e51b8152600401610634906125ff565b61177c336010546001610e7a9190612895565b60105461178a906001612895565b601055565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117e084610ae5565b6117ea91906128e0565b60008381526007602052604090205490915080821461183d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611882906001906128e0565b600083815260096020526040812054600880549394509092849081106118b857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118e757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061192d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195483610ae5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b61088283838361119e565b60006119c5846001600160a01b0316611198565b15611ac157836001600160a01b031663150b7a026119e1611227565b8786866040518563ffffffff1660e01b8152600401611a039493929190611fa0565b602060405180830381600087803b158015611a1d57600080fd5b505af1925050508015611a4d575060408051601f3d908101601f19168201909252611a4a91810190611e96565b60015b611aa7573d808015611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b508051611a9f5760405162461bcd60e51b8152600401610634906120f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611373565b506001949350505050565b611ad68383611aff565b611ae360008484846119b1565b6108825760405162461bcd60e51b8152600401610634906120f4565b6001600160a01b038216611b255760405162461bcd60e51b815260040161063490612402565b611b2e8161126b565b15611b4b5760405162461bcd60e51b8152600401610634906121d0565b611b57600083836119a6565b6001600160a01b0382166000908152600360205260408120805460019290611b80908490612895565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bea90612923565b90600052602060002090601f016020900481019282611c0c5760008555611c52565b82601f10611c2557805160ff1916838001178555611c52565b82800160010185558215611c52579182015b82811115611c52578251825591602001919060010190611c37565b50611c5e929150611c62565b5090565b5b80821115611c5e5760008155600101611c63565b600067ffffffffffffffff80841115611c9257611c926129b9565b604051601f8501601f191681016020018281118282101715611cb657611cb66129b9565b604052848152915081838501861015611cce57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106c357600080fd5b803580151581146106c357600080fd5b600060208284031215611d1f578081fd5b610ded82611ce7565b60008060408385031215611d3a578081fd5b611d4383611ce7565b9150611d5160208401611ce7565b90509250929050565b600080600060608486031215611d6e578081fd5b611d7784611ce7565b9250611d8560208501611ce7565b9150604084013590509250925092565b60008060008060808587031215611daa578081fd5b611db385611ce7565b9350611dc160208601611ce7565b925060408501359150606085013567ffffffffffffffff811115611de3578182fd5b8501601f81018713611df3578182fd5b611e0287823560208401611c77565b91505092959194509250565b60008060408385031215611e20578182fd5b611e2983611ce7565b9150611d5160208401611cfe565b60008060408385031215611e49578182fd5b611e5283611ce7565b946020939093013593505050565b600060208284031215611e71578081fd5b610ded82611cfe565b600060208284031215611e8b578081fd5b8135610ded816129cf565b600060208284031215611ea7578081fd5b8151610ded816129cf565b600060208284031215611ec3578081fd5b813567ffffffffffffffff811115611ed9578182fd5b8201601f81018413611ee9578182fd5b61137384823560208401611c77565b600060208284031215611f09578081fd5b5035919050565b60008060408385031215611f22578182fd5b50508035926020909101359150565b60008151808452611f498160208601602086016128f7565b601f01601f19169290920160200192915050565b60008351611f6f8184602088016128f7565b835190830190611f838183602088016128f7565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd390830184611f31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201557835183529284019291840191600101611ff9565b50909695505050505050565b901515815260200190565b600060208252610ded6020830184611f31565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203220646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203120646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f45786365656473207265736572766564204e46547320737570706c7900000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f426f7468204e4654732063616e2774206265207468652073616d652000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526028908201527f45786365656473206d6178696d756d204e46547320746861742063616e2062656040820152670818dc99585d195960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527347656e657261746f72206973206f66666c696e6560601b604082015260600190565b6020808252601a908201527f4e46542031206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420312063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b6020808252601b908201527f45786365656473206d6178696d756d204e46547320737570706c790000000000604082015260600190565b6020808252601a908201527f4e46542032206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420322063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b90815260200190565b600082198211156128a8576128a861298d565b500190565b6000826128bc576128bc6129a3565b500490565b60008160001904831182151516156128db576128db61298d565b500290565b6000828210156128f2576128f261298d565b500390565b60005b838110156129125781810151838201526020016128fa565b83811115610d6b5750506000910152565b60028104600182168061293757607f821691505b6020821081141561295857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129725761297261298d565b5060010190565b600082612988576129886129a3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610beb57600080fdfea26469706673582212204780412e071a51ec2061a839434e73d568c864270f04d1e065d77b16e252832364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f7777772e706978656c6265617374732e78797a2f746f6b656e2f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f75760003560e01c806370a082311161010d578063a22cb465116100a0578063ca8001441161006f578063ca80014414610562578063dae11b7c14610582578063e985e9c5146105a2578063efef39a1146105c2578063f2fde38b146105d5576101f7565b8063a22cb465146104ed578063b808f99c1461050d578063b88d4fde14610522578063c87b56dd14610542576101f7565b80638da5cb5b116100dc5780638da5cb5b1461048e57806391b7f5ed146104a357806395d89b41146104c357806398d5fdca146104d8576101f7565b806370a082311461043c578063715018a61461045c578063766536af14610471578063853828b614610486576101f7565b806318160ddd116101905780634380053d1161015f5780634380053d1461039a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780636352211e1461041c576101f7565b806318160ddd1461031857806323b872dd1461033a5780632f745c591461035a57806342842e0e1461037a576101f7565b806306fdde03116101cc57806306fdde0314610294578063081812fc146102b6578063095ea7b3146102e357806316c61ccc14610303576101f7565b80626d2a76146101fc5780628578121461021e57806301ffc9a71461023e57806302329a2914610274575b600080fd5b34801561020857600080fd5b5061021c610217366004611ef8565b6105f5565b005b34801561022a57600080fd5b5061021c610239366004611e60565b610642565b34801561024a57600080fd5b5061025e610259366004611e7a565b61069b565b60405161026b9190612021565b60405180910390f35b34801561028057600080fd5b5061021c61028f366004611e60565b6106c8565b3480156102a057600080fd5b506102a961071a565b60405161026b919061202c565b3480156102c257600080fd5b506102d66102d1366004611ef8565b6107ac565b60405161026b9190611f8c565b3480156102ef57600080fd5b5061021c6102fe366004611e37565b6107ef565b34801561030f57600080fd5b5061025e610887565b34801561032457600080fd5b5061032d610890565b60405161026b919061288c565b34801561034657600080fd5b5061021c610355366004611d5a565b610896565b34801561036657600080fd5b5061032d610375366004611e37565b6108ce565b34801561038657600080fd5b5061021c610395366004611d5a565b610920565b3480156103a657600080fd5b5061032d61093b565b3480156103bb57600080fd5b506103cf6103ca366004611d0e565b610941565b60405161026b9190611fdd565b3480156103e857600080fd5b5061032d6103f7366004611ef8565b6109ff565b34801561040857600080fd5b5061021c610417366004611eb2565b610a5a565b34801561042857600080fd5b506102d6610437366004611ef8565b610ab0565b34801561044857600080fd5b5061032d610457366004611d0e565b610ae5565b34801561046857600080fd5b5061021c610b29565b34801561047d57600080fd5b5061032d610b74565b61021c610b7a565b34801561049a57600080fd5b506102d6610bee565b3480156104af57600080fd5b5061021c6104be366004611ef8565b610bfd565b3480156104cf57600080fd5b506102a9610c41565b3480156104e457600080fd5b5061032d610c50565b3480156104f957600080fd5b5061021c610508366004611e0e565b610c56565b34801561051957600080fd5b5061025e610d24565b34801561052e57600080fd5b5061021c61053d366004611d95565b610d32565b34801561054e57600080fd5b506102a961055d366004611ef8565b610d71565b34801561056e57600080fd5b5061021c61057d366004611e37565b610df4565b34801561058e57600080fd5b5061021c61059d366004611f10565b610eae565b3480156105ae57600080fd5b5061025e6105bd366004611d28565b61101e565b61021c6105d0366004611ef8565b61104c565b3480156105e157600080fd5b5061021c6105f0366004611d0e565b61112a565b6105fd611227565b6001600160a01b031661060e610bee565b6001600160a01b03161461063d5760405162461bcd60e51b8152600401610634906124ba565b60405180910390fd5b600f55565b61064a611227565b6001600160a01b031661065b610bee565b6001600160a01b0316146106815760405162461bcd60e51b8152600401610634906124ba565b601180549115156101000261ff0019909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c057506106c08261122b565b90505b919050565b6106d0611227565b6001600160a01b03166106e1610bee565b6001600160a01b0316146107075760405162461bcd60e51b8152600401610634906124ba565b6011805460ff1916911515919091179055565b60606000805461072990612923565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612923565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b78261126b565b6107d35760405162461bcd60e51b815260040161063490612437565b506000908152600460205260409020546001600160a01b031690565b60006107fa82610ab0565b9050806001600160a01b0316836001600160a01b0316141561082e5760405162461bcd60e51b8152600401610634906125be565b806001600160a01b0316610840611227565b6001600160a01b0316148061085c575061085c816105bd611227565b6108785760405162461bcd60e51b815260040161063490612312565b6108828383611288565b505050565b60115460ff1681565b60085490565b6108a76108a1611227565b826112f6565b6108c35760405162461bcd60e51b81526004016106349061267e565b61088283838361137b565b60006108d983610ae5565b82106108f75760405162461bcd60e51b8152600401610634906120a9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088283838360405180602001604052806000815250610d32565b600f5490565b6060600061094e83610ae5565b905060008167ffffffffffffffff81111561097957634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109a2578160200160208202803683370190505b50905060005b828110156109f7576109ba85826108ce565b8282815181106109da57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806109ef8161295e565b9150506109a8565b509392505050565b6000610a09610890565b8210610a275760405162461bcd60e51b815260040161063490612734565b60088281548110610a4857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610a62611227565b6001600160a01b0316610a73610bee565b6001600160a01b031614610a995760405162461bcd60e51b8152600401610634906124ba565b8051610aac90600b906020840190611bde565b5050565b6000818152600260205260408120546001600160a01b0316806106c05760405162461bcd60e51b8152600401610634906123b9565b60006001600160a01b038216610b0d5760405162461bcd60e51b81526004016106349061236f565b506001600160a01b031660009081526003602052604090205490565b610b31611227565b6001600160a01b0316610b42610bee565b6001600160a01b031614610b685760405162461bcd60e51b8152600401610634906124ba565b610b7260006114a8565b565b60105481565b610b82611227565b6001600160a01b0316610b93610bee565b6001600160a01b031614610bb95760405162461bcd60e51b8152600401610634906124ba565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050610beb57600080fd5b50565b600a546001600160a01b031690565b610c05611227565b6001600160a01b0316610c16610bee565b6001600160a01b031614610c3c5760405162461bcd60e51b8152600401610634906124ba565b600e55565b60606001805461072990612923565b600e5490565b610c5e611227565b6001600160a01b0316826001600160a01b03161415610c8f5760405162461bcd60e51b81526004016106349061224b565b8060056000610c9c611227565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce0611227565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d189190612021565b60405180910390a35050565b601154610100900460ff1681565b610d43610d3d611227565b836112f6565b610d5f5760405162461bcd60e51b81526004016106349061267e565b610d6b848484846114fa565b50505050565b6060610d7c8261126b565b610d985760405162461bcd60e51b81526004016106349061256f565b6000610da261152d565b90506000815111610dc25760405180602001604052806000815250610ded565b80610dcc8461153c565b604051602001610ddd929190611f5d565b6040516020818303038152906040525b9392505050565b610dfc611227565b6001600160a01b0316610e0d610bee565b6001600160a01b031614610e335760405162461bcd60e51b8152600401610634906124ba565b600d54811115610e555760405162461bcd60e51b815260040161063490612483565b6000610e5f610890565b905060005b82811015610e9157610e7f84610e7a8385612895565b611657565b80610e898161295e565b915050610e64565b5081600d6000828254610ea491906128e0565b9091555050505050565b601154610100900460ff1615610ed65760405162461bcd60e51b8152600401610634906126cf565b610edf8261126b565b610efb5760405162461bcd60e51b815260040161063490612282565b610f048161126b565b610f205760405162461bcd60e51b81526004016106349061218c565b610f28611227565b6001600160a01b0316610f3a83610ab0565b6001600160a01b031614610f605760405162461bcd60e51b815260040161063490612780565b610f68611227565b6001600160a01b0316610f7a82610ab0565b6001600160a01b031614610fa05760405162461bcd60e51b81526004016106349061283d565b612710821115610fc25760405162461bcd60e51b8152600401610634906126fd565b612710811115610fe45760405162461bcd60e51b815260040161063490612806565b808214156110045760405162461bcd60e51b8152600401610634906124ef565b61100d82611671565b61101681611671565b610aac611718565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000611056610890565b60115490915060ff161561107c5760405162461bcd60e51b815260040161063490612084565b6015821061109c5760405162461bcd60e51b81526004016106349061203f565b600d546110ab906127106128e0565b6110b58383612895565b106110d25760405162461bcd60e51b8152600401610634906127cf565b81600e546110e091906128c1565b3410156110ff5760405162461bcd60e51b8152600401610634906125ff565b60005b828110156108825761111833610e7a8385612895565b806111228161295e565b915050611102565b611132611227565b6001600160a01b0316611143610bee565b6001600160a01b0316146111695760405162461bcd60e51b8152600401610634906124ba565b6001600160a01b03811661118f5760405162461bcd60e51b815260040161063490612146565b610beb816114a8565b3b151590565b6111a9838383610882565b6001600160a01b0383166111c5576111c08161178f565b6111e8565b816001600160a01b0316836001600160a01b0316146111e8576111e883826117d3565b6001600160a01b038216611204576111ff81611870565b610882565b826001600160a01b0316826001600160a01b031614610882576108828282611949565b3390565b60006001600160e01b031982166380ac58cd60e01b148061125c57506001600160e01b03198216635b5e139f60e01b145b806106c057506106c08261198d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112bd82610ab0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113018261126b565b61131d5760405162461bcd60e51b8152600401610634906122c6565b600061132883610ab0565b9050806001600160a01b0316846001600160a01b031614806113635750836001600160a01b0316611358846107ac565b6001600160a01b0316145b806113735750611373818561101e565b949350505050565b826001600160a01b031661138e82610ab0565b6001600160a01b0316146113b45760405162461bcd60e51b815260040161063490612526565b6001600160a01b0382166113da5760405162461bcd60e51b815260040161063490612207565b6113e58383836119a6565b6113f0600082611288565b6001600160a01b03831660009081526003602052604081208054600192906114199084906128e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611447908490612895565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61150584848461137b565b611511848484846119b1565b610d6b5760405162461bcd60e51b8152600401610634906120f4565b6060600b805461072990612923565b60608161156157506040805180820190915260018152600360fc1b60208201526106c3565b8160005b811561158b57806115758161295e565b91506115849050600a836128ad565b9150611565565b60008167ffffffffffffffff8111156115b457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115de576020820181803683370190505b5090505b8415611373576115f36001836128e0565b9150611600600a86612979565b61160b906030612895565b60f81b81838151811061162e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611650600a866128ad565b94506115e2565b610aac828260405180602001604052806000815250611acc565b600061167c82610ab0565b905061168a816000846119a6565b611695600083611288565b6001600160a01b03811660009081526003602052604081208054600192906116be9084906128e0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b613a98601054600161172a9190612895565b106117475760405162461bcd60e51b815260040161063490612636565b600f543410156117695760405162461bcd60e51b8152600401610634906125ff565b61177c336010546001610e7a9190612895565b60105461178a906001612895565b601055565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117e084610ae5565b6117ea91906128e0565b60008381526007602052604090205490915080821461183d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611882906001906128e0565b600083815260096020526040812054600880549394509092849081106118b857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118e757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061192d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195483610ae5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b61088283838361119e565b60006119c5846001600160a01b0316611198565b15611ac157836001600160a01b031663150b7a026119e1611227565b8786866040518563ffffffff1660e01b8152600401611a039493929190611fa0565b602060405180830381600087803b158015611a1d57600080fd5b505af1925050508015611a4d575060408051601f3d908101601f19168201909252611a4a91810190611e96565b60015b611aa7573d808015611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b508051611a9f5760405162461bcd60e51b8152600401610634906120f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611373565b506001949350505050565b611ad68383611aff565b611ae360008484846119b1565b6108825760405162461bcd60e51b8152600401610634906120f4565b6001600160a01b038216611b255760405162461bcd60e51b815260040161063490612402565b611b2e8161126b565b15611b4b5760405162461bcd60e51b8152600401610634906121d0565b611b57600083836119a6565b6001600160a01b0382166000908152600360205260408120805460019290611b80908490612895565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bea90612923565b90600052602060002090601f016020900481019282611c0c5760008555611c52565b82601f10611c2557805160ff1916838001178555611c52565b82800160010185558215611c52579182015b82811115611c52578251825591602001919060010190611c37565b50611c5e929150611c62565b5090565b5b80821115611c5e5760008155600101611c63565b600067ffffffffffffffff80841115611c9257611c926129b9565b604051601f8501601f191681016020018281118282101715611cb657611cb66129b9565b604052848152915081838501861015611cce57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106c357600080fd5b803580151581146106c357600080fd5b600060208284031215611d1f578081fd5b610ded82611ce7565b60008060408385031215611d3a578081fd5b611d4383611ce7565b9150611d5160208401611ce7565b90509250929050565b600080600060608486031215611d6e578081fd5b611d7784611ce7565b9250611d8560208501611ce7565b9150604084013590509250925092565b60008060008060808587031215611daa578081fd5b611db385611ce7565b9350611dc160208601611ce7565b925060408501359150606085013567ffffffffffffffff811115611de3578182fd5b8501601f81018713611df3578182fd5b611e0287823560208401611c77565b91505092959194509250565b60008060408385031215611e20578182fd5b611e2983611ce7565b9150611d5160208401611cfe565b60008060408385031215611e49578182fd5b611e5283611ce7565b946020939093013593505050565b600060208284031215611e71578081fd5b610ded82611cfe565b600060208284031215611e8b578081fd5b8135610ded816129cf565b600060208284031215611ea7578081fd5b8151610ded816129cf565b600060208284031215611ec3578081fd5b813567ffffffffffffffff811115611ed9578182fd5b8201601f81018413611ee9578182fd5b61137384823560208401611c77565b600060208284031215611f09578081fd5b5035919050565b60008060408385031215611f22578182fd5b50508035926020909101359150565b60008151808452611f498160208601602086016128f7565b601f01601f19169290920160200192915050565b60008351611f6f8184602088016128f7565b835190830190611f838183602088016128f7565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd390830184611f31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561201557835183529284019291840191600101611ff9565b50909695505050505050565b901515815260200190565b600060208252610ded6020830184611f31565b60208082526025908201527f596f752063616e2070757263686173652061206d6178696d756d206f66203230604082015264204e46547360d81b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203220646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526024908201527f73656e6447656e657261746f723a204e4654203120646f6573206e6f7420657860408201526334b9ba1760e11b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f45786365656473207265736572766564204e46547320737570706c7900000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f426f7468204e4654732063616e2774206265207468652073616d652000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526028908201527f45786365656473206d6178696d756d204e46547320746861742063616e2062656040820152670818dc99585d195960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527347656e657261746f72206973206f66666c696e6560601b604082015260600190565b6020808252601a908201527f4e46542031206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420312063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b6020808252601b908201527f45786365656473206d6178696d756d204e46547320737570706c790000000000604082015260600190565b6020808252601a908201527f4e46542032206973206e6f7420612067656e65736973204e4654000000000000604082015260600190565b6020808252602f908201527f73656e6447656e657261746f723a204e465420322063616c6c6572206973206e60408201526e37ba103a37b5b2b71037bbb732b91760891b606082015260800190565b90815260200190565b600082198211156128a8576128a861298d565b500190565b6000826128bc576128bc6129a3565b500490565b60008160001904831182151516156128db576128db61298d565b500290565b6000828210156128f2576128f261298d565b500390565b60005b838110156129125781810151838201526020016128fa565b83811115610d6b5750506000910152565b60028104600182168061293757607f821691505b6020821081141561295857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129725761297261298d565b5060010190565b600082612988576129886129a3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610beb57600080fdfea26469706673582212204780412e071a51ec2061a839434e73d568c864270f04d1e065d77b16e252832364736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f7777772e706978656c6265617374732e78797a2f746f6b656e2f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://www.pixelbeasts.xyz/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [2] : 68747470733a2f2f7777772e706978656c6265617374732e78797a2f746f6b65
Arg [3] : 6e2f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

656:4236:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348:109;;;;;;;;;;-1:-1:-1;2348:109:13;;;;;:::i;:::-;;:::i;:::-;;4648:90;;;;;;;;;;-1:-1:-1;4648:90:13;;;;;:::i;:::-;;:::i;876:222:5:-;;;;;;;;;;-1:-1:-1;876:222:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4570:72:13;;;;;;;;;;-1:-1:-1;4570:72:13;;;;;:::i;:::-;;:::i;2316:98:3:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3827:217::-;;;;;;;;;;-1:-1:-1;3827:217:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3365:401::-;;;;;;;;;;-1:-1:-1;3365:401:3;;;;;:::i;:::-;;:::i;1046:26:13:-;;;;;;;;;;;;;:::i;1501:111:5:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4691:330:3:-;;;;;;;;;;-1:-1:-1;4691:330:3;;;;;:::i;:::-;;:::i;1177:253:5:-;;;;;;;;;;-1:-1:-1;1177:253:5;;;;;:::i;:::-;;:::i;5087:179:3:-;;;;;;;;;;-1:-1:-1;5087:179:3;;;;;:::i;:::-;;:::i;2772:97:13:-;;;;;;;;;;;;;:::i;1911:334::-;;;;;;;;;;-1:-1:-1;1911:334:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1684:230:5:-;;;;;;;;;;-1:-1:-1;1684:230:5;;;;;:::i;:::-;;:::i;2581:100:13:-;;;;;;;;;;-1:-1:-1;2581:100:13;;;;;:::i;:::-;;:::i;2019:235:3:-;;;;;;;;;;-1:-1:-1;2019:235:3;;;;;:::i;:::-;;:::i;1757:205::-;;;;;;;;;;-1:-1:-1;1757:205:3;;;;;:::i;:::-;;:::i;1565:92:11:-;;;;;;;;;;;;;:::i;997:43:13:-;;;;;;;;;;;;;:::i;4744:146::-;;;:::i;933:85:11:-;;;;;;;;;;;;;:::i;2251:91:13:-;;;;;;;;;;-1:-1:-1;2251:91:13;;;;;:::i;:::-;;:::i;2478:102:3:-;;;;;;;;;;;;;:::i;2687:79:13:-;;;;;;;;;;;;;:::i;4111:290:3:-;;;;;;;;;;-1:-1:-1;4111:290:3;;;;;:::i;:::-;;:::i;1078:35:13:-;;;;;;;;;;;;;:::i;5332:320:3:-;;;;;;;;;;-1:-1:-1;5332:320:3;;;;;:::i;:::-;;:::i;2646:329::-;;;;;;;;;;-1:-1:-1;2646:329:3;;;;;:::i;:::-;;:::i;2875:315:13:-;;;;;;;;;;-1:-1:-1;2875:315:13;;;;;:::i;:::-;;:::i;3555:818::-;;;;;;;;;;-1:-1:-1;3555:818:13;;;;;:::i;:::-;;:::i;4467:162:3:-;;;;;;;;;;-1:-1:-1;4467:162:3;;;;;:::i;:::-;;:::i;1366:539:13:-;;;;;;:::i;:::-;;:::i;1806:189:11:-;;;;;;;;;;-1:-1:-1;1806:189:11;;;;;:::i;:::-;;:::i;2348:109:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;;;;;;;;;2423:15:13::1;:27:::0;2348:109::o;4648:90::-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;4709:16:13::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;4709:22:13;;::::1;::::0;;;::::1;::::0;;4648:90::o;876:222:5:-;978:4;-1:-1:-1;;;;;;1001:50:5;;-1:-1:-1;;;1001:50:5;;:90;;;1055:36;1079:11;1055:23;:36::i;:::-;994:97;;876:222;;;;:::o;4570:72:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;4622:7:13::1;:13:::0;;-1:-1:-1;;4622:13:13::1;::::0;::::1;;::::0;;;::::1;::::0;;4570:72::o;2316:98:3:-;2370:13;2402:5;2395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2316:98;:::o;3827:217::-;3903:7;3930:16;3938:7;3930;:16::i;:::-;3922:73;;;;-1:-1:-1;;;3922:73:3;;;;;;;:::i;:::-;-1:-1:-1;4013:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4013:24:3;;3827:217::o;3365:401::-;3445:13;3461:23;3476:7;3461:14;:23::i;:::-;3445:39;;3508:5;-1:-1:-1;;;;;3502:11:3;:2;-1:-1:-1;;;;;3502:11:3;;;3494:57;;;;-1:-1:-1;;;3494:57:3;;;;;;;:::i;:::-;3599:5;-1:-1:-1;;;;;3583:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3583:21:3;;:62;;;;3608:37;3625:5;3632:12;:10;:12::i;3608:37::-;3562:165;;;;-1:-1:-1;;;3562:165:3;;;;;;;:::i;:::-;3738:21;3747:2;3751:7;3738:8;:21::i;:::-;3365:401;;;:::o;1046:26:13:-;;;;;;:::o;1501:111:5:-;1588:10;:17;1501:111;:::o;4691:330:3:-;4880:41;4899:12;:10;:12::i;:::-;4913:7;4880:18;:41::i;:::-;4872:103;;;;-1:-1:-1;;;4872:103:3;;;;;;;:::i;:::-;4986:28;4996:4;5002:2;5006:7;4986:9;:28::i;1177:253:5:-;1274:7;1309:23;1326:5;1309:16;:23::i;:::-;1301:5;:31;1293:87;;;;-1:-1:-1;;;1293:87:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1397:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1177:253::o;5087:179:3:-;5220:39;5237:4;5243:2;5247:7;5220:39;;;;;;;;;;;;:16;:39::i;2772:97:13:-;2847:15;;2772:97;:::o;1911:334::-;1970:16;1998:18;2019:17;2029:6;2019:9;:17::i;:::-;1998:38;;2047:25;2089:10;2075:25;;;;;;-1:-1:-1;;;2075:25:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2075:25:13;;2047:53;;2114:9;2110:104;2129:10;2125:1;:14;2110:104;;;2173:30;2193:6;2201:1;2173:19;:30::i;:::-;2159:8;2168:1;2159:11;;;;;;-1:-1:-1;;;2159:11:13;;;;;;;;;;;;;;;;;;:44;2141:3;;;;:::i;:::-;;;;2110:104;;;-1:-1:-1;2230:8:13;1911:334;-1:-1:-1;;;1911:334:13:o;1684:230:5:-;1759:7;1794:30;:28;:30::i;:::-;1786:5;:38;1778:95;;;;-1:-1:-1;;;1778:95:5;;;;;;;:::i;:::-;1890:10;1901:5;1890:17;;;;;;-1:-1:-1;;;1890:17:5;;;;;;;;;;;;;;;;;1883:24;;1684:230;;;:::o;2581:100:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;2651:23:13;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2581:100:::0;:::o;2019:235:3:-;2091:7;2126:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2126:16:3;2160:19;2152:73;;;;-1:-1:-1;;;2152:73:3;;;;;;;:::i;1757:205::-;1829:7;-1:-1:-1;;;;;1856:19:3;;1848:74;;;;-1:-1:-1;;;1848:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1939:16:3;;;;;:9;:16;;;;;;;1757:205::o;1565:92:11:-;1156:12;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;1629:21:::1;1647:1;1629:9;:21::i;:::-;1565:92::o:0;997:43:13:-;;;;:::o;4744:146::-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;4864:6:13::1;::::0;4856:26:::1;::::0;4817:21:::1;::::0;-1:-1:-1;;;;;4864:6:13::1;::::0;4856:26;::::1;;;::::0;4817:21;;4802:12:::1;4856:26:::0;4802:12;4856:26;4817:21;4864:6;4856:26;::::1;;;;;;4848:35;;;::::0;::::1;;1215:1:11;4744:146:13:o:0;933:85:11:-;1005:6;;-1:-1:-1;;;;;1005:6:11;933:85;:::o;2251:91:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;2317:6:13::1;:18:::0;2251:91::o;2478:102:3:-;2534:13;2566:7;2559:14;;;;;:::i;2687:79:13:-;2753:6;;2687:79;:::o;4111:290:3:-;4225:12;:10;:12::i;:::-;-1:-1:-1;;;;;4213:24:3;:8;-1:-1:-1;;;;;4213:24:3;;;4205:62;;;;-1:-1:-1;;;4205:62:3;;;;;;;:::i;:::-;4323:8;4278:18;:32;4297:12;:10;:12::i;:::-;-1:-1:-1;;;;;4278:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4278:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4278:53:3;;;;;;;;;;;4361:12;:10;:12::i;:::-;-1:-1:-1;;;;;4346:48:3;;4385:8;4346:48;;;;;;:::i;:::-;;;;;;;;4111:290;;:::o;1078:35:13:-;;;;;;;;;:::o;5332:320:3:-;5501:41;5520:12;:10;:12::i;:::-;5534:7;5501:18;:41::i;:::-;5493:103;;;;-1:-1:-1;;;5493:103:3;;;;;;;:::i;:::-;5606:39;5620:4;5626:2;5630:7;5639:5;5606:13;:39::i;:::-;5332:320;;;;:::o;2646:329::-;2719:13;2752:16;2760:7;2752;:16::i;:::-;2744:76;;;;-1:-1:-1;;;2744:76:3;;;;;;;:::i;:::-;2831:21;2855:10;:8;:10::i;:::-;2831:34;;2906:1;2888:7;2882:21;:25;:86;;;;;;;;;;;;;;;;;2934:7;2943:18;:7;:16;:18::i;:::-;2917:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2882:86;2875:93;2646:329;-1:-1:-1;;;2646:329:3:o;2875:315:13:-;1156:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;2974:9:13::1;;2963:7;:20;;2954:63;;;;-1:-1:-1::0;;;2954:63:13::1;;;;;;;:::i;:::-;3028:14;3045:13;:11;:13::i;:::-;3028:30;;3072:9;3068:85;3087:7;3083:1;:11;3068:85;;;3114:28;3125:3:::0;3130:10:::1;3139:1:::0;3130:6;:10:::1;:::i;:::-;3114:9;:28::i;:::-;3096:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3068:85;;;;3176:7;3163:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;2875:315:13:o;3555:818::-;3633:16;;;;;;;3632:17;3623:69;;;;-1:-1:-1;;;3623:69:13;;;;;;;:::i;:::-;3710:13;3718:4;3710:7;:13::i;:::-;3702:81;;;;-1:-1:-1;;;3702:81:13;;;;;;;:::i;:::-;3801:13;3809:4;3801:7;:13::i;:::-;3793:81;;;;-1:-1:-1;;;3793:81:13;;;;;;;:::i;:::-;3909:12;:10;:12::i;:::-;-1:-1:-1;;;;;3892:29:13;:13;3900:4;3892:7;:13::i;:::-;-1:-1:-1;;;;;3892:29:13;;3884:92;;;;-1:-1:-1;;;3884:92:13;;;;;;;:::i;:::-;4011:12;:10;:12::i;:::-;-1:-1:-1;;;;;3994:29:13;:13;4002:4;3994:7;:13::i;:::-;-1:-1:-1;;;;;3994:29:13;;3986:92;;;;-1:-1:-1;;;3986:92:13;;;;;;;:::i;:::-;4106:5;4097:4;:14;;4088:67;;;;-1:-1:-1;;;4088:67:13;;;;;;;:::i;:::-;4183:5;4174:4;:14;;4165:67;;;;-1:-1:-1;;;4165:67:13;;;;;;;:::i;:::-;4259:4;4251;:12;;4243:53;;;;-1:-1:-1;;;4243:53:13;;;;;;;:::i;:::-;4306:11;4312:4;4306:5;:11::i;:::-;4327;4333:4;4327:5;:11::i;:::-;4348:18;:16;:18::i;4467:162:3:-;-1:-1:-1;;;;;4587:25:3;;;4564:4;4587:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4467:162::o;1366:539:13:-;1422:14;1439:13;:11;:13::i;:::-;1472:7;;1422:30;;-1:-1:-1;1472:7:13;;1471:8;1462:63;;;;-1:-1:-1;;;1462:63:13;;;;;;;:::i;:::-;1550:2;1544:3;:8;1535:89;;;;-1:-1:-1;;;1535:89:13;;;;;;;:::i;:::-;1666:9;;1658:17;;:5;:17;:::i;:::-;1643:12;1652:3;1643:6;:12;:::i;:::-;:32;1634:79;;;;-1:-1:-1;;;1634:79:13;;;;;;;:::i;:::-;1754:3;1745:6;;:12;;;;:::i;:::-;1732:9;:25;;1723:77;;;;-1:-1:-1;;;1723:77:13;;;;;;;:::i;:::-;1815:9;1811:88;1830:3;1826:1;:7;1811:88;;;1853:35;1864:10;1876;1885:1;1876:6;:10;:::i;1853:35::-;1835:3;;;;:::i;:::-;;;;1811:88;;1806:189:11;1156:12;:10;:12::i;:::-;-1:-1:-1;;;;;1145:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1145:23:11;;1137:68;;;;-1:-1:-1;;;1137:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1894:22:11;::::1;1886:73;;;;-1:-1:-1::0;;;1886:73:11::1;;;;;;;:::i;:::-;1969:19;1979:8;1969:9;:19::i;685:377:0:-:0;1001:20;1047:8;;;685:377::o;2510:572:5:-;2649:45;2676:4;2682:2;2686:7;2649:26;:45::i;:::-;-1:-1:-1;;;;;2709:18:5;;2705:183;;2743:40;2775:7;2743:31;:40::i;:::-;2705:183;;;2812:2;-1:-1:-1;;;;;2804:10:5;:4;-1:-1:-1;;;;;2804:10:5;;2800:88;;2830:47;2863:4;2869:7;2830:32;:47::i;:::-;-1:-1:-1;;;;;2901:16:5;;2897:179;;2933:45;2970:7;2933:36;:45::i;:::-;2897:179;;;3005:4;-1:-1:-1;;;;;2999:10:5;:2;-1:-1:-1;;;;;2999:10:5;;2995:81;;3025:40;3053:2;3057:7;3025:27;:40::i;553:96:1:-;632:10;553:96;:::o;1398:300:3:-;1500:4;-1:-1:-1;;;;;;1535:40:3;;-1:-1:-1;;;1535:40:3;;:104;;-1:-1:-1;;;;;;;1591:48:3;;-1:-1:-1;;;1591:48:3;1535:104;:156;;;;1655:36;1679:11;1655:23;:36::i;7124:125::-;7189:4;7212:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7212:16:3;:30;;;7124:125::o;10975:171::-;11049:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11049:29:3;-1:-1:-1;;;;;11049:29:3;;;;;;;;:24;;11102:23;11049:24;11102:14;:23::i;:::-;-1:-1:-1;;;;;11093:46:3;;;;;;;;;;;10975:171;;:::o;7407:344::-;7500:4;7524:16;7532:7;7524;:16::i;:::-;7516:73;;;;-1:-1:-1;;;7516:73:3;;;;;;;:::i;:::-;7599:13;7615:23;7630:7;7615:14;:23::i;:::-;7599:39;;7667:5;-1:-1:-1;;;;;7656:16:3;:7;-1:-1:-1;;;;;7656:16:3;;:51;;;;7700:7;-1:-1:-1;;;;;7676:31:3;:20;7688:7;7676:11;:20::i;:::-;-1:-1:-1;;;;;7676:31:3;;7656:51;:87;;;;7711:32;7728:5;7735:7;7711:16;:32::i;:::-;7648:96;7407:344;-1:-1:-1;;;;7407:344:3:o;10304:560::-;10458:4;-1:-1:-1;;;;;10431:31:3;:23;10446:7;10431:14;:23::i;:::-;-1:-1:-1;;;;;10431:31:3;;10423:85;;;;-1:-1:-1;;;10423:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10526:16:3;;10518:65;;;;-1:-1:-1;;;10518:65:3;;;;;;;:::i;:::-;10594:39;10615:4;10621:2;10625:7;10594:20;:39::i;:::-;10695:29;10712:1;10716:7;10695:8;:29::i;:::-;-1:-1:-1;;;;;10735:15:3;;;;;;:9;:15;;;;;:20;;10754:1;;10735:15;:20;;10754:1;;10735:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10765:13:3;;;;;;:9;:13;;;;;:18;;10782:1;;10765:13;:18;;10782:1;;10765:18;:::i;:::-;;;;-1:-1:-1;;10793:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10793:21:3;-1:-1:-1;;;;;10793:21:3;;;;;;;;;10830:27;;10793:16;;10830:27;;;;;;;10304:560;;;:::o;2001:169:11:-;2075:6;;;-1:-1:-1;;;;;2091:17:11;;;-1:-1:-1;;;;;;2091:17:11;;;;;;;2123:40;;2075:6;;;2091:17;2075:6;;2123:40;;2056:16;;2123:40;2001:169;;:::o;6514:307:3:-;6665:28;6675:4;6681:2;6685:7;6665:9;:28::i;:::-;6711:48;6734:4;6740:2;6744:7;6753:5;6711:22;:48::i;:::-;6703:111;;;;-1:-1:-1;;;6703:111:3;;;;;;;:::i;2463:112:13:-;2523:13;2555;2548:20;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;8081:108:3;8156:26;8166:2;8170:7;8156:26;;;;;;;;;;;;:9;:26::i;9632:348::-;9691:13;9707:23;9722:7;9707:14;:23::i;:::-;9691:39;;9741:48;9762:5;9777:1;9781:7;9741:20;:48::i;:::-;9827:29;9844:1;9848:7;9827:8;:29::i;:::-;-1:-1:-1;;;;;9867:16:3;;;;;;:9;:16;;;;;:21;;9887:1;;9867:16;:21;;9887:1;;9867:21;:::i;:::-;;;;-1:-1:-1;;9905:16:3;;;;:7;:16;;;;;;9898:23;;-1:-1:-1;;;;;;9898:23:3;;;9937:36;9913:7;;9905:16;-1:-1:-1;;;;;9937:36:3;;;;;9905:16;;9937:36;9632:348;;:::o;3196:353:13:-;3279:5;3252:20;;3275:1;3252:24;;;;:::i;:::-;:32;3243:95;;;;-1:-1:-1;;;3243:95:13;;;;;;;:::i;:::-;3370:15;;3357:9;:28;;3348:80;;;;-1:-1:-1;;;3348:80:13;;;;;;;:::i;:::-;3438:49;3449:10;3461:20;;3484:1;3461:24;;;;:::i;3438:49::-;3520:20;;:22;;3541:1;3520:22;:::i;:::-;3497:20;:45;3196:353::o;3788:161:5:-;3891:10;:17;;3864:24;;;;:15;:24;;;;;:44;;;3918:24;;;;;;;;;;;;3788:161::o;4566:970::-;4828:22;4878:1;4853:22;4870:4;4853:16;:22::i;:::-;:26;;;;:::i;:::-;4889:18;4910:26;;;:17;:26;;;;;;4828:51;;-1:-1:-1;5040:28:5;;;5036:323;;-1:-1:-1;;;;;5106:18:5;;5084:19;5106:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5155:30;;;;;;:44;;;5271:30;;:17;:30;;;;;:43;;;5036:323;-1:-1:-1;5452:26:5;;;;:17;:26;;;;;;;;5445:33;;;-1:-1:-1;;;;;5495:18:5;;;;;:12;:18;;;;;:34;;;;;;;5488:41;4566:970::o;5824:1061::-;6098:10;:17;6073:22;;6098:21;;6118:1;;6098:21;:::i;:::-;6129:18;6150:24;;;:15;:24;;;;;;6518:10;:26;;6073:46;;-1:-1:-1;6150:24:5;;6073:46;;6518:26;;;;-1:-1:-1;;;6518:26:5;;;;;;;;;;;;;;;;;6496:48;;6580:11;6555:10;6566;6555:22;;;;;;-1:-1:-1;;;6555:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6659:28;;;:15;:28;;;;;;;:41;;;6828:24;;;;;6821:31;6862:10;:16;;;;;-1:-1:-1;;;6862:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5824:1061;;;;:::o;3376:217::-;3460:14;3477:20;3494:2;3477:16;:20::i;:::-;-1:-1:-1;;;;;3507:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3551:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3376:217:5:o;730:155:2:-;-1:-1:-1;;;;;;838:40:2;;-1:-1:-1;;;838:40:2;730:155;;;:::o;4379:185:13:-;4509:48;4536:5;4543:3;4548:8;4509:26;:48::i;11699:782:3:-;11849:4;11869:15;:2;-1:-1:-1;;;;;11869:13:3;;:15::i;:::-;11865:610;;;11920:2;-1:-1:-1;;;;;11904:36:3;;11941:12;:10;:12::i;:::-;11955:4;11961:7;11970:5;11904:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11904:72:3;;;;;;;;-1:-1:-1;;11904:72:3;;;;;;;;;;;;:::i;:::-;;;11900:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12147:13:3;;12143:266;;12189:60;;-1:-1:-1;;;12189:60:3;;;;;;;:::i;12143:266::-;12361:6;12355:13;12346:6;12342:2;12338:15;12331:38;11900:523;-1:-1:-1;;;;;;12026:55:3;-1:-1:-1;;;12026:55:3;;-1:-1:-1;12019:62:3;;11865:610;-1:-1:-1;12460:4:3;11699:782;;;;;;:::o;8410:311::-;8535:18;8541:2;8545:7;8535:5;:18::i;:::-;8584:54;8615:1;8619:2;8623:7;8632:5;8584:22;:54::i;:::-;8563:151;;;;-1:-1:-1;;;8563:151:3;;;;;;;:::i;9043:372::-;-1:-1:-1;;;;;9122:16:3;;9114:61;;;;-1:-1:-1;;;9114:61:3;;;;;;;:::i;:::-;9194:16;9202:7;9194;:16::i;:::-;9193:17;9185:58;;;;-1:-1:-1;;;9185:58:3;;;;;;;:::i;:::-;9254:45;9283:1;9287:2;9291:7;9254:20;:45::i;:::-;-1:-1:-1;;;;;9310:13:3;;;;;;:9;:13;;;;;:18;;9327:1;;9310:13;:18;;9327:1;;9310:18;:::i;:::-;;;;-1:-1:-1;;9338:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9338:21:3;-1:-1:-1;;;;;9338:21:3;;;;;;;;9375:33;;9338:16;;;9375:33;;9338:16;;9375:33;9043:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:14;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:14;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:14;473:16;;;470:25;-1:-1:-1;467:2:14;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:14;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:14;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:14:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:14;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:14;;4335:120;-1:-1:-1;4335:120:14:o;4460:258::-;;;4589:2;4577:9;4568:7;4564:23;4560:32;4557:2;;;4610:6;4602;4595:22;4557:2;-1:-1:-1;;4638:23:14;;;4708:2;4693:18;;;4680:32;;-1:-1:-1;4547:171:14:o;4723:259::-;;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:14;4930:39;;;;4971:4;4926:50;;4774:208;-1:-1:-1;;4774:208:14:o;4987:470::-;;5204:6;5198:13;5220:53;5266:6;5261:3;5254:4;5246:6;5242:17;5220:53;:::i;:::-;5336:13;;5295:16;;;;5358:57;5336:13;5295:16;5392:4;5380:17;;5358:57;:::i;:::-;5431:20;;5174:283;-1:-1:-1;;;;5174:283:14:o;5462:203::-;-1:-1:-1;;;;;5626:32:14;;;;5608:51;;5596:2;5581:18;;5563:102::o;5670:490::-;-1:-1:-1;;;;;5939:15:14;;;5921:34;;5991:15;;5986:2;5971:18;;5964:43;6038:2;6023:18;;6016:34;;;6086:3;6081:2;6066:18;;6059:31;;;5670:490;;6107:47;;6134:19;;6126:6;6107:47;:::i;:::-;6099:55;5873:287;-1:-1:-1;;;;;;5873:287:14:o;6165:635::-;6336:2;6388:21;;;6458:13;;6361:18;;;6480:22;;;6165:635;;6336:2;6559:15;;;;6533:2;6518:18;;;6165:635;6605:169;6619:6;6616:1;6613:13;6605:169;;;6680:13;;6668:26;;6749:15;;;;6714:12;;;;6641:1;6634:9;6605:169;;;-1:-1:-1;6791:3:14;;6316:484;-1:-1:-1;;;;;;6316:484:14:o;6805:187::-;6970:14;;6963:22;6945:41;;6933:2;6918:18;;6900:92::o;6997:221::-;;7146:2;7135:9;7128:21;7166:46;7208:2;7197:9;7193:18;7185:6;7166:46;:::i;7223:401::-;7425:2;7407:21;;;7464:2;7444:18;;;7437:30;7503:34;7498:2;7483:18;;7476:62;-1:-1:-1;;;7569:2:14;7554:18;;7547:35;7614:3;7599:19;;7397:227::o;7629:335::-;7831:2;7813:21;;;7870:2;7850:18;;;7843:30;-1:-1:-1;;;7904:2:14;7889:18;;7882:41;7955:2;7940:18;;7803:161::o;7969:407::-;8171:2;8153:21;;;8210:2;8190:18;;;8183:30;8249:34;8244:2;8229:18;;8222:62;-1:-1:-1;;;8315:2:14;8300:18;;8293:41;8366:3;8351:19;;8143:233::o;8381:414::-;8583:2;8565:21;;;8622:2;8602:18;;;8595:30;8661:34;8656:2;8641:18;;8634:62;-1:-1:-1;;;8727:2:14;8712:18;;8705:48;8785:3;8770:19;;8555:240::o;8800:402::-;9002:2;8984:21;;;9041:2;9021:18;;;9014:30;9080:34;9075:2;9060:18;;9053:62;-1:-1:-1;;;9146:2:14;9131:18;;9124:36;9192:3;9177:19;;8974:228::o;9207:400::-;9409:2;9391:21;;;9448:2;9428:18;;;9421:30;9487:34;9482:2;9467:18;;9460:62;-1:-1:-1;;;9553:2:14;9538:18;;9531:34;9597:3;9582:19;;9381:226::o;9612:352::-;9814:2;9796:21;;;9853:2;9833:18;;;9826:30;9892;9887:2;9872:18;;9865:58;9955:2;9940:18;;9786:178::o;9969:400::-;10171:2;10153:21;;;10210:2;10190:18;;;10183:30;10249:34;10244:2;10229:18;;10222:62;-1:-1:-1;;;10315:2:14;10300:18;;10293:34;10359:3;10344:19;;10143:226::o;10374:349::-;10576:2;10558:21;;;10615:2;10595:18;;;10588:30;10654:27;10649:2;10634:18;;10627:55;10714:2;10699:18;;10548:175::o;10728:400::-;10930:2;10912:21;;;10969:2;10949:18;;;10942:30;11008:34;11003:2;10988:18;;10981:62;-1:-1:-1;;;11074:2:14;11059:18;;11052:34;11118:3;11103:19;;10902:226::o;11133:408::-;11335:2;11317:21;;;11374:2;11354:18;;;11347:30;11413:34;11408:2;11393:18;;11386:62;-1:-1:-1;;;11479:2:14;11464:18;;11457:42;11531:3;11516:19;;11307:234::o;11546:420::-;11748:2;11730:21;;;11787:2;11767:18;;;11760:30;11826:34;11821:2;11806:18;;11799:62;11897:26;11892:2;11877:18;;11870:54;11956:3;11941:19;;11720:246::o;11971:406::-;12173:2;12155:21;;;12212:2;12192:18;;;12185:30;12251:34;12246:2;12231:18;;12224:62;-1:-1:-1;;;12317:2:14;12302:18;;12295:40;12367:3;12352:19;;12145:232::o;12382:405::-;12584:2;12566:21;;;12623:2;12603:18;;;12596:30;12662:34;12657:2;12642:18;;12635:62;-1:-1:-1;;;12728:2:14;12713:18;;12706:39;12777:3;12762:19;;12556:231::o;12792:356::-;12994:2;12976:21;;;13013:18;;;13006:30;13072:34;13067:2;13052:18;;13045:62;13139:2;13124:18;;12966:182::o;13153:408::-;13355:2;13337:21;;;13394:2;13374:18;;;13367:30;13433:34;13428:2;13413:18;;13406:62;-1:-1:-1;;;13499:2:14;13484:18;;13477:42;13551:3;13536:19;;13327:234::o;13566:352::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846;13841:2;13826:18;;13819:58;13909:2;13894:18;;13740:178::o;13923:356::-;14125:2;14107:21;;;14144:18;;;14137:30;14203:34;14198:2;14183:18;;14176:62;14270:2;14255:18;;14097:182::o;14284:352::-;14486:2;14468:21;;;14525:2;14505:18;;;14498:30;14564;14559:2;14544:18;;14537:58;14627:2;14612:18;;14458:178::o;14641:405::-;14843:2;14825:21;;;14882:2;14862:18;;;14855:30;14921:34;14916:2;14901:18;;14894:62;-1:-1:-1;;;14987:2:14;14972:18;;14965:39;15036:3;15021:19;;14815:231::o;15051:411::-;15253:2;15235:21;;;15292:2;15272:18;;;15265:30;15331:34;15326:2;15311:18;;15304:62;-1:-1:-1;;;15397:2:14;15382:18;;15375:45;15452:3;15437:19;;15225:237::o;15467:397::-;15669:2;15651:21;;;15708:2;15688:18;;;15681:30;15747:34;15742:2;15727:18;;15720:62;-1:-1:-1;;;15813:2:14;15798:18;;15791:31;15854:3;15839:19;;15641:223::o;15869:349::-;16071:2;16053:21;;;16110:2;16090:18;;;16083:30;16149:27;16144:2;16129:18;;16122:55;16209:2;16194:18;;16043:175::o;16223:404::-;16425:2;16407:21;;;16464:2;16444:18;;;16437:30;16503:34;16498:2;16483:18;;16476:62;-1:-1:-1;;;16569:2:14;16554:18;;16547:38;16617:3;16602:19;;16397:230::o;16632:413::-;16834:2;16816:21;;;16873:2;16853:18;;;16846:30;16912:34;16907:2;16892:18;;16885:62;-1:-1:-1;;;16978:2:14;16963:18;;16956:47;17035:3;17020:19;;16806:239::o;17050:344::-;17252:2;17234:21;;;17291:2;17271:18;;;17264:30;-1:-1:-1;;;17325:2:14;17310:18;;17303:50;17385:2;17370:18;;17224:170::o;17399:350::-;17601:2;17583:21;;;17640:2;17620:18;;;17613:30;17679:28;17674:2;17659:18;;17652:56;17740:2;17725:18;;17573:176::o;17754:408::-;17956:2;17938:21;;;17995:2;17975:18;;;17968:30;18034:34;18029:2;18014:18;;18007:62;-1:-1:-1;;;18100:2:14;18085:18;;18078:42;18152:3;18137:19;;17928:234::o;18167:411::-;18369:2;18351:21;;;18408:2;18388:18;;;18381:30;18447:34;18442:2;18427:18;;18420:62;-1:-1:-1;;;18513:2:14;18498:18;;18491:45;18568:3;18553:19;;18341:237::o;18583:351::-;18785:2;18767:21;;;18824:2;18804:18;;;18797:30;18863:29;18858:2;18843:18;;18836:57;18925:2;18910:18;;18757:177::o;18939:350::-;19141:2;19123:21;;;19180:2;19160:18;;;19153:30;19219:28;19214:2;19199:18;;19192:56;19280:2;19265:18;;19113:176::o;19294:411::-;19496:2;19478:21;;;19535:2;19515:18;;;19508:30;19574:34;19569:2;19554:18;;19547:62;-1:-1:-1;;;19640:2:14;19625:18;;19618:45;19695:3;19680:19;;19468:237::o;19710:177::-;19856:25;;;19844:2;19829:18;;19811:76::o;19892:128::-;;19963:1;19959:6;19956:1;19953:13;19950:2;;;19969:18;;:::i;:::-;-1:-1:-1;20005:9:14;;19940:80::o;20025:120::-;;20091:1;20081:2;;20096:18;;:::i;:::-;-1:-1:-1;20130:9:14;;20071:74::o;20150:168::-;;20256:1;20252;20248:6;20244:14;20241:1;20238:21;20233:1;20226:9;20219:17;20215:45;20212:2;;;20263:18;;:::i;:::-;-1:-1:-1;20303:9:14;;20202:116::o;20323:125::-;;20391:1;20388;20385:8;20382:2;;;20396:18;;:::i;:::-;-1:-1:-1;20433:9:14;;20372:76::o;20453:258::-;20525:1;20535:113;20549:6;20546:1;20543:13;20535:113;;;20625:11;;;20619:18;20606:11;;;20599:39;20571:2;20564:10;20535:113;;;20666:6;20663:1;20660:13;20657:2;;;-1:-1:-1;;20701:1:14;20683:16;;20676:27;20506:205::o;20716:380::-;20801:1;20791:12;;20848:1;20838:12;;;20859:2;;20913:4;20905:6;20901:17;20891:27;;20859:2;20966;20958:6;20955:14;20935:18;20932:38;20929:2;;;21012:10;21007:3;21003:20;21000:1;20993:31;21047:4;21044:1;21037:15;21075:4;21072:1;21065:15;20929:2;;20771:325;;;:::o;21101:135::-;;-1:-1:-1;;21161:17:14;;21158:2;;;21181:18;;:::i;:::-;-1:-1:-1;21228:1:14;21217:13;;21148:88::o;21241:112::-;;21299:1;21289:2;;21304:18;;:::i;:::-;-1:-1:-1;21338:9:14;;21279:74::o;21358:127::-;21419:10;21414:3;21410:20;21407:1;21400:31;21450:4;21447:1;21440:15;21474:4;21471:1;21464:15;21490:127;21551:10;21546:3;21542:20;21539:1;21532:31;21582:4;21579:1;21572:15;21606:4;21603:1;21596:15;21622:127;21683:10;21678:3;21674:20;21671:1;21664:31;21714:4;21711:1;21704:15;21738:4;21735:1;21728:15;21754:133;-1:-1:-1;;;;;;21830:32:14;;21820:43;;21810:2;;21877:1;21874;21867:12

Swarm Source

ipfs://4780412e071a51ec2061a839434e73d568c864270f04d1e065d77b16e2528323
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.