ETH Price: $2,539.42 (+0.57%)

Token

Chic Cows&Bulls Collection (CCNB)
 

Overview

Max Total Supply

801 CCNB

Holders

264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 CCNB
0xfa3027474834083e65388a1c7ce43882db8c4618
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:
ChicCBCollection

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-19
*/

// Dependency file: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

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

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

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

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

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

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


// Dependency file: contracts/access/OperatorAccess.sol


// pragma solidity >=0.8.0 <1.0.0;

contract OperatorAccess is Ownable {

    mapping(address => bool) public operators;

    event SetOperator(address account, bool status);

    function setOperator(address _account, bool _status) external onlyOwner {
        operators[_account] = _status;
        emit SetOperator(_account, _status);
    }

    modifier onlyOperator() {
        require(operators[msg.sender], "only operator");
        _;
    }
}

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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


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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

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

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

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


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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


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


// Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

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


// Dependency file: @openzeppelin/contracts/token/ERC721/ERC721.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: contracts/BaseCollectible.sol


// pragma solidity >=0.8.0 <1.0.0;

// import "contracts/access/OperatorAccess.sol";

abstract contract BaseCollectible is ERC721Enumerable, OperatorAccess {

    address public metadata;

    string private _veryBaseURI;

    event BaseUriSet(string uri);
    event MetadataSet(address registry);

    function mint(address _to, uint256 _amount) external virtual onlyOperator {
        for (uint i; i < _amount; i++) {
            _mint(_to, totalSupply());
        }
    }

    // @dev Setup base URI.
    // Permission: only owner
    function setBaseURI(string memory _uri) external onlyOwner {
        _veryBaseURI = _uri;
        emit BaseUriSet(_uri);
    }
    
    // @dev Set onchain metedata endpoint
    function setMetadata(address _registry) external onlyOwner {
        metadata = _registry;
        emit MetadataSet(_registry);
    }

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

// Root file: contracts/ChicCnBCollection.sol


pragma solidity >=0.8.0 <1.0.0;

// import { ERC721, BaseCollectible } from "contracts/BaseCollectible.sol";

contract ChicCBCollection is BaseCollectible {

    mapping (uint256 => uint256) public createdAt;
    mapping (uint256 => uint256) public createdAtBlock;

    constructor()
        ERC721("Chic Cows&Bulls Collection", "CCNB")
    {
        //
    }

    function mint(address _to, uint256 _amount) external override onlyOperator {
        uint tokenId;
        for (uint i; i < _amount; i++) {
            tokenId = totalSupply();
            createdAt[tokenId] = block.timestamp;
            createdAtBlock[tokenId] = block.number;
            _safeMint(_to, tokenId);
        }
    }
}

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":false,"internalType":"string","name":"uri","type":"string"}],"name":"BaseUriSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"registry","type":"address"}],"name":"MetadataSet","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetOperator","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":[{"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":"createdAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"createdAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registry","type":"address"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setOperator","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"}]

