ETH Price: $2,484.81 (-1.44%)

Token

Cocaine Chickens (CC)
 

Overview

Max Total Supply

71 CC

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CC
0x303AF56890f4296b29189650027Dea2715313168
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:
CocaineChickens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// File: contracts/cocainechickens.sol

/**
 *Submitted for verification at Etherscan.io on 2021-12-08
*/

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

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




pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/CocaineChickens.sol


pragma solidity ^0.8.2;




contract CocaineChickens is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    
    uint public constant MAX_SUPPLY = 6969;
    uint public price = 0.0169 ether;
    uint public maxFreeMint = 696;
    uint public maxFreeMintPerWallet = 10;
    bool public isSalesActive = false;
    
    mapping(address => uint) public addressToFreeMinted;

    constructor() ERC721("Cocaine Chickens", "CC") {
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    function freeMint() external {
        require(isSalesActive, "sale is not active");
        require(totalSupply() < maxFreeMint, "theres no free mints remaining");
        require(addressToFreeMinted[msg.sender] < maxFreeMintPerWallet, "caller already minted for free");
        
        addressToFreeMinted[msg.sender]++;
        safeMint(msg.sender);
    }
    
    function mint(uint quantity) external payable {
        require(isSalesActive, "sale is not active");
        require(quantity <= 50, "max mints per transaction exceeded");
        require(totalSupply() + quantity <= MAX_SUPPLY, "sold out");
        require(msg.value >= price * quantity, "ether send is under price");
        
        for (uint i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }
    
    function totalSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }
    

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

    
    function toggleSales() external onlyOwner {
        isSalesActive = !isSalesActive;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052663c0a75e0b440006009556102b8600a908155600b55600c805460ff191690553480156200003157600080fd5b50604080518082018252601081526f436f6361696e6520436869636b656e7360801b602080830191825283518085019094526002845261434360f01b908401528151919291620000849160009162000113565b5080516200009a90600190602084019062000113565b505050620000b7620000b1620000bd60201b60201c565b620000c1565b620001f6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012190620001b9565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600181811c90821680620001ce57607f821691505b60208210811415620001f057634e487b7160e01b600052602260045260246000fd5b50919050565b611d4680620002066000396000f3fe6080604052600436106101c25760003560e01c8063845bb3bb116100f7578063a22cb46511610095578063daa81cdd11610064578063daa81cdd146104c5578063dbd30ae0146104df578063e985e9c5146104f4578063f2fde38b1461053d57600080fd5b8063a22cb4651461044f578063a591252d1461046f578063b88d4fde14610485578063c87b56dd146104a557600080fd5b806391b7f5ed116100d157806391b7f5ed146103f157806395d89b4114610411578063a035b1fe14610426578063a0712d681461043c57600080fd5b8063845bb3bb146103a8578063853828b6146103be5780638da5cb5b146103d357600080fd5b806342842e0e116101645780636352211e1161013e5780636352211e1461032657806370a0823114610346578063715018a6146103665780637fc461891461037b57600080fd5b806342842e0e146102d157806355f804b3146102f15780635b70ea9f1461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806332cb6b0c146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461198b565b61055d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105af565b6040516101f39190611abf565b34801561022a57600080fd5b5061023e610239366004611a0e565b610641565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611961565b6106db565b005b34801561028457600080fd5b5061028d6107f1565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b636600461186d565b610801565b3480156102c757600080fd5b5061028d611b3981565b3480156102dd57600080fd5b506102766102ec36600461186d565b610832565b3480156102fd57600080fd5b5061027661030c3660046119c5565b61084d565b34801561031d57600080fd5b5061027661088e565b34801561033257600080fd5b5061023e610341366004611a0e565b6109b8565b34801561035257600080fd5b5061028d61036136600461181f565b610a2f565b34801561037257600080fd5b50610276610ab6565b34801561038757600080fd5b5061028d61039636600461181f565b600d6020526000908152604090205481565b3480156103b457600080fd5b5061028d600b5481565b3480156103ca57600080fd5b50610276610aea565b3480156103df57600080fd5b506006546001600160a01b031661023e565b3480156103fd57600080fd5b5061027661040c366004611a0e565b610b38565b34801561041d57600080fd5b50610211610b67565b34801561043257600080fd5b5061028d60095481565b61027661044a366004611a0e565b610b76565b34801561045b57600080fd5b5061027661046a366004611925565b610ceb565b34801561047b57600080fd5b5061028d600a5481565b34801561049157600080fd5b506102766104a03660046118a9565b610db0565b3480156104b157600080fd5b506102116104c0366004611a0e565b610de8565b3480156104d157600080fd5b50600c546101e79060ff1681565b3480156104eb57600080fd5b50610276610ec3565b34801561050057600080fd5b506101e761050f36600461183a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054957600080fd5b5061027661055836600461181f565b610f01565b60006001600160e01b031982166380ac58cd60e01b148061058e57506001600160e01b03198216635b5e139f60e01b145b806105a957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105be90611c38565b80601f01602080910402602001604051908101604052809291908181526020018280546105ea90611c38565b80156106375780601f1061060c57610100808354040283529160200191610637565b820191906000526020600020905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e6826109b8565b9050806001600160a01b0316836001600160a01b031614156107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b6565b336001600160a01b03821614806107705750610770813361050f565b6107e25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b6565b6107ec8383610f9c565b505050565b60006107fc60075490565b905090565b61080b338261100a565b6108275760405162461bcd60e51b81526004016106b690611b59565b6107ec838383611101565b6107ec83838360405180602001604052806000815250610db0565b6006546001600160a01b031633146108775760405162461bcd60e51b81526004016106b690611b24565b805161088a9060089060208401906116f4565b5050565b600c5460ff166108d55760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106b6565b600a546108e06107f1565b1061092d5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e67000060448201526064016106b6565b600b54336000908152600d60205260409020541061098d5760405162461bcd60e51b815260206004820152601e60248201527f63616c6c657220616c7265616479206d696e74656420666f722066726565000060448201526064016106b6565b336000908152600d602052604081208054916109a883611c73565b91905055506109b6336112a1565b565b6000818152600260205260408120546001600160a01b0316806105a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b6565b60006001600160a01b038216610a9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae05760405162461bcd60e51b81526004016106b690611b24565b6109b660006112c6565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016106b690611b24565b60405133904780156108fc02916000818181858888f193505050506109b657600080fd5b6006546001600160a01b03163314610b625760405162461bcd60e51b81526004016106b690611b24565b600955565b6060600180546105be90611c38565b600c5460ff16610bbd5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106b6565b6032811115610c195760405162461bcd60e51b815260206004820152602260248201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106b6565b611b3981610c256107f1565b610c2f9190611baa565b1115610c685760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106b6565b80600954610c769190611bd6565b341015610cc55760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e6465722070726963650000000000000060448201526064016106b6565b60005b8181101561088a57610cd9336112a1565b80610ce381611c73565b915050610cc8565b6001600160a01b038216331415610d445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dba338361100a565b610dd65760405162461bcd60e51b81526004016106b690611b59565b610de284848484611318565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b6565b6000610e7161134b565b90506000815111610e915760405180602001604052806000815250610ebc565b80610e9b8461135a565b604051602001610eac929190611a53565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610eed5760405162461bcd60e51b81526004016106b690611b24565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016106b690611b24565b6001600160a01b038116610f905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b6565b610f99816112c6565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fd1826109b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b6565b600061108e836109b8565b9050806001600160a01b0316846001600160a01b031614806110c95750836001600160a01b03166110be84610641565b6001600160a01b0316145b806110f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611114826109b8565b6001600160a01b03161461117c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b6565b6001600160a01b0382166111de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b6565b6111e9600082610f9c565b6001600160a01b0383166000908152600360205260408120805460019290611212908490611bf5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611240908490611baa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006112ac60075490565b90506112bc600780546001019055565b61088a8282611458565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611323848484611101565b61132f84848484611472565b610de25760405162461bcd60e51b81526004016106b690611ad2565b6060600880546105be90611c38565b60608161137e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a8578061139281611c73565b91506113a19050600a83611bc2565b9150611382565b60008167ffffffffffffffff8111156113c3576113c3611ce4565b6040519080825280601f01601f1916602001820160405280156113ed576020820181803683370190505b5090505b84156110f957611402600183611bf5565b915061140f600a86611c8e565b61141a906030611baa565b60f81b81838151811061142f5761142f611cce565b60200101906001600160f81b031916908160001a905350611451600a86611bc2565b94506113f1565b61088a82826040518060200160405280600081525061157f565b60006001600160a01b0384163b1561157457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114b6903390899088908890600401611a82565b602060405180830381600087803b1580156114d057600080fd5b505af1925050508015611500575060408051601f3d908101601f191682019092526114fd918101906119a8565b60015b61155a573d80801561152e576040519150601f19603f3d011682016040523d82523d6000602084013e611533565b606091505b5080516115525760405162461bcd60e51b81526004016106b690611ad2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f9565b506001949350505050565b61158983836115b2565b6115966000848484611472565b6107ec5760405162461bcd60e51b81526004016106b690611ad2565b6001600160a01b0382166116085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b6565b6000818152600260205260409020546001600160a01b03161561166d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b6565b6001600160a01b0382166000908152600360205260408120805460019290611696908490611baa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461170090611c38565b90600052602060002090601f0160209004810192826117225760008555611768565b82601f1061173b57805160ff1916838001178555611768565b82800160010185558215611768579182015b8281111561176857825182559160200191906001019061174d565b50611774929150611778565b5090565b5b808211156117745760008155600101611779565b600067ffffffffffffffff808411156117a8576117a8611ce4565b604051601f8501601f19908116603f011681019082821181831017156117d0576117d0611ce4565b816040528093508581528686860111156117e957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461181a57600080fd5b919050565b60006020828403121561183157600080fd5b610ebc82611803565b6000806040838503121561184d57600080fd5b61185683611803565b915061186460208401611803565b90509250929050565b60008060006060848603121561188257600080fd5b61188b84611803565b925061189960208501611803565b9150604084013590509250925092565b600080600080608085870312156118bf57600080fd5b6118c885611803565b93506118d660208601611803565b925060408501359150606085013567ffffffffffffffff8111156118f957600080fd5b8501601f8101871361190a57600080fd5b6119198782356020840161178d565b91505092959194509250565b6000806040838503121561193857600080fd5b61194183611803565b91506020830135801515811461195657600080fd5b809150509250929050565b6000806040838503121561197457600080fd5b61197d83611803565b946020939093013593505050565b60006020828403121561199d57600080fd5b8135610ebc81611cfa565b6000602082840312156119ba57600080fd5b8151610ebc81611cfa565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6110f98482356020840161178d565b600060208284031215611a2057600080fd5b5035919050565b60008151808452611a3f816020860160208601611c0c565b601f01601f19169290920160200192915050565b60008351611a65818460208801611c0c565b835190830190611a79818360208801611c0c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab590830184611a27565b9695505050505050565b602081526000610ebc6020830184611a27565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bbd57611bbd611ca2565b500190565b600082611bd157611bd1611cb8565b500490565b6000816000190483118215151615611bf057611bf0611ca2565b500290565b600082821015611c0757611c07611ca2565b500390565b60005b83811015611c27578181015183820152602001611c0f565b83811115610de25750506000910152565b600181811c90821680611c4c57607f821691505b60208210811415611c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c8757611c87611ca2565b5060010190565b600082611c9d57611c9d611cb8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9957600080fdfea2646970667358221220900f38018f6878f5dcd55cb291c08b7fb4f04a1680a73abc2ef1ee422114a01464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063845bb3bb116100f7578063a22cb46511610095578063daa81cdd11610064578063daa81cdd146104c5578063dbd30ae0146104df578063e985e9c5146104f4578063f2fde38b1461053d57600080fd5b8063a22cb4651461044f578063a591252d1461046f578063b88d4fde14610485578063c87b56dd146104a557600080fd5b806391b7f5ed116100d157806391b7f5ed146103f157806395d89b4114610411578063a035b1fe14610426578063a0712d681461043c57600080fd5b8063845bb3bb146103a8578063853828b6146103be5780638da5cb5b146103d357600080fd5b806342842e0e116101645780636352211e1161013e5780636352211e1461032657806370a0823114610346578063715018a6146103665780637fc461891461037b57600080fd5b806342842e0e146102d157806355f804b3146102f15780635b70ea9f1461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806332cb6b0c146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461198b565b61055d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105af565b6040516101f39190611abf565b34801561022a57600080fd5b5061023e610239366004611a0e565b610641565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611961565b6106db565b005b34801561028457600080fd5b5061028d6107f1565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b636600461186d565b610801565b3480156102c757600080fd5b5061028d611b3981565b3480156102dd57600080fd5b506102766102ec36600461186d565b610832565b3480156102fd57600080fd5b5061027661030c3660046119c5565b61084d565b34801561031d57600080fd5b5061027661088e565b34801561033257600080fd5b5061023e610341366004611a0e565b6109b8565b34801561035257600080fd5b5061028d61036136600461181f565b610a2f565b34801561037257600080fd5b50610276610ab6565b34801561038757600080fd5b5061028d61039636600461181f565b600d6020526000908152604090205481565b3480156103b457600080fd5b5061028d600b5481565b3480156103ca57600080fd5b50610276610aea565b3480156103df57600080fd5b506006546001600160a01b031661023e565b3480156103fd57600080fd5b5061027661040c366004611a0e565b610b38565b34801561041d57600080fd5b50610211610b67565b34801561043257600080fd5b5061028d60095481565b61027661044a366004611a0e565b610b76565b34801561045b57600080fd5b5061027661046a366004611925565b610ceb565b34801561047b57600080fd5b5061028d600a5481565b34801561049157600080fd5b506102766104a03660046118a9565b610db0565b3480156104b157600080fd5b506102116104c0366004611a0e565b610de8565b3480156104d157600080fd5b50600c546101e79060ff1681565b3480156104eb57600080fd5b50610276610ec3565b34801561050057600080fd5b506101e761050f36600461183a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054957600080fd5b5061027661055836600461181f565b610f01565b60006001600160e01b031982166380ac58cd60e01b148061058e57506001600160e01b03198216635b5e139f60e01b145b806105a957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105be90611c38565b80601f01602080910402602001604051908101604052809291908181526020018280546105ea90611c38565b80156106375780601f1061060c57610100808354040283529160200191610637565b820191906000526020600020905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e6826109b8565b9050806001600160a01b0316836001600160a01b031614156107545760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b6565b336001600160a01b03821614806107705750610770813361050f565b6107e25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b6565b6107ec8383610f9c565b505050565b60006107fc60075490565b905090565b61080b338261100a565b6108275760405162461bcd60e51b81526004016106b690611b59565b6107ec838383611101565b6107ec83838360405180602001604052806000815250610db0565b6006546001600160a01b031633146108775760405162461bcd60e51b81526004016106b690611b24565b805161088a9060089060208401906116f4565b5050565b600c5460ff166108d55760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106b6565b600a546108e06107f1565b1061092d5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e67000060448201526064016106b6565b600b54336000908152600d60205260409020541061098d5760405162461bcd60e51b815260206004820152601e60248201527f63616c6c657220616c7265616479206d696e74656420666f722066726565000060448201526064016106b6565b336000908152600d602052604081208054916109a883611c73565b91905055506109b6336112a1565b565b6000818152600260205260408120546001600160a01b0316806105a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b6565b60006001600160a01b038216610a9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae05760405162461bcd60e51b81526004016106b690611b24565b6109b660006112c6565b6006546001600160a01b03163314610b145760405162461bcd60e51b81526004016106b690611b24565b60405133904780156108fc02916000818181858888f193505050506109b657600080fd5b6006546001600160a01b03163314610b625760405162461bcd60e51b81526004016106b690611b24565b600955565b6060600180546105be90611c38565b600c5460ff16610bbd5760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106b6565b6032811115610c195760405162461bcd60e51b815260206004820152602260248201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106b6565b611b3981610c256107f1565b610c2f9190611baa565b1115610c685760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106b6565b80600954610c769190611bd6565b341015610cc55760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e6465722070726963650000000000000060448201526064016106b6565b60005b8181101561088a57610cd9336112a1565b80610ce381611c73565b915050610cc8565b6001600160a01b038216331415610d445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dba338361100a565b610dd65760405162461bcd60e51b81526004016106b690611b59565b610de284848484611318565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b6565b6000610e7161134b565b90506000815111610e915760405180602001604052806000815250610ebc565b80610e9b8461135a565b604051602001610eac929190611a53565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610eed5760405162461bcd60e51b81526004016106b690611b24565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016106b690611b24565b6001600160a01b038116610f905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b6565b610f99816112c6565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fd1826109b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b6565b600061108e836109b8565b9050806001600160a01b0316846001600160a01b031614806110c95750836001600160a01b03166110be84610641565b6001600160a01b0316145b806110f957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611114826109b8565b6001600160a01b03161461117c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b6565b6001600160a01b0382166111de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b6565b6111e9600082610f9c565b6001600160a01b0383166000908152600360205260408120805460019290611212908490611bf5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611240908490611baa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006112ac60075490565b90506112bc600780546001019055565b61088a8282611458565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611323848484611101565b61132f84848484611472565b610de25760405162461bcd60e51b81526004016106b690611ad2565b6060600880546105be90611c38565b60608161137e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a8578061139281611c73565b91506113a19050600a83611bc2565b9150611382565b60008167ffffffffffffffff8111156113c3576113c3611ce4565b6040519080825280601f01601f1916602001820160405280156113ed576020820181803683370190505b5090505b84156110f957611402600183611bf5565b915061140f600a86611c8e565b61141a906030611baa565b60f81b81838151811061142f5761142f611cce565b60200101906001600160f81b031916908160001a905350611451600a86611bc2565b94506113f1565b61088a82826040518060200160405280600081525061157f565b60006001600160a01b0384163b1561157457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114b6903390899088908890600401611a82565b602060405180830381600087803b1580156114d057600080fd5b505af1925050508015611500575060408051601f3d908101601f191682019092526114fd918101906119a8565b60015b61155a573d80801561152e576040519150601f19603f3d011682016040523d82523d6000602084013e611533565b606091505b5080516115525760405162461bcd60e51b81526004016106b690611ad2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f9565b506001949350505050565b61158983836115b2565b6115966000848484611472565b6107ec5760405162461bcd60e51b81526004016106b690611ad2565b6001600160a01b0382166116085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b6565b6000818152600260205260409020546001600160a01b03161561166d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b6565b6001600160a01b0382166000908152600360205260408120805460019290611696908490611baa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461170090611c38565b90600052602060002090601f0160209004810192826117225760008555611768565b82601f1061173b57805160ff1916838001178555611768565b82800160010185558215611768579182015b8281111561176857825182559160200191906001019061174d565b50611774929150611778565b5090565b5b808211156117745760008155600101611779565b600067ffffffffffffffff808411156117a8576117a8611ce4565b604051601f8501601f19908116603f011681019082821181831017156117d0576117d0611ce4565b816040528093508581528686860111156117e957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461181a57600080fd5b919050565b60006020828403121561183157600080fd5b610ebc82611803565b6000806040838503121561184d57600080fd5b61185683611803565b915061186460208401611803565b90509250929050565b60008060006060848603121561188257600080fd5b61188b84611803565b925061189960208501611803565b9150604084013590509250925092565b600080600080608085870312156118bf57600080fd5b6118c885611803565b93506118d660208601611803565b925060408501359150606085013567ffffffffffffffff8111156118f957600080fd5b8501601f8101871361190a57600080fd5b6119198782356020840161178d565b91505092959194509250565b6000806040838503121561193857600080fd5b61194183611803565b91506020830135801515811461195657600080fd5b809150509250929050565b6000806040838503121561197457600080fd5b61197d83611803565b946020939093013593505050565b60006020828403121561199d57600080fd5b8135610ebc81611cfa565b6000602082840312156119ba57600080fd5b8151610ebc81611cfa565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6110f98482356020840161178d565b600060208284031215611a2057600080fd5b5035919050565b60008151808452611a3f816020860160208601611c0c565b601f01601f19169290920160200192915050565b60008351611a65818460208801611c0c565b835190830190611a79818360208801611c0c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab590830184611a27565b9695505050505050565b602081526000610ebc6020830184611a27565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bbd57611bbd611ca2565b500190565b600082611bd157611bd1611cb8565b500490565b6000816000190483118215151615611bf057611bf0611ca2565b500290565b600082821015611c0757611c07611ca2565b500390565b60005b83811015611c27578181015183820152602001611c0f565b83811115610de25750506000910152565b600181811c90821680611c4c57607f821691505b60208210811415611c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c8757611c87611ca2565b5060010190565b600082611c9d57611c9d611cb8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f9957600080fdfea2646970667358221220900f38018f6878f5dcd55cb291c08b7fb4f04a1680a73abc2ef1ee422114a01464736f6c63430008070033

Deployed Bytecode Sourcemap

36719:2174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24519:305;;;;;;;;;;-1:-1:-1;24519:305:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;24519:305:0;;;;;;;;25464:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27023:221::-;;;;;;;;;;-1:-1:-1;27023:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;27023:221:0;4780:203:1;26546:411:0;;;;;;;;;;-1:-1:-1;26546:411:0;;;;;:::i;:::-;;:::i;:::-;;38337:101;;;;;;;;;;;;;:::i;:::-;;;14583:25:1;;;14571:2;14556:18;38337:101:0;14437:177:1;27913:339:0;;;;;;;;;;-1:-1:-1;27913:339:0;;;;;:::i;:::-;;:::i;36889:38::-;;;;;;;;;;;;36923:4;36889:38;;28323:185;;;;;;;;;;-1:-1:-1;28323:185:0;;;;;:::i;:::-;;:::i;38452:105::-;;;;;;;;;;-1:-1:-1;38452:105:0;;;;;:::i;:::-;;:::i;37335:366::-;;;;;;;;;;;;;:::i;25158:239::-;;;;;;;;;;-1:-1:-1;25158:239:0;;;;;:::i;:::-;;:::i;24888:208::-;;;;;;;;;;-1:-1:-1;24888:208:0;;;;;:::i;:::-;;:::i;6154:94::-;;;;;;;;;;;;;:::i;37099:51::-;;;;;;;;;;-1:-1:-1;37099:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;37009:37;;;;;;;;;;;;;;;;38773:117;;;;;;;;;;;;;:::i;5503:87::-;;;;;;;;;;-1:-1:-1;5576:6:0;;-1:-1:-1;;;;;5576:6:0;5503:87;;38674;;;;;;;;;;-1:-1:-1;38674:87:0;;;;;:::i;:::-;;:::i;25633:104::-;;;;;;;;;;;;;:::i;36934:32::-;;;;;;;;;;;;;;;;37713:432;;;;;;:::i;:::-;;:::i;27316:295::-;;;;;;;;;;-1:-1:-1;27316:295:0;;;;;:::i;:::-;;:::i;36973:29::-;;;;;;;;;;;;;;;;28579:328;;;;;;;;;;-1:-1:-1;28579:328:0;;;;;:::i;:::-;;:::i;25808:334::-;;;;;;;;;;-1:-1:-1;25808:334:0;;;;;:::i;:::-;;:::i;37053:33::-;;;;;;;;;;-1:-1:-1;37053:33:0;;;;;;;;38571:91;;;;;;;;;;;;;:::i;27682:164::-;;;;;;;;;;-1:-1:-1;27682:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27682:164;6403:192;;;;;;;;;;-1:-1:-1;6403:192:0;;;;;:::i;:::-;;:::i;24519:305::-;24621:4;-1:-1:-1;;;;;;24658:40:0;;-1:-1:-1;;;24658:40:0;;:105;;-1:-1:-1;;;;;;;24715:48:0;;-1:-1:-1;;;24715:48:0;24658:105;:158;;;-1:-1:-1;;;;;;;;;;17598:40:0;;;24780:36;24638:178;24519:305;-1:-1:-1;;24519:305:0:o;25464:100::-;25518:13;25551:5;25544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464:100;:::o;27023:221::-;27099:7;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;27119:73;;;;-1:-1:-1;;;27119:73:0;;11860:2:1;27119:73:0;;;11842:21:1;11899:2;11879:18;;;11872:30;11938:34;11918:18;;;11911:62;-1:-1:-1;;;11989:18:1;;;11982:42;12041:19;;27119:73:0;;;;;;;;;-1:-1:-1;27212:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27212:24:0;;27023:221::o;26546:411::-;26627:13;26643:23;26658:7;26643:14;:23::i;:::-;26627:39;;26691:5;-1:-1:-1;;;;;26685:11:0;:2;-1:-1:-1;;;;;26685:11:0;;;26677:57;;;;-1:-1:-1;;;26677:57:0;;13460:2:1;26677:57:0;;;13442:21:1;13499:2;13479:18;;;13472:30;13538:34;13518:18;;;13511:62;-1:-1:-1;;;13589:18:1;;;13582:31;13630:19;;26677:57:0;13258:397:1;26677:57:0;4371:10;-1:-1:-1;;;;;26769:21:0;;;;:62;;-1:-1:-1;26794:37:0;26811:5;4371:10;27682:164;:::i;26794:37::-;26747:168;;;;-1:-1:-1;;;26747:168:0;;9496:2:1;26747:168:0;;;9478:21:1;9535:2;9515:18;;;9508:30;9574:34;9554:18;;;9547:62;9645:26;9625:18;;;9618:54;9689:19;;26747:168:0;9294:420:1;26747:168:0;26928:21;26937:2;26941:7;26928:8;:21::i;:::-;26616:341;26546:411;;:::o;38337:101::-;38381:4;38405:25;:15;1095:14;;1003:114;38405:25;38398:32;;38337:101;:::o;27913:339::-;28108:41;4371:10;28141:7;28108:18;:41::i;:::-;28100:103;;;;-1:-1:-1;;;28100:103:0;;;;;;;:::i;:::-;28216:28;28226:4;28232:2;28236:7;28216:9;:28::i;28323:185::-;28461:39;28478:4;28484:2;28488:7;28461:39;;;;;;;;;;;;:16;:39::i;38452:105::-;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;38528:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38452:105:::0;:::o;37335:366::-;37383:13;;;;37375:44;;;;-1:-1:-1;;;37375:44:0;;9149:2:1;37375:44:0;;;9131:21:1;9188:2;9168:18;;;9161:30;-1:-1:-1;;;9207:18:1;;;9200:48;9265:18;;37375:44:0;8947:342:1;37375:44:0;37454:11;;37438:13;:11;:13::i;:::-;:27;37430:70;;;;-1:-1:-1;;;37430:70:0;;7282:2:1;37430:70:0;;;7264:21:1;7321:2;7301:18;;;7294:30;7360:32;7340:18;;;7333:60;7410:18;;37430:70:0;7080:354:1;37430:70:0;37553:20;;37539:10;37519:31;;;;:19;:31;;;;;;:54;37511:97;;;;-1:-1:-1;;;37511:97:0;;13862:2:1;37511:97:0;;;13844:21:1;13901:2;13881:18;;;13874:30;13940:32;13920:18;;;13913:60;13990:18;;37511:97:0;13660:354:1;37511:97:0;37649:10;37629:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;;;37673:20;37682:10;37673:8;:20::i;:::-;37335:366::o;25158:239::-;25230:7;25266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25266:16:0;25301:19;25293:73;;;;-1:-1:-1;;;25293:73:0;;10686:2:1;25293:73:0;;;10668:21:1;10725:2;10705:18;;;10698:30;10764:34;10744:18;;;10737:62;-1:-1:-1;;;10815:18:1;;;10808:39;10864:19;;25293:73:0;10484:405:1;24888:208:0;24960:7;-1:-1:-1;;;;;24988:19:0;;24980:74;;;;-1:-1:-1;;;24980:74:0;;10275:2:1;24980:74:0;;;10257:21:1;10314:2;10294:18;;;10287:30;10353:34;10333:18;;;10326:62;-1:-1:-1;;;10404:18:1;;;10397:40;10454:19;;24980:74:0;10073:406:1;24980:74:0;-1:-1:-1;;;;;;25072:16:0;;;;;:9;:16;;;;;;;24888:208::o;6154:94::-;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;6219:21:::1;6237:1;6219:9;:21::i;38773:117::-:0;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;38834:47:::1;::::0;38842:10:::1;::::0;38859:21:::1;38834:47:::0;::::1;;;::::0;::::1;::::0;;;38859:21;38842:10;38834:47;::::1;;;;;;38826:56;;;::::0;::::1;38674:87:::0;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;38737:5:::1;:16:::0;38674:87::o;25633:104::-;25689:13;25722:7;25715:14;;;;;:::i;37713:432::-;37778:13;;;;37770:44;;;;-1:-1:-1;;;37770:44:0;;9149:2:1;37770:44:0;;;9131:21:1;9188:2;9168:18;;;9161:30;-1:-1:-1;;;9207:18:1;;;9200:48;9265:18;;37770:44:0;8947:342:1;37770:44:0;37845:2;37833:8;:14;;37825:61;;;;-1:-1:-1;;;37825:61:0;;11457:2:1;37825:61:0;;;11439:21:1;11496:2;11476:18;;;11469:30;11535:34;11515:18;;;11508:62;-1:-1:-1;;;11586:18:1;;;11579:32;11628:19;;37825:61:0;11255:398:1;37825:61:0;36923:4;37921:8;37905:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;37897:59;;;;-1:-1:-1;;;37897:59:0;;8813:2:1;37897:59:0;;;8795:21:1;8852:1;8832:18;;;8825:29;-1:-1:-1;;;8870:18:1;;;8863:38;8918:18;;37897:59:0;8611:331:1;37897:59:0;37996:8;37988:5;;:16;;;;:::i;:::-;37975:9;:29;;37967:67;;;;-1:-1:-1;;;37967:67:0;;9921:2:1;37967:67:0;;;9903:21:1;9960:2;9940:18;;;9933:30;9999:27;9979:18;;;9972:55;10044:18;;37967:67:0;9719:349:1;37967:67:0;38060:6;38055:83;38076:8;38072:1;:12;38055:83;;;38106:20;38115:10;38106:8;:20::i;:::-;38086:3;;;;:::i;:::-;;;;38055:83;;27316:295;-1:-1:-1;;;;;27419:24:0;;4371:10;27419:24;;27411:62;;;;-1:-1:-1;;;27411:62:0;;8046:2:1;27411:62:0;;;8028:21:1;8085:2;8065:18;;;8058:30;8124:27;8104:18;;;8097:55;8169:18;;27411:62:0;7844:349:1;27411:62:0;4371:10;27486:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27486:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27486:53:0;;;;;;;;;;27555:48;;5621:41:1;;;27486:42:0;;4371:10;27555:48;;5594:18:1;27555:48:0;;;;;;;27316:295;;:::o;28579:328::-;28754:41;4371:10;28787:7;28754:18;:41::i;:::-;28746:103;;;;-1:-1:-1;;;28746:103:0;;;;;;;:::i;:::-;28860:39;28874:4;28880:2;28884:7;28893:5;28860:13;:39::i;:::-;28579:328;;;;:::o;25808:334::-;30482:4;30506:16;;;:7;:16;;;;;;25881:13;;-1:-1:-1;;;;;30506:16:0;25907:76;;;;-1:-1:-1;;;25907:76:0;;13044:2:1;25907:76:0;;;13026:21:1;13083:2;13063:18;;;13056:30;13122:34;13102:18;;;13095:62;-1:-1:-1;;;13173:18:1;;;13166:45;13228:19;;25907:76:0;12842:411:1;25907:76:0;25996:21;26020:10;:8;:10::i;:::-;25996:34;;26072:1;26054:7;26048:21;:25;:86;;;;;;;;;;;;;;;;;26100:7;26109:18;:7;:16;:18::i;:::-;26083:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26048:86;26041:93;25808:334;-1:-1:-1;;;25808:334:0:o;38571:91::-;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;38641:13:::1;::::0;;-1:-1:-1;;38624:30:0;::::1;38641:13;::::0;;::::1;38640:14;38624:30;::::0;;38571:91::o;6403:192::-;5576:6;;-1:-1:-1;;;;;5576:6:0;4371:10;5723:23;5715:68;;;;-1:-1:-1;;;5715:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6492:22:0;::::1;6484:73;;;::::0;-1:-1:-1;;;6484:73:0;;6518:2:1;6484:73:0::1;::::0;::::1;6500:21:1::0;6557:2;6537:18;;;6530:30;6596:34;6576:18;;;6569:62;-1:-1:-1;;;6647:18:1;;;6640:36;6693:19;;6484:73:0::1;6316:402:1::0;6484:73:0::1;6568:19;6578:8;6568:9;:19::i;:::-;6403:192:::0;:::o;34399:174::-;34474:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34474:29:0;-1:-1:-1;;;;;34474:29:0;;;;;;;;:24;;34528:23;34474:24;34528:14;:23::i;:::-;-1:-1:-1;;;;;34519:46:0;;;;;;;;;;;34399:174;;:::o;30711:348::-;30804:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;30821:73;;;;-1:-1:-1;;;30821:73:0;;8400:2:1;30821:73:0;;;8382:21:1;8439:2;8419:18;;;8412:30;8478:34;8458:18;;;8451:62;-1:-1:-1;;;8529:18:1;;;8522:42;8581:19;;30821:73:0;8198:408:1;30821:73:0;30905:13;30921:23;30936:7;30921:14;:23::i;:::-;30905:39;;30974:5;-1:-1:-1;;;;;30963:16:0;:7;-1:-1:-1;;;;;30963:16:0;;:51;;;;31007:7;-1:-1:-1;;;;;30983:31:0;:20;30995:7;30983:11;:20::i;:::-;-1:-1:-1;;;;;30983:31:0;;30963:51;:87;;;-1:-1:-1;;;;;;27803:25:0;;;27779:4;27803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31018:32;30955:96;30711:348;-1:-1:-1;;;;30711:348:0:o;33703:578::-;33862:4;-1:-1:-1;;;;;33835:31:0;:23;33850:7;33835:14;:23::i;:::-;-1:-1:-1;;;;;33835:31:0;;33827:85;;;;-1:-1:-1;;;33827:85:0;;12634:2:1;33827:85:0;;;12616:21:1;12673:2;12653:18;;;12646:30;12712:34;12692:18;;;12685:62;-1:-1:-1;;;12763:18:1;;;12756:39;12812:19;;33827:85:0;12432:405:1;33827:85:0;-1:-1:-1;;;;;33931:16:0;;33923:65;;;;-1:-1:-1;;;33923:65:0;;7641:2:1;33923:65:0;;;7623:21:1;7680:2;7660:18;;;7653:30;7719:34;7699:18;;;7692:62;-1:-1:-1;;;7770:18:1;;;7763:34;7814:19;;33923:65:0;7439:400:1;33923:65:0;34105:29;34122:1;34126:7;34105:8;:29::i;:::-;-1:-1:-1;;;;;34147:15:0;;;;;;:9;:15;;;;;:20;;34166:1;;34147:15;:20;;34166:1;;34147:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34178:13:0;;;;;;:9;:13;;;;;:18;;34195:1;;34178:13;:18;;34195:1;;34178:18;:::i;:::-;;;;-1:-1:-1;;34207:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34207:21:0;-1:-1:-1;;;;;34207:21:0;;;;;;;;;34246:27;;34207:16;;34246:27;;;;;;;33703:578;;;:::o;38153:172::-;38203:15;38221:25;:15;1095:14;;1003:114;38221:25;38203:43;;38257:27;:15;1214:19;;1232:1;1214:19;;;1125:127;38257:27;38295:22;38305:2;38309:7;38295:9;:22::i;6603:173::-;6678:6;;;-1:-1:-1;;;;;6695:17:0;;;-1:-1:-1;;;;;;6695:17:0;;;;;;;6728:40;;6678:6;;;6695:17;6678:6;;6728:40;;6659:16;;6728:40;6648:128;6603:173;:::o;29789:315::-;29946:28;29956:4;29962:2;29966:7;29946:9;:28::i;:::-;29993:48;30016:4;30022:2;30026:7;30035:5;29993:22;:48::i;:::-;29985:111;;;;-1:-1:-1;;;29985:111:0;;;;;;;:::i;37222:101::-;37274:13;37307:8;37300:15;;;;;:::i;1907:723::-;1963:13;2184:10;2180:53;;-1:-1:-1;;2211:10:0;;;;;;;;;;;;-1:-1:-1;;;2211:10:0;;;;;1907:723::o;2180:53::-;2258:5;2243:12;2299:78;2306:9;;2299:78;;2332:8;;;;:::i;:::-;;-1:-1:-1;2355:10:0;;-1:-1:-1;2363:2:0;2355:10;;:::i;:::-;;;2299:78;;;2387:19;2419:6;2409:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2409:17:0;;2387:39;;2437:154;2444:10;;2437:154;;2471:11;2481:1;2471:11;;:::i;:::-;;-1:-1:-1;2540:10:0;2548:2;2540:5;:10;:::i;:::-;2527:24;;:2;:24;:::i;:::-;2514:39;;2497:6;2504;2497:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2497:56:0;;;;;;;;-1:-1:-1;2568:11:0;2577:2;2568:11;;:::i;:::-;;;2437:154;;31401:110;31477:26;31487:2;31491:7;31477:26;;;;;;;;;;;;:9;:26::i;35138:799::-;35293:4;-1:-1:-1;;;;;35314:13:0;;7872:20;7920:8;35310:620;;35350:72;;-1:-1:-1;;;35350:72:0;;-1:-1:-1;;;;;35350:36:0;;;;;:72;;4371:10;;35401:4;;35407:7;;35416:5;;35350:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35350:72:0;;;;;;;;-1:-1:-1;;35350:72:0;;;;;;;;;;;;:::i;:::-;;;35346:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35592:13:0;;35588:272;;35635:60;;-1:-1:-1;;;35635:60:0;;;;;;;:::i;35588:272::-;35810:6;35804:13;35795:6;35791:2;35787:15;35780:38;35346:529;-1:-1:-1;;;;;;35473:51:0;-1:-1:-1;;;35473:51:0;;-1:-1:-1;35466:58:0;;35310:620;-1:-1:-1;35914:4:0;35138:799;;;;;;:::o;31738:321::-;31868:18;31874:2;31878:7;31868:5;:18::i;:::-;31919:54;31950:1;31954:2;31958:7;31967:5;31919:22;:54::i;:::-;31897:154;;;;-1:-1:-1;;;31897:154:0;;;;;;;:::i;32395:382::-;-1:-1:-1;;;;;32475:16:0;;32467:61;;;;-1:-1:-1;;;32467:61:0;;11096:2:1;32467:61:0;;;11078:21:1;;;11115:18;;;11108:30;11174:34;11154:18;;;11147:62;11226:18;;32467:61:0;10894:356:1;32467:61:0;30482:4;30506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30506:16:0;:30;32539:58;;;;-1:-1:-1;;;32539:58:0;;6925:2:1;32539:58:0;;;6907:21:1;6964:2;6944:18;;;6937:30;7003;6983:18;;;6976:58;7051:18;;32539:58:0;6723:352:1;32539:58:0;-1:-1:-1;;;;;32668:13:0;;;;;;:9;:13;;;;;:18;;32685:1;;32668:13;:18;;32685:1;;32668:18;:::i;:::-;;;;-1:-1:-1;;32697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32697:21:0;-1:-1:-1;;;;;32697:21:0;;;;;;;;32736:33;;32697:16;;;32736:33;;32697:16;;32736:33;32395:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;5897:414::-;6099:2;6081:21;;;6138:2;6118:18;;;6111:30;6177:34;6172:2;6157:18;;6150:62;-1:-1:-1;;;6243:2:1;6228:18;;6221:48;6301:3;6286:19;;5897:414::o;12071:356::-;12273:2;12255:21;;;12292:18;;;12285:30;12351:34;12346:2;12331:18;;12324:62;12418:2;12403:18;;12071:356::o;14019:413::-;14221:2;14203:21;;;14260:2;14240:18;;;14233:30;14299:34;14294:2;14279:18;;14272:62;-1:-1:-1;;;14365:2:1;14350:18;;14343:47;14422:3;14407:19;;14019:413::o;14619:128::-;14659:3;14690:1;14686:6;14683:1;14680:13;14677:39;;;14696:18;;:::i;:::-;-1:-1:-1;14732:9:1;;14619:128::o;14752:120::-;14792:1;14818;14808:35;;14823:18;;:::i;:::-;-1:-1:-1;14857:9:1;;14752:120::o;14877:168::-;14917:7;14983:1;14979;14975:6;14971:14;14968:1;14965:21;14960:1;14953:9;14946:17;14942:45;14939:71;;;14990:18;;:::i;:::-;-1:-1:-1;15030:9:1;;14877:168::o;15050:125::-;15090:4;15118:1;15115;15112:8;15109:34;;;15123:18;;:::i;:::-;-1:-1:-1;15160:9:1;;15050:125::o;15180:258::-;15252:1;15262:113;15276:6;15273:1;15270:13;15262:113;;;15352:11;;;15346:18;15333:11;;;15326:39;15298:2;15291:10;15262:113;;;15393:6;15390:1;15387:13;15384:48;;;-1:-1:-1;;15428:1:1;15410:16;;15403:27;15180:258::o;15443:380::-;15522:1;15518:12;;;;15565;;;15586:61;;15640:4;15632:6;15628:17;15618:27;;15586:61;15693:2;15685:6;15682:14;15662:18;15659:38;15656:161;;;15739:10;15734:3;15730:20;15727:1;15720:31;15774:4;15771:1;15764:15;15802:4;15799:1;15792:15;15656:161;;15443:380;;;:::o;15828:135::-;15867:3;-1:-1:-1;;15888:17:1;;15885:43;;;15908:18;;:::i;:::-;-1:-1:-1;15955:1:1;15944:13;;15828:135::o;15968:112::-;16000:1;16026;16016:35;;16031:18;;:::i;:::-;-1:-1:-1;16065:9:1;;15968:112::o;16085:127::-;16146:10;16141:3;16137:20;16134:1;16127:31;16177:4;16174:1;16167:15;16201:4;16198:1;16191:15;16217:127;16278:10;16273:3;16269:20;16266:1;16259:31;16309:4;16306:1;16299:15;16333:4;16330:1;16323:15;16349:127;16410:10;16405:3;16401:20;16398:1;16391:31;16441:4;16438:1;16431:15;16465:4;16462:1;16455:15;16481:127;16542:10;16537:3;16533:20;16530:1;16523:31;16573:4;16570:1;16563:15;16597:4;16594:1;16587:15;16613:131;-1:-1:-1;;;;;;16687:32:1;;16677:43;;16667:71;;16734:1;16731;16724:12

Swarm Source

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