ETH Price: $3,395.78 (-1.84%)
Gas: 6 Gwei

Token

BambuBillionaires (BB)
 

Overview

Max Total Supply

1,500 BB

Holders

341

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
joeprz1321.eth
Balance
2 BB
0xbd6b34a1d5db3ff53386307c6d505bb4afdc9cf4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to Bambu Billionaires, a new and unique NFT living on the Ethereum blockchain. 1,500 programmatically generated Pandas in a 3D art format. Join the billionaire gang!!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BambuBillionaires

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-08
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

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

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

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
pragma solidity ^0.8.0;

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

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

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





// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]
pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        //require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.9;

contract BambuBillionaires is ERC721A
{
    using Strings for uint256;

    string public baseURI;
    uint256 public cost;
    uint256 public maxSupply;
    uint256 public maxMintAmount = 3;
    uint256 public maxMintPerTransaction;
    uint256 private podiumAwardsCount;
    address public owner;
    bool public preSaleLive;
    bool public mintLive;

    mapping(address => bool) private whiteList;
    mapping(address => uint256) private mintCount;
    mapping(uint256 => string) private podiumAwards;

    modifier onlyOwner() {
        require(owner == msg.sender, "not owner");
        _;
    }

    modifier preSaleIsLive() {
        require(preSaleLive, "preSale not live");
        _;
    }

    modifier mintIsLive() {
        require(mintLive, "mint not live");
        _;
    }

    constructor(string memory defaultBaseURI) ERC721A("BambuBillionaires", "BB", maxMintAmount) {
        owner = msg.sender;
        baseURI = defaultBaseURI;
        maxSupply = 1500;
        maxMintPerTransaction = 3;
        cost = 0 ether;
        podiumAwardsCount = 20;
    }

    function isWhiteListed(address _address) public view returns (bool){
        return whiteList[_address];
    }

    function mintedByAddressCount(address _address) public view returns (uint256){
        return mintCount[_address];
    }

    // Minting functions
    function mint(uint256 _mintAmount) external payable mintIsLive {
        address _to = msg.sender;
        uint256 minted = mintCount[_to];
        require(minted + _mintAmount <= maxMintAmount, "mint over max");
        require(_mintAmount <= maxMintPerTransaction, "amount must < max");
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        mintCount[_to] = minted + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function preSaleMint(uint256 _mintAmount) external payable preSaleIsLive {
        address _to = msg.sender;
        uint256 minted = mintCount[_to];
        require(whiteList[_to], "not whitelisted");
        require(minted + _mintAmount <= maxMintAmount, "mint over max");
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        require(msg.value >= cost * _mintAmount, "insufficient funds");

        mintCount[_to] = minted + _mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    // Only Owner executable functions
    function mintByOwner(address _to, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "mint over supply");
        if (_mintAmount <= maxBatchSize) {
            _safeMint(_to, _mintAmount);
            return;
        }
        
        uint256 leftToMint = _mintAmount;
        while (leftToMint > 0) {
            if (leftToMint <= maxBatchSize) {
                _safeMint(_to, leftToMint);
                return;
            }
            _safeMint(_to, maxBatchSize);
            leftToMint = leftToMint - maxBatchSize;
        }
    }

    function addToWhiteList(address[] calldata _addresses) external onlyOwner {
        for (uint256 i; i < _addresses.length; i++) {
            whiteList[_addresses[i]] = true;
        }
    }

    function airdrop(address[] calldata _addresses, uint[] calldata _mintAmount) external onlyOwner {
        require(_addresses.length == _mintAmount.length, "Lists need to be the same length");
        for (uint256 i; i < _addresses.length; i++) {
            _safeMint(_addresses[i], _mintAmount[i]);
        }
    }

    function togglePreSaleLive() external onlyOwner {
        if (preSaleLive) {
            preSaleLive = false;
            return;
        }
        preSaleLive = true;
    }

    function toggleMintLive() external onlyOwner {
        if (mintLive) {
            mintLive = false;
            return;
        }
        preSaleLive = false;
        mintLive = true;
    }

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

  function setmaxMintPerTransaction(uint256 _newmaxMintPerTransaction) public onlyOwner {
      maxMintPerTransaction = _newmaxMintPerTransaction;
  }

    function setBaseURI(string memory _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function withdraw() external payable onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    // token URI functionality
    function setPodiumAwardTokenURI(uint256 _tokenId, string memory _tokenURI) external onlyOwner {
        require(_tokenId < podiumAwardsCount, "tokenId above max awards");
        podiumAwards[_tokenId] = _tokenURI;
    }

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

        if (bytes(podiumAwards[_tokenId]).length > 0) {
            return podiumAwards[_tokenId];
        }

        string memory baseTokenURI = _baseURI();
        string memory json = ".json";
        return bytes(baseTokenURI).length > 0
            ? string(abi.encodePacked(baseTokenURI, _tokenId.toString(), json))
            : '';
    }

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

    function changeOwner(address _newOwner) public onlyOwner {
        owner = _newOwner;
    }

    fallback() external payable { }

    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"defaultBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhiteListed","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":"maxMintPerTransaction","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"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintedByAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":"_newURI","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":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setPodiumAwardTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintPerTransaction","type":"uint256"}],"name":"setmaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000805560006007556003600b553480156200001f57600080fd5b506040516200307c3803806200307c833981016040819052620000429162000165565b6040518060400160405280601181526020017042616d627542696c6c696f6e616972657360781b81525060405180604001604052806002815260200161212160f11b815250600b5460008111620000ef5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b6001620000fd8482620002d0565b5060026200010c8382620002d0565b506080525050600e80546001600160a01b031916331790556008620001328282620002d0565b50506105dc600a556003600c5560006009556014600d556200039c565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200017957600080fd5b82516001600160401b03808211156200019157600080fd5b818501915085601f830112620001a657600080fd5b815181811115620001bb57620001bb6200014f565b604051601f8201601f19908116603f01168101908382118183101715620001e657620001e66200014f565b816040528281528886848701011115620001ff57600080fd5b600093505b8284101562000223578484018601518185018701529285019262000204565b82841115620002355760008684830101525b98975050505050505050565b600181811c908216806200025657607f821691505b6020821081036200027757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cb57600081815260208120601f850160051c81016020861015620002a65750805b601f850160051c820191505b81811015620002c757828155600101620002b2565b5050505b505050565b81516001600160401b03811115620002ec57620002ec6200014f565b6200030481620002fd845462000241565b846200027d565b602080601f8311600181146200033c5760008415620003235750858301515b600019600386901b1c1916600185901b178555620002c7565b600085815260208120601f198616915b828110156200036d578886015182559484019460019091019084016200034c565b50858210156200038c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612ca1620003db60003960008181610d4c01528181610d8901528181610dbe01528181610de701528181611ee70152611f110152612ca16000f3fe60806040526004361061023d5760003560e01c80636352211e1161012d5780638da5cb5b116100b0578063b88d4fde11610077578063b88d4fde146106ac578063c87b56dd146106cc578063d5abeb01146106ec578063d7224ba014610702578063e8656fcc14610718578063e985e9c51461073957005b80638da5cb5b1461062457806395d89b4114610644578063a0712d6814610659578063a22cb4651461066c578063a6f9dae11461068c57005b8063740d73f3116100f4578063740d73f31461059c5780637835c635146105bc57806378835f42146105cf5780637f00c7a6146105ef57806389bdeec61461060f57005b80636352211e146104ee578063672434821461050e5780636c0360eb1461052e5780636f9170f61461054357806370a082311461057c57005b80632d20fb60116101c05780633ccfd60b116101875780633ccfd60b1461044557806342842e0e1461044d57806344a0d68a1461046d5780634f6ccce71461048d57806355f804b3146104ad5780635bd90b76146104cd57005b80632d20fb601461038f5780632f745c59146103af578063315955fd146103cf5780633542aee2146103ef57806337351b0f1461040f57005b8063105739b811610204578063105739b81461031957806313faede61461032e57806318160ddd14610344578063239c70ae1461035957806323b872dd1461036f57005b806301f569971461024657806301ffc9a71461026f57806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f957005b3661024457005b005b34801561025257600080fd5b5061025c600c5481565b6040519081526020015b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004612493565b610782565b6040519015158152602001610266565b3480156102ab57600080fd5b506102b46107ef565b604051610266919061250f565b3480156102cd57600080fd5b506102e16102dc366004612522565b610881565b6040516001600160a01b039091168152602001610266565b34801561030557600080fd5b50610244610314366004612557565b610911565b34801561032557600080fd5b50610244610a28565b34801561033a57600080fd5b5061025c60095481565b34801561035057600080fd5b5060005461025c565b34801561036557600080fd5b5061025c600b5481565b34801561037b57600080fd5b5061024461038a366004612581565b610a89565b34801561039b57600080fd5b506102446103aa366004612522565b610a94565b3480156103bb57600080fd5b5061025c6103ca366004612557565b610aca565b3480156103db57600080fd5b506102446103ea366004612668565b610c35565b3480156103fb57600080fd5b5061024461040a366004612557565b610cc8565b34801561041b57600080fd5b5061025c61042a3660046126ae565b6001600160a01b031660009081526010602052604090205490565b610244610e13565b34801561045957600080fd5b50610244610468366004612581565b610ec7565b34801561047957600080fd5b50610244610488366004612522565b610ee2565b34801561049957600080fd5b5061025c6104a8366004612522565b610f11565b3480156104b957600080fd5b506102446104c83660046126c9565b610f73565b3480156104d957600080fd5b50600e5461028f90600160a01b900460ff1681565b3480156104fa57600080fd5b506102e1610509366004612522565b610fa9565b34801561051a57600080fd5b50610244610529366004612748565b610fbb565b34801561053a57600080fd5b506102b46110a0565b34801561054f57600080fd5b5061028f61055e3660046126ae565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561058857600080fd5b5061025c6105973660046126ae565b61112e565b3480156105a857600080fd5b506102446105b73660046127b3565b6111bf565b6102446105ca366004612522565b61125b565b3480156105db57600080fd5b506102446105ea366004612522565b611426565b3480156105fb57600080fd5b5061024461060a366004612522565b611455565b34801561061b57600080fd5b50610244611484565b34801561063057600080fd5b50600e546102e1906001600160a01b031681565b34801561065057600080fd5b506102b46114e4565b610244610667366004612522565b6114f3565b34801561067857600080fd5b506102446106873660046127f4565b6115dd565b34801561069857600080fd5b506102446106a73660046126ae565b6116a1565b3480156106b857600080fd5b506102446106c7366004612830565b6116ed565b3480156106d857600080fd5b506102b46106e7366004612522565b611726565b3480156106f857600080fd5b5061025c600a5481565b34801561070e57600080fd5b5061025c60075481565b34801561072457600080fd5b50600e5461028f90600160a81b900460ff1681565b34801561074557600080fd5b5061028f6107543660046128ab565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806107b357506001600160e01b03198216635b5e139f60e01b145b806107ce57506001600160e01b0319821663780e9d6360e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fe906128de565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906128de565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088e826000541190565b6108f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061091c82610fa9565b9050806001600160a01b0316836001600160a01b03160361098a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ec565b336001600160a01b03821614806109a657506109a68133610754565b610a185760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ec565b610a238383836118b8565b505050565b600e546001600160a01b03163314610a525760405162461bcd60e51b81526004016108ec90612918565b600e54600160a81b900460ff1615610a7357600e805460ff60a81b19169055565b600e805461ffff60a01b1916600160a81b179055565b610a23838383611914565b600e546001600160a01b03163314610abe5760405162461bcd60e51b81526004016108ec90612918565b610ac781611c9a565b50565b6000610ad58361112e565b8210610b2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ec565b600080549080805b83811015610bd5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8857805192505b876001600160a01b0316836001600160a01b031603610bc257868403610bb4575093506107e992505050565b83610bbe81612951565b9450505b5080610bcd81612951565b915050610b36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ec565b600e546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016108ec90612918565b600d548210610cb05760405162461bcd60e51b815260206004820152601860248201527f746f6b656e49642061626f7665206d617820617761726473000000000000000060448201526064016108ec565b6000828152601160205260409020610a2382826129b0565b600e546001600160a01b03163314610cf25760405162461bcd60e51b81526004016108ec90612918565b600a5481610cff60005490565b610d099190612a6f565b1115610d4a5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b60448201526064016108ec565b7f00000000000000000000000000000000000000000000000000000000000000008111610d7f57610d7b8282611e4b565b5050565b805b8015610a23577f00000000000000000000000000000000000000000000000000000000000000008111610db857610a238382611e4b565b610de2837f0000000000000000000000000000000000000000000000000000000000000000611e4b565b610e0c7f000000000000000000000000000000000000000000000000000000000000000082612a87565b9050610d81565b600e546001600160a01b03163314610e3d5760405162461bcd60e51b81526004016108ec90612918565b604051600090339047908381818185875af1925050503d8060008114610e7f576040519150601f19603f3d011682016040523d82523d6000602084013e610e84565b606091505b5050905080610ac75760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016108ec565b610a23838383604051806020016040528060008152506116ed565b600e546001600160a01b03163314610f0c5760405162461bcd60e51b81526004016108ec90612918565b600955565b600080548210610f6f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ec565b5090565b600e546001600160a01b03163314610f9d5760405162461bcd60e51b81526004016108ec90612918565b6008610d7b82826129b0565b6000610fb482611e65565b5192915050565b600e546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108ec90612918565b8281146110345760405162461bcd60e51b815260206004820181905260248201527f4c69737473206e65656420746f206265207468652073616d65206c656e67746860448201526064016108ec565b60005b838110156110995761108785858381811061105457611054612a9e565b905060200201602081019061106991906126ae565b84848481811061107b5761107b612a9e565b90506020020135611e4b565b8061109181612951565b915050611037565b5050505050565b600880546110ad906128de565b80601f01602080910402602001604051908101604052809291908181526020018280546110d9906128de565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b60006001600160a01b03821661119a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b031633146111e95760405162461bcd60e51b81526004016108ec90612918565b60005b81811015610a23576001600f600085858581811061120c5761120c612a9e565b905060200201602081019061122191906126ae565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125381612951565b9150506111ec565b600e54600160a01b900460ff166112a75760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b60448201526064016108ec565b33600081815260106020908152604080832054600f9092529091205460ff166113045760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016108ec565b600b546113118483612a6f565b111561134f5760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b60448201526064016108ec565b600a548361135c60005490565b6113669190612a6f565b11156113a75760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b60448201526064016108ec565b826009546113b59190612ab4565b3410156113f95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ec565b6114038382612a6f565b6001600160a01b038316600090815260106020526040902055610a233384611e4b565b600e546001600160a01b031633146114505760405162461bcd60e51b81526004016108ec90612918565b600c55565b600e546001600160a01b0316331461147f5760405162461bcd60e51b81526004016108ec90612918565b600b55565b600e546001600160a01b031633146114ae5760405162461bcd60e51b81526004016108ec90612918565b600e54600160a01b900460ff16156114cf57600e805460ff60a01b19169055565b600e805460ff60a01b1916600160a01b179055565b6060600280546107fe906128de565b600e54600160a81b900460ff1661153c5760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b60448201526064016108ec565b33600081815260106020526040902054600b546115598483612a6f565b11156115975760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b60448201526064016108ec565b600c5483111561134f5760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b60448201526064016108ec565b336001600160a01b038316036116355760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e546001600160a01b031633146116cb5760405162461bcd60e51b81526004016108ec90612918565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6116f8848484611914565b6117048484848461200e565b6117205760405162461bcd60e51b81526004016108ec90612ad3565b50505050565b6060611733826000541190565b61177f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b60008281526011602052604081208054611798906128de565b9050111561183e57600082815260116020526040902080546117b9906128de565b80601f01602080910402602001604051908101604052809291908181526020018280546117e5906128de565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b50505050509050919050565b600061184861210f565b604080518082019091526005815264173539b7b760d91b602082015281519192509061188357604051806020016040528060008152506118b0565b8161188d8561211e565b826040516020016118a093929190612b26565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191f82611e65565b80519091506000906001600160a01b0316336001600160a01b0316148061195657503361194b84610881565b6001600160a01b0316145b80611968575081516119689033610754565b9050806119d25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ec565b846001600160a01b031682600001516001600160a01b031614611a465760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ec565b6001600160a01b038416611aaa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ec565b611aba60008484600001516118b8565b6001600160a01b0385166000908152600460205260408120805460019290611aec9084906001600160801b0316612b69565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b3891859116612b91565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bbf846001612a6f565b6000818152600360205260409020549091506001600160a01b0316611c5057611be9816000541190565b15611c505760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611cea5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ec565b60006001611cf88484612a6f565b611d029190612a87565b90506001600054611d139190612a87565b811115611d2c576001600054611d299190612a87565b90505b611d37816000541190565b611d925760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ec565b815b818111611e37576000818152600360205260409020546001600160a01b0316611e25576000611dc282611e65565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e2f81612951565b915050611d94565b50611e43816001612a6f565b600755505050565b610d7b82826040518060200160405280600081525061221e565b6040805180820190915260008082526020820152611e84826000541190565b611ee35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ec565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f4457611f367f000000000000000000000000000000000000000000000000000000000000000084612a87565b611f41906001612a6f565b90505b825b818110611fad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f9a57949350505050565b5080611fa581612bbc565b915050611f46565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ec565b60006001600160a01b0384163b1561210457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612052903390899088908890600401612bd3565b6020604051808303816000875af192505050801561208d575060408051601f3d908101601f1916820190925261208a91810190612c10565b60015b6120ea573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516000036120e25760405162461bcd60e51b81526004016108ec90612ad3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b0565b506001949350505050565b6060600880546107fe906128de565b6060816000036121455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216f578061215981612951565b91506121689050600a83612c43565b9150612149565b6000816001600160401b03811115612189576121896125bd565b6040519080825280601f01601f1916602001820160405280156121b3576020820181803683370190505b5090505b84156118b0576121c8600183612a87565b91506121d5600a86612c57565b6121e0906030612a6f565b60f81b8183815181106121f5576121f5612a9e565b60200101906001600160f81b031916908160001a905350612217600a86612c43565b94506121b7565b6000546001600160a01b0384166122815760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ec565b61228c816000541190565b156122d95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ec565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612335908790612b91565b6001600160801b031681526020018583602001516123539190612b91565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124725760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612436600088848861200e565b6124525760405162461bcd60e51b81526004016108ec90612ad3565b8161245c81612951565b925050808061246a90612951565b9150506123e9565b506000819055611c92565b6001600160e01b031981168114610ac757600080fd5b6000602082840312156124a557600080fd5b81356124b08161247d565b9392505050565b60005b838110156124d25781810151838201526020016124ba565b838111156117205750506000910152565b600081518084526124fb8160208601602086016124b7565b601f01601f19169290920160200192915050565b6020815260006124b060208301846124e3565b60006020828403121561253457600080fd5b5035919050565b80356001600160a01b038116811461255257600080fd5b919050565b6000806040838503121561256a57600080fd5b6125738361253b565b946020939093013593505050565b60008060006060848603121561259657600080fd5b61259f8461253b565b92506125ad6020850161253b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156125ed576125ed6125bd565b604051601f8501601f19908116603f01168101908282118183101715612615576126156125bd565b8160405280935085815286868601111561262e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261265957600080fd5b6124b0838335602085016125d3565b6000806040838503121561267b57600080fd5b8235915060208301356001600160401b0381111561269857600080fd5b6126a485828601612648565b9150509250929050565b6000602082840312156126c057600080fd5b6124b08261253b565b6000602082840312156126db57600080fd5b81356001600160401b038111156126f157600080fd5b6118b084828501612648565b60008083601f84011261270f57600080fd5b5081356001600160401b0381111561272657600080fd5b6020830191508360208260051b850101111561274157600080fd5b9250929050565b6000806000806040858703121561275e57600080fd5b84356001600160401b038082111561277557600080fd5b612781888389016126fd565b9096509450602087013591508082111561279a57600080fd5b506127a7878288016126fd565b95989497509550505050565b600080602083850312156127c657600080fd5b82356001600160401b038111156127dc57600080fd5b6127e8858286016126fd565b90969095509350505050565b6000806040838503121561280757600080fd5b6128108361253b565b91506020830135801515811461282557600080fd5b809150509250929050565b6000806000806080858703121561284657600080fd5b61284f8561253b565b935061285d6020860161253b565b92506040850135915060608501356001600160401b0381111561287f57600080fd5b8501601f8101871361289057600080fd5b61289f878235602084016125d3565b91505092959194509250565b600080604083850312156128be57600080fd5b6128c78361253b565b91506128d56020840161253b565b90509250929050565b600181811c908216806128f257607f821691505b60208210810361291257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016129635761296361293b565b5060010190565b601f821115610a2357600081815260208120601f850160051c810160208610156129915750805b601f850160051c820191505b81811015611c925782815560010161299d565b81516001600160401b038111156129c9576129c96125bd565b6129dd816129d784546128de565b8461296a565b602080601f831160018114612a1257600084156129fa5750858301515b600019600386901b1c1916600185901b178555611c92565b600085815260208120601f198616915b82811015612a4157888601518255948401946001909101908401612a22565b5085821015612a5f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612a8257612a8261293b565b500190565b600082821015612a9957612a9961293b565b500390565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612ace57612ace61293b565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451612b388184602089016124b7565b845190830190612b4c8183602089016124b7565b8451910190612b5f8183602088016124b7565b0195945050505050565b60006001600160801b0383811690831681811015612b8957612b8961293b565b039392505050565b60006001600160801b03808316818516808303821115612bb357612bb361293b565b01949350505050565b600081612bcb57612bcb61293b565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c06908301846124e3565b9695505050505050565b600060208284031215612c2257600080fd5b81516124b08161247d565b634e487b7160e01b600052601260045260246000fd5b600082612c5257612c52612c2d565b500490565b600082612c6657612c66612c2d565b50069056fea2646970667358221220cfc0424ac34e556fae43700d1314eb43b4e0c164c616686e862edafc5ce786bf64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637243714b716441464d646a37634e4761696b7758454e4875596d366a654b70436470697476715a65526b762f00000000000000000000

