ETH Price: $2,953.95 (-6.44%)
Gas: 7 Gwei

Token

MyBananaFucko (MBF)
 

Overview

Max Total Supply

1,955 MBF

Holders

399

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wickeddig.eth
Balance
2 MBF
0xc36596e05312410fc41337ec6c2914a4fca8d6c1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AssPocket

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1300 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-23
*/

// File: @openzeppelin/[email protected]/access/Ownable.sol

// SPDX-License-Identifier: MIT


// File: @openzeppelin/[email protected]/utils/Context.sol



pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File: @openzeppelin/[email protected]/utils/introspection/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: @openzeppelin/[email protected]/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/[email protected]/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}


// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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: @openzeppelin/[email protected]/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File: @openzeppelin/[email protected]/utils/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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

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

// File: @openzeppelin/[email protected]/token/ERC721/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: AssPocket.sol


pragma solidity ^0.8.0;




// "INSPIRED BY" / STOLEN FROM FUCKINGPICKLES
contract AssPocket is ERC721, ERC721Enumerable, Ownable {
    uint16 public constant MAX_BANANAS = 10000;
    uint16 public theWorstGoldenBanana = 10000;
    uint16 public theHolyGoldenBanana = 10000;
    string private baseURI;
    
    constructor(string memory uri) ERC721("MyBananaFucko", "MBF") {
      setBaseURI(uri);
    }

    function mintMyBanana(address _to, uint _count) public payable {
        require(totalSupply() + _count <= MAX_BANANAS, "Max limit or Sale Ended");
        require(_count <= 20, "Exceeds 20");
        require(msg.value >= price(_count), "Value below price");
        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
    }
    
    function price(uint _count) public view returns (uint256) {
        // IT'S RAINING 1000 BANANAS
        if(totalSupply() <= 1000 ){
            return 0;
        }
        return 10000000000000000 * _count; // 0.01 ETH
    }

    function selectGoldenBanana() public onlyOwner {
        // FIXING THE GOLDEN PICKLE SCAM DRAW (MY MOST SINCERE CONDOLENCES TO PICKLE #9999, OWNER WILL GET AIRDROPPED BANANA #0 FREE OF CHARGE)
        require(theWorstGoldenBanana == 10000 || theHolyGoldenBanana == 10000, "Golden Bananas already minted");
        require(totalSupply() >= 2);
        uint256 randomHash = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty)));
        if(theWorstGoldenBanana == 10000) {
            // LEARN FUCKING MODULO MATH SCUMBAG
            randomHash = randomHash % totalSupply();
            theWorstGoldenBanana = uint16(randomHash);
        } else {
            randomHash = randomHash % totalSupply()-1;
            if(randomHash >= theWorstGoldenBanana) {
                randomHash++;
            }
            theHolyGoldenBanana = uint16(randomHash);
        }   
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }

    function _baseURI() internal view override returns (string memory) {
      return baseURI;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
      baseURI = uri;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","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":"MAX_BANANAS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMyBanana","outputs":[],"stateMutability":"payable","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":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"selectGoldenBanana","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":"uri","type":"string"}],"name":"setBaseURI","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":[],"name":"theHolyGoldenBanana","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"theWorstGoldenBanana","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a805463ffffffff60a01b1916630271027160a41b1790553480156200002a57600080fd5b506040516200283c3803806200283c8339810160408190526200004d916200024a565b604080518082018252600d81526c4d7942616e616e614675636b6f60981b60208083019182528351808501909452600384526226a12360e91b9084015281519192916200009d91600091620001a4565b508051620000b3906001906020840190620001a4565b5050506000620000c86200012860201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000121816200012c565b5062000373565b3390565b600a546001600160a01b031633146200018b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a090600b906020840190620001a4565b5050565b828054620001b29062000320565b90600052602060002090601f016020900481019282620001d6576000855562000221565b82601f10620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b506200022f92915062000233565b5090565b5b808211156200022f576000815560010162000234565b600060208083850312156200025d578182fd5b82516001600160401b038082111562000274578384fd5b818501915085601f83011262000288578384fd5b8151818111156200029d576200029d6200035d565b604051601f8201601f19908116603f01168101908382118183101715620002c857620002c86200035d565b816040528281528886848701011115620002e0578687fd5b8693505b82841015620003035784840186015181850187015292850192620002e4565b828411156200031457868684830101525b98975050505050505050565b600181811c908216806200033557607f821691505b602082108114156200035757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124b980620003836000396000f3fe6080604052600436106101ac5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610484578063e985e9c5146104a4578063f2fde38b146104ed578063faf2a18e1461050d57600080fd5b8063a22cb4651461042f578063a54ce9f91461044f578063b88d4fde1461046457600080fd5b806378bc1915116100c657806378bc1915146103de578063853828b6146103f45780638da5cb5b146103fc57806395d89b411461041a57600080fd5b806370a0823114610396578063715018a6146103b65780637316da48146103cb57600080fd5b806326a49e37116101595780634349b437116101335780634349b437146103015780634f6ccce71461033657806355f804b3146103565780636352211e1461037657600080fd5b806326a49e37146102a15780632f745c59146102c157806342842e0e146102e157600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd1461026257806323b872dd1461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc3660046121f3565b61052f565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb610540565b6040516101dd9190612320565b34801561021457600080fd5b50610228610223366004612271565b6105d2565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046121ca565b61067d565b005b34801561026e57600080fd5b506008545b6040519081526020016101dd565b34801561028d57600080fd5b5061026061029c3660046120dc565b6107af565b3480156102ad57600080fd5b506102736102bc366004612271565b610836565b3480156102cd57600080fd5b506102736102dc3660046121ca565b610862565b3480156102ed57600080fd5b506102606102fc3660046120dc565b61090a565b34801561030d57600080fd5b50600a5461032390600160b01b900461ffff1681565b60405161ffff90911681526020016101dd565b34801561034257600080fd5b50610273610351366004612271565b610925565b34801561036257600080fd5b5061026061037136600461222b565b6109d7565b34801561038257600080fd5b50610228610391366004612271565b610a48565b3480156103a257600080fd5b506102736103b1366004612090565b610ad3565b3480156103c257600080fd5b50610260610b6d565b6102606103d93660046121ca565b610c1e565b3480156103ea57600080fd5b5061032361271081565b610260610d5b565b34801561040857600080fd5b50600a546001600160a01b0316610228565b34801561042657600080fd5b506101fb610ddb565b34801561043b57600080fd5b5061026061044a366004612190565b610dea565b34801561045b57600080fd5b50610260610eaf565b34801561047057600080fd5b5061026061047f366004612117565b6110aa565b34801561049057600080fd5b506101fb61049f366004612271565b611138565b3480156104b057600080fd5b506101d16104bf3660046120aa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f957600080fd5b50610260610508366004612090565b611221565b34801561051957600080fd5b50600a5461032390600160a01b900461ffff1681565b600061053a82611360565b92915050565b60606000805461054f906123c1565b80601f016020809104026020016040519081016040528092919081815260200182805461057b906123c1565b80156105c85780601f1061059d576101008083540402835291602001916105c8565b820191906000526020600020905b8154815290600101906020018083116105ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068882610a48565b9050806001600160a01b0316836001600160a01b031614156107125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610658565b336001600160a01b038216148061072e575061072e81336104bf565b6107a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610658565b6107aa838361139e565b505050565b6107b93382611419565b61082b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610658565b6107aa838383611521565b60006103e861084460085490565b1161085157506000919050565b61053a82662386f26fc1000061235f565b600061086d83610ad3565b82106108e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610658565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107aa838383604051806020016040528060008152506110aa565b600061093060085490565b82106109a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610658565b600882815481106109c557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610a315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b8051610a4490600b906020840190611f65565b5050565b6000818152600260205260408120546001600160a01b03168061053a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610658565b60006001600160a01b038216610b515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610658565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b61271081610c2b60085490565b610c359190612333565b1115610c835760405162461bcd60e51b815260206004820152601760248201527f4d6178206c696d6974206f722053616c6520456e6465640000000000000000006044820152606401610658565b6014811115610cd45760405162461bcd60e51b815260206004820152600a60248201527f45786365656473203230000000000000000000000000000000000000000000006044820152606401610658565b610cdd81610836565b341015610d2c5760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f772070726963650000000000000000000000000000006044820152606401610658565b60005b818110156107aa57610d4983610d4460085490565b611706565b80610d53816123fc565b915050610d2f565b600a546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b60405133904780156108fc02916000818181858888f19350505050610dd957600080fd5b565b60606001805461054f906123c1565b6001600160a01b038216331415610e435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610658565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610f095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b600a54600160a01b900461ffff166127101480610f345750600a54600160b01b900461ffff16612710145b610f805760405162461bcd60e51b815260206004820152601d60248201527f476f6c64656e2042616e616e617320616c7265616479206d696e7465640000006044820152606401610658565b6002610f8b60085490565b1015610f9657600080fd5b60004244604051602001610fb4929190918252602082015260400190565b60408051808303601f190181529190528051602090910120600a54909150600160a01b900461ffff16612710141561102e57600854610ff39082612417565b600a805461ffff8316600160a01b027fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff909116179055905050565b600161103960085490565b6110439083612417565b61104d919061237e565b600a54909150600160a01b900461ffff168110611072578061106e816123fc565b9150505b600a80547fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff16600160b01b61ffff8416021790555b50565b6110b43383611419565b6111265760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610658565b61113284848484611720565b50505050565b6000818152600260205260409020546060906001600160a01b03166111c55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610658565b60006111cf6117a9565b905060008151116111ef576040518060200160405280600081525061121a565b806111f9846117b8565b60405160200161120a9291906122b5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461127b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b6001600160a01b0381166112f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610658565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061053a575061053a82611906565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906113e082610a48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610658565b60006114ae83610a48565b9050806001600160a01b0316846001600160a01b031614806114e95750836001600160a01b03166114de846105d2565b6001600160a01b0316145b8061151957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153482610a48565b6001600160a01b0316146115b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03821661162b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610658565b6116368383836119a1565b61164160008261139e565b6001600160a01b038316600090815260036020526040812080546001929061166a90849061237e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611698908490612333565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a448282604051806020016040528060008152506119ac565b61172b848484611521565b61173784848484611a35565b6111325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b6060600b805461054f906123c1565b6060816117f857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611822578061180c816123fc565b915061181b9050600a8361234b565b91506117fc565b60008167ffffffffffffffff81111561184b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611875576020820181803683370190505b5090505b84156115195761188a60018361237e565b9150611897600a86612417565b6118a2906030612333565b60f81b8183815181106118c557634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118ff600a8661234b565b9450611879565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061196957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061053a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461053a565b6107aa838383611b98565b6119b68383611c50565b6119c36000848484611a35565b6107aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b60006001600160a01b0384163b15611b8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a799033908990889088906004016122e4565b602060405180830381600087803b158015611a9357600080fd5b505af1925050508015611ac3575060408051601f3d908101601f19168201909252611ac09181019061220f565b60015b611b73573d808015611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b508051611b6b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611519565b506001949350505050565b6001600160a01b038316611bf357611bee81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c16565b816001600160a01b0316836001600160a01b031614611c1657611c168382611dab565b6001600160a01b038216611c2d576107aa81611e48565b826001600160a01b0316826001600160a01b0316146107aa576107aa8282611f21565b6001600160a01b038216611ca65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610658565b6000818152600260205260409020546001600160a01b031615611d0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610658565b611d17600083836119a1565b6001600160a01b0382166000908152600360205260408120805460019290611d40908490612333565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611db884610ad3565b611dc2919061237e565b600083815260076020526040902054909150808214611e15576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e5a9060019061237e565b60008381526009602052604081205460088054939450909284908110611e9057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ebf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f2c83610ad3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f71906123c1565b90600052602060002090601f016020900481019282611f935760008555611fd9565b82601f10611fac57805160ff1916838001178555611fd9565b82800160010185558215611fd9579182015b82811115611fd9578251825591602001919060010190611fbe565b50611fe5929150611fe9565b5090565b5b80821115611fe55760008155600101611fea565b600067ffffffffffffffff8084111561201957612019612457565b604051601f8501601f19908116603f0116810190828211818310171561204157612041612457565b8160405280935085815286868601111561205a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208b57600080fd5b919050565b6000602082840312156120a1578081fd5b61121a82612074565b600080604083850312156120bc578081fd5b6120c583612074565b91506120d360208401612074565b90509250929050565b6000806000606084860312156120f0578081fd5b6120f984612074565b925061210760208501612074565b9150604084013590509250925092565b6000806000806080858703121561212c578081fd5b61213585612074565b935061214360208601612074565b925060408501359150606085013567ffffffffffffffff811115612165578182fd5b8501601f81018713612175578182fd5b61218487823560208401611ffe565b91505092959194509250565b600080604083850312156121a2578182fd5b6121ab83612074565b9150602083013580151581146121bf578182fd5b809150509250929050565b600080604083850312156121dc578182fd5b6121e583612074565b946020939093013593505050565b600060208284031215612204578081fd5b813561121a8161246d565b600060208284031215612220578081fd5b815161121a8161246d565b60006020828403121561223c578081fd5b813567ffffffffffffffff811115612252578182fd5b8201601f81018413612262578182fd5b61151984823560208401611ffe565b600060208284031215612282578081fd5b5035919050565b600081518084526122a1816020860160208601612395565b601f01601f19169290920160200192915050565b600083516122c7818460208801612395565b8351908301906122db818360208801612395565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123166080830184612289565b9695505050505050565b60208152600061121a6020830184612289565b600082198211156123465761234661242b565b500190565b60008261235a5761235a612441565b500490565b60008160001904831182151516156123795761237961242b565b500290565b6000828210156123905761239061242b565b500390565b60005b838110156123b0578181015183820152602001612398565b838111156111325750506000910152565b600181811c908216806123d557607f821691505b602082108114156123f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124105761241061242b565b5060010190565b60008261242657612426612441565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110a757600080fdfea26469706673582212206ab5b9c52cf52d7649bda55671baa5b39a6837cbb8f716d631e2acef7127c61664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d546872653937666b4a4234394a4264614a723642656a70556437784c45354767415836574552694b56354d592f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ac5760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610484578063e985e9c5146104a4578063f2fde38b146104ed578063faf2a18e1461050d57600080fd5b8063a22cb4651461042f578063a54ce9f91461044f578063b88d4fde1461046457600080fd5b806378bc1915116100c657806378bc1915146103de578063853828b6146103f45780638da5cb5b146103fc57806395d89b411461041a57600080fd5b806370a0823114610396578063715018a6146103b65780637316da48146103cb57600080fd5b806326a49e37116101595780634349b437116101335780634349b437146103015780634f6ccce71461033657806355f804b3146103565780636352211e1461037657600080fd5b806326a49e37146102a15780632f745c59146102c157806342842e0e146102e157600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd1461026257806323b872dd1461028157600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc3660046121f3565b61052f565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb610540565b6040516101dd9190612320565b34801561021457600080fd5b50610228610223366004612271565b6105d2565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b3660046121ca565b61067d565b005b34801561026e57600080fd5b506008545b6040519081526020016101dd565b34801561028d57600080fd5b5061026061029c3660046120dc565b6107af565b3480156102ad57600080fd5b506102736102bc366004612271565b610836565b3480156102cd57600080fd5b506102736102dc3660046121ca565b610862565b3480156102ed57600080fd5b506102606102fc3660046120dc565b61090a565b34801561030d57600080fd5b50600a5461032390600160b01b900461ffff1681565b60405161ffff90911681526020016101dd565b34801561034257600080fd5b50610273610351366004612271565b610925565b34801561036257600080fd5b5061026061037136600461222b565b6109d7565b34801561038257600080fd5b50610228610391366004612271565b610a48565b3480156103a257600080fd5b506102736103b1366004612090565b610ad3565b3480156103c257600080fd5b50610260610b6d565b6102606103d93660046121ca565b610c1e565b3480156103ea57600080fd5b5061032361271081565b610260610d5b565b34801561040857600080fd5b50600a546001600160a01b0316610228565b34801561042657600080fd5b506101fb610ddb565b34801561043b57600080fd5b5061026061044a366004612190565b610dea565b34801561045b57600080fd5b50610260610eaf565b34801561047057600080fd5b5061026061047f366004612117565b6110aa565b34801561049057600080fd5b506101fb61049f366004612271565b611138565b3480156104b057600080fd5b506101d16104bf3660046120aa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104f957600080fd5b50610260610508366004612090565b611221565b34801561051957600080fd5b50600a5461032390600160a01b900461ffff1681565b600061053a82611360565b92915050565b60606000805461054f906123c1565b80601f016020809104026020016040519081016040528092919081815260200182805461057b906123c1565b80156105c85780601f1061059d576101008083540402835291602001916105c8565b820191906000526020600020905b8154815290600101906020018083116105ab57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068882610a48565b9050806001600160a01b0316836001600160a01b031614156107125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610658565b336001600160a01b038216148061072e575061072e81336104bf565b6107a05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610658565b6107aa838361139e565b505050565b6107b93382611419565b61082b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610658565b6107aa838383611521565b60006103e861084460085490565b1161085157506000919050565b61053a82662386f26fc1000061235f565b600061086d83610ad3565b82106108e15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610658565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107aa838383604051806020016040528060008152506110aa565b600061093060085490565b82106109a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610658565b600882815481106109c557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610a315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b8051610a4490600b906020840190611f65565b5050565b6000818152600260205260408120546001600160a01b03168061053a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610658565b60006001600160a01b038216610b515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610658565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bc75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b61271081610c2b60085490565b610c359190612333565b1115610c835760405162461bcd60e51b815260206004820152601760248201527f4d6178206c696d6974206f722053616c6520456e6465640000000000000000006044820152606401610658565b6014811115610cd45760405162461bcd60e51b815260206004820152600a60248201527f45786365656473203230000000000000000000000000000000000000000000006044820152606401610658565b610cdd81610836565b341015610d2c5760405162461bcd60e51b815260206004820152601160248201527f56616c75652062656c6f772070726963650000000000000000000000000000006044820152606401610658565b60005b818110156107aa57610d4983610d4460085490565b611706565b80610d53816123fc565b915050610d2f565b600a546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b60405133904780156108fc02916000818181858888f19350505050610dd957600080fd5b565b60606001805461054f906123c1565b6001600160a01b038216331415610e435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610658565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610f095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b600a54600160a01b900461ffff166127101480610f345750600a54600160b01b900461ffff16612710145b610f805760405162461bcd60e51b815260206004820152601d60248201527f476f6c64656e2042616e616e617320616c7265616479206d696e7465640000006044820152606401610658565b6002610f8b60085490565b1015610f9657600080fd5b60004244604051602001610fb4929190918252602082015260400190565b60408051808303601f190181529190528051602090910120600a54909150600160a01b900461ffff16612710141561102e57600854610ff39082612417565b600a805461ffff8316600160a01b027fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff909116179055905050565b600161103960085490565b6110439083612417565b61104d919061237e565b600a54909150600160a01b900461ffff168110611072578061106e816123fc565b9150505b600a80547fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff16600160b01b61ffff8416021790555b50565b6110b43383611419565b6111265760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610658565b61113284848484611720565b50505050565b6000818152600260205260409020546060906001600160a01b03166111c55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610658565b60006111cf6117a9565b905060008151116111ef576040518060200160405280600081525061121a565b806111f9846117b8565b60405160200161120a9291906122b5565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461127b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610658565b6001600160a01b0381166112f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610658565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000148061053a575061053a82611906565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906113e082610a48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610658565b60006114ae83610a48565b9050806001600160a01b0316846001600160a01b031614806114e95750836001600160a01b03166114de846105d2565b6001600160a01b0316145b8061151957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153482610a48565b6001600160a01b0316146115b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03821661162b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610658565b6116368383836119a1565b61164160008261139e565b6001600160a01b038316600090815260036020526040812080546001929061166a90849061237e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611698908490612333565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a448282604051806020016040528060008152506119ac565b61172b848484611521565b61173784848484611a35565b6111325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b6060600b805461054f906123c1565b6060816117f857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611822578061180c816123fc565b915061181b9050600a8361234b565b91506117fc565b60008167ffffffffffffffff81111561184b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611875576020820181803683370190505b5090505b84156115195761188a60018361237e565b9150611897600a86612417565b6118a2906030612333565b60f81b8183815181106118c557634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118ff600a8661234b565b9450611879565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061196957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061053a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161461053a565b6107aa838383611b98565b6119b68383611c50565b6119c36000848484611a35565b6107aa5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b60006001600160a01b0384163b15611b8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a799033908990889088906004016122e4565b602060405180830381600087803b158015611a9357600080fd5b505af1925050508015611ac3575060408051601f3d908101601f19168201909252611ac09181019061220f565b60015b611b73573d808015611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b508051611b6b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610658565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611519565b506001949350505050565b6001600160a01b038316611bf357611bee81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c16565b816001600160a01b0316836001600160a01b031614611c1657611c168382611dab565b6001600160a01b038216611c2d576107aa81611e48565b826001600160a01b0316826001600160a01b0316146107aa576107aa8282611f21565b6001600160a01b038216611ca65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610658565b6000818152600260205260409020546001600160a01b031615611d0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610658565b611d17600083836119a1565b6001600160a01b0382166000908152600360205260408120805460019290611d40908490612333565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611db884610ad3565b611dc2919061237e565b600083815260076020526040902054909150808214611e15576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e5a9060019061237e565b60008381526009602052604081205460088054939450909284908110611e9057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ebf57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f2c83610ad3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f71906123c1565b90600052602060002090601f016020900481019282611f935760008555611fd9565b82601f10611fac57805160ff1916838001178555611fd9565b82800160010185558215611fd9579182015b82811115611fd9578251825591602001919060010190611fbe565b50611fe5929150611fe9565b5090565b5b80821115611fe55760008155600101611fea565b600067ffffffffffffffff8084111561201957612019612457565b604051601f8501601f19908116603f0116810190828211818310171561204157612041612457565b8160405280935085815286868601111561205a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461208b57600080fd5b919050565b6000602082840312156120a1578081fd5b61121a82612074565b600080604083850312156120bc578081fd5b6120c583612074565b91506120d360208401612074565b90509250929050565b6000806000606084860312156120f0578081fd5b6120f984612074565b925061210760208501612074565b9150604084013590509250925092565b6000806000806080858703121561212c578081fd5b61213585612074565b935061214360208601612074565b925060408501359150606085013567ffffffffffffffff811115612165578182fd5b8501601f81018713612175578182fd5b61218487823560208401611ffe565b91505092959194509250565b600080604083850312156121a2578182fd5b6121ab83612074565b9150602083013580151581146121bf578182fd5b809150509250929050565b600080604083850312156121dc578182fd5b6121e583612074565b946020939093013593505050565b600060208284031215612204578081fd5b813561121a8161246d565b600060208284031215612220578081fd5b815161121a8161246d565b60006020828403121561223c578081fd5b813567ffffffffffffffff811115612252578182fd5b8201601f81018413612262578182fd5b61151984823560208401611ffe565b600060208284031215612282578081fd5b5035919050565b600081518084526122a1816020860160208601612395565b601f01601f19169290920160200192915050565b600083516122c7818460208801612395565b8351908301906122db818360208801612395565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123166080830184612289565b9695505050505050565b60208152600061121a6020830184612289565b600082198211156123465761234661242b565b500190565b60008261235a5761235a612441565b500490565b60008160001904831182151516156123795761237961242b565b500290565b6000828210156123905761239061242b565b500390565b60005b838110156123b0578181015183820152602001612398565b838111156111325750506000910152565b600181811c908216806123d557607f821691505b602082108114156123f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124105761241061242b565b5060010190565b60008261242657612426612441565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110a757600080fdfea26469706673582212206ab5b9c52cf52d7649bda55671baa5b39a6837cbb8f716d631e2acef7127c61664736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d546872653937666b4a4234394a4264614a723642656a70556437784c45354767415836574552694b56354d592f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): https://ipfs.io/ipfs/QmThre97fkJB49JBdaJr6BejpUd7xLE5GgAX6WERiKV5MY/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d546872653937666b4a
Arg [3] : 4234394a4264614a723642656a70556437784c45354767415836574552694b56
Arg [4] : 354d592f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42956:2642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45383:212;;;;;;;;;;-1:-1:-1;45383:212:0;;;;;:::i;:::-;;:::i;:::-;;;6117:14:1;;6110:22;6092:41;;6080:2;6065:18;45383:212:0;;;;;;;;13881:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15341:221::-;;;;;;;;;;-1:-1:-1;15341:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5369:55:1;;;5351:74;;5339:2;5324:18;15341:221:0;5306:125:1;14878:397:0;;;;;;;;;;-1:-1:-1;14878:397:0;;;;;:::i;:::-;;:::i;:::-;;26344:113;;;;;;;;;;-1:-1:-1;26432:10:0;:17;26344:113;;;15309:25:1;;;15297:2;15282:18;26344:113:0;15264:76:1;16231:305:0;;;;;;;;;;-1:-1:-1;16231:305:0;;;;;:::i;:::-;;:::i;43680:231::-;;;;;;;;;;-1:-1:-1;43680:231:0;;;;;:::i;:::-;;:::i;26012:256::-;;;;;;;;;;-1:-1:-1;26012:256:0;;;;;:::i;:::-;;:::i;16607:151::-;;;;;;;;;;-1:-1:-1;16607:151:0;;;;;:::i;:::-;;:::i;43117:41::-;;;;;;;;;;-1:-1:-1;43117:41:0;;;;-1:-1:-1;;;43117:41:0;;;;;;;;;15144:6:1;15132:19;;;15114:38;;15102:2;15087:18;43117:41:0;15069:89:1;26534:233:0;;;;;;;;;;-1:-1:-1;26534:233:0;;;;;:::i;:::-;;:::i;45077:86::-;;;;;;;;;;-1:-1:-1;45077:86:0;;;;;:::i;:::-;;:::i;13575:239::-;;;;;;;;;;-1:-1:-1;13575:239:0;;;;;:::i;:::-;;:::i;13305:208::-;;;;;;;;;;-1:-1:-1;13305:208:0;;;;;:::i;:::-;;:::i;2764:148::-;;;;;;;;;;;;;:::i;43302:366::-;;;;;;:::i;:::-;;:::i;43019:42::-;;;;;;;;;;;;43056:5;43019:42;;44834:125;;;:::i;2113:87::-;;;;;;;;;;-1:-1:-1;2186:6:0;;-1:-1:-1;;;;;2186:6:0;2113:87;;14050:104;;;;;;;;;;;;;:::i;15634:295::-;;;;;;;;;;-1:-1:-1;15634:295:0;;;;;:::i;:::-;;:::i;43919:903::-;;;;;;;;;;;;;:::i;16829:285::-;;;;;;;;;;-1:-1:-1;16829:285:0;;;;;:::i;:::-;;:::i;14225:360::-;;;;;;;;;;-1:-1:-1;14225:360:0;;;;;:::i;:::-;;:::i;16000:164::-;;;;;;;;;;-1:-1:-1;16000:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;16121:25:0;;;16097:4;16121:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;16000:164;3067:244;;;;;;;;;;-1:-1:-1;3067:244:0;;;;;:::i;:::-;;:::i;43068:42::-;;;;;;;;;;-1:-1:-1;43068:42:0;;;;-1:-1:-1;;;43068:42:0;;;;;;45383:212;45522:4;45551:36;45575:11;45551:23;:36::i;:::-;45544:43;45383:212;-1:-1:-1;;45383:212:0:o;13881:100::-;13935:13;13968:5;13961:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13881:100;:::o;15341:221::-;15417:7;18670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18670:16:0;15437:73;;;;-1:-1:-1;;;15437:73:0;;11654:2:1;15437:73:0;;;11636:21:1;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;11803:14;11783:18;;;11776:42;11835:19;;15437:73:0;;;;;;;;;-1:-1:-1;15530:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;15530:24:0;;15341:221::o;14878:397::-;14959:13;14975:23;14990:7;14975:14;:23::i;:::-;14959:39;;15023:5;-1:-1:-1;;;;;15017:11:0;:2;-1:-1:-1;;;;;15017:11:0;;;15009:57;;;;-1:-1:-1;;;15009:57:0;;13600:2:1;15009:57:0;;;13582:21:1;13639:2;13619:18;;;13612:30;13678:34;13658:18;;;13651:62;13749:3;13729:18;;;13722:31;13770:19;;15009:57:0;13572:223:1;15009:57:0;808:10;-1:-1:-1;;;;;15087:21:0;;;;:62;;-1:-1:-1;15112:37:0;15129:5;808:10;16000:164;:::i;15112:37::-;15079:154;;;;-1:-1:-1;;;15079:154:0;;9689:2:1;15079:154:0;;;9671:21:1;9728:2;9708:18;;;9701:30;9767:34;9747:18;;;9740:62;9838:26;9818:18;;;9811:54;9882:19;;15079:154:0;9661:246:1;15079:154:0;15246:21;15255:2;15259:7;15246:8;:21::i;:::-;14878:397;;;:::o;16231:305::-;16392:41;808:10;16425:7;16392:18;:41::i;:::-;16384:103;;;;-1:-1:-1;;;16384:103:0;;14341:2:1;16384:103:0;;;14323:21:1;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;14490:19;14470:18;;;14463:47;14527:19;;16384:103:0;14313:239:1;16384:103:0;16500:28;16510:4;16516:2;16520:7;16500:9;:28::i;43680:231::-;43729:7;43807:4;43790:13;26432:10;:17;;26344:113;43790:13;:21;43787:61;;-1:-1:-1;43835:1:0;;43680:231;-1:-1:-1;43680:231:0:o;43787:61::-;43865:26;43885:6;43865:17;:26;:::i;26012:256::-;26109:7;26145:23;26162:5;26145:16;:23::i;:::-;26137:5;:31;26129:87;;;;-1:-1:-1;;;26129:87:0;;6570:2:1;26129:87:0;;;6552:21:1;6609:2;6589:18;;;6582:30;6648:34;6628:18;;;6621:62;6719:13;6699:18;;;6692:41;6750:19;;26129:87:0;6542:233:1;26129:87:0;-1:-1:-1;;;;;;26234:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;26012:256::o;16607:151::-;16711:39;16728:4;16734:2;16738:7;16711:39;;;;;;;;;;;;:16;:39::i;26534:233::-;26609:7;26645:30;26432:10;:17;;26344:113;26645:30;26637:5;:38;26629:95;;;;-1:-1:-1;;;26629:95:0;;14759:2:1;26629:95:0;;;14741:21:1;14798:2;14778:18;;;14771:30;14837:34;14817:18;;;14810:62;14908:14;14888:18;;;14881:42;14940:19;;26629:95:0;14731:234:1;26629:95:0;26742:10;26753:5;26742:17;;;;;;-1:-1:-1;;;26742:17:0;;;;;;;;;;;;;;;;;26735:24;;26534:233;;;:::o;45077:86::-;2186:6;;-1:-1:-1;;;;;2186:6:0;808:10;2333:23;2325:68;;;;-1:-1:-1;;;2325:68:0;;12067:2:1;2325:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;2325:68:0;12039:182:1;2325:68:0;45142:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45077:86:::0;:::o;13575:239::-;13647:7;13683:16;;;:7;:16;;;;;;-1:-1:-1;;;;;13683:16:0;13718:19;13710:73;;;;-1:-1:-1;;;13710:73:0;;10525:2:1;13710:73:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;10674:11;10654:18;;;10647:39;10703:19;;13710:73:0;10497:231:1;13305:208:0;13377:7;-1:-1:-1;;;;;13405:19:0;;13397:74;;;;-1:-1:-1;;;13397:74:0;;10114:2:1;13397:74:0;;;10096:21:1;10153:2;10133:18;;;10126:30;10192:34;10172:18;;;10165:62;10263:12;10243:18;;;10236:40;10293:19;;13397:74:0;10086:232:1;13397:74:0;-1:-1:-1;;;;;;13489:16:0;;;;;:9;:16;;;;;;;13305:208::o;2764:148::-;2186:6;;-1:-1:-1;;;;;2186:6:0;808:10;2333:23;2325:68;;;;-1:-1:-1;;;2325:68:0;;12067:2:1;2325:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;2325:68:0;12039:182:1;2325:68:0;2855:6:::1;::::0;2834:40:::1;::::0;2871:1:::1;::::0;-1:-1:-1;;;;;2855:6:0::1;::::0;2834:40:::1;::::0;2871:1;;2834:40:::1;2885:6;:19:::0;;-1:-1:-1;;2885:19:0::1;::::0;;2764:148::o;43302:366::-;43056:5;43400:6;43384:13;26432:10;:17;;26344:113;43384:13;:22;;;;:::i;:::-;:37;;43376:73;;;;-1:-1:-1;;;43376:73:0;;8165:2:1;43376:73:0;;;8147:21:1;8204:2;8184:18;;;8177:30;8243:25;8223:18;;;8216:53;8286:18;;43376:73:0;8137:173:1;43376:73:0;43478:2;43468:6;:12;;43460:35;;;;-1:-1:-1;;;43460:35:0;;14002:2:1;43460:35:0;;;13984:21:1;14041:2;14021:18;;;14014:30;14080:12;14060:18;;;14053:40;14110:18;;43460:35:0;13974:160:1;43460:35:0;43527:13;43533:6;43527:5;:13::i;:::-;43514:9;:26;;43506:56;;;;-1:-1:-1;;;43506:56:0;;13254:2:1;43506:56:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:19;13312:18;;;13305:47;13369:18;;43506:56:0;13226:167:1;43506:56:0;43577:6;43573:88;43593:6;43589:1;:10;43573:88;;;43620:29;43630:3;43635:13;26432:10;:17;;26344:113;43635:13;43620:9;:29::i;:::-;43601:3;;;;:::i;:::-;;;;43573:88;;44834:125;2186:6;;-1:-1:-1;;;;;2186:6:0;808:10;2333:23;2325:68;;;;-1:-1:-1;;;2325:68:0;;12067:2:1;2325:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;2325:68:0;12039:182:1;2325:68:0;44901:49:::1;::::0;808:10;;44928:21:::1;44901:49:::0;::::1;;;::::0;::::1;::::0;;;44928:21;808:10;44901:49;::::1;;;;;;44893:58;;;::::0;::::1;;44834:125::o:0;14050:104::-;14106:13;14139:7;14132:14;;;;;:::i;15634:295::-;-1:-1:-1;;;;;15737:24:0;;808:10;15737:24;;15729:62;;;;-1:-1:-1;;;15729:62:0;;8922:2:1;15729:62:0;;;8904:21:1;8961:2;8941:18;;;8934:30;9000:27;8980:18;;;8973:55;9045:18;;15729:62:0;8894:175:1;15729:62:0;808:10;15804:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;15804:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;15804:53:0;;;;;;;;;;15873:48;;6092:41:1;;;15804:42:0;;808:10;15873:48;;6065:18:1;15873:48:0;;;;;;;15634:295;;:::o;43919:903::-;2186:6;;-1:-1:-1;;;;;2186:6:0;808:10;2333:23;2325:68;;;;-1:-1:-1;;;2325:68:0;;12067:2:1;2325:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;2325:68:0;12039:182:1;2325:68:0;44130:20:::1;::::0;-1:-1:-1;;;44130:20:0;::::1;;;44154:5;44130:29;::::0;:61:::1;;-1:-1:-1::0;44163:19:0::1;::::0;-1:-1:-1;;;44163:19:0;::::1;;;44186:5;44163:28;44130:61;44122:103;;;::::0;-1:-1:-1;;;44122:103:0;;11296:2:1;44122:103:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;11374:31;11354:18;;;11347:59;11423:18;;44122:103:0::1;11268:179:1::0;44122:103:0::1;44261:1;44244:13;26432:10:::0;:17;;26344:113;44244:13:::1;:18;;44236:27;;;::::0;::::1;;44274:18;44330:15;44347:16;44313:51;;;;;;;;5110:19:1::0;;;5154:2;5145:12;;5138:28;5191:2;5182:12;;5100:100;44313:51:0::1;;::::0;;;;::::1;-1:-1:-1::0;;44313:51:0;;;;;;44303:62;;44313:51:::1;44303:62:::0;;::::1;::::0;44380:20:::1;::::0;44303:62;;-1:-1:-1;;;;44380:20:0;::::1;;;44404:5;44380:29;44377:435;;;26432:10:::0;:17;44489:26:::1;::::0;:10;:26:::1;:::i;:::-;44530:20;:41:::0;;::::1;::::0;::::1;-1:-1:-1::0;;;44530:41:0::1;::::0;;;::::1;;::::0;;44476:39;-1:-1:-1;2404:1:0::1;43919:903::o:0;44377:435::-:1;44644:1;44630:13;26432:10:::0;:17;;26344:113;44630:13:::1;44617:26;::::0;:10;:26:::1;:::i;:::-;:28;;;;:::i;:::-;44677:20;::::0;44604:41;;-1:-1:-1;;;;44677:20:0;::::1;;;44663:34:::0;::::1;44660:86;;44718:12:::0;::::1;::::0;::::1;:::i;:::-;;;;44660:86;44760:19;:40:::0;;;::::1;-1:-1:-1::0;;;44760:40:0::1;::::0;::::1;;;::::0;;44377:435:::1;2404:1;43919:903::o:0;16829:285::-;16961:41;808:10;16994:7;16961:18;:41::i;:::-;16953:103;;;;-1:-1:-1;;;16953:103:0;;14341:2:1;16953:103:0;;;14323:21:1;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;14490:19;14470:18;;;14463:47;14527:19;;16953:103:0;14313:239:1;16953:103:0;17067:39;17081:4;17087:2;17091:7;17100:5;17067:13;:39::i;:::-;16829:285;;;;:::o;14225:360::-;18646:4;18670:16;;;:7;:16;;;;;;14298:13;;-1:-1:-1;;;;;18670:16:0;14324:76;;;;-1:-1:-1;;;14324:76:0;;12838:2:1;14324:76:0;;;12820:21:1;12877:2;12857:18;;;12850:30;12916:34;12896:18;;;12889:62;12987:17;12967:18;;;12960:45;13022:19;;14324:76:0;12810:237:1;14324:76:0;14413:21;14437:10;:8;:10::i;:::-;14413:34;;14489:1;14471:7;14465:21;:25;:112;;;;;;;;;;;;;;;;;14530:7;14539:18;:7;:16;:18::i;:::-;14513:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14465:112;14458:119;14225:360;-1:-1:-1;;;14225:360:0:o;3067:244::-;2186:6;;-1:-1:-1;;;;;2186:6:0;808:10;2333:23;2325:68;;;;-1:-1:-1;;;2325:68:0;;12067:2:1;2325:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;2325:68:0;12039:182:1;2325:68:0;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;7401:2:1;3148:73:0::1;::::0;::::1;7383:21:1::0;7440:2;7420:18;;;7413:30;7479:34;7459:18;;;7452:62;7550:8;7530:18;;;7523:36;7576:19;;3148:73:0::1;7373:228:1::0;3148:73:0::1;3258:6;::::0;3237:38:::1;::::0;-1:-1:-1;;;;;3237:38:0;;::::1;::::0;3258:6:::1;::::0;3237:38:::1;::::0;3258:6:::1;::::0;3237:38:::1;3286:6;:17:::0;;-1:-1:-1;;3286:17:0::1;-1:-1:-1::0;;;;;3286:17:0;;;::::1;::::0;;;::::1;::::0;;3067:244::o;25691:237::-;25793:4;-1:-1:-1;;;;;;25817:50:0;;25832:35;25817:50;;:103;;;25884:36;25908:11;25884:23;:36::i;22458:174::-;22533:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;22533:29:0;-1:-1:-1;;;;;22533:29:0;;;;;;;;:24;;22587:23;22533:24;22587:14;:23::i;:::-;-1:-1:-1;;;;;22578:46:0;;;;;;;;;;;22458:174;;:::o;18875:348::-;18968:4;18670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18670:16:0;18985:73;;;;-1:-1:-1;;;18985:73:0;;9276:2:1;18985:73:0;;;9258:21:1;9315:2;9295:18;;;9288:30;9354:34;9334:18;;;9327:62;9425:14;9405:18;;;9398:42;9457:19;;18985:73:0;9248:234:1;18985:73:0;19069:13;19085:23;19100:7;19085:14;:23::i;:::-;19069:39;;19138:5;-1:-1:-1;;;;;19127:16:0;:7;-1:-1:-1;;;;;19127:16:0;;:51;;;;19171:7;-1:-1:-1;;;;;19147:31:0;:20;19159:7;19147:11;:20::i;:::-;-1:-1:-1;;;;;19147:31:0;;19127:51;:87;;;-1:-1:-1;;;;;;16121:25:0;;;16097:4;16121:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;19182:32;19119:96;18875:348;-1:-1:-1;;;;18875:348:0:o;21796:544::-;21921:4;-1:-1:-1;;;;;21894:31:0;:23;21909:7;21894:14;:23::i;:::-;-1:-1:-1;;;;;21894:31:0;;21886:85;;;;-1:-1:-1;;;21886:85:0;;12428:2:1;21886:85:0;;;12410:21:1;12467:2;12447:18;;;12440:30;12506:34;12486:18;;;12479:62;12577:11;12557:18;;;12550:39;12606:19;;21886:85:0;12400:231:1;21886:85:0;-1:-1:-1;;;;;21990:16:0;;21982:65;;;;-1:-1:-1;;;21982:65:0;;8517:2:1;21982:65:0;;;8499:21:1;8556:2;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8666:6;8646:18;;;8639:34;8690:19;;21982:65:0;8489:226:1;21982:65:0;22060:39;22081:4;22087:2;22091:7;22060:20;:39::i;:::-;22164:29;22181:1;22185:7;22164:8;:29::i;:::-;-1:-1:-1;;;;;22206:15:0;;;;;;:9;:15;;;;;:20;;22225:1;;22206:15;:20;;22225:1;;22206:20;:::i;:::-;;;;-1:-1:-1;;;;;;;22237:13:0;;;;;;:9;:13;;;;;:18;;22254:1;;22237:13;:18;;22254:1;;22237:18;:::i;:::-;;;;-1:-1:-1;;22266:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;22266:21:0;-1:-1:-1;;;;;22266:21:0;;;;;;;;;22305:27;;22266:16;;22305:27;;;;;;;21796:544;;;:::o;19565:110::-;19641:26;19651:2;19655:7;19641:26;;;;;;;;;;;;:9;:26::i;17996:272::-;18110:28;18120:4;18126:2;18130:7;18110:9;:28::i;:::-;18157:48;18180:4;18186:2;18190:7;18199:5;18157:22;:48::i;:::-;18149:111;;;;-1:-1:-1;;;18149:111:0;;6982:2:1;18149:111:0;;;6964:21:1;7021:2;7001:18;;;6994:30;7060:34;7040:18;;;7033:62;7131:20;7111:18;;;7104:48;7169:19;;18149:111:0;6954:240:1;44967:98:0;45019:13;45050:7;45043:14;;;;;:::i;32131:723::-;32187:13;32408:10;32404:53;;-1:-1:-1;;32435:10:0;;;;;;;;;;;;;;;;;;32131:723::o;32404:53::-;32482:5;32467:12;32523:78;32530:9;;32523:78;;32556:8;;;;:::i;:::-;;-1:-1:-1;32579:10:0;;-1:-1:-1;32587:2:0;32579:10;;:::i;:::-;;;32523:78;;;32611:19;32643:6;32633:17;;;;;;-1:-1:-1;;;32633:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32633:17:0;;32611:39;;32661:154;32668:10;;32661:154;;32695:11;32705:1;32695:11;;:::i;:::-;;-1:-1:-1;32764:10:0;32772:2;32764:5;:10;:::i;:::-;32751:24;;:2;:24;:::i;:::-;32738:39;;32721:6;32728;32721:14;;;;;;-1:-1:-1;;;32721:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;32792:11:0;32801:2;32792:11;;:::i;:::-;;;32661:154;;12949:292;13051:4;-1:-1:-1;;;;;;13075:40:0;;13090:25;13075:40;;:105;;-1:-1:-1;;;;;;;13132:48:0;;13147:33;13132:48;13075:105;:158;;;-1:-1:-1;10818:25:0;-1:-1:-1;;;;;;10803:40:0;;;13197:36;10694:157;45171:204;45322:45;45349:4;45355:2;45359:7;45322:26;:45::i;19902:250::-;19998:18;20004:2;20008:7;19998:5;:18::i;:::-;20035:54;20066:1;20070:2;20074:7;20083:5;20035:22;:54::i;:::-;20027:117;;;;-1:-1:-1;;;20027:117:0;;6982:2:1;20027:117:0;;;6964:21:1;7021:2;7001:18;;;6994:30;7060:34;7040:18;;;7033:62;7131:20;7111:18;;;7104:48;7169:19;;20027:117:0;6954:240:1;23197:843:0;23318:4;-1:-1:-1;;;;;23344:13:0;;35029:20;35068:8;23340:693;;23380:72;;-1:-1:-1;;;23380:72:0;;-1:-1:-1;;;;;23380:36:0;;;;;:72;;808:10;;23431:4;;23437:7;;23446:5;;23380:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23380:72:0;;;;;;;;-1:-1:-1;;23380:72:0;;;;;;;;;;;;:::i;:::-;;;23376:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23626:13:0;;23622:341;;23669:60;;-1:-1:-1;;;23669:60:0;;6982:2:1;23669:60:0;;;6964:21:1;7021:2;7001:18;;;6994:30;7060:34;7040:18;;;7033:62;7131:20;7111:18;;;7104:48;7169:19;;23669:60:0;6954:240:1;23622:341:0;23913:6;23907:13;23898:6;23894:2;23890:15;23883:38;23376:602;-1:-1:-1;;;;;;23503:55:0;-1:-1:-1;;;23503:55:0;;-1:-1:-1;23496:62:0;;23340:693;-1:-1:-1;24017:4:0;23197:843;;;;;;:::o;27380:555::-;-1:-1:-1;;;;;27552:18:0;;27548:187;;27587:40;27619:7;28762:10;:17;;28735:24;;;;:15;:24;;;;;:44;;;28790:24;;;;;;;;;;;;28658:164;27587:40;27548:187;;;27657:2;-1:-1:-1;;;;;27649:10:0;:4;-1:-1:-1;;;;;27649:10:0;;27645:90;;27676:47;27709:4;27715:7;27676:32;:47::i;:::-;-1:-1:-1;;;;;27749:16:0;;27745:183;;27782:45;27819:7;27782:36;:45::i;27745:183::-;27855:4;-1:-1:-1;;;;;27849:10:0;:2;-1:-1:-1;;;;;27849:10:0;;27845:83;;27876:40;27904:2;27908:7;27876:27;:40::i;20488:382::-;-1:-1:-1;;;;;20568:16:0;;20560:61;;;;-1:-1:-1;;;20560:61:0;;10935:2:1;20560:61:0;;;10917:21:1;;;10954:18;;;10947:30;11013:34;10993:18;;;10986:62;11065:18;;20560:61:0;10907:182:1;20560:61:0;18646:4;18670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18670:16:0;:30;20632:58;;;;-1:-1:-1;;;20632:58:0;;7808:2:1;20632:58:0;;;7790:21:1;7847:2;7827:18;;;7820:30;7886;7866:18;;;7859:58;7934:18;;20632:58:0;7780:178:1;20632:58:0;20703:45;20732:1;20736:2;20740:7;20703:20;:45::i;:::-;-1:-1:-1;;;;;20761:13:0;;;;;;:9;:13;;;;;:18;;20778:1;;20761:13;:18;;20778:1;;20761:18;:::i;:::-;;;;-1:-1:-1;;20790:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;20790:21:0;-1:-1:-1;;;;;20790:21:0;;;;;;;;20829:33;;20790:16;;;20829:33;;20790:16;;20829:33;20488:382;;:::o;29449:988::-;29715:22;29765:1;29740:22;29757:4;29740:16;:22::i;:::-;:26;;;;:::i;:::-;29777:18;29798:26;;;:17;:26;;;;;;29715:51;;-1:-1:-1;29931:28:0;;;29927:328;;-1:-1:-1;;;;;29998:18:0;;29976:19;29998:18;;;:12;:18;;;;;;;;:34;;;;;;;;;30049:30;;;;;;:44;;;30166:30;;:17;:30;;;;;:43;;;29927:328;-1:-1:-1;30351:26:0;;;;:17;:26;;;;;;;;30344:33;;;-1:-1:-1;;;;;30395:18:0;;;;;:12;:18;;;;;:34;;;;;;;30388:41;29449:988::o;30732:1079::-;31010:10;:17;30985:22;;31010:21;;31030:1;;31010:21;:::i;:::-;31042:18;31063:24;;;:15;:24;;;;;;31436:10;:26;;30985:46;;-1:-1:-1;31063:24:0;;30985:46;;31436:26;;;;-1:-1:-1;;;31436:26:0;;;;;;;;;;;;;;;;;31414:48;;31500:11;31475:10;31486;31475:22;;;;;;-1:-1:-1;;;31475:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;31580:28;;;:15;:28;;;;;;;:41;;;31752:24;;;;;31745:31;31787:10;:16;;;;;-1:-1:-1;;;31787:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;30732:1079;;;;:::o;28236:221::-;28321:14;28338:20;28355:2;28338:16;:20::i;:::-;-1:-1:-1;;;;;28369:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;28414:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;28236:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:196::-;910:6;963:2;951:9;942:7;938:23;934:32;931:2;;;984:6;976;969:22;931:2;1012:29;1031:9;1012:29;:::i;1052:270::-;1120:6;1128;1181:2;1169:9;1160:7;1156:23;1152:32;1149:2;;;1202:6;1194;1187:22;1149:2;1230:29;1249:9;1230:29;:::i;:::-;1220:39;;1278:38;1312:2;1301:9;1297:18;1278:38;:::i;:::-;1268:48;;1139:183;;;;;:::o;1327:338::-;1404:6;1412;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1494:6;1486;1479:22;1441:2;1522:29;1541:9;1522:29;:::i;:::-;1512:39;;1570:38;1604:2;1593:9;1589:18;1570:38;:::i;:::-;1560:48;;1655:2;1644:9;1640:18;1627:32;1617:42;;1431:234;;;;;:::o;1670:696::-;1765:6;1773;1781;1789;1842:3;1830:9;1821:7;1817:23;1813:33;1810:2;;;1864:6;1856;1849:22;1810:2;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2107:18;2099:6;2096:30;2093:2;;;2144:6;2136;2129:22;2093:2;2172:22;;2225:4;2217:13;;2213:27;-1:-1:-1;2203:2:1;;2259:6;2251;2244:22;2203:2;2287:73;2352:7;2347:2;2334:16;2329:2;2325;2321:11;2287:73;:::i;:::-;2277:83;;;1800:566;;;;;;;:::o;2371:367::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2518:6;2510;2503:22;2465:2;2546:29;2565:9;2546:29;:::i;:::-;2536:39;;2625:2;2614:9;2610:18;2597:32;2672:5;2665:13;2658:21;2651:5;2648:32;2638:2;;2699:6;2691;2684:22;2638:2;2727:5;2717:15;;;2455:283;;;;;:::o;2743:264::-;2811:6;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:2;;;2893:6;2885;2878:22;2840:2;2921:29;2940:9;2921:29;:::i;:::-;2911:39;2997:2;2982:18;;;;2969:32;;-1:-1:-1;;;2830:177:1:o;3012:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:2;;;3144:6;3136;3129:22;3091:2;3188:9;3175:23;3207:30;3231:5;3207:30;:::i;3272:259::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3452:9;3446:16;3471:30;3495:5;3471:30;:::i;3536:480::-;3605:6;3658:2;3646:9;3637:7;3633:23;3629:32;3626:2;;;3679:6;3671;3664:22;3626:2;3724:9;3711:23;3757:18;3749:6;3746:30;3743:2;;;3794:6;3786;3779:22;3743:2;3822:22;;3875:4;3867:13;;3863:27;-1:-1:-1;3853:2:1;;3909:6;3901;3894:22;3853:2;3937:73;4002:7;3997:2;3984:16;3979:2;3975;3971:11;3937:73;:::i;4021:190::-;4080:6;4133:2;4121:9;4112:7;4108:23;4104:32;4101:2;;;4154:6;4146;4139:22;4101:2;-1:-1:-1;4182:23:1;;4091:120;-1:-1:-1;4091:120:1:o;4216:257::-;4257:3;4295:5;4289:12;4322:6;4317:3;4310:19;4338:63;4394:6;4387:4;4382:3;4378:14;4371:4;4364:5;4360:16;4338:63;:::i;:::-;4455:2;4434:15;-1:-1:-1;;4430:29:1;4421:39;;;;4462:4;4417:50;;4265:208;-1:-1:-1;;4265:208:1:o;4478:470::-;4657:3;4695:6;4689:13;4711:53;4757:6;4752:3;4745:4;4737:6;4733:17;4711:53;:::i;:::-;4827:13;;4786:16;;;;4849:57;4827:13;4786:16;4883:4;4871:17;;4849:57;:::i;:::-;4922:20;;4665:283;-1:-1:-1;;;;4665:283:1:o;5436:511::-;5630:4;-1:-1:-1;;;;;5740:2:1;5732:6;5728:15;5717:9;5710:34;5792:2;5784:6;5780:15;5775:2;5764:9;5760:18;5753:43;;5832:6;5827:2;5816:9;5812:18;5805:34;5875:3;5870:2;5859:9;5855:18;5848:31;5896:45;5936:3;5925:9;5921:19;5913:6;5896:45;:::i;:::-;5888:53;5639:308;-1:-1:-1;;;;;;5639:308:1:o;6144:219::-;6293:2;6282:9;6275:21;6256:4;6313:44;6353:2;6342:9;6338:18;6330:6;6313:44;:::i;15345:128::-;15385:3;15416:1;15412:6;15409:1;15406:13;15403:2;;;15422:18;;:::i;:::-;-1:-1:-1;15458:9:1;;15393:80::o;15478:120::-;15518:1;15544;15534:2;;15549:18;;:::i;:::-;-1:-1:-1;15583:9:1;;15524:74::o;15603:168::-;15643:7;15709:1;15705;15701:6;15697:14;15694:1;15691:21;15686:1;15679:9;15672:17;15668:45;15665:2;;;15716:18;;:::i;:::-;-1:-1:-1;15756:9:1;;15655:116::o;15776:125::-;15816:4;15844:1;15841;15838:8;15835:2;;;15849:18;;:::i;:::-;-1:-1:-1;15886:9:1;;15825:76::o;15906:258::-;15978:1;15988:113;16002:6;15999:1;15996:13;15988:113;;;16078:11;;;16072:18;16059:11;;;16052:39;16024:2;16017:10;15988:113;;;16119:6;16116:1;16113:13;16110:2;;;-1:-1:-1;;16154:1:1;16136:16;;16129:27;15959:205::o;16169:437::-;16248:1;16244:12;;;;16291;;;16312:2;;16366:4;16358:6;16354:17;16344:27;;16312:2;16419;16411:6;16408:14;16388:18;16385:38;16382:2;;;-1:-1:-1;;;16453:1:1;16446:88;16557:4;16554:1;16547:15;16585:4;16582:1;16575:15;16382:2;;16224:382;;;:::o;16611:135::-;16650:3;-1:-1:-1;;16671:17:1;;16668:2;;;16691:18;;:::i;:::-;-1:-1:-1;16738:1:1;16727:13;;16658:88::o;16751:112::-;16783:1;16809;16799:2;;16814:18;;:::i;:::-;-1:-1:-1;16848:9:1;;16789:74::o;16868:184::-;-1:-1:-1;;;16917:1:1;16910:88;17017:4;17014:1;17007:15;17041:4;17038:1;17031:15;17057:184;-1:-1:-1;;;17106:1:1;17099:88;17206:4;17203:1;17196:15;17230:4;17227:1;17220:15;17246:184;-1:-1:-1;;;17295:1:1;17288:88;17395:4;17392:1;17385:15;17419:4;17416:1;17409:15;17435:177;-1:-1:-1;;;;;;17513:5:1;17509:78;17502:5;17499:89;17489:2;;17602:1;17599;17592:12

Swarm Source

ipfs://6ab5b9c52cf52d7649bda55671baa5b39a6837cbb8f716d631e2acef7127c616
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.