ETH Price: $3,074.65 (+1.22%)
Gas: 4 Gwei

Token

Collage Bots (CBOTS)
 

Overview

Max Total Supply

2,222 CBOTS

Holders

358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CBOTS
0x0Dc2BCc2c85Ae106215f11Ac4F70105D040C1F51
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:
CollageBots

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-30
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @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);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(
        uint256 indexed fromTokenId,
        uint256 toTokenId,
        address indexed from,
        address indexed to
    );
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) &
            BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) &
            BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId)
        private
        view
        returns (uint256)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed)
        private
        pure
        returns (TokenOwnership memory ownership)
    {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index)
        internal
        view
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags)
        private
        view
        returns (uint256 result)
    {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(
                owner,
                or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)
            )
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity)
        private
        pure
        returns (uint256 result)
    {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            index++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] +=
                quantity *
                ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) |
                    _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT)
            revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] +=
                quantity *
                ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) |
                    _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(
                startTokenId,
                startTokenId + quantity - 1,
                address(0),
                to
            );

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from)
            revert TransferFromIncorrectOwner();

        (
            uint256 approvedAddressSlot,
            address approvedAddress
        ) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A()))
                revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED |
                    _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (
            uint256 approvedAddressSlot,
            address approvedAddress
        ) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A()))
                    revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) |
                    _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            ERC721A__IERC721Receiver(to).onERC721Received(
                _msgSenderERC721A(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return
                retval ==
                ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed =
            (packed & BITMASK_EXTRA_DATA_COMPLEMENT) |
            (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        returns (string memory ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

contract CollageBots is ERC721A, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    address public collageBotsVault = 0xF5891B4C98a51D004D5C0A610022ec5FF59f30e7;
    uint256 public cost = 0.003 ether;
    uint256 public amountWHALE = 20;
    uint256 public amountOG = 10;
    uint256 public amountWL = 5;
    uint256 public amountPUBLIC = 3;
    uint256 public maxSupply = 2222;
    uint256 public maxMintAmount = 20;
    bool public paused = true;

    mapping(address => uint256) public addressMintedBalance;

    bytes32 public whitelistMerkleRootOG;
    bytes32 public whitelistMerkleRootWL;
    bytes32 public whitelistMerkleRootWHALE;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _URI
    ) ERC721A(_name, _symbol) {
        initialMint(200);
        setBaseURI(_URI);
    }

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

    function mint(uint256 _mintAmount, bytes32[] calldata merkleProof)
        public
        payable
    {
        require(!paused || msg.sender == owner(), "the contract is paused");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if(msg.sender != owner()) {
            require(maxMintAmount - (addressMintedBalance[msg.sender] + _mintAmount) >= 0, "max amount per wallet reached");
            require(!paused, "the contract is paused");
        }
        uint256 freeMintable = checkAmountFreeMinting(merkleProof, msg.sender);
        uint256 toPayMint = freeMintable > _mintAmount ? 0 : _mintAmount - freeMintable;
        require(msg.value >= cost * toPayMint, "insufficient funds");
        address receiver = msg.sender != owner() ? msg.sender : collageBotsVault;
        addressMintedBalance[receiver] += _mintAmount;
        _safeMint(receiver, _mintAmount);
    }

    function initialMint(uint256 _mintAmount) internal onlyOwner {
        addressMintedBalance[collageBotsVault] += _mintAmount;
        _safeMint(collageBotsVault, _mintAmount);
    }

    function burn(uint256 _tokenId) external onlyOwner {
        _burn(_tokenId);
    }

    function checkValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root)
        public
        view
        returns (bool)
    {
        return
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            );
    }

    function checkAmountFreeMinting(
        bytes32[] calldata merkleProof,
        address sender
    ) public view returns (uint256) {
        if (sender == owner()) return 1000;
        if (checkValidMerkleProof(merkleProof, whitelistMerkleRootWHALE)) {
            return
                (amountWHALE - addressMintedBalance[sender]) > 0
                    ? amountWHALE - addressMintedBalance[sender]
                    : 0;
        } else if (checkValidMerkleProof(merkleProof, whitelistMerkleRootOG)) {
            return
                (amountOG - addressMintedBalance[sender]) > 0
                    ? amountOG - addressMintedBalance[sender]
                    : 0;
        } else if (checkValidMerkleProof(merkleProof, whitelistMerkleRootWL)) {
            return
                (amountWL - addressMintedBalance[sender]) > 0
                    ? amountWL - addressMintedBalance[sender]
                    : 0;
        }
        return
            (amountPUBLIC - addressMintedBalance[sender]) > 0
                ? amountPUBLIC - addressMintedBalance[sender]
                : 0;
    }

    function setRootOGMerkle(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRootOG = merkleRoot;
    }

    function setRootWLMerkle(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRootWL = merkleRoot;
    }

    function setRootWHALEMerkle(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRootWHALE = merkleRoot;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setOGamount(uint256 _newAmount) public onlyOwner {
        amountOG = _newAmount;
    }

    function setWLamount(uint256 _newAmount) public onlyOwner {
        amountWL = _newAmount;
    }

    function setPUBLICamount(uint256 _newAmount) public onlyOwner {
        amountPUBLIC = _newAmount;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountPUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountWHALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountWL","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"sender","type":"address"}],"name":"checkAmountFreeMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"checkValidMerkleProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collageBotsVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setOGamount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setPUBLICamount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setRootOGMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setRootWHALEMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setRootWLMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setWLamount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"whitelistMerkleRootOG","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRootWHALE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620004df565b50600b80546001600160a01b03191673f5891b4c98a51d004d5c0a610022ec5ff59f30e7179055660aa87bee538000600c556014600d819055600a600e556005600f5560036010556108ae6011556012556013805460ff191660011790553480156200009357600080fd5b5060405162002d6e38038062002d6e833981016040819052620000b6916200065b565b825183908390620000cf906002906020850190620004df565b508051620000e5906003906020840190620004df565b5050600160005550620000f83362000118565b6200010460c86200016a565b6200010f8162000205565b505050620007d8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b95760405162461bcd60e51b8152602060048201819052602482015260008051602062002d4e83398151915260448201526064015b60405180910390fd5b600b546001600160a01b031660009081526014602052604081208054839290620001e5908490620006ec565b9091555050600b5462000202906001600160a01b03168262000269565b50565b6008546001600160a01b03163314620002505760405162461bcd60e51b8152602060048201819052602482015260008051602062002d4e8339815191526044820152606401620001b0565b805162000265906009906020840190620004df565b5050565b620002658282604051806020016040528060008152506200028b60201b60201c565b62000297838362000302565b6001600160a01b0383163b15620002fd576000548281035b6001810190620002c590600090879086620003e5565b620002e3576040516368d2bf6b60e11b815260040160405180910390fd5b818110620002af578160005414620002fa57600080fd5b50505b505050565b6000546001600160a01b0383166200032c57604051622e076360e81b815260040160405180910390fd5b816000036200034e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620003985760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200041c90339089908890889060040162000713565b6020604051808303816000875af19250505080156200045a575060408051601f3d908101601f19168201909252620004579181019062000769565b60015b620004bc573d8080156200048b576040519150601f19603f3d011682016040523d82523d6000602084013e62000490565b606091505b508051600003620004b4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b828054620004ed906200079c565b90600052602060002090601f0160209004810192826200051157600085556200055c565b82601f106200052c57805160ff19168380011785556200055c565b828001600101855582156200055c579182015b828111156200055c5782518255916020019190600101906200053f565b506200056a9291506200056e565b5090565b5b808211156200056a57600081556001016200056f565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620005b85781810151838201526020016200059e565b83811115620004d95750506000910152565b600082601f830112620005dc57600080fd5b81516001600160401b0380821115620005f957620005f962000585565b604051601f8301601f19908116603f0116810190828211818310171562000624576200062462000585565b816040528381528660208588010111156200063e57600080fd5b620006518460208301602089016200059b565b9695505050505050565b6000806000606084860312156200067157600080fd5b83516001600160401b03808211156200068957600080fd5b6200069787838801620005ca565b94506020860151915080821115620006ae57600080fd5b620006bc87838801620005ca565b93506040860151915080821115620006d357600080fd5b50620006e286828701620005ca565b9150509250925092565b600082198211156200070e57634e487b7160e01b600052601160045260246000fd5b500190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007528160a08501602087016200059b565b601f01601f19169190910160a00195945050505050565b6000602082840312156200077c57600080fd5b81516001600160e01b0319811681146200079557600080fd5b9392505050565b600181811c90821680620007b157607f821691505b602082108103620007d257634e487b7160e01b600052602260045260246000fd5b50919050565b61256680620007e86000396000f3fe6080604052600436106102935760003560e01c806369988fc51161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610778578063da3ef23f1461078e578063db7356d2146107ae578063e985e9c5146107ce578063f2fde38b14610817578063f7c473be1461083757600080fd5b8063b88d4fde146106e4578063ba41b0c614610704578063c182beb414610717578063c66828621461072d578063c87b56dd14610742578063cca924371461076257600080fd5b80638da5cb5b116101135780638da5cb5b1461064557806395d89b41146106635780639ab9a08214610678578063a1f293871461068e578063a22cb465146106a4578063b079f54c146106c457600080fd5b806369988fc5146105a55780636c0360eb146105bb57806370a08231146105d0578063715018a6146105f05780637f00c7a614610605578063804b6c1f1461062557600080fd5b806323b872dd116101fe57806344a0d68a116101b757806344a0d68a146104eb5780634e67715b1461050b5780635442d1f51461052b57806355f804b31461054b5780635c975abb1461056b5780636352211e1461058557600080fd5b806323b872dd1461044357806332e4c380146104635780633ccfd60b146104835780633e2d687c1461048b57806342842e0e146104ab57806342966c68146104cb57600080fd5b8063095ea7b311610250578063095ea7b31461038957806313faede6146103a95780631582203e146103cd57806318160ddd146103e357806318cae26914610400578063239c70ae1461042d57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef57806307a7321c1461031157806307cc415e14610331578063081812fc14610351575b600080fd5b3480156102a457600080fd5b506102b86102b3366004611e84565b61084d565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004611eb6565b61089f565b005b3480156102fb57600080fd5b506103046108e5565b6040516102c49190611f29565b34801561031d57600080fd5b506102b861032c366004611f88565b610977565b34801561033d57600080fd5b506102ed61034c366004611fd4565b6109f5565b34801561035d57600080fd5b5061037161036c366004611fd4565b610a24565b6040516001600160a01b0390911681526020016102c4565b34801561039557600080fd5b506102ed6103a4366004612004565b610a68565b3480156103b557600080fd5b506103bf600c5481565b6040519081526020016102c4565b3480156103d957600080fd5b506103bf60155481565b3480156103ef57600080fd5b5060015460005403600019016103bf565b34801561040c57600080fd5b506103bf61041b36600461202e565b60146020526000908152604090205481565b34801561043957600080fd5b506103bf60125481565b34801561044f57600080fd5b506102ed61045e366004612049565b610b08565b34801561046f57600080fd5b506102ed61047e366004611fd4565b610caa565b6102ed610cd9565b34801561049757600080fd5b506102ed6104a6366004611fd4565b610d77565b3480156104b757600080fd5b506102ed6104c6366004612049565b610da6565b3480156104d757600080fd5b506102ed6104e6366004611fd4565b610dc6565b3480156104f757600080fd5b506102ed610506366004611fd4565b610df9565b34801561051757600080fd5b506103bf610526366004612085565b610e28565b34801561053757600080fd5b50600b54610371906001600160a01b031681565b34801561055757600080fd5b506102ed610566366004612165565b610ffa565b34801561057757600080fd5b506013546102b89060ff1681565b34801561059157600080fd5b506103716105a0366004611fd4565b61103b565b3480156105b157600080fd5b506103bf600d5481565b3480156105c757600080fd5b50610304611046565b3480156105dc57600080fd5b506103bf6105eb36600461202e565b6110d4565b3480156105fc57600080fd5b506102ed611123565b34801561061157600080fd5b506102ed610620366004611fd4565b611159565b34801561063157600080fd5b506102ed610640366004611fd4565b611188565b34801561065157600080fd5b506008546001600160a01b0316610371565b34801561066f57600080fd5b506103046111b7565b34801561068457600080fd5b506103bf60175481565b34801561069a57600080fd5b506103bf600f5481565b3480156106b057600080fd5b506102ed6106bf3660046121ae565b6111c6565b3480156106d057600080fd5b506102ed6106df366004611fd4565b61125b565b3480156106f057600080fd5b506102ed6106ff3660046121e1565b61128a565b6102ed61071236600461225d565b6112d4565b34801561072357600080fd5b506103bf60105481565b34801561073957600080fd5b506103046115bf565b34801561074e57600080fd5b5061030461075d366004611fd4565b6115cc565b34801561076e57600080fd5b506103bf60165481565b34801561078457600080fd5b506103bf60115481565b34801561079a57600080fd5b506102ed6107a9366004612165565b611699565b3480156107ba57600080fd5b506102ed6107c9366004611fd4565b6116d6565b3480156107da57600080fd5b506102b86107e93660046122a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b506102ed61083236600461202e565b611705565b34801561084357600080fd5b506103bf600e5481565b60006301ffc9a760e01b6001600160e01b03198316148061087e57506380ac58cd60e01b6001600160e01b03198316145b806108995750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108d25760405162461bcd60e51b81526004016108c9906122d3565b60405180910390fd5b6013805460ff1916911515919091179055565b6060600280546108f490612308565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612308565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b60006109eb848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015286925060340190506040516020818303038152906040528051906020012061179d565b90505b9392505050565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b81526004016108c9906122d3565b600f55565b6000610a2f826117b3565b610a4c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a738261103b565b9050336001600160a01b03821614610aac57610a8f81336107e9565b610aac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b13826117e8565b9050836001600160a01b0316816001600160a01b031614610b465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610b728187335b6001600160a01b039081169116811491141790565b610b9d57610b8086336107e9565b610b9d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bc457604051633a954ecd60e21b815260040160405180910390fd5b8015610bcf57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c6157600184016000818152600460205260408120549003610c5f576000548114610c5f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610cd45760405162461bcd60e51b81526004016108c9906122d3565b601555565b6008546001600160a01b03163314610d035760405162461bcd60e51b81526004016108c9906122d3565b6000610d176008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d61576040519150601f19603f3d011682016040523d82523d6000602084013e610d66565b606091505b5050905080610d7457600080fd5b50565b6008546001600160a01b03163314610da15760405162461bcd60e51b81526004016108c9906122d3565b601055565b610dc18383836040518060200160405280600081525061128a565b505050565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108c9906122d3565b610d7481611857565b6008546001600160a01b03163314610e235760405162461bcd60e51b81526004016108c9906122d3565b600c55565b6000610e3c6008546001600160a01b031690565b6001600160a01b0316826001600160a01b031603610e5d57506103e86109ee565b610e6a8484601754610977565b15610ece576001600160a01b038216600090815260146020526040812054600d54610e959190612358565b11610ea1576000610ec7565b6001600160a01b038216600090815260146020526040902054600d54610ec79190612358565b90506109ee565b610edb8484601554610977565b15610f38576001600160a01b038216600090815260146020526040812054600e54610f069190612358565b11610f12576000610ec7565b6001600160a01b038216600090815260146020526040902054600e54610ec79190612358565b610f458484601654610977565b15610fa2576001600160a01b038216600090815260146020526040812054600f54610f709190612358565b11610f7c576000610ec7565b6001600160a01b038216600090815260146020526040902054600f54610ec79190612358565b6001600160a01b038216600090815260146020526040812054601054610fc89190612358565b11610fd45760006109eb565b6001600160a01b0382166000908152601460205260409020546010546109eb9190612358565b6008546001600160a01b031633146110245760405162461bcd60e51b81526004016108c9906122d3565b8051611037906009906020840190611dd5565b5050565b6000610899826117e8565b6009805461105390612308565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612308565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b505050505081565b60006001600160a01b0382166110fd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461114d5760405162461bcd60e51b81526004016108c9906122d3565b6111576000611862565b565b6008546001600160a01b031633146111835760405162461bcd60e51b81526004016108c9906122d3565b601255565b6008546001600160a01b031633146111b25760405162461bcd60e51b81526004016108c9906122d3565b601655565b6060600380546108f490612308565b336001600160a01b038316036111ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112855760405162461bcd60e51b81526004016108c9906122d3565b600e55565b611295848484610b08565b6001600160a01b0383163b156112ce576112b1848484846118b4565b6112ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60135460ff1615806112f057506008546001600160a01b031633145b6113355760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108c9565b600083116113855760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108c9565b600061139a6001546000546000199190030190565b6011549091506113aa858361236f565b11156113f15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108c9565b6008546001600160a01b031633146114c5573360009081526014602052604081205461141e90869061236f565b60125461142b9190612358565b10156114795760405162461bcd60e51b815260206004820152601d60248201527f6d617820616d6f756e74207065722077616c6c6574207265616368656400000060448201526064016108c9565b60135460ff16156114c55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108c9565b60006114d2848433610e28565b905060008582116114ec576114e78287612358565b6114ef565b60005b905080600c546114ff9190612387565b3410156115435760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108c9565b60006115576008546001600160a01b031690565b6001600160a01b0316330361157757600b546001600160a01b0316611579565b335b6001600160a01b0381166000908152601460205260408120805492935089929091906115a690849061236f565b909155506115b6905081886119a0565b50505050505050565b600a805461105390612308565b60606115d7826117b3565b61163b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c9565b60006116456119ba565b9050600081511161166557604051806020016040528060008152506109ee565b8061166f846119c9565b600a604051602001611683939291906123a6565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016108c9906122d3565b805161103790600a906020840190611dd5565b6008546001600160a01b031633146117005760405162461bcd60e51b81526004016108c9906122d3565b601755565b6008546001600160a01b0316331461172f5760405162461bcd60e51b81526004016108c9906122d3565b6001600160a01b0381166117945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b610d7481611862565b6000826117aa8584611aca565b14949350505050565b6000816001111580156117c7575060005482105b8015610899575050600090815260046020526040902054600160e01b161590565b6000818060011161183e5760005481101561183e5760008181526004602052604081205490600160e01b8216900361183c575b806000036109ee57506000190160008181526004602052604090205461181b565b505b604051636f96cda160e11b815260040160405180910390fd5b610d74816000611b3e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e9903390899088908890600401612469565b6020604051808303816000875af1925050508015611924575060408051601f3d908101601f19168201909252611921918101906124a6565b60015b611982573d808015611952576040519150601f19603f3d011682016040523d82523d6000602084013e611957565b606091505b50805160000361197a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b611037828260405180602001604052806000815250611c88565b6060600980546108f490612308565b6060816000036119f05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1a5780611a04816124c3565b9150611a139050600a836124f2565b91506119f4565b60008167ffffffffffffffff811115611a3557611a356120d9565b6040519080825280601f01601f191660200182016040528015611a5f576020820181803683370190505b5090505b841561199857611a74600183612358565b9150611a81600a86612506565b611a8c90603061236f565b60f81b818381518110611aa157611aa161251a565b60200101906001600160f81b031916908160001a905350611ac3600a866124f2565b9450611a63565b600081815b8451811015611b36576000858281518110611aec57611aec61251a565b60200260200101519050808311611b125760008381526020829052604090209250611b23565b600081815260208490526040902092505b5080611b2e816124c3565b915050611acf565b509392505050565b6000611b49836117e8565b905080600080611b6786600090815260066020526040902080549091565b915091508415611ba757611b7c818433610b5d565b611ba757611b8a83336107e9565b611ba757604051632ce44b5f60e11b815260040160405180910390fd5b8015611bb257600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611c4057600186016000818152600460205260408120549003611c3e576000548114611c3e5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b611c928383611cf5565b6001600160a01b0383163b15610dc1576000548281035b611cbc60008683806001019450866118b4565b611cd9576040516368d2bf6b60e11b815260040160405180910390fd5b818110611ca9578160005414611cee57600080fd5b5050505050565b6000546001600160a01b038316611d1e57604051622e076360e81b815260040160405180910390fd5b81600003611d3f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d895760005550505050565b828054611de190612308565b90600052602060002090601f016020900481019282611e035760008555611e49565b82601f10611e1c57805160ff1916838001178555611e49565b82800160010185558215611e49579182015b82811115611e49578251825591602001919060010190611e2e565b50611e55929150611e59565b5090565b5b80821115611e555760008155600101611e5a565b6001600160e01b031981168114610d7457600080fd5b600060208284031215611e9657600080fd5b81356109ee81611e6e565b80358015158114611eb157600080fd5b919050565b600060208284031215611ec857600080fd5b6109ee82611ea1565b60005b83811015611eec578181015183820152602001611ed4565b838111156112ce5750506000910152565b60008151808452611f15816020860160208601611ed1565b601f01601f19169290920160200192915050565b6020815260006109ee6020830184611efd565b60008083601f840112611f4e57600080fd5b50813567ffffffffffffffff811115611f6657600080fd5b6020830191508360208260051b8501011115611f8157600080fd5b9250929050565b600080600060408486031215611f9d57600080fd5b833567ffffffffffffffff811115611fb457600080fd5b611fc086828701611f3c565b909790965060209590950135949350505050565b600060208284031215611fe657600080fd5b5035919050565b80356001600160a01b0381168114611eb157600080fd5b6000806040838503121561201757600080fd5b61202083611fed565b946020939093013593505050565b60006020828403121561204057600080fd5b6109ee82611fed565b60008060006060848603121561205e57600080fd5b61206784611fed565b925061207560208501611fed565b9150604084013590509250925092565b60008060006040848603121561209a57600080fd5b833567ffffffffffffffff8111156120b157600080fd5b6120bd86828701611f3c565b90945092506120d0905060208501611fed565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210a5761210a6120d9565b604051601f8501601f19908116603f01168101908282118183101715612132576121326120d9565b8160405280935085815286868601111561214b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217757600080fd5b813567ffffffffffffffff81111561218e57600080fd5b8201601f8101841361219f57600080fd5b611998848235602084016120ef565b600080604083850312156121c157600080fd5b6121ca83611fed565b91506121d860208401611ea1565b90509250929050565b600080600080608085870312156121f757600080fd5b61220085611fed565b935061220e60208601611fed565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b612251878235602084016120ef565b91505092959194509250565b60008060006040848603121561227257600080fd5b83359250602084013567ffffffffffffffff81111561229057600080fd5b61229c86828701611f3c565b9497909650939450505050565b600080604083850312156122bc57600080fd5b6122c583611fed565b91506121d860208401611fed565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061231c57607f821691505b60208210810361233c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561236a5761236a612342565b500390565b6000821982111561238257612382612342565b500190565b60008160001904831182151516156123a1576123a1612342565b500290565b6000845160206123b98285838a01611ed1565b8551918401916123cc8184848a01611ed1565b8554920191600090600181811c90808316806123e957607f831692505b858310810361240657634e487b7160e01b85526022600452602485fd5b80801561241a576001811461242b57612458565b60ff19851688528388019550612458565b60008b81526020902060005b858110156124505781548a820152908401908801612437565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249c90830184611efd565b9695505050505050565b6000602082840312156124b857600080fd5b81516109ee81611e6e565b6000600182016124d5576124d5612342565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612501576125016124dc565b500490565b600082612515576125156124dc565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122015963093514c4e27e2365f8430872c12ab04d7533c42e5378ab7f9c8789607dd64736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436f6c6c61676520426f74730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543424f54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569666b676f7536676e69686b3532707a6b69356466736a347461666963786c726f796b646c627a73667969663276326832337369612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c806369988fc51161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610778578063da3ef23f1461078e578063db7356d2146107ae578063e985e9c5146107ce578063f2fde38b14610817578063f7c473be1461083757600080fd5b8063b88d4fde146106e4578063ba41b0c614610704578063c182beb414610717578063c66828621461072d578063c87b56dd14610742578063cca924371461076257600080fd5b80638da5cb5b116101135780638da5cb5b1461064557806395d89b41146106635780639ab9a08214610678578063a1f293871461068e578063a22cb465146106a4578063b079f54c146106c457600080fd5b806369988fc5146105a55780636c0360eb146105bb57806370a08231146105d0578063715018a6146105f05780637f00c7a614610605578063804b6c1f1461062557600080fd5b806323b872dd116101fe57806344a0d68a116101b757806344a0d68a146104eb5780634e67715b1461050b5780635442d1f51461052b57806355f804b31461054b5780635c975abb1461056b5780636352211e1461058557600080fd5b806323b872dd1461044357806332e4c380146104635780633ccfd60b146104835780633e2d687c1461048b57806342842e0e146104ab57806342966c68146104cb57600080fd5b8063095ea7b311610250578063095ea7b31461038957806313faede6146103a95780631582203e146103cd57806318160ddd146103e357806318cae26914610400578063239c70ae1461042d57600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef57806307a7321c1461031157806307cc415e14610331578063081812fc14610351575b600080fd5b3480156102a457600080fd5b506102b86102b3366004611e84565b61084d565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004611eb6565b61089f565b005b3480156102fb57600080fd5b506103046108e5565b6040516102c49190611f29565b34801561031d57600080fd5b506102b861032c366004611f88565b610977565b34801561033d57600080fd5b506102ed61034c366004611fd4565b6109f5565b34801561035d57600080fd5b5061037161036c366004611fd4565b610a24565b6040516001600160a01b0390911681526020016102c4565b34801561039557600080fd5b506102ed6103a4366004612004565b610a68565b3480156103b557600080fd5b506103bf600c5481565b6040519081526020016102c4565b3480156103d957600080fd5b506103bf60155481565b3480156103ef57600080fd5b5060015460005403600019016103bf565b34801561040c57600080fd5b506103bf61041b36600461202e565b60146020526000908152604090205481565b34801561043957600080fd5b506103bf60125481565b34801561044f57600080fd5b506102ed61045e366004612049565b610b08565b34801561046f57600080fd5b506102ed61047e366004611fd4565b610caa565b6102ed610cd9565b34801561049757600080fd5b506102ed6104a6366004611fd4565b610d77565b3480156104b757600080fd5b506102ed6104c6366004612049565b610da6565b3480156104d757600080fd5b506102ed6104e6366004611fd4565b610dc6565b3480156104f757600080fd5b506102ed610506366004611fd4565b610df9565b34801561051757600080fd5b506103bf610526366004612085565b610e28565b34801561053757600080fd5b50600b54610371906001600160a01b031681565b34801561055757600080fd5b506102ed610566366004612165565b610ffa565b34801561057757600080fd5b506013546102b89060ff1681565b34801561059157600080fd5b506103716105a0366004611fd4565b61103b565b3480156105b157600080fd5b506103bf600d5481565b3480156105c757600080fd5b50610304611046565b3480156105dc57600080fd5b506103bf6105eb36600461202e565b6110d4565b3480156105fc57600080fd5b506102ed611123565b34801561061157600080fd5b506102ed610620366004611fd4565b611159565b34801561063157600080fd5b506102ed610640366004611fd4565b611188565b34801561065157600080fd5b506008546001600160a01b0316610371565b34801561066f57600080fd5b506103046111b7565b34801561068457600080fd5b506103bf60175481565b34801561069a57600080fd5b506103bf600f5481565b3480156106b057600080fd5b506102ed6106bf3660046121ae565b6111c6565b3480156106d057600080fd5b506102ed6106df366004611fd4565b61125b565b3480156106f057600080fd5b506102ed6106ff3660046121e1565b61128a565b6102ed61071236600461225d565b6112d4565b34801561072357600080fd5b506103bf60105481565b34801561073957600080fd5b506103046115bf565b34801561074e57600080fd5b5061030461075d366004611fd4565b6115cc565b34801561076e57600080fd5b506103bf60165481565b34801561078457600080fd5b506103bf60115481565b34801561079a57600080fd5b506102ed6107a9366004612165565b611699565b3480156107ba57600080fd5b506102ed6107c9366004611fd4565b6116d6565b3480156107da57600080fd5b506102b86107e93660046122a9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b506102ed61083236600461202e565b611705565b34801561084357600080fd5b506103bf600e5481565b60006301ffc9a760e01b6001600160e01b03198316148061087e57506380ac58cd60e01b6001600160e01b03198316145b806108995750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108d25760405162461bcd60e51b81526004016108c9906122d3565b60405180910390fd5b6013805460ff1916911515919091179055565b6060600280546108f490612308565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612308565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b60006109eb848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015286925060340190506040516020818303038152906040528051906020012061179d565b90505b9392505050565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b81526004016108c9906122d3565b600f55565b6000610a2f826117b3565b610a4c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a738261103b565b9050336001600160a01b03821614610aac57610a8f81336107e9565b610aac576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b13826117e8565b9050836001600160a01b0316816001600160a01b031614610b465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610b728187335b6001600160a01b039081169116811491141790565b610b9d57610b8086336107e9565b610b9d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bc457604051633a954ecd60e21b815260040160405180910390fd5b8015610bcf57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610c6157600184016000818152600460205260408120549003610c5f576000548114610c5f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610cd45760405162461bcd60e51b81526004016108c9906122d3565b601555565b6008546001600160a01b03163314610d035760405162461bcd60e51b81526004016108c9906122d3565b6000610d176008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d61576040519150601f19603f3d011682016040523d82523d6000602084013e610d66565b606091505b5050905080610d7457600080fd5b50565b6008546001600160a01b03163314610da15760405162461bcd60e51b81526004016108c9906122d3565b601055565b610dc18383836040518060200160405280600081525061128a565b505050565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108c9906122d3565b610d7481611857565b6008546001600160a01b03163314610e235760405162461bcd60e51b81526004016108c9906122d3565b600c55565b6000610e3c6008546001600160a01b031690565b6001600160a01b0316826001600160a01b031603610e5d57506103e86109ee565b610e6a8484601754610977565b15610ece576001600160a01b038216600090815260146020526040812054600d54610e959190612358565b11610ea1576000610ec7565b6001600160a01b038216600090815260146020526040902054600d54610ec79190612358565b90506109ee565b610edb8484601554610977565b15610f38576001600160a01b038216600090815260146020526040812054600e54610f069190612358565b11610f12576000610ec7565b6001600160a01b038216600090815260146020526040902054600e54610ec79190612358565b610f458484601654610977565b15610fa2576001600160a01b038216600090815260146020526040812054600f54610f709190612358565b11610f7c576000610ec7565b6001600160a01b038216600090815260146020526040902054600f54610ec79190612358565b6001600160a01b038216600090815260146020526040812054601054610fc89190612358565b11610fd45760006109eb565b6001600160a01b0382166000908152601460205260409020546010546109eb9190612358565b6008546001600160a01b031633146110245760405162461bcd60e51b81526004016108c9906122d3565b8051611037906009906020840190611dd5565b5050565b6000610899826117e8565b6009805461105390612308565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612308565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b505050505081565b60006001600160a01b0382166110fd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461114d5760405162461bcd60e51b81526004016108c9906122d3565b6111576000611862565b565b6008546001600160a01b031633146111835760405162461bcd60e51b81526004016108c9906122d3565b601255565b6008546001600160a01b031633146111b25760405162461bcd60e51b81526004016108c9906122d3565b601655565b6060600380546108f490612308565b336001600160a01b038316036111ef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112855760405162461bcd60e51b81526004016108c9906122d3565b600e55565b611295848484610b08565b6001600160a01b0383163b156112ce576112b1848484846118b4565b6112ce576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60135460ff1615806112f057506008546001600160a01b031633145b6113355760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108c9565b600083116113855760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108c9565b600061139a6001546000546000199190030190565b6011549091506113aa858361236f565b11156113f15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108c9565b6008546001600160a01b031633146114c5573360009081526014602052604081205461141e90869061236f565b60125461142b9190612358565b10156114795760405162461bcd60e51b815260206004820152601d60248201527f6d617820616d6f756e74207065722077616c6c6574207265616368656400000060448201526064016108c9565b60135460ff16156114c55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016108c9565b60006114d2848433610e28565b905060008582116114ec576114e78287612358565b6114ef565b60005b905080600c546114ff9190612387565b3410156115435760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108c9565b60006115576008546001600160a01b031690565b6001600160a01b0316330361157757600b546001600160a01b0316611579565b335b6001600160a01b0381166000908152601460205260408120805492935089929091906115a690849061236f565b909155506115b6905081886119a0565b50505050505050565b600a805461105390612308565b60606115d7826117b3565b61163b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c9565b60006116456119ba565b9050600081511161166557604051806020016040528060008152506109ee565b8061166f846119c9565b600a604051602001611683939291906123a6565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016108c9906122d3565b805161103790600a906020840190611dd5565b6008546001600160a01b031633146117005760405162461bcd60e51b81526004016108c9906122d3565b601755565b6008546001600160a01b0316331461172f5760405162461bcd60e51b81526004016108c9906122d3565b6001600160a01b0381166117945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b610d7481611862565b6000826117aa8584611aca565b14949350505050565b6000816001111580156117c7575060005482105b8015610899575050600090815260046020526040902054600160e01b161590565b6000818060011161183e5760005481101561183e5760008181526004602052604081205490600160e01b8216900361183c575b806000036109ee57506000190160008181526004602052604090205461181b565b505b604051636f96cda160e11b815260040160405180910390fd5b610d74816000611b3e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e9903390899088908890600401612469565b6020604051808303816000875af1925050508015611924575060408051601f3d908101601f19168201909252611921918101906124a6565b60015b611982573d808015611952576040519150601f19603f3d011682016040523d82523d6000602084013e611957565b606091505b50805160000361197a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b611037828260405180602001604052806000815250611c88565b6060600980546108f490612308565b6060816000036119f05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1a5780611a04816124c3565b9150611a139050600a836124f2565b91506119f4565b60008167ffffffffffffffff811115611a3557611a356120d9565b6040519080825280601f01601f191660200182016040528015611a5f576020820181803683370190505b5090505b841561199857611a74600183612358565b9150611a81600a86612506565b611a8c90603061236f565b60f81b818381518110611aa157611aa161251a565b60200101906001600160f81b031916908160001a905350611ac3600a866124f2565b9450611a63565b600081815b8451811015611b36576000858281518110611aec57611aec61251a565b60200260200101519050808311611b125760008381526020829052604090209250611b23565b600081815260208490526040902092505b5080611b2e816124c3565b915050611acf565b509392505050565b6000611b49836117e8565b905080600080611b6786600090815260066020526040902080549091565b915091508415611ba757611b7c818433610b5d565b611ba757611b8a83336107e9565b611ba757604051632ce44b5f60e11b815260040160405180910390fd5b8015611bb257600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611c4057600186016000818152600460205260408120549003611c3e576000548114611c3e5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b611c928383611cf5565b6001600160a01b0383163b15610dc1576000548281035b611cbc60008683806001019450866118b4565b611cd9576040516368d2bf6b60e11b815260040160405180910390fd5b818110611ca9578160005414611cee57600080fd5b5050505050565b6000546001600160a01b038316611d1e57604051622e076360e81b815260040160405180910390fd5b81600003611d3f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611d895760005550505050565b828054611de190612308565b90600052602060002090601f016020900481019282611e035760008555611e49565b82601f10611e1c57805160ff1916838001178555611e49565b82800160010185558215611e49579182015b82811115611e49578251825591602001919060010190611e2e565b50611e55929150611e59565b5090565b5b80821115611e555760008155600101611e5a565b6001600160e01b031981168114610d7457600080fd5b600060208284031215611e9657600080fd5b81356109ee81611e6e565b80358015158114611eb157600080fd5b919050565b600060208284031215611ec857600080fd5b6109ee82611ea1565b60005b83811015611eec578181015183820152602001611ed4565b838111156112ce5750506000910152565b60008151808452611f15816020860160208601611ed1565b601f01601f19169290920160200192915050565b6020815260006109ee6020830184611efd565b60008083601f840112611f4e57600080fd5b50813567ffffffffffffffff811115611f6657600080fd5b6020830191508360208260051b8501011115611f8157600080fd5b9250929050565b600080600060408486031215611f9d57600080fd5b833567ffffffffffffffff811115611fb457600080fd5b611fc086828701611f3c565b909790965060209590950135949350505050565b600060208284031215611fe657600080fd5b5035919050565b80356001600160a01b0381168114611eb157600080fd5b6000806040838503121561201757600080fd5b61202083611fed565b946020939093013593505050565b60006020828403121561204057600080fd5b6109ee82611fed565b60008060006060848603121561205e57600080fd5b61206784611fed565b925061207560208501611fed565b9150604084013590509250925092565b60008060006040848603121561209a57600080fd5b833567ffffffffffffffff8111156120b157600080fd5b6120bd86828701611f3c565b90945092506120d0905060208501611fed565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210a5761210a6120d9565b604051601f8501601f19908116603f01168101908282118183101715612132576121326120d9565b8160405280935085815286868601111561214b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217757600080fd5b813567ffffffffffffffff81111561218e57600080fd5b8201601f8101841361219f57600080fd5b611998848235602084016120ef565b600080604083850312156121c157600080fd5b6121ca83611fed565b91506121d860208401611ea1565b90509250929050565b600080600080608085870312156121f757600080fd5b61220085611fed565b935061220e60208601611fed565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b612251878235602084016120ef565b91505092959194509250565b60008060006040848603121561227257600080fd5b83359250602084013567ffffffffffffffff81111561229057600080fd5b61229c86828701611f3c565b9497909650939450505050565b600080604083850312156122bc57600080fd5b6122c583611fed565b91506121d860208401611fed565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061231c57607f821691505b60208210810361233c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561236a5761236a612342565b500390565b6000821982111561238257612382612342565b500190565b60008160001904831182151516156123a1576123a1612342565b500290565b6000845160206123b98285838a01611ed1565b8551918401916123cc8184848a01611ed1565b8554920191600090600181811c90808316806123e957607f831692505b858310810361240657634e487b7160e01b85526022600452602485fd5b80801561241a576001811461242b57612458565b60ff19851688528388019550612458565b60008b81526020902060005b858110156124505781548a820152908401908801612437565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249c90830184611efd565b9695505050505050565b6000602082840312156124b857600080fd5b81516109ee81611e6e565b6000600182016124d5576124d5612342565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612501576125016124dc565b500490565b600082612515576125156124dc565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122015963093514c4e27e2365f8430872c12ab04d7533c42e5378ab7f9c8789607dd64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000A000000000000000000000000000000000000000000000000000000000000000E0000000000000000000000000000000000000000000000000000000000000000C436F6C6C61676520426F74730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543424F54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733A2F2F62616679626569666B676F7536676E69686B3532707A6B69356466736A347461666963786C726F796B646C627A73667969663276326832337369612F0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Collage Bots
Arg [1] : _symbol (string): CBOTS
Arg [2] : _URI (string): ipfs://bafybeifkgou6gnihk52pzki5dfsj4taficxlroykdlbzsfyif2v2h23sia/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000A0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000E0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000C
Arg [4] : 436F6C6C61676520426F74730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 43424F5453000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733A2F2F62616679626569666B676F7536676E69686B3532707A6B6935
Arg [9] : 6466736A347461666963786C726F796B646C627A736679696632763268323373
Arg [10] : 69612F0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60208:5931:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28776:665;;;;;;;;;;-1:-1:-1;28776:665:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28776:665:0;;;;;;;;65894:79;;;;;;;;;;-1:-1:-1;65894:79:0;;;;;:::i;:::-;;:::i;:::-;;34734:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;62583:319::-;;;;;;;;;;-1:-1:-1;62583:319:0;;;;;:::i;:::-;;:::i;65273:98::-;;;;;;;;;;-1:-1:-1;65273:98:0;;;;;:::i;:::-;;:::i;36809:245::-;;;;;;;;;;-1:-1:-1;36809:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2924:32:1;;;2906:51;;2894:2;2879:18;36809:245:0;2760:203:1;36357:386:0;;;;;;;;;;-1:-1:-1;36357:386:0;;;;;:::i;:::-;;:::i;60443:33::-;;;;;;;;;;;;;;;;;;;3551:25:1;;;3539:2;3524:18;60443:33:0;3405:177:1;60804:36:0;;;;;;;;;;;;;;;;27830:315;;;;;;;;;;-1:-1:-1;27437:1:0;28096:12;27883:7;28080:13;:28;-1:-1:-1;;28080:46:0;27830:315;;60740:55;;;;;;;;;;-1:-1:-1;60740:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;60666:33;;;;;;;;;;;;;;;;46594:2888;;;;;;;;;;-1:-1:-1;46594:2888:0;;;;;:::i;:::-;;:::i;64042:117::-;;;;;;;;;;-1:-1:-1;64042:117:0;;;;;:::i;:::-;;:::i;65981:155::-;;;:::i;65379:106::-;;;;;;;;;;-1:-1:-1;65379:106:0;;;;;:::i;:::-;;:::i;37822:185::-;;;;;;;;;;-1:-1:-1;37822:185:0;;;;;:::i;:::-;;:::i;62490:85::-;;;;;;;;;;-1:-1:-1;62490:85:0;;;;;:::i;:::-;;:::i;65073:86::-;;;;;;;;;;-1:-1:-1;65073:86:0;;;;;:::i;:::-;;:::i;62910:1124::-;;;;;;;;;;-1:-1:-1;62910:1124:0;;;;;:::i;:::-;;:::i;60360:76::-;;;;;;;;;;-1:-1:-1;60360:76:0;;;;-1:-1:-1;;;;;60360:76:0;;;65623:104;;;;;;;;;;-1:-1:-1;65623:104:0;;;;;:::i;:::-;;:::i;60706:25::-;;;;;;;;;;-1:-1:-1;60706:25:0;;;;;;;;34523:144;;;;;;;;;;-1:-1:-1;34523:144:0;;;;;:::i;:::-;;:::i;60483:31::-;;;;;;;;;;;;;;;;60288:21;;;;;;;;;;;;;:::i;29505:224::-;;;;;;;;;;-1:-1:-1;29505:224:0;;;;;:::i;:::-;;:::i;5263:103::-;;;;;;;;;;;;;:::i;65493:122::-;;;;;;;;;;-1:-1:-1;65493:122:0;;;;;:::i;:::-;;:::i;64167:117::-;;;;;;;;;;-1:-1:-1;64167:117:0;;;;;:::i;:::-;;:::i;4612:87::-;;;;;;;;;;-1:-1:-1;4685:6:0;;-1:-1:-1;;;;;4685:6:0;4612:87;;34903:104;;;;;;;;;;;;;:::i;60890:39::-;;;;;;;;;;;;;;;;60556:27;;;;;;;;;;;;;;;;37126:340;;;;;;;;;;-1:-1:-1;37126:340:0;;;;;:::i;:::-;;:::i;65167:98::-;;;;;;;;;;-1:-1:-1;65167:98:0;;;;;:::i;:::-;;:::i;38078:399::-;;;;;;;;;;-1:-1:-1;38078:399:0;;;;;:::i;:::-;;:::i;61258:1032::-;;;;;;:::i;:::-;;:::i;60590:31::-;;;;;;;;;;;;;;;;60316:37;;;;;;;;;;;;;:::i;64423:642::-;;;;;;;;;;-1:-1:-1;64423:642:0;;;;;:::i;:::-;;:::i;60847:36::-;;;;;;;;;;;;;;;;60628:31;;;;;;;;;;;;;;;;65735:151;;;;;;;;;;-1:-1:-1;65735:151:0;;;;;:::i;:::-;;:::i;64292:123::-;;;;;;;;;;-1:-1:-1;64292:123:0;;;;;:::i;:::-;;:::i;37537:214::-;;;;;;;;;;-1:-1:-1;37537:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;37708:25:0;;;37679:4;37708:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37537:214;5521:238;;;;;;;;;;-1:-1:-1;5521:238:0;;;;;:::i;:::-;;:::i;60521:28::-;;;;;;;;;;;;;;;;28776:665;28906:4;-1:-1:-1;;;;;;;;;29211:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;29288:25:0;;;29211:102;:179;;;-1:-1:-1;;;;;;;;;;29365:25:0;;;29211:179;29191:199;28776:665;-1:-1:-1;;28776:665:0:o;65894:79::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;;;;;;;;;65950:6:::1;:15:::0;;-1:-1:-1;;65950:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65894:79::o;34734:100::-;34788:13;34821:5;34814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34734:100;:::o;62583:319::-;62708:4;62750:144;62787:11;;62750:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62850:28:0;;-1:-1:-1;;62867:10:0;8820:2:1;8816:15;8812:53;62850:28:0;;;8800:66:1;62817:4:0;;-1:-1:-1;8882:12:1;;;-1:-1:-1;62850:28:0;;;;;;;;;;;;62840:39;;;;;;62750:18;:144::i;:::-;62730:164;;62583:319;;;;;;:::o;65273:98::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65342:8:::1;:21:::0;65273:98::o;36809:245::-;36913:7;36943:16;36951:7;36943;:16::i;:::-;36938:64;;36968:34;;-1:-1:-1;;;36968:34:0;;;;;;;;;;;36938:64;-1:-1:-1;37022:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37022:24:0;;36809:245::o;36357:386::-;36430:13;36446:16;36454:7;36446;:16::i;:::-;36430:32;-1:-1:-1;4041:10:0;-1:-1:-1;;;;;36479:28:0;;;36475:175;;36527:44;36544:5;4041:10;37537:214;:::i;36527:44::-;36522:128;;36599:35;;-1:-1:-1;;;36599:35:0;;;;;;;;;;;36522:128;36662:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36662:29:0;-1:-1:-1;;;;;36662:29:0;;;;;;;;;36707:28;;36662:24;;36707:28;;;;;;;36419:324;36357:386;;:::o;46594:2888::-;46728:27;46758;46777:7;46758:18;:27::i;:::-;46728:57;;46843:4;-1:-1:-1;;;;;46802:45:0;46818:19;-1:-1:-1;;;;;46802:45:0;;46798:99;;46869:28;;-1:-1:-1;;;46869:28:0;;;;;;;;;;;46798:99;46925:27;45324:21;;;45151:15;45366:4;45359:36;45448:4;45432:21;;45538:26;;47132:62;45538:26;47168:4;4041:10;47174:19;-1:-1:-1;;;;;46143:31:0;;;45989:26;;46270:19;;46291:30;;46267:55;;45695:645;47132:62;47127:191;;47214:43;47231:4;4041:10;37537:214;:::i;47214:43::-;47209:109;;47283:35;;-1:-1:-1;;;47283:35:0;;;;;;;;;;;47209:109;-1:-1:-1;;;;;47335:16:0;;47331:52;;47360:23;;-1:-1:-1;;;47360:23:0;;;;;;;;;;;47331:52;47532:15;47529:160;;;47672:1;47651:19;47644:30;47529:160;-1:-1:-1;;;;;48067:24:0;;;;;;;:18;:24;;;;;;48065:26;;-1:-1:-1;;48065:26:0;;;48136:22;;;;;;;;;48134:24;;-1:-1:-1;48134:24:0;;;34408:11;34384:22;34380:40;34332:111;-1:-1:-1;;;34332:111:0;48429:26;;;;:17;:26;;;;;:195;;;;-1:-1:-1;;;48744:46:0;;:51;;48740:626;;48848:1;48838:11;;48816:19;48971:30;;;:17;:30;;;;;;:35;;48967:384;;49109:13;;49094:11;:28;49090:242;;49256:30;;;;:17;:30;;;;;:52;;;49090:242;48797:569;48740:626;49413:7;49409:2;-1:-1:-1;;;;;49394:27:0;49403:4;-1:-1:-1;;;;;49394:27:0;;;;;;;;;;;46717:2765;;;46594:2888;;;:::o;64042:117::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;64117:21:::1;:34:::0;64042:117::o;65981:155::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;66038:7:::1;66059;4685:6:::0;;-1:-1:-1;;;;;4685:6:0;;4612:87;66059:7:::1;-1:-1:-1::0;;;;;66051:21:0::1;66080;66051:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66037:69;;;66125:2;66117:11;;;::::0;::::1;;66026:110;65981:155::o:0;65379:106::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65452:12:::1;:25:::0;65379:106::o;37822:185::-;37960:39;37977:4;37983:2;37987:7;37960:39;;;;;;;;;;;;:16;:39::i;:::-;37822:185;;;:::o;62490:85::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;62552:15:::1;62558:8;62552:5;:15::i;65073:86::-:0;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65136:4:::1;:15:::0;65073:86::o;62910:1124::-;63036:7;63070;4685:6;;-1:-1:-1;;;;;4685:6:0;;4612:87;63070:7;-1:-1:-1;;;;;63060:17:0;:6;-1:-1:-1;;;;;63060:17:0;;63056:34;;-1:-1:-1;63086:4:0;63079:11;;63056:34;63105:60;63127:11;;63140:24;;63105:21;:60::i;:::-;63101:762;;;-1:-1:-1;;;;;63221:28:0;;63253:1;63221:28;;;:20;:28;;;;;;63207:11;;:42;;63221:28;63207:42;:::i;:::-;63206:48;:139;;63344:1;63206:139;;;-1:-1:-1;;;;;63292:28:0;;;;;;:20;:28;;;;;;63278:11;;:42;;63292:28;63278:42;:::i;:::-;63182:163;;;;63101:762;63367:57;63389:11;;63402:21;;63367;:57::i;:::-;63363:500;;;-1:-1:-1;;;;;63477:28:0;;63509:1;63477:28;;;:20;:28;;;;;;63466:8;;:39;;63477:28;63466:39;:::i;:::-;63465:45;:133;;63597:1;63465:133;;;-1:-1:-1;;;;;63545:28:0;;;;;;:20;:28;;;;;;63534:8;;:39;;63545:28;63534:39;:::i;63363:500::-;63620:57;63642:11;;63655:21;;63620;:57::i;:::-;63616:247;;;-1:-1:-1;;;;;63730:28:0;;63762:1;63730:28;;;:20;:28;;;;;;63719:8;;:39;;63730:28;63719:39;:::i;:::-;63718:45;:133;;63850:1;63718:133;;;-1:-1:-1;;;;;63798:28:0;;;;;;:20;:28;;;;;;63787:8;;:39;;63798:28;63787:39;:::i;63616:247::-;-1:-1:-1;;;;;63909:28:0;;63941:1;63909:28;;;:20;:28;;;;;;63894:12;;:43;;63909:28;63894:43;:::i;:::-;63893:49;:133;;64025:1;63893:133;;;-1:-1:-1;;;;;63977:28:0;;;;;;:20;:28;;;;;;63962:12;;:43;;63977:28;63962:43;:::i;65623:104::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65698:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65623:104:::0;:::o;34523:144::-;34587:7;34630:27;34649:7;34630:18;:27::i;60288:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29505:224::-;29569:7;-1:-1:-1;;;;;29593:19:0;;29589:60;;29621:28;;-1:-1:-1;;;29621:28:0;;;;;;;;;;;29589:60;-1:-1:-1;;;;;;29667:25:0;;;;;:18;:25;;;;;;24010:13;29667:54;;29505:224::o;5263:103::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;5328:30:::1;5355:1;5328:18;:30::i;:::-;5263:103::o:0;65493:122::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65574:13:::1;:33:::0;65493:122::o;64167:117::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;64242:21:::1;:34:::0;64167:117::o;34903:104::-;34959:13;34992:7;34985:14;;;;;:::i;37126:340::-;4041:10;-1:-1:-1;;;;;37257:31:0;;;37253:61;;37297:17;;-1:-1:-1;;;37297:17:0;;;;;;;;;;;37253:61;4041:10;37327:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;37327:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;37327:60:0;;;;;;;;;;37403:55;;540:41:1;;;37327:49:0;;4041:10;37403:55;;513:18:1;37403:55:0;;;;;;;37126:340;;:::o;65167:98::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65236:8:::1;:21:::0;65167:98::o;38078:399::-;38245:31;38258:4;38264:2;38268:7;38245:12;:31::i;:::-;-1:-1:-1;;;;;38291:14:0;;;:19;38287:183;;38330:56;38361:4;38367:2;38371:7;38380:5;38330:30;:56::i;:::-;38325:145;;38414:40;;-1:-1:-1;;;38414:40:0;;;;;;;;;;;38325:145;38078:399;;;;:::o;61258:1032::-;61383:6;;;;61382:7;;:32;;-1:-1:-1;4685:6:0;;-1:-1:-1;;;;;4685:6:0;61393:10;:21;61382:32;61374:67;;;;-1:-1:-1;;;61374:67:0;;9579:2:1;61374:67:0;;;9561:21:1;9618:2;9598:18;;;9591:30;-1:-1:-1;;;9637:18:1;;;9630:52;9699:18;;61374:67:0;9377:346:1;61374:67:0;61474:1;61460:11;:15;61452:55;;;;-1:-1:-1;;;61452:55:0;;9930:2:1;61452:55:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:29;9988:18;;;9981:57;10055:18;;61452:55:0;9728:351:1;61452:55:0;61518:14;61535:13;27437:1;28096:12;27883:7;28080:13;-1:-1:-1;;28080:28:0;;;:46;;27830:315;61535:13;61591:9;;61518:30;;-1:-1:-1;61567:20:0;61576:11;61518:30;61567:20;:::i;:::-;:33;;61559:68;;;;-1:-1:-1;;;61559:68:0;;10419:2:1;61559:68:0;;;10401:21:1;10458:2;10438:18;;;10431:30;-1:-1:-1;;;10477:18:1;;;10470:52;10539:18;;61559:68:0;10217:346:1;61559:68:0;4685:6;;-1:-1:-1;;;;;4685:6:0;61641:10;:21;61638:221;;61725:10;61755:1;61704:32;;;:20;:32;;;;;;:46;;61739:11;;61704:46;:::i;:::-;61687:13;;:64;;;;:::i;:::-;:69;;61679:111;;;;-1:-1:-1;;;61679:111:0;;10770:2:1;61679:111:0;;;10752:21:1;10809:2;10789:18;;;10782:30;10848:31;10828:18;;;10821:59;10897:18;;61679:111:0;10568:353:1;61679:111:0;61814:6;;;;61813:7;61805:42;;;;-1:-1:-1;;;61805:42:0;;9579:2:1;61805:42:0;;;9561:21:1;9618:2;9598:18;;;9591:30;-1:-1:-1;;;9637:18:1;;;9630:52;9699:18;;61805:42:0;9377:346:1;61805:42:0;61869:20;61892:47;61915:11;;61928:10;61892:22;:47::i;:::-;61869:70;;61950:17;61985:11;61970:12;:26;:59;;62003:26;62017:12;62003:11;:26;:::i;:::-;61970:59;;;61999:1;61970:59;61950:79;;62068:9;62061:4;;:16;;;;:::i;:::-;62048:9;:29;;62040:60;;;;-1:-1:-1;;;62040:60:0;;11301:2:1;62040:60:0;;;11283:21:1;11340:2;11320:18;;;11313:30;-1:-1:-1;;;11359:18:1;;;11352:48;11417:18;;62040:60:0;11099:342:1;62040:60:0;62111:16;62144:7;4685:6;;-1:-1:-1;;;;;4685:6:0;;4612:87;62144:7;-1:-1:-1;;;;;62130:21:0;:10;:21;:53;;62167:16;;-1:-1:-1;;;;;62167:16:0;62130:53;;;62154:10;62130:53;-1:-1:-1;;;;;62194:30:0;;;;;;:20;:30;;;;;:45;;62111:72;;-1:-1:-1;62228:11:0;;62194:30;;;:45;;62228:11;;62194:45;:::i;:::-;;;;-1:-1:-1;62250:32:0;;-1:-1:-1;62260:8:0;62270:11;62250:9;:32::i;:::-;61363:927;;;;61258:1032;;;:::o;60316:37::-;;;;;;;:::i;64423:642::-;64541:13;64594:16;64602:7;64594;:16::i;:::-;64572:113;;;;-1:-1:-1;;;64572:113:0;;11648:2:1;64572:113:0;;;11630:21:1;11687:2;11667:18;;;11660:30;11726:34;11706:18;;;11699:62;-1:-1:-1;;;11777:18:1;;;11770:45;11832:19;;64572:113:0;11446:411:1;64572:113:0;64698:28;64729:10;:8;:10::i;:::-;64698:41;;64801:1;64776:14;64770:28;:32;:287;;;;;;;;;;;;;;;;;64894:14;64935:18;:7;:16;:18::i;:::-;64980:13;64851:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64750:307;64423:642;-1:-1:-1;;;64423:642:0:o;65735:151::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;65845:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;64292:123::-:0;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;64370:24:::1;:37:::0;64292:123::o;5521:238::-;4685:6;;-1:-1:-1;;;;;4685:6:0;4041:10;4832:23;4824:68;;;;-1:-1:-1;;;4824:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5624:22:0;::::1;5602:110;;;::::0;-1:-1:-1;;;5602:110:0;;13722:2:1;5602:110:0::1;::::0;::::1;13704:21:1::0;13761:2;13741:18;;;13734:30;13800:34;13780:18;;;13773:62;-1:-1:-1;;;13851:18:1;;;13844:36;13897:19;;5602:110:0::1;13520:402:1::0;5602:110:0::1;5723:28;5742:8;5723:18;:28::i;420:190::-:0;545:4;598;569:25;582:5;589:4;569:12;:25::i;:::-;:33;;420:190;-1:-1:-1;;;;420:190:0:o;38732:273::-;38789:4;38845:7;27437:1;38826:26;;:66;;;;;38879:13;;38869:7;:23;38826:66;:152;;;;-1:-1:-1;;38930:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;38930:43:0;:48;;38732:273::o;31231:1161::-;31325:7;31365;;27437:1;31414:23;31410:915;;31467:13;;31460:4;:20;31456:869;;;31505:14;31522:23;;;:17;:23;;;;;;;-1:-1:-1;;;31611:23:0;;:28;;31607:699;;32130:113;32137:6;32147:1;32137:11;32130:113;;-1:-1:-1;;;32208:6:0;32190:25;;;;:17;:25;;;;;;32130:113;;31607:699;31482:843;31456:869;32353:31;;-1:-1:-1;;;32353:31:0;;;;;;;;;;;49560:89;49620:21;49626:7;49635:5;49620;:21::i;5919:191::-;6012:6;;;-1:-1:-1;;;;;6029:17:0;;;-1:-1:-1;;;;;;6029:17:0;;;;;;;6062:40;;6012:6;;;6029:17;6012:6;;6062:40;;5993:16;;6062:40;5982:128;5919:191;:::o;53512:831::-;53709:171;;-1:-1:-1;;;53709:171:0;;53675:4;;-1:-1:-1;;;;;53709:45:0;;;;;:171;;4041:10;;53811:4;;53834:7;;53860:5;;53709:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53709:171:0;;;;;;;;-1:-1:-1;;53709:171:0;;;;;;;;;;;;:::i;:::-;;;53692:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54094:6;:13;54111:1;54094:18;54090:235;;54140:40;;-1:-1:-1;;;54140:40:0;;;;;;;;;;;54090:235;54283:6;54277:13;54268:6;54264:2;54260:15;54253:38;53692:644;-1:-1:-1;;;;;;53953:81:0;-1:-1:-1;;;53953:81:0;;-1:-1:-1;53692:644:0;53512:831;;;;;;:::o;39089:104::-;39158:27;39168:2;39172:8;39158:27;;;;;;;;;;;;:9;:27::i;61142:108::-;61202:13;61235:7;61228:14;;;;;:::i;2137:723::-;2193:13;2414:5;2423:1;2414:10;2410:53;;-1:-1:-1;;2441:10:0;;;;;;;;;;;;-1:-1:-1;;;2441:10:0;;;;;2137:723::o;2410:53::-;2488:5;2473:12;2529:78;2536:9;;2529:78;;2562:8;;;;:::i;:::-;;-1:-1:-1;2585:10:0;;-1:-1:-1;2593:2:0;2585:10;;:::i;:::-;;;2529:78;;;2617:19;2649:6;2639:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2639:17:0;;2617:39;;2667:154;2674:10;;2667:154;;2701:11;2711:1;2701:11;;:::i;:::-;;-1:-1:-1;2770:10:0;2778:2;2770:5;:10;:::i;:::-;2757:24;;:2;:24;:::i;:::-;2744:39;;2727:6;2734;2727:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2727:56:0;;;;;;;;-1:-1:-1;2798:11:0;2807:2;2798:11;;:::i;:::-;;;2667:154;;971:707;1081:7;1129:4;1081:7;1144:497;1168:5;:12;1164:1;:16;1144:497;;;1202:20;1225:5;1231:1;1225:8;;;;;;;;:::i;:::-;;;;;;;1202:31;;1268:12;1252;:28;1248:382;;1781:13;1836:15;;;1872:4;1865:15;;;1919:4;1903:21;;1380:57;;1248:382;;;1781:13;1836:15;;;1872:4;1865:15;;;1919:4;1903:21;;1557:57;;1248:382;-1:-1:-1;1182:3:0;;;;:::i;:::-;;;;1144:497;;;-1:-1:-1;1658:12:0;971:707;-1:-1:-1;;;971:707:0:o;49878:3142::-;49958:27;49988;50007:7;49988:18;:27::i;:::-;49958:57;-1:-1:-1;49958:57:0;50028:12;;50187:28;50207:7;45025:27;45324:21;;;45151:15;45366:4;45359:36;45448:4;45432:21;;45538:26;;45432:21;;44930:652;50187:28;50093:122;;;;50232:13;50228:331;;;50353:62;50372:15;50389:4;4041:10;50395:19;3961:98;50353:62;50348:199;;50439:43;50456:4;4041:10;37537:214;:::i;50439:43::-;50434:113;;50512:35;;-1:-1:-1;;;50512:35:0;;;;;;;;;;;50434:113;50715:15;50712:160;;;50855:1;50834:19;50827:30;50712:160;-1:-1:-1;;;;;51473:24:0;;;;;;:18;:24;;;;;:59;;51501:31;51473:59;;;34408:11;34384:22;34380:40;34332:111;-1:-1:-1;;;34332:111:0;51770:26;;;;:17;:26;;;;;:224;;;;-1:-1:-1;;;52114:46:0;;:51;;52110:626;;52218:1;52208:11;;52186:19;52341:30;;;:17;:30;;;;;;:35;;52337:384;;52479:13;;52464:11;:28;52460:242;;52626:30;;;;:17;:30;;;;;:52;;;52460:242;52167:569;52110:626;52764:35;;52791:7;;52787:1;;-1:-1:-1;;;;;52764:35:0;;;;;52787:1;;52764:35;-1:-1:-1;;52987:12:0;:14;;;;;;-1:-1:-1;;;;49878:3142:0:o;39609:872::-;39732:19;39738:2;39742:8;39732:5;:19::i;:::-;-1:-1:-1;;;;;39793:14:0;;;:19;39789:674;;39833:11;39847:13;39895:14;;;39928:424;39985:205;40054:1;40087:2;40120:7;;;;;;40158:5;39985:30;:205::i;:::-;39954:358;;40248:40;;-1:-1:-1;;;40248:40:0;;;;;;;;;;;39954:358;40347:3;40339:5;:11;39928:424;;40434:3;40417:13;;:20;40413:34;;40439:8;;;40413:34;39814:649;;39609:872;;;:::o;40754:1584::-;40819:20;40842:13;-1:-1:-1;;;;;40870:16:0;;40866:48;;40895:19;;-1:-1:-1;;;40895:19:0;;;;;;;;;;;40866:48;40929:8;40941:1;40929:13;40925:44;;40951:18;;-1:-1:-1;;;40951:18:0;;;;;;;;;;;40925:44;-1:-1:-1;;;;;41457:22:0;;;;;;:18;:22;;24147:2;41457:22;;:104;;41529:31;41500:61;;41457:104;;;34408:11;34384:22;34380:40;-1:-1:-1;36261:15:0;;36236:23;36232:45;34377:51;34332:111;41804:31;;;;:17;:31;;;;;:194;41822:12;42074:23;;;42112:101;42139:35;;42164:9;;;;;-1:-1:-1;;;;;42139:35:0;;;42156:1;;42139:35;;42156:1;;42139:35;42208:3;42198:7;:13;42112:101;;42229:13;:19;-1:-1:-1;37822:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:367::-;1756:8;1766:6;1820:3;1813:4;1805:6;1801:17;1797:27;1787:55;;1838:1;1835;1828:12;1787:55;-1:-1:-1;1861:20:1;;1904:18;1893:30;;1890:50;;;1936:1;1933;1926:12;1890:50;1973:4;1965:6;1961:17;1949:29;;2033:3;2026:4;2016:6;2013:1;2009:14;2001:6;1997:27;1993:38;1990:47;1987:67;;;2050:1;2047;2040:12;1987:67;1693:367;;;;;:::o;2065:505::-;2160:6;2168;2176;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;2285:9;2272:23;2318:18;2310:6;2307:30;2304:50;;;2350:1;2347;2340:12;2304:50;2389:70;2451:7;2442:6;2431:9;2427:22;2389:70;:::i;:::-;2478:8;;2363:96;;-1:-1:-1;2560:2:1;2545:18;;;;2532:32;;2065:505;-1:-1:-1;;;;2065:505:1:o;2575:180::-;2634:6;2687:2;2675:9;2666:7;2662:23;2658:32;2655:52;;;2703:1;2700;2693:12;2655:52;-1:-1:-1;2726:23:1;;2575:180;-1:-1:-1;2575:180:1:o;2968:173::-;3036:20;;-1:-1:-1;;;;;3085:31:1;;3075:42;;3065:70;;3131:1;3128;3121:12;3146:254;3214:6;3222;3275:2;3263:9;3254:7;3250:23;3246:32;3243:52;;;3291:1;3288;3281:12;3243:52;3314:29;3333:9;3314:29;:::i;:::-;3304:39;3390:2;3375:18;;;;3362:32;;-1:-1:-1;;;3146:254:1:o;3769:186::-;3828:6;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3920:29;3939:9;3920:29;:::i;3960:328::-;4037:6;4045;4053;4106:2;4094:9;4085:7;4081:23;4077:32;4074:52;;;4122:1;4119;4112:12;4074:52;4145:29;4164:9;4145:29;:::i;:::-;4135:39;;4193:38;4227:2;4216:9;4212:18;4193:38;:::i;:::-;4183:48;;4278:2;4267:9;4263:18;4250:32;4240:42;;3960:328;;;;;:::o;4478:511::-;4573:6;4581;4589;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4698:9;4685:23;4731:18;4723:6;4720:30;4717:50;;;4763:1;4760;4753:12;4717:50;4802:70;4864:7;4855:6;4844:9;4840:22;4802:70;:::i;:::-;4891:8;;-1:-1:-1;4776:96:1;-1:-1:-1;4945:38:1;;-1:-1:-1;4979:2:1;4964:18;;4945:38;:::i;:::-;4935:48;;4478:511;;;;;:::o;4994:127::-;5055:10;5050:3;5046:20;5043:1;5036:31;5086:4;5083:1;5076:15;5110:4;5107:1;5100:15;5126:632;5191:5;5221:18;5262:2;5254:6;5251:14;5248:40;;;5268:18;;:::i;:::-;5343:2;5337:9;5311:2;5397:15;;-1:-1:-1;;5393:24:1;;;5419:2;5389:33;5385:42;5373:55;;;5443:18;;;5463:22;;;5440:46;5437:72;;;5489:18;;:::i;:::-;5529:10;5525:2;5518:22;5558:6;5549:15;;5588:6;5580;5573:22;5628:3;5619:6;5614:3;5610:16;5607:25;5604:45;;;5645:1;5642;5635:12;5604:45;5695:6;5690:3;5683:4;5675:6;5671:17;5658:44;5750:1;5743:4;5734:6;5726;5722:19;5718:30;5711:41;;;;5126:632;;;;;:::o;5763:451::-;5832:6;5885:2;5873:9;5864:7;5860:23;5856:32;5853:52;;;5901:1;5898;5891:12;5853:52;5941:9;5928:23;5974:18;5966:6;5963:30;5960:50;;;6006:1;6003;5996:12;5960:50;6029:22;;6082:4;6074:13;;6070:27;-1:-1:-1;6060:55:1;;6111:1;6108;6101:12;6060:55;6134:74;6200:7;6195:2;6182:16;6177:2;6173;6169:11;6134:74;:::i;6219:254::-;6284:6;6292;6345:2;6333:9;6324:7;6320:23;6316:32;6313:52;;;6361:1;6358;6351:12;6313:52;6384:29;6403:9;6384:29;:::i;:::-;6374:39;;6432:35;6463:2;6452:9;6448:18;6432:35;:::i;:::-;6422:45;;6219:254;;;;;:::o;6478:667::-;6573:6;6581;6589;6597;6650:3;6638:9;6629:7;6625:23;6621:33;6618:53;;;6667:1;6664;6657:12;6618:53;6690:29;6709:9;6690:29;:::i;:::-;6680:39;;6738:38;6772:2;6761:9;6757:18;6738:38;:::i;:::-;6728:48;;6823:2;6812:9;6808:18;6795:32;6785:42;;6878:2;6867:9;6863:18;6850:32;6905:18;6897:6;6894:30;6891:50;;;6937:1;6934;6927:12;6891:50;6960:22;;7013:4;7005:13;;7001:27;-1:-1:-1;6991:55:1;;7042:1;7039;7032:12;6991:55;7065:74;7131:7;7126:2;7113:16;7108:2;7104;7100:11;7065:74;:::i;:::-;7055:84;;;6478:667;;;;;;;:::o;7150:505::-;7245:6;7253;7261;7314:2;7302:9;7293:7;7289:23;7285:32;7282:52;;;7330:1;7327;7320:12;7282:52;7366:9;7353:23;7343:33;;7427:2;7416:9;7412:18;7399:32;7454:18;7446:6;7443:30;7440:50;;;7486:1;7483;7476:12;7440:50;7525:70;7587:7;7578:6;7567:9;7563:22;7525:70;:::i;:::-;7150:505;;7614:8;;-1:-1:-1;7499:96:1;;-1:-1:-1;;;;7150:505:1:o;7660:260::-;7728:6;7736;7789:2;7777:9;7768:7;7764:23;7760:32;7757:52;;;7805:1;7802;7795:12;7757:52;7828:29;7847:9;7828:29;:::i;:::-;7818:39;;7876:38;7910:2;7899:9;7895:18;7876:38;:::i;7925:356::-;8127:2;8109:21;;;8146:18;;;8139:30;8205:34;8200:2;8185:18;;8178:62;8272:2;8257:18;;7925:356::o;8286:380::-;8365:1;8361:12;;;;8408;;;8429:61;;8483:4;8475:6;8471:17;8461:27;;8429:61;8536:2;8528:6;8525:14;8505:18;8502:38;8499:161;;8582:10;8577:3;8573:20;8570:1;8563:31;8617:4;8614:1;8607:15;8645:4;8642:1;8635:15;8499:161;;8286:380;;;:::o;9115:127::-;9176:10;9171:3;9167:20;9164:1;9157:31;9207:4;9204:1;9197:15;9231:4;9228:1;9221:15;9247:125;9287:4;9315:1;9312;9309:8;9306:34;;;9320:18;;:::i;:::-;-1:-1:-1;9357:9:1;;9247:125::o;10084:128::-;10124:3;10155:1;10151:6;10148:1;10145:13;10142:39;;;10161:18;;:::i;:::-;-1:-1:-1;10197:9:1;;10084:128::o;10926:168::-;10966:7;11032:1;11028;11024:6;11020:14;11017:1;11014:21;11009:1;11002:9;10995:17;10991:45;10988:71;;;11039:18;;:::i;:::-;-1:-1:-1;11079:9:1;;10926:168::o;11988:1527::-;12212:3;12250:6;12244:13;12276:4;12289:51;12333:6;12328:3;12323:2;12315:6;12311:15;12289:51;:::i;:::-;12403:13;;12362:16;;;;12425:55;12403:13;12362:16;12447:15;;;12425:55;:::i;:::-;12569:13;;12502:20;;;12542:1;;12629;12651:18;;;;12704;;;;12731:93;;12809:4;12799:8;12795:19;12783:31;;12731:93;12872:2;12862:8;12859:16;12839:18;12836:40;12833:167;;-1:-1:-1;;;12899:33:1;;12955:4;12952:1;12945:15;12985:4;12906:3;12973:17;12833:167;13016:18;13043:110;;;;13167:1;13162:328;;;;13009:481;;13043:110;-1:-1:-1;;13078:24:1;;13064:39;;13123:20;;;;-1:-1:-1;13043:110:1;;13162:328;11935:1;11928:14;;;11972:4;11959:18;;13257:1;13271:169;13285:8;13282:1;13279:15;13271:169;;;13367:14;;13352:13;;;13345:37;13410:16;;;;13302:10;;13271:169;;;13275:3;;13471:8;13464:5;13460:20;13453:27;;13009:481;-1:-1:-1;13506:3:1;;11988:1527;-1:-1:-1;;;;;;;;;;;11988:1527:1:o;13927:489::-;-1:-1:-1;;;;;14196:15:1;;;14178:34;;14248:15;;14243:2;14228:18;;14221:43;14295:2;14280:18;;14273:34;;;14343:3;14338:2;14323:18;;14316:31;;;14121:4;;14364:46;;14390:19;;14382:6;14364:46;:::i;:::-;14356:54;13927:489;-1:-1:-1;;;;;;13927:489:1:o;14421:249::-;14490:6;14543:2;14531:9;14522:7;14518:23;14514:32;14511:52;;;14559:1;14556;14549:12;14511:52;14591:9;14585:16;14610:30;14634:5;14610:30;:::i;14675:135::-;14714:3;14735:17;;;14732:43;;14755:18;;:::i;:::-;-1:-1:-1;14802:1:1;14791:13;;14675:135::o;14815:127::-;14876:10;14871:3;14867:20;14864:1;14857:31;14907:4;14904:1;14897:15;14931:4;14928:1;14921:15;14947:120;14987:1;15013;15003:35;;15018:18;;:::i;:::-;-1:-1:-1;15052:9:1;;14947:120::o;15072:112::-;15104:1;15130;15120:35;;15135:18;;:::i;:::-;-1:-1:-1;15169:9:1;;15072:112::o;15189:127::-;15250:10;15245:3;15241:20;15238:1;15231:31;15281:4;15278:1;15271:15;15305:4;15302:1;15295:15

Swarm Source

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