Deployed Bytecode

0x60806040526004361061023d5760003560e01c80636352211e1161012d5780638da5cb5b116100b0578063b88d4fde11610077578063b88d4fde146106ac578063c87b56dd146106cc578063d5abeb01146106ec578063d7224ba014610702578063e8656fcc14610718578063e985e9c51461073957005b80638da5cb5b1461062457806395d89b4114610644578063a0712d6814610659578063a22cb4651461066c578063a6f9dae11461068c57005b8063740d73f3116100f4578063740d73f31461059c5780637835c635146105bc57806378835f42146105cf5780637f00c7a6146105ef57806389bdeec61461060f57005b80636352211e146104ee578063672434821461050e5780636c0360eb1461052e5780636f9170f61461054357806370a082311461057c57005b80632d20fb60116101c05780633ccfd60b116101875780633ccfd60b1461044557806342842e0e1461044d57806344a0d68a1461046d5780634f6ccce71461048d57806355f804b3146104ad5780635bd90b76146104cd57005b80632d20fb601461038f5780632f745c59146103af578063315955fd146103cf5780633542aee2146103ef57806337351b0f1461040f57005b8063105739b811610204578063105739b81461031957806313faede61461032e57806318160ddd14610344578063239c70ae1461035957806323b872dd1461036f57005b806301f569971461024657806301ffc9a71461026f57806306fdde031461029f578063081812fc146102c1578063095ea7b3146102f957005b3661024457005b005b34801561025257600080fd5b5061025c600c5481565b6040519081526020015b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004612493565b610782565b6040519015158152602001610266565b3480156102ab57600080fd5b506102b46107ef565b604051610266919061250f565b3480156102cd57600080fd5b506102e16102dc366004612522565b610881565b6040516001600160a01b039091168152602001610266565b34801561030557600080fd5b50610244610314366004612557565b610911565b34801561032557600080fd5b50610244610a28565b34801561033a57600080fd5b5061025c60095481565b34801561035057600080fd5b5060005461025c565b34801561036557600080fd5b5061025c600b5481565b34801561037b57600080fd5b5061024461038a366004612581565b610a89565b34801561039b57600080fd5b506102446103aa366004612522565b610a94565b3480156103bb57600080fd5b5061025c6103ca366004612557565b610aca565b3480156103db57600080fd5b506102446103ea366004612668565b610c35565b3480156103fb57600080fd5b5061024461040a366004612557565b610cc8565b34801561041b57600080fd5b5061025c61042a3660046126ae565b6001600160a01b031660009081526010602052604090205490565b610244610e13565b34801561045957600080fd5b50610244610468366004612581565b610ec7565b34801561047957600080fd5b50610244610488366004612522565b610ee2565b34801561049957600080fd5b5061025c6104a8366004612522565b610f11565b3480156104b957600080fd5b506102446104c83660046126c9565b610f73565b3480156104d957600080fd5b50600e5461028f90600160a01b900460ff1681565b3480156104fa57600080fd5b506102e1610509366004612522565b610fa9565b34801561051a57600080fd5b50610244610529366004612748565b610fbb565b34801561053a57600080fd5b506102b46110a0565b34801561054f57600080fd5b5061028f61055e3660046126ae565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561058857600080fd5b5061025c6105973660046126ae565b61112e565b3480156105a857600080fd5b506102446105b73660046127b3565b6111bf565b6102446105ca366004612522565b61125b565b3480156105db57600080fd5b506102446105ea366004612522565b611426565b3480156105fb57600080fd5b5061024461060a366004612522565b611455565b34801561061b57600080fd5b50610244611484565b34801561063057600080fd5b50600e546102e1906001600160a01b031681565b34801561065057600080fd5b506102b46114e4565b610244610667366004612522565b6114f3565b34801561067857600080fd5b506102446106873660046127f4565b6115dd565b34801561069857600080fd5b506102446106a73660046126ae565b6116a1565b3480156106b857600080fd5b506102446106c7366004612830565b6116ed565b3480156106d857600080fd5b506102b46106e7366004612522565b611726565b3480156106f857600080fd5b5061025c600a5481565b34801561070e57600080fd5b5061025c60075481565b34801561072457600080fd5b50600e5461028f90600160a81b900460ff1681565b34801561074557600080fd5b5061028f6107543660046128ab565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806107b357506001600160e01b03198216635b5e139f60e01b145b806107ce57506001600160e01b0319821663780e9d6360e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fe906128de565b80601f016020809104026020016040519081016040528092919081815260200182805461082a906128de565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088e826000541190565b6108f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061091c82610fa9565b9050806001600160a01b0316836001600160a01b03160361098a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108ec565b336001600160a01b03821614806109a657506109a68133610754565b610a185760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108ec565b610a238383836118b8565b505050565b600e546001600160a01b03163314610a525760405162461bcd60e51b81526004016108ec90612918565b600e54600160a81b900460ff1615610a7357600e805460ff60a81b19169055565b600e805461ffff60a01b1916600160a81b179055565b610a23838383611914565b600e546001600160a01b03163314610abe5760405162461bcd60e51b81526004016108ec90612918565b610ac781611c9a565b50565b6000610ad58361112e565b8210610b2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108ec565b600080549080805b83811015610bd5576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8857805192505b876001600160a01b0316836001600160a01b031603610bc257868403610bb4575093506107e992505050565b83610bbe81612951565b9450505b5080610bcd81612951565b915050610b36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108ec565b600e546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016108ec90612918565b600d548210610cb05760405162461bcd60e51b815260206004820152601860248201527f746f6b656e49642061626f7665206d617820617761726473000000000000000060448201526064016108ec565b6000828152601160205260409020610a2382826129b0565b600e546001600160a01b03163314610cf25760405162461bcd60e51b81526004016108ec90612918565b600a5481610cff60005490565b610d099190612a6f565b1115610d4a5760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b60448201526064016108ec565b7f00000000000000000000000000000000000000000000000000000000000000038111610d7f57610d7b8282611e4b565b5050565b805b8015610a23577f00000000000000000000000000000000000000000000000000000000000000038111610db857610a238382611e4b565b610de2837f0000000000000000000000000000000000000000000000000000000000000003611e4b565b610e0c7f000000000000000000000000000000000000000000000000000000000000000382612a87565b9050610d81565b600e546001600160a01b03163314610e3d5760405162461bcd60e51b81526004016108ec90612918565b604051600090339047908381818185875af1925050503d8060008114610e7f576040519150601f19603f3d011682016040523d82523d6000602084013e610e84565b606091505b5050905080610ac75760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016108ec565b610a23838383604051806020016040528060008152506116ed565b600e546001600160a01b03163314610f0c5760405162461bcd60e51b81526004016108ec90612918565b600955565b600080548210610f6f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108ec565b5090565b600e546001600160a01b03163314610f9d5760405162461bcd60e51b81526004016108ec90612918565b6008610d7b82826129b0565b6000610fb482611e65565b5192915050565b600e546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108ec90612918565b8281146110345760405162461bcd60e51b815260206004820181905260248201527f4c69737473206e65656420746f206265207468652073616d65206c656e67746860448201526064016108ec565b60005b838110156110995761108785858381811061105457611054612a9e565b905060200201602081019061106991906126ae565b84848481811061107b5761107b612a9e565b90506020020135611e4b565b8061109181612951565b915050611037565b5050505050565b600880546110ad906128de565b80601f01602080910402602001604051908101604052809291908181526020018280546110d9906128de565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505081565b60006001600160a01b03821661119a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600e546001600160a01b031633146111e95760405162461bcd60e51b81526004016108ec90612918565b60005b81811015610a23576001600f600085858581811061120c5761120c612a9e565b905060200201602081019061122191906126ae565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061125381612951565b9150506111ec565b600e54600160a01b900460ff166112a75760405162461bcd60e51b815260206004820152601060248201526f70726553616c65206e6f74206c69766560801b60448201526064016108ec565b33600081815260106020908152604080832054600f9092529091205460ff166113045760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016108ec565b600b546113118483612a6f565b111561134f5760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b60448201526064016108ec565b600a548361135c60005490565b6113669190612a6f565b11156113a75760405162461bcd60e51b815260206004820152601060248201526f6d696e74206f76657220737570706c7960801b60448201526064016108ec565b826009546113b59190612ab4565b3410156113f95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ec565b6114038382612a6f565b6001600160a01b038316600090815260106020526040902055610a233384611e4b565b600e546001600160a01b031633146114505760405162461bcd60e51b81526004016108ec90612918565b600c55565b600e546001600160a01b0316331461147f5760405162461bcd60e51b81526004016108ec90612918565b600b55565b600e546001600160a01b031633146114ae5760405162461bcd60e51b81526004016108ec90612918565b600e54600160a01b900460ff16156114cf57600e805460ff60a01b19169055565b600e805460ff60a01b1916600160a01b179055565b6060600280546107fe906128de565b600e54600160a81b900460ff1661153c5760405162461bcd60e51b815260206004820152600d60248201526c6d696e74206e6f74206c69766560981b60448201526064016108ec565b33600081815260106020526040902054600b546115598483612a6f565b11156115975760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840deeccae440dac2f609b1b60448201526064016108ec565b600c5483111561134f5760405162461bcd60e51b81526020600482015260116024820152700c2dadeeadce840daeae6e8407840dac2f607b1b60448201526064016108ec565b336001600160a01b038316036116355760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e546001600160a01b031633146116cb5760405162461bcd60e51b81526004016108ec90612918565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6116f8848484611914565b6117048484848461200e565b6117205760405162461bcd60e51b81526004016108ec90612ad3565b50505050565b6060611733826000541190565b61177f5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b60008281526011602052604081208054611798906128de565b9050111561183e57600082815260116020526040902080546117b9906128de565b80601f01602080910402602001604051908101604052809291908181526020018280546117e5906128de565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b50505050509050919050565b600061184861210f565b604080518082019091526005815264173539b7b760d91b602082015281519192509061188357604051806020016040528060008152506118b0565b8161188d8561211e565b826040516020016118a093929190612b26565b6040516020818303038152906040525b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061191f82611e65565b80519091506000906001600160a01b0316336001600160a01b0316148061195657503361194b84610881565b6001600160a01b0316145b80611968575081516119689033610754565b9050806119d25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108ec565b846001600160a01b031682600001516001600160a01b031614611a465760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108ec565b6001600160a01b038416611aaa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108ec565b611aba60008484600001516118b8565b6001600160a01b0385166000908152600460205260408120805460019290611aec9084906001600160801b0316612b69565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b3891859116612b91565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611bbf846001612a6f565b6000818152600360205260409020549091506001600160a01b0316611c5057611be9816000541190565b15611c505760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611cea5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108ec565b60006001611cf88484612a6f565b611d029190612a87565b90506001600054611d139190612a87565b811115611d2c576001600054611d299190612a87565b90505b611d37816000541190565b611d925760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016108ec565b815b818111611e37576000818152600360205260409020546001600160a01b0316611e25576000611dc282611e65565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611e2f81612951565b915050611d94565b50611e43816001612a6f565b600755505050565b610d7b82826040518060200160405280600081525061221e565b6040805180820190915260008082526020820152611e84826000541190565b611ee35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ec565b60007f00000000000000000000000000000000000000000000000000000000000000038310611f4457611f367f000000000000000000000000000000000000000000000000000000000000000384612a87565b611f41906001612a6f565b90505b825b818110611fad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611f9a57949350505050565b5080611fa581612bbc565b915050611f46565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108ec565b60006001600160a01b0384163b1561210457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612052903390899088908890600401612bd3565b6020604051808303816000875af192505050801561208d575060408051601f3d908101601f1916820190925261208a91810190612c10565b60015b6120ea573d8080156120bb576040519150601f19603f3d011682016040523d82523d6000602084013e6120c0565b606091505b5080516000036120e25760405162461bcd60e51b81526004016108ec90612ad3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118b0565b506001949350505050565b6060600880546107fe906128de565b6060816000036121455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216f578061215981612951565b91506121689050600a83612c43565b9150612149565b6000816001600160401b03811115612189576121896125bd565b6040519080825280601f01601f1916602001820160405280156121b3576020820181803683370190505b5090505b84156118b0576121c8600183612a87565b91506121d5600a86612c57565b6121e0906030612a6f565b60f81b8183815181106121f5576121f5612a9e565b60200101906001600160f81b031916908160001a905350612217600a86612c43565b94506121b7565b6000546001600160a01b0384166122815760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108ec565b61228c816000541190565b156122d95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108ec565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612335908790612b91565b6001600160801b031681526020018583602001516123539190612b91565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124725760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612436600088848861200e565b6124525760405162461bcd60e51b81526004016108ec90612ad3565b8161245c81612951565b925050808061246a90612951565b9150506123e9565b506000819055611c92565b6001600160e01b031981168114610ac757600080fd5b6000602082840312156124a557600080fd5b81356124b08161247d565b9392505050565b60005b838110156124d25781810151838201526020016124ba565b838111156117205750506000910152565b600081518084526124fb8160208601602086016124b7565b601f01601f19169290920160200192915050565b6020815260006124b060208301846124e3565b60006020828403121561253457600080fd5b5035919050565b80356001600160a01b038116811461255257600080fd5b919050565b6000806040838503121561256a57600080fd5b6125738361253b565b946020939093013593505050565b60008060006060848603121561259657600080fd5b61259f8461253b565b92506125ad6020850161253b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156125ed576125ed6125bd565b604051601f8501601f19908116603f01168101908282118183101715612615576126156125bd565b8160405280935085815286868601111561262e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261265957600080fd5b6124b0838335602085016125d3565b6000806040838503121561267b57600080fd5b8235915060208301356001600160401b0381111561269857600080fd5b6126a485828601612648565b9150509250929050565b6000602082840312156126c057600080fd5b6124b08261253b565b6000602082840312156126db57600080fd5b81356001600160401b038111156126f157600080fd5b6118b084828501612648565b60008083601f84011261270f57600080fd5b5081356001600160401b0381111561272657600080fd5b6020830191508360208260051b850101111561274157600080fd5b9250929050565b6000806000806040858703121561275e57600080fd5b84356001600160401b038082111561277557600080fd5b612781888389016126fd565b9096509450602087013591508082111561279a57600080fd5b506127a7878288016126fd565b95989497509550505050565b600080602083850312156127c657600080fd5b82356001600160401b038111156127dc57600080fd5b6127e8858286016126fd565b90969095509350505050565b6000806040838503121561280757600080fd5b6128108361253b565b91506020830135801515811461282557600080fd5b809150509250929050565b6000806000806080858703121561284657600080fd5b61284f8561253b565b935061285d6020860161253b565b92506040850135915060608501356001600160401b0381111561287f57600080fd5b8501601f8101871361289057600080fd5b61289f878235602084016125d3565b91505092959194509250565b600080604083850312156128be57600080fd5b6128c78361253b565b91506128d56020840161253b565b90509250929050565b600181811c908216806128f257607f821691505b60208210810361291257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600990820152683737ba1037bbb732b960b91b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016129635761296361293b565b5060010190565b601f821115610a2357600081815260208120601f850160051c810160208610156129915750805b601f850160051c820191505b81811015611c925782815560010161299d565b81516001600160401b038111156129c9576129c96125bd565b6129dd816129d784546128de565b8461296a565b602080601f831160018114612a1257600084156129fa5750858301515b600019600386901b1c1916600185901b178555611c92565b600085815260208120601f198616915b82811015612a4157888601518255948401946001909101908401612a22565b5085821015612a5f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612a8257612a8261293b565b500190565b600082821015612a9957612a9961293b565b500390565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612ace57612ace61293b565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451612b388184602089016124b7565b845190830190612b4c8183602089016124b7565b8451910190612b5f8183602088016124b7565b0195945050505050565b60006001600160801b0383811690831681811015612b8957612b8961293b565b039392505050565b60006001600160801b03808316818516808303821115612bb357612bb361293b565b01949350505050565b600081612bcb57612bcb61293b565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c06908301846124e3565b9695505050505050565b600060208284031215612c2257600080fd5b81516124b08161247d565b634e487b7160e01b600052601260045260246000fd5b600082612c5257612c52612c2d565b500490565b600082612c6657612c66612c2d565b50069056fea2646970667358221220cfc0424ac34e556fae43700d1314eb43b4e0c164c616686e862edafc5ce786bf64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637243714b716441464d646a37634e4761696b7758454e4875596d366a654b70436470697476715a65526b762f00000000000000000000