60806040523480156200001157600080fd5b50604080518082018252601a81527f4368696320436f77732642756c6c7320436f6c6c656374696f6e00000000000060208083019182528351808501909452600484526321a1a72160e11b908401528151919291620000739160009162000102565b5080516200008990600190602084019062000102565b505050620000a6620000a0620000ac60201b60201c565b620000b0565b620001e5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b6123c880620001f56000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c806350a1676e116100f957806395d89b4111610097578063c87b56dd11610071578063c87b56dd146103b9578063e985e9c5146103cc578063f2fde38b14610408578063f3cb83851461041b57600080fd5b806395d89b411461038b578063a22cb46514610393578063b88d4fde146103a657600080fd5b80636352211e116100d35780636352211e1461034c57806370a082311461035f578063715018a6146103725780638da5cb5b1461037a57600080fd5b806350a1676e14610306578063558a72971461032657806355f804b31461033957600080fd5b806318160ddd11610166578063392f37e911610140578063392f37e9146102ba57806340c10f19146102cd57806342842e0e146102e05780634f6ccce7146102f357600080fd5b806318160ddd1461028c57806323b872dd146102945780632f745c59146102a757600080fd5b8063095ea7b311610197578063095ea7b314610226578063139a8aa41461023b57806313e7c9d81461026957600080fd5b806301ffc9a7146101be57806306fdde03146101e6578063081812fc146101fb575b600080fd5b6101d16101cc366004611e17565b61042e565b60405190151581526020015b60405180910390f35b6101ee61048a565b6040516101dd9190611eaa565b61020e610209366004611ebd565b61051c565b6040516001600160a01b0390911681526020016101dd565b610239610234366004611ef2565b6105c7565b005b61025b610249366004611ebd565b600f6020526000908152604090205481565b6040519081526020016101dd565b6101d1610277366004611f1c565b600b6020526000908152604090205460ff1681565b60085461025b565b6102396102a2366004611f37565b6106f9565b61025b6102b5366004611ef2565b610780565b600c5461020e906001600160a01b031681565b6102396102db366004611ef2565b610828565b6102396102ee366004611f37565b6108d8565b61025b610301366004611ebd565b6108f3565b61025b610314366004611ebd565b600e6020526000908152604090205481565b610239610334366004611f73565b610997565b610239610347366004612072565b610a72565b61020e61035a366004611ebd565b610b1a565b61025b61036d366004611f1c565b610ba5565b610239610c3f565b600a546001600160a01b031661020e565b6101ee610ca5565b6102396103a1366004611f73565b610cb4565b6102396103b43660046120bb565b610d97565b6101ee6103c7366004611ebd565b610e1f565b6101d16103da366004612137565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610239610416366004611f1c565b610f08565b610239610429366004611f1c565b610fea565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104845750610484826110aa565b92915050565b6060600080546104999061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546104c59061216a565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d282610b1a565b9050806001600160a01b0316836001600160a01b0316141561065c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105a2565b336001600160a01b0382161480610678575061067881336103da565b6106ea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a2565b6106f4838361118d565b505050565b6107033382611213565b6107755760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a2565b6106f483838361131b565b600061078b83610ba5565b82106107ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105a2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff166108875760405162461bcd60e51b815260206004820152600d60248201527f6f6e6c79206f70657261746f720000000000000000000000000000000000000060448201526064016105a2565b6000805b828110156108d2576008546000818152600e60209081526040808320429055600f909152902043905591506108c0848361150b565b806108ca816121ed565b91505061088b565b50505050565b6106f483838360405180602001604052806000815250610d97565b60006108fe60085490565b82106109725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105a2565b6008828154811061098557610985612226565b90600052602060002001549050919050565b600a546001600160a01b031633146109f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b6001600160a01b0382166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f1618a22a3b00b9ac70fd5a82f1f5cdd8cb272bd0f1b740ddf7c26ab05881dd5b910160405180910390a15050565b600a546001600160a01b03163314610acc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b8051610adf90600d906020840190611d50565b507fec7aa76ee322bd9ff6b9f70d62a749a4bfadba7751d8b4bb089b22ff0ed09bd281604051610b0f9190611eaa565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806104845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105a2565b60006001600160a01b038216610c235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105a2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b610ca36000611529565b565b6060600180546104999061216a565b6001600160a01b038216331415610d0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a2565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da13383611213565b610e135760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a2565b6108d284848484611593565b6000818152600260205260409020546060906001600160a01b0316610eac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105a2565b6000610eb661161c565b90506000815111610ed65760405180602001604052806000815250610f01565b80610ee08461162b565b604051602001610ef1929190612255565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610f625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b6001600160a01b038116610fde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a2565b610fe781611529565b50565b600a546001600160a01b031633146110445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f3001f9aa8dff6ecb9935fa57f1bbbe8318681d637b054cada338a97a69a7ccce90602001610b0f565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061113d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061048457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610484565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906111da82610b1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661129d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105a2565b60006112a883610b1a565b9050806001600160a01b0316846001600160a01b031614806112e35750836001600160a01b03166112d88461051c565b6001600160a01b0316145b8061131357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661132e82610b1a565b6001600160a01b0316146113aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105a2565b6001600160a01b0382166114255760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a2565b61143083838361175d565b61143b60008261118d565b6001600160a01b0383166000908152600360205260408120805460019290611464908490612284565b90915550506001600160a01b038216600090815260036020526040812080546001929061149290849061229b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611525828260405180602001604052806000815250611815565b5050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61159e84848461131b565b6115aa8484848461189e565b6108d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b6060600d80546104999061216a565b60608161166b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611695578061167f816121ed565b915061168e9050600a836122e2565b915061166f565b60008167ffffffffffffffff8111156116b0576116b0611faf565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415611313576116ef600183612284565b91506116fc600a866122f6565b61170790603061229b565b60f81b81838151811061171c5761171c612226565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611756600a866122e2565b94506116de565b6001600160a01b0383166117b8576117b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117db565b816001600160a01b0316836001600160a01b0316146117db576117db8382611a5a565b6001600160a01b0382166117f2576106f481611af7565b826001600160a01b0316826001600160a01b0316146106f4576106f48282611ba6565b61181f8383611bea565b61182c600084848461189e565b6106f45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b60006001600160a01b0384163b15611a4f576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906118fb90339089908890889060040161230a565b6020604051808303816000875af1925050508015611954575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261195191810190612346565b60015b611a04573d808015611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b5080516119fc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611313565b506001949350505050565b60006001611a6784610ba5565b611a719190612284565b600083815260076020526040902054909150808214611ac4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b0990600190612284565b60008381526009602052604081205460088054939450909284908110611b3157611b31612226565b906000526020600020015490508060088381548110611b5257611b52612226565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b8a57611b8a612363565b6001900381819060005260206000200160009055905550505050565b6000611bb183610ba5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a2565b6000818152600260205260409020546001600160a01b031615611ca55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a2565b611cb16000838361175d565b6001600160a01b0382166000908152600360205260408120805460019290611cda90849061229b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d5c9061216a565b90600052602060002090601f016020900481019282611d7e5760008555611dc4565b82601f10611d9757805160ff1916838001178555611dc4565b82800160010185558215611dc4579182015b82811115611dc4578251825591602001919060010190611da9565b50611dd0929150611dd4565b5090565b5b80821115611dd05760008155600101611dd5565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fe757600080fd5b600060208284031215611e2957600080fd5b8135610f0181611de9565b60005b83811015611e4f578181015183820152602001611e37565b838111156108d25750506000910152565b60008151808452611e78816020860160208601611e34565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610f016020830184611e60565b600060208284031215611ecf57600080fd5b5035919050565b80356001600160a01b0381168114611eed57600080fd5b919050565b60008060408385031215611f0557600080fd5b611f0e83611ed6565b946020939093013593505050565b600060208284031215611f2e57600080fd5b610f0182611ed6565b600080600060608486031215611f4c57600080fd5b611f5584611ed6565b9250611f6360208501611ed6565b9150604084013590509250925092565b60008060408385031215611f8657600080fd5b611f8f83611ed6565b915060208301358015158114611fa457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611ff957611ff9611faf565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561203f5761203f611faf565b8160405280935085815286868601111561205857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561208457600080fd5b813567ffffffffffffffff81111561209b57600080fd5b8201601f810184136120ac57600080fd5b61131384823560208401611fde565b600080600080608085870312156120d157600080fd5b6120da85611ed6565b93506120e860208601611ed6565b925060408501359150606085013567ffffffffffffffff81111561210b57600080fd5b8501601f8101871361211c57600080fd5b61212b87823560208401611fde565b91505092959194509250565b6000806040838503121561214a57600080fd5b61215383611ed6565b915061216160208401611ed6565b90509250929050565b600181811c9082168061217e57607f821691505b602082108114156121b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561221f5761221f6121be565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351612267818460208801611e34565b83519083019061227b818360208801611e34565b01949350505050565b600082821015612296576122966121be565b500390565b600082198211156122ae576122ae6121be565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826122f1576122f16122b3565b500490565b600082612305576123056122b3565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261233c6080830184611e60565b9695505050505050565b60006020828403121561235857600080fd5b8151610f0181611de9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220354fb295b423afb2b0914b35597091092256b3673c5106a4cf83cb72819637c064736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c806350a1676e116100f957806395d89b4111610097578063c87b56dd11610071578063c87b56dd146103b9578063e985e9c5146103cc578063f2fde38b14610408578063f3cb83851461041b57600080fd5b806395d89b411461038b578063a22cb46514610393578063b88d4fde146103a657600080fd5b80636352211e116100d35780636352211e1461034c57806370a082311461035f578063715018a6146103725780638da5cb5b1461037a57600080fd5b806350a1676e14610306578063558a72971461032657806355f804b31461033957600080fd5b806318160ddd11610166578063392f37e911610140578063392f37e9146102ba57806340c10f19146102cd57806342842e0e146102e05780634f6ccce7146102f357600080fd5b806318160ddd1461028c57806323b872dd146102945780632f745c59146102a757600080fd5b8063095ea7b311610197578063095ea7b314610226578063139a8aa41461023b57806313e7c9d81461026957600080fd5b806301ffc9a7146101be57806306fdde03146101e6578063081812fc146101fb575b600080fd5b6101d16101cc366004611e17565b61042e565b60405190151581526020015b60405180910390f35b6101ee61048a565b6040516101dd9190611eaa565b61020e610209366004611ebd565b61051c565b6040516001600160a01b0390911681526020016101dd565b610239610234366004611ef2565b6105c7565b005b61025b610249366004611ebd565b600f6020526000908152604090205481565b6040519081526020016101dd565b6101d1610277366004611f1c565b600b6020526000908152604090205460ff1681565b60085461025b565b6102396102a2366004611f37565b6106f9565b61025b6102b5366004611ef2565b610780565b600c5461020e906001600160a01b031681565b6102396102db366004611ef2565b610828565b6102396102ee366004611f37565b6108d8565b61025b610301366004611ebd565b6108f3565b61025b610314366004611ebd565b600e6020526000908152604090205481565b610239610334366004611f73565b610997565b610239610347366004612072565b610a72565b61020e61035a366004611ebd565b610b1a565b61025b61036d366004611f1c565b610ba5565b610239610c3f565b600a546001600160a01b031661020e565b6101ee610ca5565b6102396103a1366004611f73565b610cb4565b6102396103b43660046120bb565b610d97565b6101ee6103c7366004611ebd565b610e1f565b6101d16103da366004612137565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610239610416366004611f1c565b610f08565b610239610429366004611f1c565b610fea565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104845750610484826110aa565b92915050565b6060600080546104999061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546104c59061216a565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d282610b1a565b9050806001600160a01b0316836001600160a01b0316141561065c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105a2565b336001600160a01b0382161480610678575061067881336103da565b6106ea5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a2565b6106f4838361118d565b505050565b6107033382611213565b6107755760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a2565b6106f483838361131b565b600061078b83610ba5565b82106107ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016105a2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336000908152600b602052604090205460ff166108875760405162461bcd60e51b815260206004820152600d60248201527f6f6e6c79206f70657261746f720000000000000000000000000000000000000060448201526064016105a2565b6000805b828110156108d2576008546000818152600e60209081526040808320429055600f909152902043905591506108c0848361150b565b806108ca816121ed565b91505061088b565b50505050565b6106f483838360405180602001604052806000815250610d97565b60006108fe60085490565b82106109725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016105a2565b6008828154811061098557610985612226565b90600052602060002001549050919050565b600a546001600160a01b031633146109f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b6001600160a01b0382166000818152600b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f1618a22a3b00b9ac70fd5a82f1f5cdd8cb272bd0f1b740ddf7c26ab05881dd5b910160405180910390a15050565b600a546001600160a01b03163314610acc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b8051610adf90600d906020840190611d50565b507fec7aa76ee322bd9ff6b9f70d62a749a4bfadba7751d8b4bb089b22ff0ed09bd281604051610b0f9190611eaa565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806104845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105a2565b60006001600160a01b038216610c235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105a2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b610ca36000611529565b565b6060600180546104999061216a565b6001600160a01b038216331415610d0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a2565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da13383611213565b610e135760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a2565b6108d284848484611593565b6000818152600260205260409020546060906001600160a01b0316610eac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105a2565b6000610eb661161c565b90506000815111610ed65760405180602001604052806000815250610f01565b80610ee08461162b565b604051602001610ef1929190612255565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610f625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b6001600160a01b038116610fde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a2565b610fe781611529565b50565b600a546001600160a01b031633146110445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a2565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f3001f9aa8dff6ecb9935fa57f1bbbe8318681d637b054cada338a97a69a7ccce90602001610b0f565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061113d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061048457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610484565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906111da82610b1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661129d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105a2565b60006112a883610b1a565b9050806001600160a01b0316846001600160a01b031614806112e35750836001600160a01b03166112d88461051c565b6001600160a01b0316145b8061131357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661132e82610b1a565b6001600160a01b0316146113aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105a2565b6001600160a01b0382166114255760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a2565b61143083838361175d565b61143b60008261118d565b6001600160a01b0383166000908152600360205260408120805460019290611464908490612284565b90915550506001600160a01b038216600090815260036020526040812080546001929061149290849061229b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611525828260405180602001604052806000815250611815565b5050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61159e84848461131b565b6115aa8484848461189e565b6108d25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b6060600d80546104999061216a565b60608161166b57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611695578061167f816121ed565b915061168e9050600a836122e2565b915061166f565b60008167ffffffffffffffff8111156116b0576116b0611faf565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090505b8415611313576116ef600183612284565b91506116fc600a866122f6565b61170790603061229b565b60f81b81838151811061171c5761171c612226565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611756600a866122e2565b94506116de565b6001600160a01b0383166117b8576117b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117db565b816001600160a01b0316836001600160a01b0316146117db576117db8382611a5a565b6001600160a01b0382166117f2576106f481611af7565b826001600160a01b0316826001600160a01b0316146106f4576106f48282611ba6565b61181f8383611bea565b61182c600084848461189e565b6106f45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b60006001600160a01b0384163b15611a4f576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906118fb90339089908890889060040161230a565b6020604051808303816000875af1925050508015611954575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261195191810190612346565b60015b611a04573d808015611982576040519150601f19603f3d011682016040523d82523d6000602084013e611987565b606091505b5080516119fc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611313565b506001949350505050565b60006001611a6784610ba5565b611a719190612284565b600083815260076020526040902054909150808214611ac4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b0990600190612284565b60008381526009602052604081205460088054939450909284908110611b3157611b31612226565b906000526020600020015490508060088381548110611b5257611b52612226565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b8a57611b8a612363565b6001900381819060005260206000200160009055905550505050565b6000611bb183610ba5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a2565b6000818152600260205260409020546001600160a01b031615611ca55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a2565b611cb16000838361175d565b6001600160a01b0382166000908152600360205260408120805460019290611cda90849061229b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d5c9061216a565b90600052602060002090601f016020900481019282611d7e5760008555611dc4565b82601f10611d9757805160ff1916838001178555611dc4565b82800160010185558215611dc4579182015b82811115611dc4578251825591602001919060010190611da9565b50611dd0929150611dd4565b5090565b5b80821115611dd05760008155600101611dd5565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610fe757600080fd5b600060208284031215611e2957600080fd5b8135610f0181611de9565b60005b83811015611e4f578181015183820152602001611e37565b838111156108d25750506000910152565b60008151808452611e78816020860160208601611e34565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610f016020830184611e60565b600060208284031215611ecf57600080fd5b5035919050565b80356001600160a01b0381168114611eed57600080fd5b919050565b60008060408385031215611f0557600080fd5b611f0e83611ed6565b946020939093013593505050565b600060208284031215611f2e57600080fd5b610f0182611ed6565b600080600060608486031215611f4c57600080fd5b611f5584611ed6565b9250611f6360208501611ed6565b9150604084013590509250925092565b60008060408385031215611f8657600080fd5b611f8f83611ed6565b915060208301358015158114611fa457600080fd5b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115611ff957611ff9611faf565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561203f5761203f611faf565b8160405280935085815286868601111561205857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561208457600080fd5b813567ffffffffffffffff81111561209b57600080fd5b8201601f810184136120ac57600080fd5b61131384823560208401611fde565b600080600080608085870312156120d157600080fd5b6120da85611ed6565b93506120e860208601611ed6565b925060408501359150606085013567ffffffffffffffff81111561210b57600080fd5b8501601f8101871361211c57600080fd5b61212b87823560208401611fde565b91505092959194509250565b6000806040838503121561214a57600080fd5b61215383611ed6565b915061216160208401611ed6565b90509250929050565b600181811c9082168061217e57607f821691505b602082108114156121b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561221f5761221f6121be565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351612267818460208801611e34565b83519083019061227b818360208801611e34565b01949350505050565b600082821015612296576122966121be565b500390565b600082198211156122ae576122ae6121be565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826122f1576122f16122b3565b500490565b600082612305576123056122b3565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261233c6080830184611e60565b9695505050505050565b60006020828403121561235857600080fd5b8151610f0181611de9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220354fb295b423afb2b0914b35597091092256b3673c5106a4cf83cb72819637c064736f6c634300080a0033

