ETH Price: $2,602.48 (-1.69%)

Token

Bit Chicks (#PixelChicks)
 

Overview

Max Total Supply

1,385 #PixelChicks

Holders

460

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tamirs.eth
Balance
5 #PixelChicks
0x13d890c088d29e6a8107f982eab802c90f335d35
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:
BitChicks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/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/contracts/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: @openzeppelin/contracts/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/contracts/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/contracts/access/Ownable.sol

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: @openzeppelin/contracts/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/contracts/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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/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: contracts/BitChicks.sol
pragma solidity ^0.8.9;

contract BitChicks is ERC721, ERC721Enumerable, Ownable {
    uint256 public constant MAX_PER_TXN = 20;

    // @notice Add Chunky Chickens URI here
    string private URI = "";
    
    // Chunky Chickens contract
    IERC721Enumerable IBaseContract = IERC721Enumerable(0x06c6DB12875E254a0e0C7259C7d4993E017EDC80);
    
    mapping (uint256 => bool) public claimedChicks;

    constructor() ERC721("Bit Chicks", "#PixelChicks") {}

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

    function setURI(string memory _URI) external onlyOwner {
        URI = _URI;
    }
    
    function freeMint(uint256 tokenId) public {
        require(!claimedChicks[tokenId], "Bit Chicks already claimed");
        require(IBaseContract.ownerOf(tokenId) == msg.sender, "Chunky Chicken not owned");
        _safeMint(msg.sender, tokenId);
        claimedChicks[tokenId] = true;
    }
    
    function freeMintMultiple(uint256 amount, uint256[] calldata tokenIds) external {
        require(amount <= MAX_PER_TXN, "20 max. per. txn");
        for (uint256 i=0; i<amount; i++) {
            freeMint(tokenIds[i]);
        }
    }


    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":[],"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_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"uint256"}],"name":"claimedChicks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"freeMintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b9162000135565b50600c80546001600160a01b0319167306c6db12875e254a0e0c7259c7d4993e017edc801790553480156200004f57600080fd5b50604080518082018252600a81526942697420436869636b7360b01b60208083019182528351808501909452600c84526b23506978656c436869636b7360a01b908401528151919291620000a69160009162000135565b508051620000bc90600190602084019062000135565b505050620000d9620000d3620000df60201b60201c565b620000e3565b62000218565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b611e0080620002286000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e6578063e985e9c5146102f9578063f07e40be14610335578063f2fde38b1461035857600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780637c928fe9146102945780638da5cb5b146102a757806395d89b41146102b857600080fd5b806323b872dd1161011557806323b872dd146101ff5780632f745c591461021257806342842e0e146102255780634f6ccce71461023857806351b96d921461024b5780635dd62b571461025357600080fd5b806301ffc9a71461015d57806302fe53051461018557806306fdde031461019a578063081812fc146101af578063095ea7b3146101da57806318160ddd146101ed575b600080fd5b61017061016b3660046117c7565b61036b565b60405190151581526020015b60405180910390f35b610198610193366004611870565b61037c565b005b6101a26103c6565b60405161017c9190611911565b6101c26101bd366004611924565b610458565b6040516001600160a01b03909116815260200161017c565b6101986101e8366004611952565b6104ed565b6008545b60405190815260200161017c565b61019861020d36600461197e565b610603565b6101f1610220366004611952565b610634565b61019861023336600461197e565b6106ca565b6101f1610246366004611924565b6106e5565b6101f1601481565b6101986102613660046119bf565b610778565b6101c2610274366004611924565b610800565b6101f1610287366004611a3e565b610877565b6101986108fe565b6101986102a2366004611924565b610934565b600a546001600160a01b03166101c2565b6101a2610a8a565b6101986102ce366004611a5b565b610a99565b6101986102e1366004611a99565b610b5e565b6101a26102f4366004611924565b610b90565b610170610307366004611b19565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610170610343366004611924565b600d6020526000908152604090205460ff1681565b610198610366366004611a3e565b610c6b565b600061037682610d06565b92915050565b600a546001600160a01b031633146103af5760405162461bcd60e51b81526004016103a690611b47565b60405180910390fd5b80516103c290600b906020840190611718565b5050565b6060600080546103d590611b7c565b80601f016020809104026020016040519081016040528092919081815260200182805461040190611b7c565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103a6565b506000908152600460205260409020546001600160a01b031690565b60006104f882610800565b9050806001600160a01b0316836001600160a01b031614156105665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103a6565b336001600160a01b038216148061058257506105828133610307565b6105f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103a6565b6105fe8383610d2b565b505050565b61060d3382610d99565b6106295760405162461bcd60e51b81526004016103a690611bb7565b6105fe838383610e90565b600061063f83610877565b82106106a15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103a6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105fe83838360405180602001604052806000815250610b5e565b60006106f060085490565b82106107535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103a6565b6008828154811061076657610766611c08565b90600052602060002001549050919050565b60148311156107bc5760405162461bcd60e51b815260206004820152601060248201526f19181036b0bc17103832b917103a3c3760811b60448201526064016103a6565b60005b838110156107fa576107e88383838181106107dc576107dc611c08565b90506020020135610934565b806107f281611c34565b9150506107bf565b50505050565b6000818152600260205260408120546001600160a01b0316806103765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103a6565b60006001600160a01b0382166108e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103a6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146109285760405162461bcd60e51b81526004016103a690611b47565b610932600061103b565b565b6000818152600d602052604090205460ff16156109935760405162461bcd60e51b815260206004820152601a60248201527f42697420436869636b7320616c726561647920636c61696d656400000000000060448201526064016103a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156109d757600080fd5b505afa1580156109eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611c4f565b6001600160a01b031614610a655760405162461bcd60e51b815260206004820152601860248201527f4368756e6b7920436869636b656e206e6f74206f776e6564000000000000000060448201526064016103a6565b610a6f338261108d565b6000908152600d60205260409020805460ff19166001179055565b6060600180546103d590611b7c565b6001600160a01b038216331415610af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103a6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b683383610d99565b610b845760405162461bcd60e51b81526004016103a690611bb7565b6107fa848484846110a7565b6000818152600260205260409020546060906001600160a01b0316610c0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103a6565b6000610c196110da565b90506000815111610c395760405180602001604052806000815250610c64565b80610c43846110e9565b604051602001610c54929190611c6c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610c955760405162461bcd60e51b81526004016103a690611b47565b6001600160a01b038116610cfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a6565b610d038161103b565b50565b60006001600160e01b0319821663780e9d6360e01b14806103765750610376826111e7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d6082610800565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103a6565b6000610e1d83610800565b9050806001600160a01b0316846001600160a01b03161480610e585750836001600160a01b0316610e4d84610458565b6001600160a01b0316145b80610e8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ea382610800565b6001600160a01b031614610f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103a6565b6001600160a01b038216610f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103a6565b610f78838383611237565b610f83600082610d2b565b6001600160a01b0383166000908152600360205260408120805460019290610fac908490611c9b565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fda908490611cb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6103c2828260405180602001604052806000815250611242565b6110b2848484610e90565b6110be84848484611275565b6107fa5760405162461bcd60e51b81526004016103a690611cca565b6060600b80546103d590611b7c565b60608161110d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611137578061112181611c34565b91506111309050600a83611d32565b9150611111565b60008167ffffffffffffffff811115611152576111526117e4565b6040519080825280601f01601f19166020018201604052801561117c576020820181803683370190505b5090505b8415610e8857611191600183611c9b565b915061119e600a86611d46565b6111a9906030611cb2565b60f81b8183815181106111be576111be611c08565b60200101906001600160f81b031916908160001a9053506111e0600a86611d32565b9450611180565b60006001600160e01b031982166380ac58cd60e01b148061121857506001600160e01b03198216635b5e139f60e01b145b8061037657506301ffc9a760e01b6001600160e01b0319831614610376565b6105fe838383611382565b61124c838361143a565b6112596000848484611275565b6105fe5760405162461bcd60e51b81526004016103a690611cca565b60006001600160a01b0384163b1561137757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112b9903390899088908890600401611d5a565b602060405180830381600087803b1580156112d357600080fd5b505af1925050508015611303575060408051601f3d908101601f1916820190925261130091810190611d97565b60015b61135d573d808015611331576040519150601f19603f3d011682016040523d82523d6000602084013e611336565b606091505b5080516113555760405162461bcd60e51b81526004016103a690611cca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e88565b506001949350505050565b6001600160a01b0383166113dd576113d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611400565b816001600160a01b0316836001600160a01b031614611400576114008382611588565b6001600160a01b038216611417576105fe81611625565b826001600160a01b0316826001600160a01b0316146105fe576105fe82826116d4565b6001600160a01b0382166114905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103a6565b6000818152600260205260409020546001600160a01b0316156114f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103a6565b61150160008383611237565b6001600160a01b038216600090815260036020526040812080546001929061152a908490611cb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161159584610877565b61159f9190611c9b565b6000838152600760205260409020549091508082146115f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061163790600190611c9b565b6000838152600960205260408120546008805493945090928490811061165f5761165f611c08565b90600052602060002001549050806008838154811061168057611680611c08565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116b8576116b8611db4565b6001900381819060005260206000200160009055905550505050565b60006116df83610877565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461172490611b7c565b90600052602060002090601f016020900481019282611746576000855561178c565b82601f1061175f57805160ff191683800117855561178c565b8280016001018555821561178c579182015b8281111561178c578251825591602001919060010190611771565b5061179892915061179c565b5090565b5b80821115611798576000815560010161179d565b6001600160e01b031981168114610d0357600080fd5b6000602082840312156117d957600080fd5b8135610c64816117b1565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611815576118156117e4565b604051601f8501601f19908116603f0116810190828211818310171561183d5761183d6117e4565b8160405280935085815286868601111561185657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561188257600080fd5b813567ffffffffffffffff81111561189957600080fd5b8201601f810184136118aa57600080fd5b610e88848235602084016117fa565b60005b838110156118d45781810151838201526020016118bc565b838111156107fa5750506000910152565b600081518084526118fd8160208601602086016118b9565b601f01601f19169290920160200192915050565b602081526000610c6460208301846118e5565b60006020828403121561193657600080fd5b5035919050565b6001600160a01b0381168114610d0357600080fd5b6000806040838503121561196557600080fd5b82356119708161193d565b946020939093013593505050565b60008060006060848603121561199357600080fd5b833561199e8161193d565b925060208401356119ae8161193d565b929592945050506040919091013590565b6000806000604084860312156119d457600080fd5b83359250602084013567ffffffffffffffff808211156119f357600080fd5b818601915086601f830112611a0757600080fd5b813581811115611a1657600080fd5b8760208260051b8501011115611a2b57600080fd5b6020830194508093505050509250925092565b600060208284031215611a5057600080fd5b8135610c648161193d565b60008060408385031215611a6e57600080fd5b8235611a798161193d565b915060208301358015158114611a8e57600080fd5b809150509250929050565b60008060008060808587031215611aaf57600080fd5b8435611aba8161193d565b93506020850135611aca8161193d565b925060408501359150606085013567ffffffffffffffff811115611aed57600080fd5b8501601f81018713611afe57600080fd5b611b0d878235602084016117fa565b91505092959194509250565b60008060408385031215611b2c57600080fd5b8235611b378161193d565b91506020830135611a8e8161193d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611b9057607f821691505b60208210811415611bb157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611c4857611c48611c1e565b5060010190565b600060208284031215611c6157600080fd5b8151610c648161193d565b60008351611c7e8184602088016118b9565b835190830190611c928183602088016118b9565b01949350505050565b600082821015611cad57611cad611c1e565b500390565b60008219821115611cc557611cc5611c1e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d4157611d41611d1c565b500490565b600082611d5557611d55611d1c565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8d908301846118e5565b9695505050505050565b600060208284031215611da957600080fd5b8151610c64816117b1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b74244d6304703fb1af1ca1164fac656dc806454b9ff23a1033cb5cfb64c95a364736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063a22cb4651161007c578063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e6578063e985e9c5146102f9578063f07e40be14610335578063f2fde38b1461035857600080fd5b80636352211e1461026657806370a0823114610279578063715018a61461028c5780637c928fe9146102945780638da5cb5b146102a757806395d89b41146102b857600080fd5b806323b872dd1161011557806323b872dd146101ff5780632f745c591461021257806342842e0e146102255780634f6ccce71461023857806351b96d921461024b5780635dd62b571461025357600080fd5b806301ffc9a71461015d57806302fe53051461018557806306fdde031461019a578063081812fc146101af578063095ea7b3146101da57806318160ddd146101ed575b600080fd5b61017061016b3660046117c7565b61036b565b60405190151581526020015b60405180910390f35b610198610193366004611870565b61037c565b005b6101a26103c6565b60405161017c9190611911565b6101c26101bd366004611924565b610458565b6040516001600160a01b03909116815260200161017c565b6101986101e8366004611952565b6104ed565b6008545b60405190815260200161017c565b61019861020d36600461197e565b610603565b6101f1610220366004611952565b610634565b61019861023336600461197e565b6106ca565b6101f1610246366004611924565b6106e5565b6101f1601481565b6101986102613660046119bf565b610778565b6101c2610274366004611924565b610800565b6101f1610287366004611a3e565b610877565b6101986108fe565b6101986102a2366004611924565b610934565b600a546001600160a01b03166101c2565b6101a2610a8a565b6101986102ce366004611a5b565b610a99565b6101986102e1366004611a99565b610b5e565b6101a26102f4366004611924565b610b90565b610170610307366004611b19565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610170610343366004611924565b600d6020526000908152604090205460ff1681565b610198610366366004611a3e565b610c6b565b600061037682610d06565b92915050565b600a546001600160a01b031633146103af5760405162461bcd60e51b81526004016103a690611b47565b60405180910390fd5b80516103c290600b906020840190611718565b5050565b6060600080546103d590611b7c565b80601f016020809104026020016040519081016040528092919081815260200182805461040190611b7c565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103a6565b506000908152600460205260409020546001600160a01b031690565b60006104f882610800565b9050806001600160a01b0316836001600160a01b031614156105665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103a6565b336001600160a01b038216148061058257506105828133610307565b6105f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103a6565b6105fe8383610d2b565b505050565b61060d3382610d99565b6106295760405162461bcd60e51b81526004016103a690611bb7565b6105fe838383610e90565b600061063f83610877565b82106106a15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016103a6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105fe83838360405180602001604052806000815250610b5e565b60006106f060085490565b82106107535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016103a6565b6008828154811061076657610766611c08565b90600052602060002001549050919050565b60148311156107bc5760405162461bcd60e51b815260206004820152601060248201526f19181036b0bc17103832b917103a3c3760811b60448201526064016103a6565b60005b838110156107fa576107e88383838181106107dc576107dc611c08565b90506020020135610934565b806107f281611c34565b9150506107bf565b50505050565b6000818152600260205260408120546001600160a01b0316806103765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103a6565b60006001600160a01b0382166108e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103a6565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146109285760405162461bcd60e51b81526004016103a690611b47565b610932600061103b565b565b6000818152600d602052604090205460ff16156109935760405162461bcd60e51b815260206004820152601a60248201527f42697420436869636b7320616c726561647920636c61696d656400000000000060448201526064016103a6565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156109d757600080fd5b505afa1580156109eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611c4f565b6001600160a01b031614610a655760405162461bcd60e51b815260206004820152601860248201527f4368756e6b7920436869636b656e206e6f74206f776e6564000000000000000060448201526064016103a6565b610a6f338261108d565b6000908152600d60205260409020805460ff19166001179055565b6060600180546103d590611b7c565b6001600160a01b038216331415610af25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103a6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b683383610d99565b610b845760405162461bcd60e51b81526004016103a690611bb7565b6107fa848484846110a7565b6000818152600260205260409020546060906001600160a01b0316610c0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103a6565b6000610c196110da565b90506000815111610c395760405180602001604052806000815250610c64565b80610c43846110e9565b604051602001610c54929190611c6c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610c955760405162461bcd60e51b81526004016103a690611b47565b6001600160a01b038116610cfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a6565b610d038161103b565b50565b60006001600160e01b0319821663780e9d6360e01b14806103765750610376826111e7565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d6082610800565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103a6565b6000610e1d83610800565b9050806001600160a01b0316846001600160a01b03161480610e585750836001600160a01b0316610e4d84610458565b6001600160a01b0316145b80610e8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ea382610800565b6001600160a01b031614610f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103a6565b6001600160a01b038216610f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103a6565b610f78838383611237565b610f83600082610d2b565b6001600160a01b0383166000908152600360205260408120805460019290610fac908490611c9b565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fda908490611cb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6103c2828260405180602001604052806000815250611242565b6110b2848484610e90565b6110be84848484611275565b6107fa5760405162461bcd60e51b81526004016103a690611cca565b6060600b80546103d590611b7c565b60608161110d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611137578061112181611c34565b91506111309050600a83611d32565b9150611111565b60008167ffffffffffffffff811115611152576111526117e4565b6040519080825280601f01601f19166020018201604052801561117c576020820181803683370190505b5090505b8415610e8857611191600183611c9b565b915061119e600a86611d46565b6111a9906030611cb2565b60f81b8183815181106111be576111be611c08565b60200101906001600160f81b031916908160001a9053506111e0600a86611d32565b9450611180565b60006001600160e01b031982166380ac58cd60e01b148061121857506001600160e01b03198216635b5e139f60e01b145b8061037657506301ffc9a760e01b6001600160e01b0319831614610376565b6105fe838383611382565b61124c838361143a565b6112596000848484611275565b6105fe5760405162461bcd60e51b81526004016103a690611cca565b60006001600160a01b0384163b1561137757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112b9903390899088908890600401611d5a565b602060405180830381600087803b1580156112d357600080fd5b505af1925050508015611303575060408051601f3d908101601f1916820190925261130091810190611d97565b60015b61135d573d808015611331576040519150601f19603f3d011682016040523d82523d6000602084013e611336565b606091505b5080516113555760405162461bcd60e51b81526004016103a690611cca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e88565b506001949350505050565b6001600160a01b0383166113dd576113d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611400565b816001600160a01b0316836001600160a01b031614611400576114008382611588565b6001600160a01b038216611417576105fe81611625565b826001600160a01b0316826001600160a01b0316146105fe576105fe82826116d4565b6001600160a01b0382166114905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103a6565b6000818152600260205260409020546001600160a01b0316156114f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103a6565b61150160008383611237565b6001600160a01b038216600090815260036020526040812080546001929061152a908490611cb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161159584610877565b61159f9190611c9b565b6000838152600760205260409020549091508082146115f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061163790600190611c9b565b6000838152600960205260408120546008805493945090928490811061165f5761165f611c08565b90600052602060002001549050806008838154811061168057611680611c08565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116b8576116b8611db4565b6001900381819060005260206000200160009055905550505050565b60006116df83610877565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461172490611b7c565b90600052602060002090601f016020900481019282611746576000855561178c565b82601f1061175f57805160ff191683800117855561178c565b8280016001018555821561178c579182015b8281111561178c578251825591602001919060010190611771565b5061179892915061179c565b5090565b5b80821115611798576000815560010161179d565b6001600160e01b031981168114610d0357600080fd5b6000602082840312156117d957600080fd5b8135610c64816117b1565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611815576118156117e4565b604051601f8501601f19908116603f0116810190828211818310171561183d5761183d6117e4565b8160405280935085815286868601111561185657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561188257600080fd5b813567ffffffffffffffff81111561189957600080fd5b8201601f810184136118aa57600080fd5b610e88848235602084016117fa565b60005b838110156118d45781810151838201526020016118bc565b838111156107fa5750506000910152565b600081518084526118fd8160208601602086016118b9565b601f01601f19169290920160200192915050565b602081526000610c6460208301846118e5565b60006020828403121561193657600080fd5b5035919050565b6001600160a01b0381168114610d0357600080fd5b6000806040838503121561196557600080fd5b82356119708161193d565b946020939093013593505050565b60008060006060848603121561199357600080fd5b833561199e8161193d565b925060208401356119ae8161193d565b929592945050506040919091013590565b6000806000604084860312156119d457600080fd5b83359250602084013567ffffffffffffffff808211156119f357600080fd5b818601915086601f830112611a0757600080fd5b813581811115611a1657600080fd5b8760208260051b8501011115611a2b57600080fd5b6020830194508093505050509250925092565b600060208284031215611a5057600080fd5b8135610c648161193d565b60008060408385031215611a6e57600080fd5b8235611a798161193d565b915060208301358015158114611a8e57600080fd5b809150509250929050565b60008060008060808587031215611aaf57600080fd5b8435611aba8161193d565b93506020850135611aca8161193d565b925060408501359150606085013567ffffffffffffffff811115611aed57600080fd5b8501601f81018713611afe57600080fd5b611b0d878235602084016117fa565b91505092959194509250565b60008060408385031215611b2c57600080fd5b8235611b378161193d565b91506020830135611a8e8161193d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611b9057607f821691505b60208210811415611bb157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611c4857611c48611c1e565b5060010190565b600060208284031215611c6157600080fd5b8151610c648161193d565b60008351611c7e8184602088016118b9565b835190830190611c928183602088016118b9565b01949350505050565b600082821015611cad57611cad611c1e565b500390565b60008219821115611cc557611cc5611c1e565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d4157611d41611d1c565b500490565b600082611d5557611d55611d1c565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d8d908301846118e5565b9695505050505050565b600060208284031215611da957600080fd5b8151610c64816117b1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b74244d6304703fb1af1ca1164fac656dc806454b9ff23a1033cb5cfb64c95a364736f6c63430008090033