-----Decoded View---------------
Arg [0] : defaultBaseURI (string): ipfs://QmcrCqKqdAFMdj7cNGaikwXENHuYm6jeKpCdpitvqZeRkv/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d637243714b716441464d646a37634e4761696b7758454e
Arg [3] : 4875596d366a654b70436470697476715a65526b762f00000000000000000000


Deployed Bytecode Sourcemap

59046:5933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59250:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;59250:36:0;;;;;;;;46000:372;;;;;;;;;;-1:-1:-1;46000:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;46000:372:0;582:187:1;47805:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49366:214::-;;;;;;;;;;-1:-1:-1;49366:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;49366:214:0;1710:203:1;48887:413:0;;;;;;;;;;-1:-1:-1;48887:413:0;;;;;:::i;:::-;;:::i;62912:197::-;;;;;;;;;;;;;:::i;59154:19::-;;;;;;;;;;;;;;;;44441:100;;;;;;;;;;-1:-1:-1;44494:7:0;44521:12;44441:100;;59211:32;;;;;;;;;;;;;;;;50242:162;;;;;;;;;;-1:-1:-1;50242:162:0;;;;;:::i;:::-;;:::i;63779:111::-;;;;;;;;;;-1:-1:-1;63779:111:0;;;;;:::i;:::-;;:::i;45105:823::-;;;;;;;;;;-1:-1:-1;45105:823:0;;;;;:::i;:::-;;:::i;63930:223::-;;;;;;;;;;-1:-1:-1;63930:223:0;;;;;:::i;:::-;;:::i;61581:606::-;;;;;;;;;;-1:-1:-1;61581:606:0;;;;;:::i;:::-;;:::i;60289:122::-;;;;;;;;;;-1:-1:-1;60289:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;60384:19:0;60358:7;60384:19;;;:9;:19;;;;;;;60289:122;63591:180;;;:::i;50475:177::-;;;;;;;;;;-1:-1:-1;50475:177:0;;;;;:::i;:::-;;:::i;63117:80::-;;;;;;;;;;-1:-1:-1;63117:80:0;;;;;:::i;:::-;;:::i;44618:187::-;;;;;;;;;;-1:-1:-1;44618:187:0;;;;;:::i;:::-;;:::i;63485:98::-;;;;;;;;;;-1:-1:-1;63485:98:0;;;;;:::i;:::-;;:::i;59360:23::-;;;;;;;;;;-1:-1:-1;59360:23:0;;;;-1:-1:-1;;;59360:23:0;;;;;;47614:124;;;;;;;;;;-1:-1:-1;47614:124:0;;;;;:::i;:::-;;:::i;62397:320::-;;;;;;;;;;-1:-1:-1;62397:320:0;;;;;:::i;:::-;;:::i;59126:21::-;;;;;;;;;;;;;:::i;60169:112::-;;;;;;;;;;-1:-1:-1;60169:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;60254:19:0;60231:4;60254:19;;;:9;:19;;;;;;;;;60169:112;46436:221;;;;;;;;;;-1:-1:-1;46436:221:0;;;;;:::i;:::-;;:::i;62195:194::-;;;;;;;;;;-1:-1:-1;62195:194:0;;;;;:::i;:::-;;:::i;61000:533::-;;;;;;:::i;:::-;;:::i;63327:150::-;;;;;;;;;;-1:-1:-1;63327:150:0;;;;;:::i;:::-;;:::i;63205:116::-;;;;;;;;;;-1:-1:-1;63205:116:0;;;;;:::i;:::-;;:::i;62725:179::-;;;;;;;;;;;;;:::i;59333:20::-;;;;;;;;;;-1:-1:-1;59333:20:0;;;;-1:-1:-1;;;;;59333:20:0;;;47974:104;;;;;;;;;;;;;:::i;60445:547::-;;;;;;:::i;:::-;;:::i;49652:288::-;;;;;;;;;;-1:-1:-1;49652:288:0;;;;;:::i;:::-;;:::i;64806:93::-;;;;;;;;;;-1:-1:-1;64806:93:0;;;;;:::i;:::-;;:::i;50723:355::-;;;;;;;;;;-1:-1:-1;50723:355:0;;;;;:::i;:::-;;:::i;64161:521::-;;;;;;;;;;-1:-1:-1;64161:521:0;;;;;:::i;:::-;;:::i;59180:24::-;;;;;;;;;;;;;;;;55385:43;;;;;;;;;;;;;;;;59390:20;;;;;;;;;;-1:-1:-1;59390:20:0;;;;-1:-1:-1;;;59390:20:0;;;;;;50011:164;;;;;;;;;;-1:-1:-1;50011:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50132:25:0;;;50108:4;50132:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50011:164;46000:372;46102:4;-1:-1:-1;;;;;;46139:40:0;;-1:-1:-1;;;46139:40:0;;:105;;-1:-1:-1;;;;;;;46196:48:0;;-1:-1:-1;;;46196:48:0;46139:105;:172;;;-1:-1:-1;;;;;;;46261:50:0;;-1:-1:-1;;;46261:50:0;46139:172;:225;;;-1:-1:-1;;;;;;;;;;20930:40:0;;;46328:36;46119:245;46000:372;-1:-1:-1;;46000:372:0:o;47805:100::-;47859:13;47892:5;47885:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47805:100;:::o;49366:214::-;49434:7;49462:16;49470:7;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;49462:16;49454:74;;;;-1:-1:-1;;;49454:74:0;;8065:2:1;49454:74:0;;;8047:21:1;8104:2;8084:18;;;8077:30;8143:34;8123:18;;;8116:62;-1:-1:-1;;;8194:18:1;;;8187:43;8247:19;;49454:74:0;;;;;;;;;-1:-1:-1;49548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49548:24:0;;49366:214::o;48887:413::-;48960:13;48976:24;48992:7;48976:15;:24::i;:::-;48960:40;;49025:5;-1:-1:-1;;;;;49019:11:0;:2;-1:-1:-1;;;;;49019:11:0;;49011:58;;;;-1:-1:-1;;;49011:58:0;;8479:2:1;49011:58:0;;;8461:21:1;8518:2;8498:18;;;8491:30;8557:34;8537:18;;;8530:62;-1:-1:-1;;;8608:18:1;;;8601:32;8650:19;;49011:58:0;8277:398:1;49011:58:0;19889:10;-1:-1:-1;;;;;49104:21:0;;;;:62;;-1:-1:-1;49129:37:0;49146:5;19889:10;50011:164;:::i;49129:37::-;49082:169;;;;-1:-1:-1;;;49082:169:0;;8882:2:1;49082:169:0;;;8864:21:1;8921:2;8901:18;;;8894:30;8960:34;8940:18;;;8933:62;9031:27;9011:18;;;9004:55;9076:19;;49082:169:0;8680:421:1;49082:169:0;49264:28;49273:2;49277:7;49286:5;49264:8;:28::i;:::-;48949:351;48887:413;;:::o;62912:197::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;62972:8:::1;::::0;-1:-1:-1;;;62972:8:0;::::1;;;62968:78;;;62997:8;:16:::0;;-1:-1:-1;;;;62997:16:0::1;::::0;;62912:197::o;62968:78::-:1;63056:11;:19:::0;;-1:-1:-1;;;;63086:15:0;-1:-1:-1;;;63086:15:0::1;::::0;;62912:197::o;50242:162::-;50368:28;50378:4;50384:2;50388:7;50368:9;:28::i;63779:111::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63854:28:::1;63873:8;63854:18;:28::i;:::-;63779:111:::0;:::o;45105:823::-;45194:7;45230:16;45240:5;45230:9;:16::i;:::-;45222:5;:24;45214:71;;;;-1:-1:-1;;;45214:71:0;;9645:2:1;45214:71:0;;;9627:21:1;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:32;9816:19;;45214:71:0;9443:398:1;45214:71:0;45296:22;44521:12;;;45296:22;;45428:426;45452:14;45448:1;:18;45428:426;;;45488:31;45522:14;;;:11;:14;;;;;;;;;45488:48;;;;;;;;;-1:-1:-1;;;;;45488:48:0;;;;;-1:-1:-1;;;45488:48:0;;;-1:-1:-1;;;;;45488:48:0;;;;;;;;45555:28;45551:103;;45624:14;;;-1:-1:-1;45551:103:0;45693:5;-1:-1:-1;;;;;45672:26:0;:17;-1:-1:-1;;;;;45672:26:0;;45668:175;;45738:5;45723:11;:20;45719:77;;-1:-1:-1;45775:1:0;-1:-1:-1;45768:8:0;;-1:-1:-1;;;45768:8:0;45719:77;45814:13;;;;:::i;:::-;;;;45668:175;-1:-1:-1;45468:3:0;;;;:::i;:::-;;;;45428:426;;;-1:-1:-1;45864:56:0;;-1:-1:-1;;;45864:56:0;;10320:2:1;45864:56:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:44;10503:19;;45864:56:0;10118:410:1;63930:223:0;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;64054:17:::1;;64043:8;:28;64035:65;;;::::0;-1:-1:-1;;;64035:65:0;;10735:2:1;64035:65:0::1;::::0;::::1;10717:21:1::0;10774:2;10754:18;;;10747:30;10813:26;10793:18;;;10786:54;10857:18;;64035:65:0::1;10533:348:1::0;64035:65:0::1;64111:22;::::0;;;:12:::1;:22;::::0;;;;:34:::1;64136:9:::0;64111:22;:34:::1;:::i;61581:606::-:0;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;61705:9:::1;;61690:11;61674:13;44494:7:::0;44521:12;;44441:100;61674:13:::1;:27;;;;:::i;:::-;:40;;61666:69;;;::::0;-1:-1:-1;;;61666:69:0;;13425:2:1;61666:69:0::1;::::0;::::1;13407:21:1::0;13464:2;13444:18;;;13437:30;-1:-1:-1;;;13483:18:1;;;13476:46;13539:18;;61666:69:0::1;13223:340:1::0;61666:69:0::1;61765:12;61750:11;:27;61746:108;;61794:27;61804:3;61809:11;61794:9;:27::i;:::-;61581:606:::0;;:::o;61746:108::-:1;61895:11:::0;61917:263:::1;61924:14:::0;;61917:263:::1;;61973:12;61959:10;:26;61955:118;;62006:26;62016:3;62021:10;62006:9;:26::i;61955:118::-;62087:28;62097:3;62102:12;62087:9;:28::i;:::-;62143:25;62156:12;62143:10:::0;:25:::1;:::i;:::-;62130:38;;61917:263;;63591:180:::0;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63668:49:::1;::::0;63650:12:::1;::::0;63668:10:::1;::::0;63691:21:::1;::::0;63650:12;63668:49;63650:12;63668:49;63691:21;63668:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63649:68;;;63736:7;63728:35;;;::::0;-1:-1:-1;;;63728:35:0;;14110:2:1;63728:35:0::1;::::0;::::1;14092:21:1::0;14149:2;14129:18;;;14122:30;-1:-1:-1;;;14168:18:1;;;14161:45;14223:18;;63728:35:0::1;13908:339:1::0;50475:177:0;50605:39;50622:4;50628:2;50632:7;50605:39;;;;;;;;;;;;:16;:39::i;63117:80::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63176:4:::1;:15:::0;63117:80::o;44618:187::-;44685:7;44521:12;;44713:5;:21;44705:69;;;;-1:-1:-1;;;44705:69:0;;14454:2:1;44705:69:0;;;14436:21:1;14493:2;14473:18;;;14466:30;14532:34;14512:18;;;14505:62;-1:-1:-1;;;14583:18:1;;;14576:33;14626:19;;44705:69:0;14252:399:1;44705:69:0;-1:-1:-1;44792:5:0;44618:187::o;63485:98::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63558:7:::1;:17;63568:7:::0;63558;:17:::1;:::i;47614:124::-:0;47678:7;47705:20;47717:7;47705:11;:20::i;:::-;:25;;47614:124;-1:-1:-1;;47614:124:0:o;62397:320::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;62512:39;;::::1;62504:84;;;::::0;-1:-1:-1;;;62504:84:0;;14858:2:1;62504:84:0::1;::::0;::::1;14840:21:1::0;;;14877:18;;;14870:30;14936:34;14916:18;;;14909:62;14988:18;;62504:84:0::1;14656:356:1::0;62504:84:0::1;62604:9;62599:111;62615:21:::0;;::::1;62599:111;;;62658:40;62668:10;;62679:1;62668:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;62683:11;;62695:1;62683:14;;;;;;;:::i;:::-;;;;;;;62658:9;:40::i;:::-;62638:3:::0;::::1;::::0;::::1;:::i;:::-;;;;62599:111;;;;62397:320:::0;;;;:::o;59126:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46436:221::-;46500:7;-1:-1:-1;;;;;46528:19:0;;46520:75;;;;-1:-1:-1;;;46520:75:0;;15351:2:1;46520:75:0;;;15333:21:1;15390:2;15370:18;;;15363:30;15429:34;15409:18;;;15402:62;-1:-1:-1;;;15480:18:1;;;15473:41;15531:19;;46520:75:0;15149:407:1;46520:75:0;-1:-1:-1;;;;;;46621:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46621:27:0;;46436:221::o;62195:194::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;62285:9:::1;62280:102;62296:21:::0;;::::1;62280:102;;;62366:4;62339:9;:24;62349:10;;62360:1;62349:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;62339:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;62339:24:0;:31;;-1:-1:-1;;62339:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62319:3;::::1;::::0;::::1;:::i;:::-;;;;62280:102;;61000:533:::0;59721:11;;-1:-1:-1;;;59721:11:0;;;;59713:40;;;;-1:-1:-1;;;59713:40:0;;15763:2:1;59713:40:0;;;15745:21:1;15802:2;15782:18;;;15775:30;-1:-1:-1;;;15821:18:1;;;15814:46;15877:18;;59713:40:0;15561:340:1;59713:40:0;61098:10:::1;61084:11;61136:14:::0;;;:9:::1;:14;::::0;;;;;;;;61169:9:::1;:14:::0;;;;;;;::::1;;61161:42;;;::::0;-1:-1:-1;;;61161:42:0;;16108:2:1;61161:42:0::1;::::0;::::1;16090:21:1::0;16147:2;16127:18;;;16120:30;-1:-1:-1;;;16166:18:1;;;16159:45;16221:18;;61161:42:0::1;15906:339:1::0;61161:42:0::1;61246:13;::::0;61222:20:::1;61231:11:::0;61222:6;:20:::1;:::i;:::-;:37;;61214:63;;;::::0;-1:-1:-1;;;61214:63:0;;16452:2:1;61214:63:0::1;::::0;::::1;16434:21:1::0;16491:2;16471:18;;;16464:30;-1:-1:-1;;;16510:18:1;;;16503:43;16563:18;;61214:63:0::1;16250:337:1::0;61214:63:0::1;61327:9;;61312:11;61296:13;44494:7:::0;44521:12;;44441:100;61296:13:::1;:27;;;;:::i;:::-;:40;;61288:69;;;::::0;-1:-1:-1;;;61288:69:0;;13425:2:1;61288:69:0::1;::::0;::::1;13407:21:1::0;13464:2;13444:18;;;13437:30;-1:-1:-1;;;13483:18:1;;;13476:46;13539:18;;61288:69:0::1;13223:340:1::0;61288:69:0::1;61396:11;61389:4;;:18;;;;:::i;:::-;61376:9;:31;;61368:62;;;::::0;-1:-1:-1;;;61368:62:0;;16967:2:1;61368:62:0::1;::::0;::::1;16949:21:1::0;17006:2;16986:18;;;16979:30;-1:-1:-1;;;17025:18:1;;;17018:48;17083:18;;61368:62:0::1;16765:342:1::0;61368:62:0::1;61460:20;61469:11:::0;61460:6;:20:::1;:::i;:::-;-1:-1:-1::0;;;;;61443:14:0;::::1;;::::0;;;:9:::1;:14;::::0;;;;:37;61491:34:::1;61501:10;61513:11:::0;61491:9:::1;:34::i;63327:150::-:0;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63422:21:::1;:49:::0;63327:150::o;63205:116::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;63282:13:::1;:33:::0;63205:116::o;62725:179::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;62788:11:::1;::::0;-1:-1:-1;;;62788:11:0;::::1;;;62784:84;;;62816:11;:19:::0;;-1:-1:-1;;;;62816:19:0::1;::::0;;62912:197::o;62784:84::-:1;62878:11;:18:::0;;-1:-1:-1;;;;62878:18:0::1;-1:-1:-1::0;;;62878:18:0::1;::::0;;62725:179::o;47974:104::-;48030:13;48063:7;48056:14;;;;;:::i;60445:547::-;59822:8;;-1:-1:-1;;;59822:8:0;;;;59814:34;;;;-1:-1:-1;;;59814:34:0;;17314:2:1;59814:34:0;;;17296:21:1;17353:2;17333:18;;;17326:30;-1:-1:-1;;;17372:18:1;;;17365:43;17425:18;;59814:34:0;17112:337:1;59814:34:0;60533:10:::1;60519:11;60571:14:::0;;;:9:::1;:14;::::0;;;;;60628:13:::1;::::0;60604:20:::1;60613:11:::0;60571:14;60604:20:::1;:::i;:::-;:37;;60596:63;;;::::0;-1:-1:-1;;;60596:63:0;;16452:2:1;60596:63:0::1;::::0;::::1;16434:21:1::0;16491:2;16471:18;;;16464:30;-1:-1:-1;;;16510:18:1;;;16503:43;16563:18;;60596:63:0::1;16250:337:1::0;60596:63:0::1;60693:21;;60678:11;:36;;60670:66;;;::::0;-1:-1:-1;;;60670:66:0;;17656:2:1;60670:66:0::1;::::0;::::1;17638:21:1::0;17695:2;17675:18;;;17668:30;-1:-1:-1;;;17714:18:1;;;17707:47;17771:18;;60670:66:0::1;17454:341:1::0;49652:288:0;19889:10;-1:-1:-1;;;;;49747:24:0;;;49739:63;;;;-1:-1:-1;;;49739:63:0;;18002:2:1;49739:63:0;;;17984:21:1;18041:2;18021:18;;;18014:30;18080:28;18060:18;;;18053:56;18126:18;;49739:63:0;17800:350:1;49739:63:0;19889:10;49815:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;49815:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;49815:53:0;;;;;;;;;;49884:48;;722:41:1;;;49815:42:0;;19889:10;49884:48;;695:18:1;49884:48:0;;;;;;;49652:288;;:::o;64806:93::-;59616:5;;-1:-1:-1;;;;;59616:5:0;59625:10;59616:19;59608:41;;;;-1:-1:-1;;;59608:41:0;;;;;;;:::i;:::-;64874:5:::1;:17:::0;;-1:-1:-1;;;;;;64874:17:0::1;-1:-1:-1::0;;;;;64874:17:0;;;::::1;::::0;;;::::1;::::0;;64806:93::o;50723:355::-;50882:28;50892:4;50898:2;50902:7;50882:9;:28::i;:::-;50943:48;50966:4;50972:2;50976:7;50985:5;50943:22;:48::i;:::-;50921:149;;;;-1:-1:-1;;;50921:149:0;;;;;;;:::i;:::-;50723:355;;;;:::o;64161:521::-;64235:13;64269:17;64277:8;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;64269:17;64261:61;;;;-1:-1:-1;;;64261:61:0;;18777:2:1;64261:61:0;;;18759:21:1;18816:2;18796:18;;;18789:30;18855:33;18835:18;;;18828:61;18906:18;;64261:61:0;18575:355:1;64261:61:0;64378:1;64345:22;;;:12;:22;;;;;64339:36;;;;;:::i;:::-;;;:40;64335:102;;;64403:22;;;;:12;:22;;;;;64396:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64161:521;;;:::o;64335:102::-;64449:26;64478:10;:8;:10::i;:::-;64499:28;;;;;;;;;;;;-1:-1:-1;;;64499:28:0;;;;64545:26;;64449:39;;-1:-1:-1;64499:28:0;64545:129;;;;;;;;;;;;;;;;;64615:12;64629:19;:8;:17;:19::i;:::-;64650:4;64598:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64545:129;64538:136;64161:521;-1:-1:-1;;;;64161:521:0:o;55181:196::-;55296:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55296:29:0;-1:-1:-1;;;;;55296:29:0;;;;;;;;;55341:28;;55296:24;;55341:28;;;;;;;55181:196;;;:::o;53489:1574::-;53604:35;53642:20;53654:7;53642:11;:20::i;:::-;53717:18;;53604:58;;-1:-1:-1;53675:22:0;;-1:-1:-1;;;;;53701:34:0;19889:10;-1:-1:-1;;;;;53701:34:0;;:87;;;-1:-1:-1;19889:10:0;53752:20;53764:7;53752:11;:20::i;:::-;-1:-1:-1;;;;;53752:36:0;;53701:87;:154;;;-1:-1:-1;53822:18:0;;53805:50;;19889:10;50011:164;:::i;53805:50::-;53675:181;;53877:17;53869:80;;;;-1:-1:-1;;;53869:80:0;;19806:2:1;53869:80:0;;;19788:21:1;19845:2;19825:18;;;19818:30;19884:34;19864:18;;;19857:62;-1:-1:-1;;;19935:18:1;;;19928:48;19993:19;;53869:80:0;19604:414:1;53869:80:0;53992:4;-1:-1:-1;;;;;53970:26:0;:13;:18;;;-1:-1:-1;;;;;53970:26:0;;53962:77;;;;-1:-1:-1;;;53962:77:0;;20225:2:1;53962:77:0;;;20207:21:1;20264:2;20244:18;;;20237:30;20303:34;20283:18;;;20276:62;-1:-1:-1;;;20354:18:1;;;20347:36;20400:19;;53962:77:0;20023:402:1;53962:77:0;-1:-1:-1;;;;;54058:16:0;;54050:66;;;;-1:-1:-1;;;54050:66:0;;20632:2:1;54050:66:0;;;20614:21:1;20671:2;20651:18;;;20644:30;20710:34;20690:18;;;20683:62;-1:-1:-1;;;20761:18:1;;;20754:35;20806:19;;54050:66:0;20430:401:1;54050:66:0;54237:49;54254:1;54258:7;54267:13;:18;;;54237:8;:49::i;:::-;-1:-1:-1;;;;;54299:18:0;;;;;;:12;:18;;;;;:31;;54329:1;;54299:18;:31;;54329:1;;-1:-1:-1;;;;;54299:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;54299:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54341:16:0;;-1:-1:-1;54341:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;54341:16:0;;:29;;-1:-1:-1;;54341:29:0;;:::i;:::-;;;-1:-1:-1;;;;;54341:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54404:43:0;;;;;;;;-1:-1:-1;;;;;54404:43:0;;;;;-1:-1:-1;;;;;54430:15:0;54404:43;;;;;;;;;-1:-1:-1;54381:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;54381:66:0;-1:-1:-1;;;;;;54381:66:0;;;;;;;;;;;54709:11;54393:7;-1:-1:-1;54709:11:0;:::i;:::-;54776:1;54735:24;;;:11;:24;;;;;:29;54687:33;;-1:-1:-1;;;;;;54735:29:0;54731:227;;54799:20;54807:11;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;54799:20;54795:152;;;54867:64;;;;;;;;54882:18;;-1:-1:-1;;;;;54867:64:0;;;;;;54902:28;;;;-1:-1:-1;;;;;54867:64:0;;;;;;;;;-1:-1:-1;54840:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;54840:91:0;-1:-1:-1;;;;;;54840:91:0;;;;;;;;;;;;54795:152;54994:7;54990:2;-1:-1:-1;;;;;54975:27:0;54984:4;-1:-1:-1;;;;;54975:27:0;;;;;;;;;;;55013:42;53593:1470;;;53489:1574;;;:::o;55541:885::-;55635:24;;55678:12;55670:49;;;;-1:-1:-1;;;55670:49:0;;21547:2:1;55670:49:0;;;21529:21:1;21586:2;21566:18;;;21559:30;21625:26;21605:18;;;21598:54;21669:18;;55670:49:0;21345:348:1;55670:49:0;55730:16;55780:1;55749:28;55769:8;55749:17;:28;:::i;:::-;:32;;;;:::i;:::-;55730:51;;55822:1;55807:12;;:16;;;;:::i;:::-;55796:8;:27;55792:87;;;55866:1;55851:12;;:16;;;;:::i;:::-;55840:27;;55792:87;56002:17;56010:8;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;56002:17;55994:68;;;;-1:-1:-1;;;55994:68:0;;21900:2:1;55994:68:0;;;21882:21:1;21939:2;21919:18;;;21912:30;21978:34;21958:18;;;21951:62;-1:-1:-1;;;22029:18:1;;;22022:36;22075:19;;55994:68:0;21698:402:1;55994:68:0;56090:17;56073:296;56114:8;56109:1;:13;56073:296;;56179:1;56148:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;56148:19:0;56144:214;;56202:31;56236:14;56248:1;56236:11;:14::i;:::-;56286:56;;;;;;;;56301:14;;-1:-1:-1;;;;;56286:56:0;;;;;;56317:24;;;;-1:-1:-1;;;;;56286:56:0;;;;;;;;;-1:-1:-1;56269:14:0;;;:11;:14;;;;;;;:73;;;;;;;;;-1:-1:-1;;;56269:73:0;-1:-1:-1;;;;;;56269:73:0;;;;;;;;;;;;-1:-1:-1;56144:214:0;56124:3;;;;:::i;:::-;;;;56073:296;;;-1:-1:-1;56406:12:0;:8;56417:1;56406:12;:::i;:::-;56379:24;:39;-1:-1:-1;;;55541:885:0:o;51452:104::-;51521:27;51531:2;51535:8;51521:27;;;;;;;;;;;;:9;:27::i;46902:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;47005:16:0;47013:7;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;47005:16;46997:71;;;;-1:-1:-1;;;46997:71:0;;22307:2:1;46997:71:0;;;22289:21:1;22346:2;22326:18;;;22319:30;22385:34;22365:18;;;22358:62;-1:-1:-1;;;22436:18:1;;;22429:40;22486:19;;46997:71:0;22105:406:1;46997:71:0;47081:26;47133:12;47122:7;:23;47118:103;;47183:22;47193:12;47183:7;:22;:::i;:::-;:26;;47208:1;47183:26;:::i;:::-;47162:47;;47118:103;47253:7;47233:242;47270:18;47262:4;:26;47233:242;;47313:31;47347:17;;;:11;:17;;;;;;;;;47313:51;;;;;;;;;-1:-1:-1;;;;;47313:51:0;;;;;-1:-1:-1;;;47313:51:0;;;-1:-1:-1;;;;;47313:51:0;;;;;;;;47383:28;47379:85;;47439:9;46902:650;-1:-1:-1;;;;46902:650:0:o;47379:85::-;-1:-1:-1;47290:6:0;;;;:::i;:::-;;;;47233:242;;;-1:-1:-1;47487:57:0;;-1:-1:-1;;;47487:57:0;;22859:2:1;47487:57:0;;;22841:21:1;22898:2;22878:18;;;22871:30;22937:34;22917:18;;;22910:62;-1:-1:-1;;;22988:18:1;;;22981:45;23043:19;;47487:57:0;22657:411:1;56991:804:0;57146:4;-1:-1:-1;;;;;57167:13:0;;1337:20;1385:8;57163:625;;57203:72;;-1:-1:-1;;;57203:72:0;;-1:-1:-1;;;;;57203:36:0;;;;;:72;;19889:10;;57254:4;;57260:7;;57269:5;;57203:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57203:72:0;;;;;;;;-1:-1:-1;;57203:72:0;;;;;;;;;;;;:::i;:::-;;;57199:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57449:6;:13;57466:1;57449:18;57445:273;;57492:61;;-1:-1:-1;;;57492:61:0;;;;;;;:::i;57445:273::-;57668:6;57662:13;57653:6;57649:2;57645:15;57638:38;57199:534;-1:-1:-1;;;;;;57326:55:0;-1:-1:-1;;;57326:55:0;;-1:-1:-1;57319:62:0;;57163:625;-1:-1:-1;57772:4:0;56991:804;;;;;;:::o;64690:108::-;64750:13;64783:7;64776:14;;;;;:::i;8658:723::-;8714:13;8935:5;8944:1;8935:10;8931:53;;-1:-1:-1;;8962:10:0;;;;;;;;;;;;-1:-1:-1;;;8962:10:0;;;;;8658:723::o;8931:53::-;9009:5;8994:12;9050:78;9057:9;;9050:78;;9083:8;;;;:::i;:::-;;-1:-1:-1;9106:10:0;;-1:-1:-1;9114:2:0;9106:10;;:::i;:::-;;;9050:78;;;9138:19;9170:6;-1:-1:-1;;;;;9160:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9160:17:0;;9138:39;;9188:154;9195:10;;9188:154;;9222:11;9232:1;9222:11;;:::i;:::-;;-1:-1:-1;9291:10:0;9299:2;9291:5;:10;:::i;:::-;9278:24;;:2;:24;:::i;:::-;9265:39;;9248:6;9255;9248:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9248:56:0;;;;;;;;-1:-1:-1;9319:11:0;9328:2;9319:11;;:::i;:::-;;;9188:154;;51833:1402;51956:20;51979:12;-1:-1:-1;;;;;52010:16:0;;52002:62;;;;-1:-1:-1;;;52002:62:0;;24397:2:1;52002:62:0;;;24379:21:1;24436:2;24416:18;;;24409:30;24475:34;24455:18;;;24448:62;-1:-1:-1;;;24526:18:1;;;24519:31;24567:19;;52002:62:0;24195:397:1;52002:62:0;52209:21;52217:12;51390:4;51424:12;-1:-1:-1;51414:22:0;51333:111;52209:21;52208:22;52200:64;;;;-1:-1:-1;;;52200:64:0;;24799:2:1;52200:64:0;;;24781:21:1;24838:2;24818:18;;;24811:30;24877:31;24857:18;;;24850:59;24926:18;;52200:64:0;24597:353:1;52200:64:0;-1:-1:-1;;;;;52468:16:0;;52435:30;52468:16;;;:12;:16;;;;;;;;;52435:49;;;;;;;;;-1:-1:-1;;;;;52435:49:0;;;;;-1:-1:-1;;;52435:49:0;;;;;;;;;;;52514:135;;;;;;;;52540:19;;52435:49;;52514:135;;;52540:39;;52570:8;;52540:39;:::i;:::-;-1:-1:-1;;;;;52514:135:0;;;;;52629:8;52594:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;52514:135:0;;;;;;-1:-1:-1;;;;;52495:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;52495:154:0;;;;;;;;;;;;52688:43;;;;;;;;;;-1:-1:-1;;;;;52714:15:0;52688:43;;;;;;;;52660:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;52660:71:0;-1:-1:-1;;;;;;52660:71:0;;;;;;;;;;;;;;;;;;52672:12;;52792:325;52816:8;52812:1;:12;52792:325;;;52851:38;;52876:12;;-1:-1:-1;;;;;52851:38:0;;;52868:1;;52851:38;;52868:1;;52851:38;52930:59;52961:1;52965:2;52969:12;52983:5;52930:22;:59::i;:::-;52904:172;;;;-1:-1:-1;;;52904:172:0;;;;;;;:::i;:::-;53091:14;;;;:::i;:::-;;;;52826:3;;;;;:::i;:::-;;;;52792:325;;;-1:-1:-1;53129:12:0;:27;;;53167:60;50723:355;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;-1:-1:-1;;;;;2956:2:1;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:222::-;3500:5;3553:3;3546:4;3538:6;3534:17;3530:27;3520:55;;3571:1;3568;3561:12;3520:55;3593:80;3669:3;3660:6;3647:20;3640:4;3632:6;3628:17;3593:80;:::i;3684:390::-;3762:6;3770;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3875:9;3862:23;3852:33;;3936:2;3925:9;3921:18;3908:32;-1:-1:-1;;;;;3955:6:1;3952:30;3949:50;;;3995:1;3992;3985:12;3949:50;4018;4060:7;4051:6;4040:9;4036:22;4018:50;:::i;:::-;4008:60;;;3684:390;;;;;:::o;4079:186::-;4138:6;4191:2;4179:9;4170:7;4166:23;4162:32;4159:52;;;4207:1;4204;4197:12;4159:52;4230:29;4249:9;4230:29;:::i;4270:322::-;4339:6;4392:2;4380:9;4371:7;4367:23;4363:32;4360:52;;;4408:1;4405;4398:12;4360:52;4448:9;4435:23;-1:-1:-1;;;;;4473:6:1;4470:30;4467:50;;;4513:1;4510;4503:12;4467:50;4536;4578:7;4569:6;4558:9;4554:22;4536:50;:::i;4597:367::-;4660:8;4670:6;4724:3;4717:4;4709:6;4705:17;4701:27;4691:55;;4742:1;4739;4732:12;4691:55;-1:-1:-1;4765:20:1;;-1:-1:-1;;;;;4797:30:1;;4794:50;;;4840:1;4837;4830:12;4794:50;4877:4;4869:6;4865:17;4853:29;;4937:3;4930:4;4920:6;4917:1;4913:14;4905:6;4901:27;4897:38;4894:47;4891:67;;;4954:1;4951;4944:12;4891:67;4597:367;;;;;:::o;4969:773::-;5091:6;5099;5107;5115;5168:2;5156:9;5147:7;5143:23;5139:32;5136:52;;;5184:1;5181;5174:12;5136:52;5224:9;5211:23;-1:-1:-1;;;;;5294:2:1;5286:6;5283:14;5280:34;;;5310:1;5307;5300:12;5280:34;5349:70;5411:7;5402:6;5391:9;5387:22;5349:70;:::i;:::-;5438:8;;-1:-1:-1;5323:96:1;-1:-1:-1;5526:2:1;5511:18;;5498:32;;-1:-1:-1;5542:16:1;;;5539:36;;;5571:1;5568;5561:12;5539:36;;5610:72;5674:7;5663:8;5652:9;5648:24;5610:72;:::i;:::-;4969:773;;;;-1:-1:-1;5701:8:1;-1:-1:-1;;;;4969:773:1:o;5747:437::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5950:9;5937:23;-1:-1:-1;;;;;5975:6:1;5972:30;5969:50;;;6015:1;6012;6005:12;5969:50;6054:70;6116:7;6107:6;6096:9;6092:22;6054:70;:::i;:::-;6143:8;;6028:96;;-1:-1:-1;5747:437:1;-1:-1:-1;;;;5747:437:1:o;6189:347::-;6254:6;6262;6315:2;6303:9;6294:7;6290:23;6286:32;6283:52;;;6331:1;6328;6321:12;6283:52;6354:29;6373:9;6354:29;:::i;:::-;6344:39;;6433:2;6422:9;6418:18;6405:32;6480:5;6473:13;6466:21;6459:5;6456:32;6446:60;;6502:1;6499;6492:12;6446:60;6525:5;6515:15;;;6189:347;;;;;:::o;6541:667::-;6636:6;6644;6652;6660;6713:3;6701:9;6692:7;6688:23;6684:33;6681:53;;;6730:1;6727;6720:12;6681:53;6753:29;6772:9;6753:29;:::i;:::-;6743:39;;6801:38;6835:2;6824:9;6820:18;6801:38;:::i;:::-;6791:48;;6886:2;6875:9;6871:18;6858:32;6848:42;;6941:2;6930:9;6926:18;6913:32;-1:-1:-1;;;;;6960:6:1;6957:30;6954:50;;;7000:1;6997;6990:12;6954:50;7023:22;;7076:4;7068:13;;7064:27;-1:-1:-1;7054:55:1;;7105:1;7102;7095:12;7054:55;7128:74;7194:7;7189:2;7176:16;7171:2;7167;7163:11;7128:74;:::i;:::-;7118:84;;;6541:667;;;;;;;:::o;7213:260::-;7281:6;7289;7342:2;7330:9;7321:7;7317:23;7313:32;7310:52;;;7358:1;7355;7348:12;7310:52;7381:29;7400:9;7381:29;:::i;:::-;7371:39;;7429:38;7463:2;7452:9;7448:18;7429:38;:::i;:::-;7419:48;;7213:260;;;;;:::o;7478:380::-;7557:1;7553:12;;;;7600;;;7621:61;;7675:4;7667:6;7663:17;7653:27;;7621:61;7728:2;7720:6;7717:14;7697:18;7694:38;7691:161;;7774:10;7769:3;7765:20;7762:1;7755:31;7809:4;7806:1;7799:15;7837:4;7834:1;7827:15;7691:161;;7478:380;;;:::o;9106:332::-;9308:2;9290:21;;;9347:1;9327:18;;;9320:29;-1:-1:-1;;;9380:2:1;9365:18;;9358:39;9429:2;9414:18;;9106:332::o;9846:127::-;9907:10;9902:3;9898:20;9895:1;9888:31;9938:4;9935:1;9928:15;9962:4;9959:1;9952:15;9978:135;10017:3;10038:17;;;10035:43;;10058:18;;:::i;:::-;-1:-1:-1;10105:1:1;10094:13;;9978:135::o;11012:545::-;11114:2;11109:3;11106:11;11103:448;;;11150:1;11175:5;11171:2;11164:17;11220:4;11216:2;11206:19;11290:2;11278:10;11274:19;11271:1;11267:27;11261:4;11257:38;11326:4;11314:10;11311:20;11308:47;;;-1:-1:-1;11349:4:1;11308:47;11404:2;11399:3;11395:12;11392:1;11388:20;11382:4;11378:31;11368:41;;11459:82;11477:2;11470:5;11467:13;11459:82;;;11522:17;;;11503:1;11492:13;11459:82;;11733:1352;11859:3;11853:10;-1:-1:-1;;;;;11878:6:1;11875:30;11872:56;;;11908:18;;:::i;:::-;11937:97;12027:6;11987:38;12019:4;12013:11;11987:38;:::i;:::-;11981:4;11937:97;:::i;:::-;12089:4;;12153:2;12142:14;;12170:1;12165:663;;;;12872:1;12889:6;12886:89;;;-1:-1:-1;12941:19:1;;;12935:26;12886:89;-1:-1:-1;;11690:1:1;11686:11;;;11682:24;11678:29;11668:40;11714:1;11710:11;;;11665:57;12988:81;;12135:944;;12165:663;10959:1;10952:14;;;10996:4;10983:18;;-1:-1:-1;;12201:20:1;;;12319:236;12333:7;12330:1;12327:14;12319:236;;;12422:19;;;12416:26;12401:42;;12514:27;;;;12482:1;12470:14;;;;12349:19;;12319:236;;;12323:3;12583:6;12574:7;12571:19;12568:201;;;12644:19;;;12638:26;-1:-1:-1;;12727:1:1;12723:14;;;12739:3;12719:24;12715:37;12711:42;12696:58;12681:74;;12568:201;-1:-1:-1;;;;;12815:1:1;12799:14;;;12795:22;12782:36;;-1:-1:-1;11733:1352:1:o;13090:128::-;13130:3;13161:1;13157:6;13154:1;13151:13;13148:39;;;13167:18;;:::i;:::-;-1:-1:-1;13203:9:1;;13090:128::o;13568:125::-;13608:4;13636:1;13633;13630:8;13627:34;;;13641:18;;:::i;:::-;-1:-1:-1;13678:9:1;;13568:125::o;15017:127::-;15078:10;15073:3;15069:20;15066:1;15059:31;15109:4;15106:1;15099:15;15133:4;15130:1;15123:15;16592:168;16632:7;16698:1;16694;16690:6;16686:14;16683:1;16680:21;16675:1;16668:9;16661:17;16657:45;16654:71;;;16705:18;;:::i;:::-;-1:-1:-1;16745:9:1;;16592:168::o;18155:415::-;18357:2;18339:21;;;18396:2;18376:18;;;18369:30;18435:34;18430:2;18415:18;;18408:62;-1:-1:-1;;;18501:2:1;18486:18;;18479:49;18560:3;18545:19;;18155:415::o;18935:664::-;19162:3;19200:6;19194:13;19216:53;19262:6;19257:3;19250:4;19242:6;19238:17;19216:53;:::i;:::-;19332:13;;19291:16;;;;19354:57;19332:13;19291:16;19388:4;19376:17;;19354:57;:::i;:::-;19478:13;;19433:20;;;19500:57;19478:13;19433:20;19534:4;19522:17;;19500:57;:::i;:::-;19573:20;;18935:664;-1:-1:-1;;;;;18935:664:1:o;20836:246::-;20876:4;-1:-1:-1;;;;;20989:10:1;;;;20959;;21011:12;;;21008:38;;;21026:18;;:::i;:::-;21063:13;;20836:246;-1:-1:-1;;;20836:246:1:o;21087:253::-;21127:3;-1:-1:-1;;;;;21216:2:1;21213:1;21209:10;21246:2;21243:1;21239:10;21277:3;21273:2;21269:12;21264:3;21261:21;21258:47;;;21285:18;;:::i;:::-;21321:13;;21087:253;-1:-1:-1;;;;21087:253:1:o;22516:136::-;22555:3;22583:5;22573:39;;22592:18;;:::i;:::-;-1:-1:-1;;;22628:18:1;;22516:136::o;23073:489::-;-1:-1:-1;;;;;23342:15:1;;;23324:34;;23394:15;;23389:2;23374:18;;23367:43;23441:2;23426:18;;23419:34;;;23489:3;23484:2;23469:18;;23462:31;;;23267:4;;23510:46;;23536:19;;23528:6;23510:46;:::i;:::-;23502:54;23073:489;-1:-1:-1;;;;;;23073:489:1:o;23567:249::-;23636:6;23689:2;23677:9;23668:7;23664:23;23660:32;23657:52;;;23705:1;23702;23695:12;23657:52;23737:9;23731:16;23756:30;23780:5;23756:30;:::i;23821:127::-;23882:10;23877:3;23873:20;23870:1;23863:31;23913:4;23910:1;23903:15;23937:4;23934:1;23927:15;23953:120;23993:1;24019;24009:35;;24024:18;;:::i;:::-;-1:-1:-1;24058:9:1;;23953:120::o;24078:112::-;24110:1;24136;24126:35;;24141:18;;:::i;:::-;-1:-1:-1;24175:9:1;;24078:112::o

Swarm Source

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