Deployed Bytecode Sourcemap

45776:608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38391:224;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;38391:224:0;;;;;;;;25053:100;;;:::i;:::-;;;;;;;:::i;26612:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;26612:221:0;1633:226:1;26135:411:0;;;;;;:::i;:::-;;:::i;:::-;;45882:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2470:25:1;;;2458:2;2443:18;45882:50:0;2324:177:1;3376:41:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;39031:113;39119:10;:17;39031:113;;27502:339;;;;;;:::i;:::-;;:::i;38699:256::-;;;;;;:::i;:::-;;:::i;44765:23::-;;;;;-1:-1:-1;;;;;44765:23:0;;;46042:339;;;;;;:::i;:::-;;:::i;27912:185::-;;;;;;:::i;:::-;;:::i;39221:233::-;;;;;;:::i;:::-;;:::i;45830:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;3482:166;;;;;;:::i;:::-;;:::i;45155:129::-;;;;;;:::i;:::-;;:::i;24747:239::-;;;;;;:::i;:::-;;:::i;24477:208::-;;;;;;:::i;:::-;;:::i;2602:94::-;;;:::i;1951:87::-;2024:6;;-1:-1:-1;;;;;2024:6:0;1951:87;;25222:104;;;:::i;26905:295::-;;;;;;:::i;:::-;;:::i;28168:328::-;;;;;;:::i;:::-;;:::i;25397:334::-;;;;;;:::i;:::-;;:::i;27271:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27392:25:0;;;27368:4;27392:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27271:164;2851:192;;;;;;:::i;:::-;;:::i;45339:136::-;;;;;;:::i;:::-;;:::i;38391:224::-;38493:4;38517:50;;;38532:35;38517:50;;:90;;;38571:36;38595:11;38571:23;:36::i;:::-;38510:97;38391:224;-1:-1:-1;;38391:224:0:o;25053:100::-;25107:13;25140:5;25133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25053:100;:::o;26612:221::-;26688:7;30095:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30095:16:0;26708:73;;;;-1:-1:-1;;;26708:73:0;;6304:2:1;26708:73:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:34;6362:18;;;6355:62;6453:14;6433:18;;;6426:42;6485:19;;26708:73:0;;;;;;;;;-1:-1:-1;26801:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26801:24:0;;26612:221::o;26135:411::-;26216:13;26232:23;26247:7;26232:14;:23::i;:::-;26216:39;;26280:5;-1:-1:-1;;;;;26274:11:0;:2;-1:-1:-1;;;;;26274:11:0;;;26266:57;;;;-1:-1:-1;;;26266:57:0;;6717:2:1;26266:57:0;;;6699:21:1;6756:2;6736:18;;;6729:30;6795:34;6775:18;;;6768:62;6866:3;6846:18;;;6839:31;6887:19;;26266:57:0;6515:397:1;26266:57:0;749:10;-1:-1:-1;;;;;26358:21:0;;;;:62;;-1:-1:-1;26383:37:0;26400:5;749:10;27271:164;:::i;26383:37::-;26336:168;;;;-1:-1:-1;;;26336:168:0;;7119:2:1;26336:168:0;;;7101:21:1;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;7268:26;7248:18;;;7241:54;7312:19;;26336:168:0;6917:420:1;26336:168:0;26517:21;26526:2;26530:7;26517:8;:21::i;:::-;26205:341;26135:411;;:::o;27502:339::-;27697:41;749:10;27730:7;27697:18;:41::i;:::-;27689:103;;;;-1:-1:-1;;;27689:103:0;;7544:2:1;27689:103:0;;;7526:21:1;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;7693:19;7673:18;;;7666:47;7730:19;;27689:103:0;7342:413:1;27689:103:0;27805:28;27815:4;27821:2;27825:7;27805:9;:28::i;38699:256::-;38796:7;38832:23;38849:5;38832:16;:23::i;:::-;38824:5;:31;38816:87;;;;-1:-1:-1;;;38816:87:0;;7962:2:1;38816:87:0;;;7944:21:1;8001:2;7981:18;;;7974:30;8040:34;8020:18;;;8013:62;8111:13;8091:18;;;8084:41;8142:19;;38816:87:0;7760:407:1;38816:87:0;-1:-1:-1;;;;;;38921:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38699:256::o;46042:339::-;3709:10;3699:21;;;;:9;:21;;;;;;;;3691:47;;;;-1:-1:-1;;;3691:47:0;;8374:2:1;3691:47:0;;;8356:21:1;8413:2;8393:18;;;8386:30;8452:15;8432:18;;;8425:43;8485:18;;3691:47:0;8172:337:1;3691:47:0;46128:12:::1;46156:6:::0;46151:223:::1;46168:7;46164:1;:11;46151:223;;;39119:10:::0;:17;46235:18:::1;::::0;;;:9:::1;:18;::::0;;;;;;;46256:15:::1;46235:36:::0;;46286:14:::1;:23:::0;;;;;46312:12:::1;46286:38:::0;;46197:23;-1:-1:-1;46339:23:0::1;46349:3:::0;46197:23;46339:9:::1;:23::i;:::-;46177:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46151:223;;;;46117:264;46042:339:::0;;:::o;27912:185::-;28050:39;28067:4;28073:2;28077:7;28050:39;;;;;;;;;;;;:16;:39::i;39221:233::-;39296:7;39332:30;39119:10;:17;;39031:113;39332:30;39324:5;:38;39316:95;;;;-1:-1:-1;;;39316:95:0;;9105:2:1;39316:95:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183:34;9163:18;;;9156:62;9254:14;9234:18;;;9227:42;9286:19;;39316:95:0;8903:408:1;39316:95:0;39429:10;39440:5;39429:17;;;;;;;;:::i;:::-;;;;;;;;;39422:24;;39221:233;;;:::o;3482:166::-;2024:6;;-1:-1:-1;;;;;2024:6:0;749:10;2171:23;2163:68;;;;-1:-1:-1;;;2163:68:0;;9707:2:1;2163:68:0;;;9689:21:1;;;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9837:18;;2163:68:0;9505:356:1;2163:68:0;-1:-1:-1;;;;;3565:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;;;;:29;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;3610:30;;10034:74:1;;;10124:18;;;10117:50;3610:30:0::1;::::0;10007:18:1;3610:30:0::1;;;;;;;3482:166:::0;;:::o;45155:129::-;2024:6;;-1:-1:-1;;;;;2024:6:0;749:10;2171:23;2163:68;;;;-1:-1:-1;;;2163:68:0;;9707:2:1;2163:68:0;;;9689:21:1;;;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9837:18;;2163:68:0;9505:356:1;2163:68:0;45225:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45260:16;45271:4;45260:16;;;;;;:::i;:::-;;;;;;;;45155:129:::0;:::o;24747:239::-;24819:7;24855:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24855:16:0;24890:19;24882:73;;;;-1:-1:-1;;;24882:73:0;;10380:2:1;24882:73:0;;;10362:21:1;10419:2;10399:18;;;10392:30;10458:34;10438:18;;;10431:62;10529:11;10509:18;;;10502:39;10558:19;;24882:73:0;10178:405:1;24477:208:0;24549:7;-1:-1:-1;;;;;24577:19:0;;24569:74;;;;-1:-1:-1;;;24569:74:0;;10790:2:1;24569:74:0;;;10772:21:1;10829:2;10809:18;;;10802:30;10868:34;10848:18;;;10841:62;10939:12;10919:18;;;10912:40;10969:19;;24569:74:0;10588:406:1;24569:74:0;-1:-1:-1;;;;;;24661:16:0;;;;;:9;:16;;;;;;;24477:208::o;2602:94::-;2024:6;;-1:-1:-1;;;;;2024:6:0;749:10;2171:23;2163:68;;;;-1:-1:-1;;;2163:68:0;;9707:2:1;2163:68:0;;;9689:21:1;;;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9837:18;;2163:68:0;9505:356:1;2163:68:0;2667:21:::1;2685:1;2667:9;:21::i;:::-;2602:94::o:0;25222:104::-;25278:13;25311:7;25304:14;;;;;:::i;26905:295::-;-1:-1:-1;;;;;27008:24:0;;749:10;27008:24;;27000:62;;;;-1:-1:-1;;;27000:62:0;;11201:2:1;27000:62:0;;;11183:21:1;11240:2;11220:18;;;11213:30;11279:27;11259:18;;;11252:55;11324:18;;27000:62:0;10999:349:1;27000:62:0;749:10;27075:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27075:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;27144:48;;586:41:1;;;27075:42:0;;749:10;27144:48;;559:18:1;27144:48:0;;;;;;;26905:295;;:::o;28168:328::-;28343:41;749:10;28376:7;28343:18;:41::i;:::-;28335:103;;;;-1:-1:-1;;;28335:103:0;;7544:2:1;28335:103:0;;;7526:21:1;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;7693:19;7673:18;;;7666:47;7730:19;;28335:103:0;7342:413:1;28335:103:0;28449:39;28463:4;28469:2;28473:7;28482:5;28449:13;:39::i;25397:334::-;30071:4;30095:16;;;:7;:16;;;;;;25470:13;;-1:-1:-1;;;;;30095:16:0;25496:76;;;;-1:-1:-1;;;25496:76:0;;11555:2:1;25496:76:0;;;11537:21:1;11594:2;11574:18;;;11567:30;11633:34;11613:18;;;11606:62;11704:17;11684:18;;;11677:45;11739:19;;25496:76:0;11353:411:1;25496:76:0;25585:21;25609:10;:8;:10::i;:::-;25585:34;;25661:1;25643:7;25637:21;:25;:86;;;;;;;;;;;;;;;;;25689:7;25698:18;:7;:16;:18::i;:::-;25672:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25637:86;25630:93;25397:334;-1:-1:-1;;;25397:334:0:o;2851:192::-;2024:6;;-1:-1:-1;;;;;2024:6:0;749:10;2171:23;2163:68;;;;-1:-1:-1;;;2163:68:0;;9707:2:1;2163:68:0;;;9689:21:1;;;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9837:18;;2163:68:0;9505:356:1;2163:68:0;-1:-1:-1;;;;;2940:22:0;::::1;2932:73;;;::::0;-1:-1:-1;;;2932:73:0;;12446:2:1;2932:73:0::1;::::0;::::1;12428:21:1::0;12485:2;12465:18;;;12458:30;12524:34;12504:18;;;12497:62;12595:8;12575:18;;;12568:36;12621:19;;2932:73:0::1;12244:402:1::0;2932:73:0::1;3016:19;3026:8;3016:9;:19::i;:::-;2851:192:::0;:::o;45339:136::-;2024:6;;-1:-1:-1;;;;;2024:6:0;749:10;2171:23;2163:68;;;;-1:-1:-1;;;2163:68:0;;9707:2:1;2163:68:0;;;9689:21:1;;;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9837:18;;2163:68:0;9505:356:1;2163:68:0;45409:8:::1;:20:::0;;;::::1;-1:-1:-1::0;;;;;45409:20:0;::::1;::::0;;::::1;::::0;;;45445:22:::1;::::0;1779:74:1;;;45445:22:0::1;::::0;1767:2:1;1752:18;45445:22:0::1;1633:226:1::0;24108:305:0;24210:4;24247:40;;;24262:25;24247:40;;:105;;-1:-1:-1;24304:48:0;;;24319:33;24304:48;24247:105;:158;;;-1:-1:-1;22281:25:0;22266:40;;;;24369:36;22157:157;33988:174;34063:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;34063:29:0;;;;;;;;:24;;34117:23;34063:24;34117:14;:23::i;:::-;-1:-1:-1;;;;;34108:46:0;;;;;;;;;;;33988:174;;:::o;30300:348::-;30393:4;30095:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30095:16:0;30410:73;;;;-1:-1:-1;;;30410:73:0;;12853:2:1;30410:73:0;;;12835:21:1;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;13002:14;12982:18;;;12975:42;13034:19;;30410:73:0;12651:408:1;30410:73:0;30494:13;30510:23;30525:7;30510:14;:23::i;:::-;30494:39;;30563:5;-1:-1:-1;;;;;30552:16:0;:7;-1:-1:-1;;;;;30552:16:0;;:51;;;;30596:7;-1:-1:-1;;;;;30572:31:0;:20;30584:7;30572:11;:20::i;:::-;-1:-1:-1;;;;;30572:31:0;;30552:51;:87;;;-1:-1:-1;;;;;;27392:25:0;;;27368:4;27392:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30607:32;30544:96;30300:348;-1:-1:-1;;;;30300:348:0:o;33292:578::-;33451:4;-1:-1:-1;;;;;33424:31:0;:23;33439:7;33424:14;:23::i;:::-;-1:-1:-1;;;;;33424:31:0;;33416:85;;;;-1:-1:-1;;;33416:85:0;;13266:2:1;33416:85:0;;;13248:21:1;13305:2;13285:18;;;13278:30;13344:34;13324:18;;;13317:62;13415:11;13395:18;;;13388:39;13444:19;;33416:85:0;13064:405:1;33416:85:0;-1:-1:-1;;;;;33520:16:0;;33512:65;;;;-1:-1:-1;;;33512:65:0;;13676:2:1;33512:65:0;;;13658:21:1;13715:2;13695:18;;;13688:30;13754:34;13734:18;;;13727:62;13825:6;13805:18;;;13798:34;13849:19;;33512:65:0;13474:400:1;33512:65:0;33590:39;33611:4;33617:2;33621:7;33590:20;:39::i;:::-;33694:29;33711:1;33715:7;33694:8;:29::i;:::-;-1:-1:-1;;;;;33736:15:0;;;;;;:9;:15;;;;;:20;;33755:1;;33736:15;:20;;33755:1;;33736:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33767:13:0;;;;;;:9;:13;;;;;:18;;33784:1;;33767:13;:18;;33784:1;;33767:18;:::i;:::-;;;;-1:-1:-1;;33796:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;33796:21:0;;;;;;;;;33835:27;;33796:16;;33835:27;;;;;;;33292:578;;;:::o;30990:110::-;31066:26;31076:2;31080:7;31066:26;;;;;;;;;;;;:9;:26::i;:::-;30990:110;;:::o;3051:173::-;3126:6;;;-1:-1:-1;;;;;3143:17:0;;;;;;;;;;;3176:40;;3126:6;;;3143:17;3126:6;;3176:40;;3107:16;;3176:40;3096:128;3051:173;:::o;29378:315::-;29535:28;29545:4;29551:2;29555:7;29535:9;:28::i;:::-;29582:48;29605:4;29611:2;29615:7;29624:5;29582:22;:48::i;:::-;29574:111;;;;-1:-1:-1;;;29574:111:0;;14344:2:1;29574:111:0;;;14326:21:1;14383:2;14363:18;;;14356:30;14422:34;14402:18;;;14395:62;14493:20;14473:18;;;14466:48;14531:19;;29574:111:0;14142:414:1;45483:121:0;45551:13;45584:12;45577:19;;;;;:::i;19516:723::-;19572:13;19793:10;19789:53;;-1:-1:-1;;19820:10:0;;;;;;;;;;;;;;;;;;19516:723::o;19789:53::-;19867:5;19852:12;19908:78;19915:9;;19908:78;;19941:8;;;;:::i;:::-;;-1:-1:-1;19964:10:0;;-1:-1:-1;19972:2:0;19964:10;;:::i;:::-;;;19908:78;;;19996:19;20028:6;20018:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20018:17:0;;19996:39;;20046:154;20053:10;;20046:154;;20080:11;20090:1;20080:11;;:::i;:::-;;-1:-1:-1;20149:10:0;20157:2;20149:5;:10;:::i;:::-;20136:24;;:2;:24;:::i;:::-;20123:39;;20106:6;20113;20106:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;20177:11:0;20186:2;20177:11;;:::i;:::-;;;20046:154;;40067:589;-1:-1:-1;;;;;40273:18:0;;40269:187;;40308:40;40340:7;41483:10;:17;;41456:24;;;;:15;:24;;;;;:44;;;41511:24;;;;;;;;;;;;41379:164;40308:40;40269:187;;;40378:2;-1:-1:-1;;;;;40370:10:0;:4;-1:-1:-1;;;;;40370:10:0;;40366:90;;40397:47;40430:4;40436:7;40397:32;:47::i;:::-;-1:-1:-1;;;;;40470:16:0;;40466:183;;40503:45;40540:7;40503:36;:45::i;40466:183::-;40576:4;-1:-1:-1;;;;;40570:10:0;:2;-1:-1:-1;;;;;40570:10:0;;40566:83;;40597:40;40625:2;40629:7;40597:27;:40::i;31327:321::-;31457:18;31463:2;31467:7;31457:5;:18::i;:::-;31508:54;31539:1;31543:2;31547:7;31556:5;31508:22;:54::i;:::-;31486:154;;;;-1:-1:-1;;;31486:154:0;;14344:2:1;31486:154:0;;;14326:21:1;14383:2;14363:18;;;14356:30;14422:34;14402:18;;;14395:62;14493:20;14473:18;;;14466:48;14531:19;;31486:154:0;14142:414:1;34727:803:0;34882:4;-1:-1:-1;;;;;34903:13:0;;12400:20;12448:8;34899:624;;34939:72;;;;;-1:-1:-1;;;;;34939:36:0;;;;;:72;;749:10;;34990:4;;34996:7;;35005:5;;34939:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34939:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34935:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35185:13:0;;35181:272;;35228:60;;-1:-1:-1;;;35228:60:0;;14344:2:1;35228:60:0;;;14326:21:1;14383:2;14363:18;;;14356:30;14422:34;14402:18;;;14395:62;14493:20;14473:18;;;14466:48;14531:19;;35228:60:0;14142:414:1;35181:272:0;35403:6;35397:13;35388:6;35384:2;35380:15;35373:38;34935:533;35062:55;;35072:45;35062:55;;-1:-1:-1;35055:62:0;;34899:624;-1:-1:-1;35507:4:0;34727:803;;;;;;:::o;42170:988::-;42436:22;42486:1;42461:22;42478:4;42461:16;:22::i;:::-;:26;;;;:::i;:::-;42498:18;42519:26;;;:17;:26;;;;;;42436:51;;-1:-1:-1;42652:28:0;;;42648:328;;-1:-1:-1;;;;;42719:18:0;;42697:19;42719:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42770:30;;;;;;:44;;;42887:30;;:17;:30;;;;;:43;;;42648:328;-1:-1:-1;43072:26:0;;;;:17;:26;;;;;;;;43065:33;;;-1:-1:-1;;;;;43116:18:0;;;;;:12;:18;;;;;:34;;;;;;;43109:41;42170:988::o;43453:1079::-;43731:10;:17;43706:22;;43731:21;;43751:1;;43731:21;:::i;:::-;43763:18;43784:24;;;:15;:24;;;;;;44157:10;:26;;43706:46;;-1:-1:-1;43784:24:0;;43706:46;;44157:26;;;;;;:::i;:::-;;;;;;;;;44135:48;;44221:11;44196:10;44207;44196:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44301:28;;;:15;:28;;;;;;;:41;;;44473:24;;;;;44466:31;44508:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43524:1008;;;43453:1079;:::o;40957:221::-;41042:14;41059:20;41076:2;41059:16;:20::i;:::-;-1:-1:-1;;;;;41090:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41135:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40957:221:0:o;31984:382::-;-1:-1:-1;;;;;32064:16:0;;32056:61;;;;-1:-1:-1;;;32056:61:0;;16154:2:1;32056:61:0;;;16136:21:1;;;16173:18;;;16166:30;16232:34;16212:18;;;16205:62;16284:18;;32056:61:0;15952:356:1;32056:61:0;30071:4;30095:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30095:16:0;:30;32128:58;;;;-1:-1:-1;;;32128:58:0;;16515:2:1;32128:58:0;;;16497:21:1;16554:2;16534:18;;;16527:30;16593;16573:18;;;16566:58;16641:18;;32128:58:0;16313:352:1;32128:58:0;32199:45;32228:1;32232:2;32236:7;32199:20;:45::i;:::-;-1:-1:-1;;;;;32257:13:0;;;;;;:9;:13;;;;;:18;;32274:1;;32257:13;:18;;32274:1;;32257:18;:::i;:::-;;;;-1:-1:-1;;32286:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;32286:21:0;;;;;;;;32325:33;;32286:16;;;32325:33;;32286:16;;32325:33;31984:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:1;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:186::-;2565:6;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;2657:29;2676:9;2657:29;:::i;2697:328::-;2774:6;2782;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;:::-;2872:39;;2930:38;2964:2;2953:9;2949:18;2930:38;:::i;:::-;2920:48;;3015:2;3004:9;3000:18;2987:32;2977:42;;2697:328;;;;;:::o;3030:347::-;3095:6;3103;3156:2;3144:9;3135:7;3131:23;3127:32;3124:52;;;3172:1;3169;3162:12;3124:52;3195:29;3214:9;3195:29;:::i;:::-;3185:39;;3274:2;3263:9;3259:18;3246:32;3321:5;3314:13;3307:21;3300:5;3297:32;3287:60;;3343:1;3340;3333:12;3287:60;3366:5;3356:15;;;3030:347;;;;;:::o;3382:184::-;3434:77;3431:1;3424:88;3531:4;3528:1;3521:15;3555:4;3552:1;3545:15;3571:691;3636:5;3666:18;3707:2;3699:6;3696:14;3693:40;;;3713:18;;:::i;:::-;3847:2;3841:9;3913:2;3901:15;;3752:66;3897:24;;;3923:2;3893:33;3889:42;3877:55;;;3947:18;;;3967:22;;;3944:46;3941:72;;;3993:18;;:::i;:::-;4033:10;4029:2;4022:22;4062:6;4053:15;;4092:6;4084;4077:22;4132:3;4123:6;4118:3;4114:16;4111:25;4108:45;;;4149:1;4146;4139:12;4108:45;4199:6;4194:3;4187:4;4179:6;4175:17;4162:44;4254:1;4247:4;4238:6;4230;4226:19;4222:30;4215:41;;;;3571:691;;;;;:::o;4267:451::-;4336:6;4389:2;4377:9;4368:7;4364:23;4360:32;4357:52;;;4405:1;4402;4395:12;4357:52;4445:9;4432:23;4478:18;4470:6;4467:30;4464:50;;;4510:1;4507;4500:12;4464:50;4533:22;;4586:4;4578:13;;4574:27;-1:-1:-1;4564:55:1;;4615:1;4612;4605:12;4564:55;4638:74;4704:7;4699:2;4686:16;4681:2;4677;4673:11;4638:74;:::i;4723:667::-;4818:6;4826;4834;4842;4895:3;4883:9;4874:7;4870:23;4866:33;4863:53;;;4912:1;4909;4902:12;4863:53;4935:29;4954:9;4935:29;:::i;:::-;4925:39;;4983:38;5017:2;5006:9;5002:18;4983:38;:::i;:::-;4973:48;;5068:2;5057:9;5053:18;5040:32;5030:42;;5123:2;5112:9;5108:18;5095:32;5150:18;5142:6;5139:30;5136:50;;;5182:1;5179;5172:12;5136:50;5205:22;;5258:4;5250:13;;5246:27;-1:-1:-1;5236:55:1;;5287:1;5284;5277:12;5236:55;5310:74;5376:7;5371:2;5358:16;5353:2;5349;5345:11;5310:74;:::i;:::-;5300:84;;;4723:667;;;;;;;:::o;5395:260::-;5463:6;5471;5524:2;5512:9;5503:7;5499:23;5495:32;5492:52;;;5540:1;5537;5530:12;5492:52;5563:29;5582:9;5563:29;:::i;:::-;5553:39;;5611:38;5645:2;5634:9;5630:18;5611:38;:::i;:::-;5601:48;;5395:260;;;;;:::o;5660:437::-;5739:1;5735:12;;;;5782;;;5803:61;;5857:4;5849:6;5845:17;5835:27;;5803:61;5910:2;5902:6;5899:14;5879:18;5876:38;5873:218;;;5947:77;5944:1;5937:88;6048:4;6045:1;6038:15;6076:4;6073:1;6066:15;5873:218;;5660:437;;;:::o;8514:184::-;8566:77;8563:1;8556:88;8663:4;8660:1;8653:15;8687:4;8684:1;8677:15;8703:195;8742:3;8773:66;8766:5;8763:77;8760:103;;;8843:18;;:::i;:::-;-1:-1:-1;8890:1:1;8879:13;;8703:195::o;9316:184::-;9368:77;9365:1;9358:88;9465:4;9462:1;9455:15;9489:4;9486:1;9479:15;11769:470;11948:3;11986:6;11980:13;12002:53;12048:6;12043:3;12036:4;12028:6;12024:17;12002:53;:::i;:::-;12118:13;;12077:16;;;;12140:57;12118:13;12077:16;12174:4;12162:17;;12140:57;:::i;:::-;12213:20;;11769:470;-1:-1:-1;;;;11769:470:1:o;13879:125::-;13919:4;13947:1;13944;13941:8;13938:34;;;13952:18;;:::i;:::-;-1:-1:-1;13989:9:1;;13879:125::o;14009:128::-;14049:3;14080:1;14076:6;14073:1;14070:13;14067:39;;;14086:18;;:::i;:::-;-1:-1:-1;14122:9:1;;14009:128::o;14561:184::-;14613:77;14610:1;14603:88;14710:4;14707:1;14700:15;14734:4;14731:1;14724:15;14750:120;14790:1;14816;14806:35;;14821:18;;:::i;:::-;-1:-1:-1;14855:9:1;;14750:120::o;14875:112::-;14907:1;14933;14923:35;;14938:18;;:::i;:::-;-1:-1:-1;14972:9:1;;14875:112::o;14992:512::-;15186:4;-1:-1:-1;;;;;15296:2:1;15288:6;15284:15;15273:9;15266:34;15348:2;15340:6;15336:15;15331:2;15320:9;15316:18;15309:43;;15388:6;15383:2;15372:9;15368:18;15361:34;15431:3;15426:2;15415:9;15411:18;15404:31;15452:46;15493:3;15482:9;15478:19;15470:6;15452:46;:::i;:::-;15444:54;14992:512;-1:-1:-1;;;;;;14992:512:1:o;15509:249::-;15578:6;15631:2;15619:9;15610:7;15606:23;15602:32;15599:52;;;15647:1;15644;15637:12;15599:52;15679:9;15673:16;15698:30;15722:5;15698:30;:::i;15763:184::-;15815:77;15812:1;15805:88;15912:4;15909:1;15902:15;15936:4;15933:1;15926:15

Swarm Source

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