Deployed Bytecode Sourcemap

43028:1646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44459:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44459:212:0;;;;;;;;43582:84;;;;;;:::i;:::-;;:::i;:::-;;24793:100;;;:::i;:::-;;;;;;;:::i;26315:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2917:32:1;;;2899:51;;2887:2;2872:18;26315:221:0;2753:203:1;25875:374:0;;;;;;:::i;:::-;;:::i;37459:113::-;37547:10;:17;37459:113;;;3563:25:1;;;3551:2;3536:18;37459:113:0;3417:177:1;27205:339:0;;;;;;:::i;:::-;;:::i;37127:256::-;;;;;;:::i;:::-;;:::i;27615:185::-;;;;;;:::i;:::-;;:::i;37649:233::-;;;;;;:::i;:::-;;:::i;43091:40::-;;43129:2;43091:40;;43986:240;;;;;;:::i;:::-;;:::i;24487:239::-;;;;;;:::i;:::-;;:::i;24217:208::-;;;;;;:::i;:::-;;:::i;11047:94::-;;;:::i;43678:296::-;;;;;;:::i;:::-;;:::i;10396:87::-;10469:6;;-1:-1:-1;;;;;10469:6:0;10396:87;;24962:104;;;:::i;26608:295::-;;;;;;:::i;:::-;;:::i;27871:328::-;;;;;;:::i;:::-;;:::i;25137:334::-;;;;;;:::i;:::-;;:::i;26974:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27095:25:0;;;27071:4;27095:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26974:164;43362:46;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11296:192;;;;;;:::i;:::-;;:::i;44459:212::-;44598:4;44627:36;44651:11;44627:23;:36::i;:::-;44620:43;44459:212;-1:-1:-1;;44459:212:0:o;43582:84::-;10469:6;;-1:-1:-1;;;;;10469:6:0;1578:10;10616:23;10608:68;;;;-1:-1:-1;;;10608:68:0;;;;;;;:::i;:::-;;;;;;;;;43648:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43582:84:::0;:::o;24793:100::-;24847:13;24880:5;24873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24793:100;:::o;26315:221::-;26391:7;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;26411:73;;;;-1:-1:-1;;;26411:73:0;;7562:2:1;26411:73:0;;;7544:21:1;7601:2;7581:18;;;7574:30;7640:34;7620:18;;;7613:62;-1:-1:-1;;;7691:18:1;;;7684:42;7743:19;;26411:73:0;7360:408:1;26411:73:0;-1:-1:-1;26504:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26504:24:0;;26315:221::o;25875:374::-;25956:13;25972:23;25987:7;25972:14;:23::i;:::-;25956:39;;26020:5;-1:-1:-1;;;;;26014:11:0;:2;-1:-1:-1;;;;;26014:11:0;;;26006:57;;;;-1:-1:-1;;;26006:57:0;;7975:2:1;26006:57:0;;;7957:21:1;8014:2;7994:18;;;7987:30;8053:34;8033:18;;;8026:62;-1:-1:-1;;;8104:18:1;;;8097:31;8145:19;;26006:57:0;7773:397:1;26006:57:0;1578:10;-1:-1:-1;;;;;26084:21:0;;;;:62;;-1:-1:-1;26109:37:0;26126:5;1578:10;26974:164;:::i;26109:37::-;26076:131;;;;-1:-1:-1;;;26076:131:0;;8377:2:1;26076:131:0;;;8359:21:1;8416:2;8396:18;;;8389:30;8455:34;8435:18;;;8428:62;8526:26;8506:18;;;8499:54;8570:19;;26076:131:0;8175:420:1;26076:131:0;26220:21;26229:2;26233:7;26220:8;:21::i;:::-;25945:304;25875:374;;:::o;27205:339::-;27400:41;1578:10;27433:7;27400:18;:41::i;:::-;27392:103;;;;-1:-1:-1;;;27392:103:0;;;;;;;:::i;:::-;27508:28;27518:4;27524:2;27528:7;27508:9;:28::i;37127:256::-;37224:7;37260:23;37277:5;37260:16;:23::i;:::-;37252:5;:31;37244:87;;;;-1:-1:-1;;;37244:87:0;;9220:2:1;37244:87:0;;;9202:21:1;9259:2;9239:18;;;9232:30;9298:34;9278:18;;;9271:62;-1:-1:-1;;;9349:18:1;;;9342:41;9400:19;;37244:87:0;9018:407:1;37244:87:0;-1:-1:-1;;;;;;37349:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37127:256::o;27615:185::-;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;37649:233::-;37724:7;37760:30;37547:10;:17;;37459:113;37760:30;37752:5;:38;37744:95;;;;-1:-1:-1;;;37744:95:0;;9632:2:1;37744:95:0;;;9614:21:1;9671:2;9651:18;;;9644:30;9710:34;9690:18;;;9683:62;-1:-1:-1;;;9761:18:1;;;9754:42;9813:19;;37744:95:0;9430:408:1;37744:95:0;37857:10;37868:5;37857:17;;;;;;;;:::i;:::-;;;;;;;;;37850:24;;37649:233;;;:::o;43986:240::-;43129:2;44085:6;:21;;44077:50;;;;-1:-1:-1;;;44077:50:0;;10177:2:1;44077:50:0;;;10159:21:1;10216:2;10196:18;;;10189:30;-1:-1:-1;;;10235:18:1;;;10228:46;10291:18;;44077:50:0;9975:340:1;44077:50:0;44143:9;44138:81;44158:6;44156:1;:8;44138:81;;;44186:21;44195:8;;44204:1;44195:11;;;;;;;:::i;:::-;;;;;;;44186:8;:21::i;:::-;44166:3;;;;:::i;:::-;;;;44138:81;;;;43986:240;;;:::o;24487:239::-;24559:7;24595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24595:16:0;24630:19;24622:73;;;;-1:-1:-1;;;24622:73:0;;10794:2:1;24622:73:0;;;10776:21:1;10833:2;10813:18;;;10806:30;10872:34;10852:18;;;10845:62;-1:-1:-1;;;10923:18:1;;;10916:39;10972:19;;24622:73:0;10592:405:1;24217:208:0;24289:7;-1:-1:-1;;;;;24317:19:0;;24309:74;;;;-1:-1:-1;;;24309:74:0;;11204:2:1;24309:74:0;;;11186:21:1;11243:2;11223:18;;;11216:30;11282:34;11262:18;;;11255:62;-1:-1:-1;;;11333:18:1;;;11326:40;11383:19;;24309:74:0;11002:406:1;24309:74:0;-1:-1:-1;;;;;;24401:16:0;;;;;:9;:16;;;;;;;24217:208::o;11047:94::-;10469:6;;-1:-1:-1;;;;;10469:6:0;1578:10;10616:23;10608:68;;;;-1:-1:-1;;;10608:68:0;;;;;;;:::i;:::-;11112:21:::1;11130:1;11112:9;:21::i;:::-;11047:94::o:0;43678:296::-;43740:22;;;;:13;:22;;;;;;;;43739:23;43731:62;;;;-1:-1:-1;;;43731:62:0;;11615:2:1;43731:62:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:28;11673:18;;;11666:56;11739:18;;43731:62:0;11413:350:1;43731:62:0;43812:13;;:30;;-1:-1:-1;;;43812:30:0;;;;;3563:25:1;;;43846:10:0;;-1:-1:-1;;;;;43812:13:0;;:21;;3536:18:1;;43812:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43812:44:0;;43804:81;;;;-1:-1:-1;;;43804:81:0;;12226:2:1;43804:81:0;;;12208:21:1;12265:2;12245:18;;;12238:30;12304:26;12284:18;;;12277:54;12348:18;;43804:81:0;12024:348:1;43804:81:0;43896:30;43906:10;43918:7;43896:9;:30::i;:::-;43937:22;;;;:13;:22;;;;;:29;;-1:-1:-1;;43937:29:0;43962:4;43937:29;;;43678:296::o;24962:104::-;25018:13;25051:7;25044:14;;;;;:::i;26608:295::-;-1:-1:-1;;;;;26711:24:0;;1578:10;26711:24;;26703:62;;;;-1:-1:-1;;;26703:62:0;;12579:2:1;26703:62:0;;;12561:21:1;12618:2;12598:18;;;12591:30;12657:27;12637:18;;;12630:55;12702:18;;26703:62:0;12377:349:1;26703:62:0;1578:10;26778:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26778:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26778:53:0;;;;;;;;;;26847:48;;540:41:1;;;26778:42:0;;1578:10;26847:48;;513:18:1;26847:48:0;;;;;;;26608:295;;:::o;27871:328::-;28046:41;1578:10;28079:7;28046:18;:41::i;:::-;28038:103;;;;-1:-1:-1;;;28038:103:0;;;;;;;:::i;:::-;28152:39;28166:4;28172:2;28176:7;28185:5;28152:13;:39::i;25137:334::-;29774:4;29798:16;;;:7;:16;;;;;;25210:13;;-1:-1:-1;;;;;29798:16:0;25236:76;;;;-1:-1:-1;;;25236:76:0;;12933:2:1;25236:76:0;;;12915:21:1;12972:2;12952:18;;;12945:30;13011:34;12991:18;;;12984:62;-1:-1:-1;;;13062:18:1;;;13055:45;13117:19;;25236:76:0;12731:411:1;25236:76:0;25325:21;25349:10;:8;:10::i;:::-;25325:34;;25401:1;25383:7;25377:21;:25;:86;;;;;;;;;;;;;;;;;25429:7;25438:18;:7;:16;:18::i;:::-;25412:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25377:86;25370:93;25137:334;-1:-1:-1;;;25137:334:0:o;11296:192::-;10469:6;;-1:-1:-1;;;;;10469:6:0;1578:10;10616:23;10608:68;;;;-1:-1:-1;;;10608:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11385:22:0;::::1;11377:73;;;::::0;-1:-1:-1;;;11377:73:0;;13824:2:1;11377:73:0::1;::::0;::::1;13806:21:1::0;13863:2;13843:18;;;13836:30;13902:34;13882:18;;;13875:62;-1:-1:-1;;;13953:18:1;;;13946:36;13999:19;;11377:73:0::1;13622:402:1::0;11377:73:0::1;11461:19;11471:8;11461:9;:19::i;:::-;11296:192:::0;:::o;36819:224::-;36921:4;-1:-1:-1;;;;;;36945:50:0;;-1:-1:-1;;;36945:50:0;;:90;;;36999:36;37023:11;36999:23;:36::i;33654:174::-;33729:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33729:29:0;-1:-1:-1;;;;;33729:29:0;;;;;;;;:24;;33783:23;33729:24;33783:14;:23::i;:::-;-1:-1:-1;;;;;33774:46:0;;;;;;;;;;;33654:174;;:::o;30003:348::-;30096:4;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;30113:73;;;;-1:-1:-1;;;30113:73:0;;14231:2:1;30113:73:0;;;14213:21:1;14270:2;14250:18;;;14243:30;14309:34;14289:18;;;14282:62;-1:-1:-1;;;14360:18:1;;;14353:42;14412:19;;30113:73:0;14029:408:1;30113:73:0;30197:13;30213:23;30228:7;30213:14;:23::i;:::-;30197:39;;30266:5;-1:-1:-1;;;;;30255:16:0;:7;-1:-1:-1;;;;;30255:16:0;;:51;;;;30299:7;-1:-1:-1;;;;;30275:31:0;:20;30287:7;30275:11;:20::i;:::-;-1:-1:-1;;;;;30275:31:0;;30255:51;:87;;;-1:-1:-1;;;;;;27095:25:0;;;27071:4;27095:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30310:32;30247:96;30003:348;-1:-1:-1;;;;30003:348:0:o;32958:578::-;33117:4;-1:-1:-1;;;;;33090:31:0;:23;33105:7;33090:14;:23::i;:::-;-1:-1:-1;;;;;33090:31:0;;33082:85;;;;-1:-1:-1;;;33082:85:0;;14644:2:1;33082:85:0;;;14626:21:1;14683:2;14663:18;;;14656:30;14722:34;14702:18;;;14695:62;-1:-1:-1;;;14773:18:1;;;14766:39;14822:19;;33082:85:0;14442:405:1;33082:85:0;-1:-1:-1;;;;;33186:16:0;;33178:65;;;;-1:-1:-1;;;33178:65:0;;15054:2:1;33178:65:0;;;15036:21:1;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;-1:-1:-1;;;15183:18:1;;;15176:34;15227:19;;33178:65:0;14852:400:1;33178:65:0;33256:39;33277:4;33283:2;33287:7;33256:20;:39::i;:::-;33360:29;33377:1;33381:7;33360:8;:29::i;:::-;-1:-1:-1;;;;;33402:15:0;;;;;;:9;:15;;;;;:20;;33421:1;;33402:15;:20;;33421:1;;33402:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33433:13:0;;;;;;:9;:13;;;;;:18;;33450:1;;33433:13;:18;;33450:1;;33433:18;:::i;:::-;;;;-1:-1:-1;;33462:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33462:21:0;-1:-1:-1;;;;;33462:21:0;;;;;;;;;33501:27;;33462:16;;33501:27;;;;;;;32958:578;;;:::o;11496:173::-;11571:6;;;-1:-1:-1;;;;;11588:17:0;;;-1:-1:-1;;;;;;11588:17:0;;;;;;;11621:40;;11571:6;;;11588:17;11571:6;;11621:40;;11552:16;;11621:40;11541:128;11496:173;:::o;30693:110::-;30769:26;30779:2;30783:7;30769:26;;;;;;;;;;;;:9;:26::i;29081:315::-;29238:28;29248:4;29254:2;29258:7;29238:9;:28::i;:::-;29285:48;29308:4;29314:2;29318:7;29327:5;29285:22;:48::i;:::-;29277:111;;;;-1:-1:-1;;;29277:111:0;;;;;;;:::i;43478:96::-;43530:13;43563:3;43556:10;;;;;:::i;20801:723::-;20857:13;21078:10;21074:53;;-1:-1:-1;;21105:10:0;;;;;;;;;;;;-1:-1:-1;;;21105:10:0;;;;;20801:723::o;21074:53::-;21152:5;21137:12;21193:78;21200:9;;21193:78;;21226:8;;;;:::i;:::-;;-1:-1:-1;21249:10:0;;-1:-1:-1;21257:2:0;21249:10;;:::i;:::-;;;21193:78;;;21281:19;21313:6;21303:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21303:17:0;;21281:39;;21331:154;21338:10;;21331:154;;21365:11;21375:1;21365:11;;:::i;:::-;;-1:-1:-1;21434:10:0;21442:2;21434:5;:10;:::i;:::-;21421:24;;:2;:24;:::i;:::-;21408:39;;21391:6;21398;21391:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21391:56:0;;;;;;;;-1:-1:-1;21462:11:0;21471:2;21462:11;;:::i;:::-;;;21331:154;;23874:279;23976:4;-1:-1:-1;;;;;;24013:40:0;;-1:-1:-1;;;24013:40:0;;:92;;-1:-1:-1;;;;;;;24057:48:0;;-1:-1:-1;;;24057:48:0;24013:92;:132;;;-1:-1:-1;;;;;;;;;;8364:40:0;;;24109:36;8255:157;44236:215;44398:45;44425:4;44431:2;44435:7;44398:26;:45::i;31030:284::-;31160:18;31166:2;31170:7;31160:5;:18::i;:::-;31197:54;31228:1;31232:2;31236:7;31245:5;31197:22;:54::i;:::-;31189:117;;;;-1:-1:-1;;;31189:117:0;;;;;;;:::i;34393:799::-;34548:4;-1:-1:-1;;;;;34569:13:0;;13486:20;13534:8;34565:620;;34605:72;;-1:-1:-1;;;34605:72:0;;-1:-1:-1;;;;;34605:36:0;;;;;:72;;1578:10;;34656:4;;34662:7;;34671:5;;34605:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34605:72:0;;;;;;;;-1:-1:-1;;34605:72:0;;;;;;;;;;;;:::i;:::-;;;34601:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34847:13:0;;34843:272;;34890:60;;-1:-1:-1;;;34890:60:0;;;;;;;:::i;34843:272::-;35065:6;35059:13;35050:6;35046:2;35042:15;35035:38;34601:529;-1:-1:-1;;;;;;34728:51:0;-1:-1:-1;;;34728:51:0;;-1:-1:-1;34721:58:0;;34565:620;-1:-1:-1;35169:4:0;34393:799;;;;;;:::o;38495:589::-;-1:-1:-1;;;;;38701:18:0;;38697:187;;38736:40;38768:7;39911:10;:17;;39884:24;;;;:15;:24;;;;;:44;;;39939:24;;;;;;;;;;;;39807:164;38736:40;38697:187;;;38806:2;-1:-1:-1;;;;;38798:10:0;:4;-1:-1:-1;;;;;38798:10:0;;38794:90;;38825:47;38858:4;38864:7;38825:32;:47::i;:::-;-1:-1:-1;;;;;38898:16:0;;38894:183;;38931:45;38968:7;38931:36;:45::i;38894:183::-;39004:4;-1:-1:-1;;;;;38998:10:0;:2;-1:-1:-1;;;;;38998:10:0;;38994:83;;39025:40;39053:2;39057:7;39025:27;:40::i;31650:382::-;-1:-1:-1;;;;;31730:16:0;;31722:61;;;;-1:-1:-1;;;31722:61:0;;17263:2:1;31722:61:0;;;17245:21:1;;;17282:18;;;17275:30;17341:34;17321:18;;;17314:62;17393:18;;31722:61:0;17061:356:1;31722:61:0;29774:4;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;:30;31794:58;;;;-1:-1:-1;;;31794:58:0;;17624:2:1;31794:58:0;;;17606:21:1;17663:2;17643:18;;;17636:30;17702;17682:18;;;17675:58;17750:18;;31794:58:0;17422:352:1;31794:58:0;31865:45;31894:1;31898:2;31902:7;31865:20;:45::i;:::-;-1:-1:-1;;;;;31923:13:0;;;;;;:9;:13;;;;;:18;;31940:1;;31923:13;:18;;31940:1;;31923:18;:::i;:::-;;;;-1:-1:-1;;31952:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31952:21:0;-1:-1:-1;;;;;31952:21:0;;;;;;;;31991:33;;31952:16;;;31991:33;;31952:16;;31991:33;31650:382;;:::o;40598:988::-;40864:22;40914:1;40889:22;40906:4;40889:16;:22::i;:::-;:26;;;;:::i;:::-;40926:18;40947:26;;;:17;:26;;;;;;40864:51;;-1:-1:-1;41080:28:0;;;41076:328;;-1:-1:-1;;;;;41147:18:0;;41125:19;41147:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41198:30;;;;;;:44;;;41315:30;;:17;:30;;;;;:43;;;41076:328;-1:-1:-1;41500:26:0;;;;:17;:26;;;;;;;;41493:33;;;-1:-1:-1;;;;;41544:18:0;;;;;:12;:18;;;;;:34;;;;;;;41537:41;40598:988::o;41881:1079::-;42159:10;:17;42134:22;;42159:21;;42179:1;;42159:21;:::i;:::-;42191:18;42212:24;;;:15;:24;;;;;;42585:10;:26;;42134:46;;-1:-1:-1;42212:24:0;;42134:46;;42585:26;;;;;;:::i;:::-;;;;;;;;;42563:48;;42649:11;42624:10;42635;42624:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42729:28;;;:15;:28;;;;;;;:41;;;42901:24;;;;;42894:31;42936:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41952:1008;;;41881:1079;:::o;39385:221::-;39470:14;39487:20;39504:2;39487:16;:20::i;:::-;-1:-1:-1;;;;;39518:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39563:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39385:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:1;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:1;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1817:258::-;1889:1;1899:113;1913:6;1910:1;1907:13;1899:113;;;1989:11;;;1983:18;1970:11;;;1963:39;1935:2;1928:10;1899:113;;;2030:6;2027:1;2024:13;2021:48;;;-1:-1:-1;;2065:1:1;2047:16;;2040:27;1817:258::o;2080:::-;2122:3;2160:5;2154:12;2187:6;2182:3;2175:19;2203:63;2259:6;2252:4;2247:3;2243:14;2236:4;2229:5;2225:16;2203:63;:::i;:::-;2320:2;2299:15;-1:-1:-1;;2295:29:1;2286:39;;;;2327:4;2282:50;;2080:258;-1:-1:-1;;2080:258:1:o;2343:220::-;2492:2;2481:9;2474:21;2455:4;2512:45;2553:2;2542:9;2538:18;2530:6;2512:45;:::i;2568:180::-;2627:6;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;-1:-1:-1;2719:23:1;;2568:180;-1:-1:-1;2568:180:1:o;2961:131::-;-1:-1:-1;;;;;3036:31:1;;3026:42;;3016:70;;3082:1;3079;3072:12;3097:315;3165:6;3173;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;:::-;3350:5;3402:2;3387:18;;;;3374:32;;-1:-1:-1;;;3097:315:1:o;3599:456::-;3676:6;3684;3692;3745:2;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3800:9;3787:23;3819:31;3844:5;3819:31;:::i;:::-;3869:5;-1:-1:-1;3926:2:1;3911:18;;3898:32;3939:33;3898:32;3939:33;:::i;:::-;3599:456;;3991:7;;-1:-1:-1;;;4045:2:1;4030:18;;;;4017:32;;3599:456::o;4060:683::-;4155:6;4163;4171;4224:2;4212:9;4203:7;4199:23;4195:32;4192:52;;;4240:1;4237;4230:12;4192:52;4276:9;4263:23;4253:33;;4337:2;4326:9;4322:18;4309:32;4360:18;4401:2;4393:6;4390:14;4387:34;;;4417:1;4414;4407:12;4387:34;4455:6;4444:9;4440:22;4430:32;;4500:7;4493:4;4489:2;4485:13;4481:27;4471:55;;4522:1;4519;4512:12;4471:55;4562:2;4549:16;4588:2;4580:6;4577:14;4574:34;;;4604:1;4601;4594:12;4574:34;4657:7;4652:2;4642:6;4639:1;4635:14;4631:2;4627:23;4623:32;4620:45;4617:65;;;4678:1;4675;4668:12;4617:65;4709:2;4705;4701:11;4691:21;;4731:6;4721:16;;;;;4060:683;;;;;:::o;4748:247::-;4807:6;4860:2;4848:9;4839:7;4835:23;4831:32;4828:52;;;4876:1;4873;4866:12;4828:52;4915:9;4902:23;4934:31;4959:5;4934:31;:::i;5000:416::-;5065:6;5073;5126:2;5114:9;5105:7;5101:23;5097:32;5094:52;;;5142:1;5139;5132:12;5094:52;5181:9;5168:23;5200:31;5225:5;5200:31;:::i;:::-;5250:5;-1:-1:-1;5307:2:1;5292:18;;5279:32;5349:15;;5342:23;5330:36;;5320:64;;5380:1;5377;5370:12;5320:64;5403:7;5393:17;;;5000:416;;;;;:::o;5421:795::-;5516:6;5524;5532;5540;5593:3;5581:9;5572:7;5568:23;5564:33;5561:53;;;5610:1;5607;5600:12;5561:53;5649:9;5636:23;5668:31;5693:5;5668:31;:::i;:::-;5718:5;-1:-1:-1;5775:2:1;5760:18;;5747:32;5788:33;5747:32;5788:33;:::i;:::-;5840:7;-1:-1:-1;5894:2:1;5879:18;;5866:32;;-1:-1:-1;5949:2:1;5934:18;;5921:32;5976:18;5965:30;;5962:50;;;6008:1;6005;5998:12;5962:50;6031:22;;6084:4;6076:13;;6072:27;-1:-1:-1;6062:55:1;;6113:1;6110;6103:12;6062:55;6136:74;6202:7;6197:2;6184:16;6179:2;6175;6171:11;6136:74;:::i;:::-;6126:84;;;5421:795;;;;;;;:::o;6221:388::-;6289:6;6297;6350:2;6338:9;6329:7;6325:23;6321:32;6318:52;;;6366:1;6363;6356:12;6318:52;6405:9;6392:23;6424:31;6449:5;6424:31;:::i;:::-;6474:5;-1:-1:-1;6531:2:1;6516:18;;6503:32;6544:33;6503:32;6544:33;:::i;6614:356::-;6816:2;6798:21;;;6835:18;;;6828:30;6894:34;6889:2;6874:18;;6867:62;6961:2;6946:18;;6614:356::o;6975:380::-;7054:1;7050:12;;;;7097;;;7118:61;;7172:4;7164:6;7160:17;7150:27;;7118:61;7225:2;7217:6;7214:14;7194:18;7191:38;7188:161;;;7271:10;7266:3;7262:20;7259:1;7252:31;7306:4;7303:1;7296:15;7334:4;7331:1;7324:15;7188:161;;6975:380;;;:::o;8600:413::-;8802:2;8784:21;;;8841:2;8821:18;;;8814:30;8880:34;8875:2;8860:18;;8853:62;-1:-1:-1;;;8946:2:1;8931:18;;8924:47;9003:3;8988:19;;8600:413::o;9843:127::-;9904:10;9899:3;9895:20;9892:1;9885:31;9935:4;9932:1;9925:15;9959:4;9956:1;9949:15;10320:127;10381:10;10376:3;10372:20;10369:1;10362:31;10412:4;10409:1;10402:15;10436:4;10433:1;10426:15;10452:135;10491:3;-1:-1:-1;;10512:17:1;;10509:43;;;10532:18;;:::i;:::-;-1:-1:-1;10579:1:1;10568:13;;10452:135::o;11768:251::-;11838:6;11891:2;11879:9;11870:7;11866:23;11862:32;11859:52;;;11907:1;11904;11897:12;11859:52;11939:9;11933:16;11958:31;11983:5;11958:31;:::i;13147:470::-;13326:3;13364:6;13358:13;13380:53;13426:6;13421:3;13414:4;13406:6;13402:17;13380:53;:::i;:::-;13496:13;;13455:16;;;;13518:57;13496:13;13455:16;13552:4;13540:17;;13518:57;:::i;:::-;13591:20;;13147:470;-1:-1:-1;;;;13147:470:1:o;15257:125::-;15297:4;15325:1;15322;15319:8;15316:34;;;15330:18;;:::i;:::-;-1:-1:-1;15367:9:1;;15257:125::o;15387:128::-;15427:3;15458:1;15454:6;15451:1;15448:13;15445:39;;;15464:18;;:::i;:::-;-1:-1:-1;15500:9:1;;15387:128::o;15520:414::-;15722:2;15704:21;;;15761:2;15741:18;;;15734:30;15800:34;15795:2;15780:18;;15773:62;-1:-1:-1;;;15866:2:1;15851:18;;15844:48;15924:3;15909:19;;15520:414::o;15939:127::-;16000:10;15995:3;15991:20;15988:1;15981:31;16031:4;16028:1;16021:15;16055:4;16052:1;16045:15;16071:120;16111:1;16137;16127:35;;16142:18;;:::i;:::-;-1:-1:-1;16176:9:1;;16071:120::o;16196:112::-;16228:1;16254;16244:35;;16259:18;;:::i;:::-;-1:-1:-1;16293:9:1;;16196:112::o;16313:489::-;-1:-1:-1;;;;;16582:15:1;;;16564:34;;16634:15;;16629:2;16614:18;;16607:43;16681:2;16666:18;;16659:34;;;16729:3;16724:2;16709:18;;16702:31;;;16507:4;;16750:46;;16776:19;;16768:6;16750:46;:::i;:::-;16742:54;16313:489;-1:-1:-1;;;;;;16313:489:1:o;16807:249::-;16876:6;16929:2;16917:9;16908:7;16904:23;16900:32;16897:52;;;16945:1;16942;16935:12;16897:52;16977:9;16971:16;16996:30;17020:5;16996:30;:::i;17779:127::-;17840:10;17835:3;17831:20;17828:1;17821:31;17871:4;17868:1;17861:15;17895:4;17892:1;17885:15

Swarm Source

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