ETH Price: $3,260.32 (-4.55%)
Gas: 9 Gwei

Token

Bullrunners (BULLR)
 

Overview

Max Total Supply

10,000 BULLR

Holders

2,573

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
zivka.eth
Balance
1 BULLR
0x56f9f1efa72e1e4ba56e74574d45c5a43624960a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bullrunners is a collection of 10,000 handcrafted PFPs. For eons, the crypto-Illuminati have exerted their monopolistic power over the world. Now with the emergence of the bullrunners, the battle is on...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BullRunners

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

pragma solidity ^0.8.4;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
        _startTokenId() <= tokenId &&
        tokenId < _currentIndex && // If within bounds,
        _packedOwnerships[tokenId] & BITMASK_BURNED == 0;
        // and not burned.
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
    unchecked {
        // Updates:
        // - `balance += quantity`.
        // - `numberMinted += quantity`.
        //
        // We can directly add to the balance and number minted.
        _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

        // Updates:
        // - `address` to the owner.
        // - `startTimestamp` to the timestamp of minting.
        // - `burned` to `false`.
        // - `nextInitialized` to `quantity == 1`.
        _packedOwnerships[startTokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

        uint256 updatedIndex = startTokenId;
        uint256 end = updatedIndex + quantity;

        if (to.code.length != 0) {
            do {
                emit Transfer(address(0), to, updatedIndex);
                if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
            }
            while (updatedIndex < end);
            // Reentrancy protection
            if (_currentIndex != startTokenId) revert();
        } else {
            do {
                emit Transfer(address(0), to, updatedIndex++);
            }
            while (updatedIndex < end);
        }
        _currentIndex = updatedIndex;
    }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
    unchecked {
        // Updates:
        // - `balance += quantity`.
        // - `numberMinted += quantity`.
        //
        // We can directly add to the balance and number minted.
        _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

        // Updates:
        // - `address` to the owner.
        // - `startTimestamp` to the timestamp of minting.
        // - `burned` to `false`.
        // - `nextInitialized` to `quantity == 1`.
        _packedOwnerships[startTokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

        uint256 updatedIndex = startTokenId;
        uint256 end = updatedIndex + quantity;

        do {
            emit Transfer(address(0), to, updatedIndex++);
        }
        while (updatedIndex < end);

        _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
        isApprovedForAll(from, _msgSenderERC721A()) ||
        getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

        // Updates:
        // - `address` to the next owner.
        // - `startTimestamp` to the timestamp of transfering.
        // - `burned` to `false`.
        // - `nextInitialized` to `true`.
        _packedOwnerships[tokenId] =
        _addressToUint256(to) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

        // Updates:
        // - `address` to the last owner.
        // - `startTimestamp` to the timestamp of burning.
        // - `burned` to `true`.
        // - `nextInitialized` to `true`.
        _packedOwnerships[tokenId] =
        _addressToUint256(from) |
        (block.timestamp << BITPOS_START_TIMESTAMP) |
        BITMASK_BURNED |
        BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

pragma solidity ^0.8.4;

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
    unchecked {
        uint256 tokenIdsLength = tokenIds.length;
        TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
        for (uint256 i; i != tokenIdsLength; ++i) {
            ownerships[i] = explicitOwnershipOf(tokenIds[i]);
        }
        return ownerships;
    }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
    unchecked {
        if (start >= stop) revert InvalidQueryRange();
        uint256 tokenIdsIdx;
        uint256 stopLimit = _nextTokenId();
        // Set `start = max(start, _startTokenId())`.
        if (start < _startTokenId()) {
            start = _startTokenId();
        }
        // Set `stop = min(stop, stopLimit)`.
        if (stop > stopLimit) {
            stop = stopLimit;
        }
        uint256 tokenIdsMaxLength = balanceOf(owner);
        // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
        // to cater for cases where `balanceOf(owner)` is too big.
        if (start < stop) {
            uint256 rangeLength = stop - start;
            if (rangeLength < tokenIdsMaxLength) {
                tokenIdsMaxLength = rangeLength;
            }
        } else {
            tokenIdsMaxLength = 0;
        }
        uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
        if (tokenIdsMaxLength == 0) {
            return tokenIds;
        }
        // We need to call `explicitOwnershipOf(start)`,
        // because the slot at `start` may not be initialized.
        TokenOwnership memory ownership = explicitOwnershipOf(start);
        address currOwnershipAddr;
        // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
        // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
        if (!ownership.burned) {
            currOwnershipAddr = ownership.addr;
        }
        for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
            ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                tokenIds[tokenIdsIdx++] = i;
            }
        }
        // Downsize the array to fit.
        assembly {
            mstore(tokenIds, tokenIdsIdx)
        }
        return tokenIds;
    }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
    unchecked {
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        uint256 tokenIdsLength = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenIdsLength);
        TokenOwnership memory ownership;
        for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
            ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                tokenIds[tokenIdsIdx++] = i;
            }
        }
        return tokenIds;
    }
    }
}


pragma solidity ^0.8.4;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex;
                // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

pragma solidity ^0.8.4;

contract BullRunners is ERC721AQueryable, ERC721ABurnable, Ownable {
    using EnumerableSet for EnumerableSet.UintSet;

    event ForceMoon(uint256 phase);

    uint256 public constant MAX_SUPPLY = 10_000;

    uint256 public maxByWallet = 5;
    mapping(address => uint256) public mintedByWallet;

    // 0:close | 1:open
    bool public saleState;

    bool public collectMarketing;

    //baseURI
    string public baseURI;

    //uriSuffix
    string public uriSuffix;

    /// @notice the moooon
    uint256 public constant NEW_MOON = 592500; // 07/01/1970 : 21h35
    uint256 public constant MOON_CYCLE = (29530 * 86400) / 1000; // 29.53 days // 2551392
    uint256 public constant MOON_CYCLE_1_8 = MOON_CYCLE / 8; //  3.69 days //  318924
    uint256 public constant NEW_MOON_START = NEW_MOON - (MOON_CYCLE_1_8 / 2);

    uint256 public forcedPhase = 8;

    EnumerableSet.UintSet private usedPhases;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI_,
        string memory uriSuffix_
    ) ERC721A(name, symbol) {
        baseURI = baseURI_;
        uriSuffix = uriSuffix_;
        usedPhases.add(4);
    }

    uint256 public MINT_PRICE = .01 ether;

    /******************** PUBLIC ********************/

    function mint(uint256 amount) external payable{
        require(msg.sender == tx.origin, "not allowed");
        require(saleState, "Sale is closed!");
        require(_totalMinted() + amount <= MAX_SUPPLY, "Exceed MAX_SUPPLY");
        require(amount > 0, "Amount can't be 0");
        require(amount + mintedByWallet[msg.sender] <= maxByWallet, "Exceed maxByWallet");

        if(collectMarketing) {
            if (_totalMinted() > 5000) {
                require(amount * MINT_PRICE <= msg.value, "Invalid payment amount");
            }
        }

        mintedByWallet[msg.sender] += amount;

        _safeMint(msg.sender, amount);
    }

    /******************** OVERRIDES ********************/

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        uint256 currentMoonPhase = getMoonPhase(block.timestamp);

        if (bytes(baseURI).length == 0) {
            return _toString(tokenId);
        }

        if (usedPhases.contains(currentMoonPhase)) {
            return string(abi.encodePacked(baseURI, _toString(tokenId), "_", _toString(currentMoonPhase), uriSuffix));
        }

        return string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix));
    }

    /******************** OWNER ********************/

    /// @notice Set baseURI.
    /// @param newBaseURI New baseURI.
    /// @param newUriSuffix New uriSuffix.
    function setBaseURI(string memory newBaseURI, string memory newUriSuffix) external onlyOwner {
        baseURI = newBaseURI;
        uriSuffix = newUriSuffix;
    }

    /// @notice Set saleState.
    /// @param newSaleState New sale state.
    function setSaleState(bool newSaleState) external onlyOwner {
        saleState = newSaleState;
    }

    /// @notice Set collectMarketing.
    /// @param newCollectMarketing New collect marketing flag.
    function setCollectMarketing(bool newCollectMarketing) external onlyOwner {
        collectMarketing = newCollectMarketing;
    }

    /// @notice Set maxByWallet.
    /// @param newMaxByWallet New max by wallet
    function setMaxByWallet(uint256 newMaxByWallet) external onlyOwner {
        maxByWallet = newMaxByWallet;
    }

    /******************** ALPHA MINT ********************/

    function alphaMint(address[] calldata addresses, uint256[] calldata count) external onlyOwner {
        require(!saleState, "sale is open!");
        require(addresses.length == count.length, "mismatching lengths!");

        for (uint256 i; i < addresses.length; i++) {
            _safeMint(addresses[i], count[i]);
        }

        require(_totalMinted() <= MAX_SUPPLY, "Exceed MAX_SUPPLY");
    }

    /******************** MOON CYCLES ********************/

    function getMoonPhase(uint256 timestamp) public view returns (uint256 moonPhase) {
        if (forcedPhase >= 0 && forcedPhase <= 7) {
            return forcedPhase;
        }
        uint256 cycle_offset = (timestamp - NEW_MOON_START) % MOON_CYCLE;
        return ((cycle_offset * 10 ** 18 * 8) / (MOON_CYCLE)) / 10 ** 18;
    }

    function getMoonPhaseName(uint256 timestamp) public view returns (string memory phase) {
        uint256 moonPhase = getMoonPhase(timestamp);

        if (moonPhase == 0) return "0 - New Moon";
        if (moonPhase == 1) return "1 - Waxing Crescent Moon";
        if (moonPhase == 2) return "2 - First Quarter Moon";
        if (moonPhase == 3) return "3 - Waxing Gibbous Moon";
        if (moonPhase == 4) return "4 - Full Moon";
        if (moonPhase == 5) return "5 - Waning Gibbous Moon";
        if (moonPhase == 6) return "6 - Last Quarter Moon";
        if (moonPhase == 7) return "7 - Waning Crescent Moon";

        return "Blue Moon";
    }

    function getCurrentMoonPhase() external view returns (uint256 moonPhase) {
        return getMoonPhase(block.timestamp);
    }

    function getCurrentMoonPhaseName() external view returns (string memory) {
        return getMoonPhaseName(block.timestamp);
    }

    function getUsedPhases() external view returns (uint256[] memory) {
        return usedPhases.values();
    }

    function addUsedPhase(uint256 phase) external onlyOwner {
        require(phase >= 0 && phase <= 7, "invalid phase");
        require(!usedPhases.contains(phase), "already in");
        usedPhases.add(phase);
    }

    function removeUsedPhase(uint256 phase) external onlyOwner {
        require(usedPhases.contains(phase), "not in");
        usedPhases.remove(phase);
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    /******************** MOON EVENTS ********************/

    /// @notice 0-7: force a phase (0:new moon, 4:full moon), > 7: default phase
    function forceMoon(uint256 phase) external onlyOwner {
        forcedPhase = phase;
        emit ForceMoon(phase);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"uriSuffix_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"phase","type":"uint256"}],"name":"ForceMoon","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOON_CYCLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOON_CYCLE_1_8","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NEW_MOON","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NEW_MOON_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"addUsedPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"count","type":"uint256[]"}],"name":"alphaMint","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":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"forceMoon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forcedPhase","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":[],"name":"getCurrentMoonPhase","outputs":[{"internalType":"uint256","name":"moonPhase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentMoonPhaseName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getMoonPhase","outputs":[{"internalType":"uint256","name":"moonPhase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"getMoonPhaseName","outputs":[{"internalType":"string","name":"phase","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUsedPhases","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxByWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"removeUsedPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"},{"internalType":"string","name":"newUriSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newCollectMarketing","type":"bool"}],"name":"setCollectMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxByWallet","type":"uint256"}],"name":"setMaxByWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newSaleState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260056009556008600e55662386f26fc100006011553480156200002657600080fd5b5060405162003307380380620033078339810160408190526200004991620002f2565b8351849084906200006290600290602085019062000199565b5080516200007890600390602084019062000199565b50506001600055506200008b33620000de565b8151620000a090600c90602085019062000199565b508051620000b690600d90602084019062000199565b50620000d36004600f6200013060201b62001c8f1790919060201c565b5050505050620003f9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006200013e838362000147565b90505b92915050565b6000818152600183016020526040812054620001905750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000141565b50600062000141565b828054620001a790620003a6565b90600052602060002090601f016020900481019282620001cb576000855562000216565b82601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b5b8082111562000224576000815560010162000229565b600082601f83011262000250578081fd5b81516001600160401b03808211156200026d576200026d620003e3565b604051601f8301601f19908116603f01168101908282118183101715620002985762000298620003e3565b81604052838152602092508683858801011115620002b4578485fd5b8491505b83821015620002d75785820183015181830184015290820190620002b8565b83821115620002e857848385830101525b9695505050505050565b6000806000806080858703121562000308578384fd5b84516001600160401b03808211156200031f578586fd5b6200032d888389016200023f565b9550602087015191508082111562000343578485fd5b62000351888389016200023f565b9450604087015191508082111562000367578384fd5b62000375888389016200023f565b935060608701519150808211156200038b578283fd5b506200039a878288016200023f565b91505092959194509250565b600181811c90821680620003bb57607f821691505b60208210811415620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612efe80620004096000396000f3fe6080604052600436106102c95760003560e01c80636c0360eb1161017557806399a2557a116100dc578063c4e3709511610095578063cadc9bbf1161006f578063cadc9bbf1461084a578063e985e9c514610860578063f09a03c014610880578063f2fde38b146108a057600080fd5b8063c4e37095146107f5578063c87b56dd14610815578063c9e551261461083557600080fd5b806399a2557a1461073f578063a0712d681461075f578063a22cb46514610772578063b88d4fde14610792578063c002d23d146107b2578063c23dc68f146107c857600080fd5b80638462151c1161012e5780638462151c146106805780638d814d0d146106ad5780638da5cb5b146106cd57806391833ab5146106eb5780639434b8051461070b57806395d89b411461072a57600080fd5b80636c0360eb146105e157806370a08231146105f657806370ac810f14610616578063715018a61461063657806379fd5c081461064b578063841709ff1461066057600080fd5b806332cb6b0c116102345780634ccf5c6d116101ed578063603f4d52116101c7578063603f4d52146105725780636352211e1461058c5780636790a9de146105ac578063699f6812146105cc57600080fd5b80634ccf5c6d1461051b5780635503a0e8146105305780635bbb21771461054557600080fd5b806332cb6b0c1461048357806334ecc70a146104995780633ccfd60b146104af5780633f665efd146104c457806342842e0e146104db57806342966c68146104fb57600080fd5b80630d758111116102865780630d758111146103c257806317d98514146103ef57806318160ddd1461040f57806323b872dd1461042c5780632bc849751461044c5780632e0674211461046357600080fd5b8063013c53b9146102ce57806301ffc9a7146102f657806306fdde0314610326578063081812fc1461034857806308b2194014610380578063095ea7b3146103a2575b600080fd5b3480156102da57600080fd5b506102e36108c0565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506103166103113660046129d1565b6108d1565b60405190151581526020016102ed565b34801561033257600080fd5b5061033b610923565b6040516102ed9190612cab565b34801561035457600080fd5b50610368610363366004612a69565b6109b5565b6040516001600160a01b0390911681526020016102ed565b34801561038c57600080fd5b506103a061039b366004612a69565b6109f9565b005b3480156103ae57600080fd5b506103a06103bd36600461284d565b610ac1565b3480156103ce57600080fd5b506102e36103dd366004612725565b600a6020526000908152604090205481565b3480156103fb57600080fd5b506103a061040a3660046129b7565b610b94565b34801561041b57600080fd5b5060015460005403600019016102e3565b34801561043857600080fd5b506103a0610447366004612771565b610bd8565b34801561045857600080fd5b506102e36226ee6081565b34801561046f57600080fd5b506103a061047e366004612a69565b610be8565b34801561048f57600080fd5b506102e361271081565b3480156104a557600080fd5b506102e360095481565b3480156104bb57600080fd5b506103a0610c17565b3480156104d057600080fd5b506102e362090a7481565b3480156104e757600080fd5b506103a06104f6366004612771565b610c7d565b34801561050757600080fd5b506103a0610516366004612a69565b610c98565b34801561052757600080fd5b506102e3610ca3565b34801561053c57600080fd5b5061033b610cb3565b34801561055157600080fd5b50610565610560366004612910565b610d41565b6040516102ed9190612c09565b34801561057e57600080fd5b50600b546103169060ff1681565b34801561059857600080fd5b506103686105a7366004612a69565b610e31565b3480156105b857600080fd5b506103a06105c7366004612a09565b610e3c565b3480156105d857600080fd5b506102e3610e8d565b3480156105ed57600080fd5b5061033b610eb4565b34801561060257600080fd5b506102e3610611366004612725565b610ec1565b34801561062257600080fd5b506102e3610631366004612a69565b610f0f565b34801561064257600080fd5b506103a0610fa0565b34801561065757600080fd5b5061033b610fd6565b34801561066c57600080fd5b506103a061067b366004612a69565b610fe1565b34801561068c57600080fd5b506106a061069b366004612725565b611056565b6040516102ed9190612c73565b3480156106b957600080fd5b506103a06106c8366004612a69565b61117a565b3480156106d957600080fd5b506008546001600160a01b0316610368565b3480156106f757600080fd5b5061033b610706366004612a69565b6111df565b34801561071757600080fd5b50600b5461031690610100900460ff1681565b34801561073657600080fd5b5061033b611401565b34801561074b57600080fd5b506106a061075a366004612876565b611410565b6103a061076d366004612a69565b6115b5565b34801561077e57600080fd5b506103a061078d366004612824565b6117e2565b34801561079e57600080fd5b506103a06107ad3660046127ac565b611878565b3480156107be57600080fd5b506102e360115481565b3480156107d457600080fd5b506107e86107e3366004612a69565b6118c2565b6040516102ed9190612cf3565b34801561080157600080fd5b506103a06108103660046129b7565b611937565b34801561082157600080fd5b5061033b610830366004612a69565b611974565b34801561084157600080fd5b506106a0611a36565b34801561085657600080fd5b506102e3600e5481565b34801561086c57600080fd5b5061031661087b36600461273f565b611a42565b34801561088c57600080fd5b506103a061089b3660046128a8565b611a70565b3480156108ac57600080fd5b506103a06108bb366004612725565b611bf7565b6108ce60086226ee60612d70565b81565b60006301ffc9a760e01b6001600160e01b03198316148061090257506380ac58cd60e01b6001600160e01b03198316145b8061091d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461093290612de6565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612de6565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611c9b565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a2c5760405162461bcd60e51b8152600401610a2390612cbe565b60405180910390fd5b6007811115610a6d5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610a23565b610a78600f82611cd0565b15610ab25760405162461bcd60e51b815260206004820152600a60248201526930b63932b0b23c9034b760b11b6044820152606401610a23565b610abd600f82611c8f565b5050565b6000610acc82611ce8565b9050806001600160a01b0316836001600160a01b03161415610b015760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b3857610b1b8133611a42565b610b38576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610a2390612cbe565b600b80549115156101000261ff0019909216919091179055565b610be3838383611d51565b505050565b6008546001600160a01b03163314610c125760405162461bcd60e51b8152600401610a2390612cbe565b600955565b6008546001600160a01b03163314610c415760405162461bcd60e51b8152600401610a2390612cbe565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c7a573d6000803e3d6000fd5b50565b610be383838360405180602001604052806000815250611878565b610c7a816001611ee2565b6000610cae42610f0f565b905090565b600d8054610cc090612de6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cec90612de6565b8015610d395780601f10610d0e57610100808354040283529160200191610d39565b820191906000526020600020905b815481529060010190602001808311610d1c57829003601f168201915b505050505081565b80516060906000816001600160401b03811115610d6e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d8c5790505b50905060005b828114610e2957610df6858281518110610de957634e487b7160e01b600052603260045260246000fd5b60200260200101516118c2565b828281518110610e1657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610dbf565b509392505050565b600061091d82611ce8565b6008546001600160a01b03163314610e665760405162461bcd60e51b8152600401610a2390612cbe565b8151610e7990600c9060208501906125a1565b508051610be390600d9060208401906125a1565b6002610e9d60086226ee60612d70565b610ea79190612d70565b6108ce9062090a74612da3565b600c8054610cc090612de6565b60006001600160a01b038216610eea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b60006007600e5411610f23575050600e5490565b60006226ee606002610f36600883612d70565b610f409190612d70565b610f4d9062090a74612da3565b610f579085612da3565b610f619190612e3c565b9050670de0b6b3a76400006226ee60610f7a8383612d84565b610f85906008612d84565b610f8f9190612d70565b610f999190612d70565b9392505050565b6008546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a2390612cbe565b610fd46000612024565b565b6060610cae426111df565b6008546001600160a01b0316331461100b5760405162461bcd60e51b8152600401610a2390612cbe565b611016600f82611cd0565b61104b5760405162461bcd60e51b81526020600482015260066024820152653737ba1034b760d11b6044820152606401610a23565b610abd600f82612076565b6060600080600061106685610ec1565b90506000816001600160401b0381111561109057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156110b9578160200160208202803683370190505b5090506110df604080516060810182526000808252602082018190529181019190915290565b60015b83861461116e576110f281612082565b915081604001511561110357611166565b81516001600160a01b03161561111857815194505b876001600160a01b0316856001600160a01b03161415611166578083878060010198508151811061115957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b6001016110e2565b50909695505050505050565b6008546001600160a01b031633146111a45760405162461bcd60e51b8152600401610a2390612cbe565b600e8190556040518181527f8e7ea54f67e11ec76348554f9b2250e4dffb1390980b62d626821f62d552e84a9060200160405180910390a150565b606060006111ec83610f0f565b90508061121d57505060408051808201909152600c81526b181016902732bb9026b7b7b760a11b6020820152919050565b806001141561126157505060408051808201909152601881527f31202d20576178696e67204372657363656e74204d6f6f6e00000000000000006020820152919050565b806002141561129e575050604080518082019091526016815275191016902334b939ba1028bab0b93a32b91026b7b7b760511b6020820152919050565b80600314156112e257505060408051808201909152601781527f33202d20576178696e6720476962626f7573204d6f6f6e0000000000000000006020820152919050565b806004141561131657505060408051808201909152600d81526c1a101690233ab6361026b7b7b760991b6020820152919050565b806005141561135a57505060408051808201909152601781527f35202d2057616e696e6720476962626f7573204d6f6f6e0000000000000000006020820152919050565b80600614156113965750506040805180820190915260158152741b1016902630b9ba1028bab0b93a32b91026b7b7b760591b6020820152919050565b80600714156113da57505060408051808201909152601881527f37202d2057616e696e67204372657363656e74204d6f6f6e00000000000000006020820152919050565b505060408051808201909152600981526821363ab29026b7b7b760b91b6020820152919050565b60606003805461093290612de6565b606081831061143257604051631960ccad60e11b815260040160405180910390fd5b60008061143e60005490565b9050600185101561144e57600194505b8084111561145a578093505b600061146587610ec1565b905084861015611484578585038181101561147e578091505b50611488565b5060005b6000816001600160401b038111156114b057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114d9578160200160208202803683370190505b509050816114ec579350610f9992505050565b60006114f7886118c2565b905060008160400151611508575080515b885b88811415801561151a5750848714155b156115a45761152881612082565b92508260400151156115395761159c565b82516001600160a01b03161561154e57825191505b8a6001600160a01b0316826001600160a01b0316141561159c578084888060010199508151811061158f57634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b60010161150a565b505050928352509095945050505050565b3332146115f25760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610a23565b600b5460ff166116365760405162461bcd60e51b815260206004820152600f60248201526e53616c6520697320636c6f7365642160881b6044820152606401610a23565b612710816116476000546000190190565b6116519190612d58565b11156116935760405162461bcd60e51b8152602060048201526011602482015270457863656564204d41585f535550504c5960781b6044820152606401610a23565b600081116116d75760405162461bcd60e51b81526020600482015260116024820152700416d6f756e742063616e2774206265203607c1b6044820152606401610a23565b600954336000908152600a60205260409020546116f49083612d58565b11156117375760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b585e109e55d85b1b195d60721b6044820152606401610a23565b600b54610100900460ff16156117b3576113886117576000546000190190565b11156117b357346011548261176c9190612d84565b11156117b35760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a59081c185e5b595b9d08185b5bdd5b9d60521b6044820152606401610a23565b336000908152600a6020526040812080548392906117d2908490612d58565b90915550610c7a905033826120b7565b6001600160a01b03821633141561180c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611883848484611d51565b6001600160a01b0383163b156118bc5761189f848484846120d1565b6118bc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061190857506000548310155b156119135792915050565b61191c83612082565b905080604001511561192e5792915050565b610f99836121c8565b6008546001600160a01b031633146119615760405162461bcd60e51b8152600401610a2390612cbe565b600b805460ff1916911515919091179055565b606061197f82611c9b565b61199c57604051630a14c4b560e41b815260040160405180910390fd5b60006119a742610f0f565b9050600c80546119b690612de6565b151590506119c757610f99836121f6565b6119d2600f82611cd0565b15611a1757600c6119e2846121f6565b6119eb836121f6565b600d604051602001611a009493929190612b78565b604051602081830303815290604052915050919050565b600c611a22846121f6565b600d604051602001611a0093929190612b45565b6060610cae600f612245565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314611a9a5760405162461bcd60e51b8152600401610a2390612cbe565b600b5460ff1615611add5760405162461bcd60e51b815260206004820152600d60248201526c73616c65206973206f70656e2160981b6044820152606401610a23565b828114611b235760405162461bcd60e51b81526020600482015260146024820152736d69736d61746368696e67206c656e677468732160601b6044820152606401610a23565b60005b83811015611ba457611b92858583818110611b5157634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b669190612725565b848484818110611b8657634e487b7160e01b600052603260045260246000fd5b905060200201356120b7565b80611b9c81612e21565b915050611b26565b50612710611bb56000546000190190565b11156118bc5760405162461bcd60e51b8152602060048201526011602482015270457863656564204d41585f535550504c5960781b6044820152606401610a23565b6008546001600160a01b03163314611c215760405162461bcd60e51b8152600401610a2390612cbe565b6001600160a01b038116611c865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610c7a81612024565b6000610f998383612252565b600081600111158015611caf575060005482105b801561091d575050600090815260046020526040902054600160e01b161590565b60008181526001830160205260408120541515610f99565b60008180600111611d3857600054811015611d3857600081815260046020526040902054600160e01b8116611d36575b80610f99575060001901600081815260046020526040902054611d18565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611d5c82611ce8565b9050836001600160a01b0316816001600160a01b031614611d8f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611dad5750611dad8533611a42565b80611dc8575033611dbd846109b5565b6001600160a01b0316145b905080611de857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e0f57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611eac5760018301600081815260046020526040902054611eaa576000548114611eaa5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b0316600080516020612ea983398151915260405160405180910390a45050505050565b6000611eed83611ce8565b9050808215611f51576000336001600160a01b0383161480611f145750611f148233611a42565b80611f2f575033611f24866109b5565b6001600160a01b0316145b905080611f4f57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611ff05760018401600081815260046020526040902054611fee576000548114611fee5760008181526004602052604090208390555b505b60405184906000906001600160a01b03841690600080516020612ea9833981519152908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f9983836122a1565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461091d906123be565b610abd8282604051806020016040528060008152506123f8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612106903390899088908890600401612bcc565b602060405180830381600087803b15801561212057600080fd5b505af1925050508015612150575060408051601f3d908101601f1916820190925261214d918101906129ed565b60015b6121ab573d80801561217e576040519150601f19603f3d011682016040523d82523d6000602084013e612183565b606091505b5080516121a3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516060810182526000808252602082018190529181019190915261091d6121f183611ce8565b6123be565b604080516080810191829052607f0190826030600a8206018353600a90045b801561223357600183039250600a81066030018353600a9004612215565b50819003601f19909101908152919050565b60606000610f9983612545565b60008181526001830160205260408120546122995750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561091d565b50600061091d565b600081815260018301602052604081205480156123b45760006122c5600183612da3565b85549091506000906122d990600190612da3565b905081811461235a57600086600001828154811061230757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061233857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061237957634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061091d565b600091505061091d565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b03841661242157604051622e076360e81b815260040160405180910390fd5b8261243f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612502575b60405182906001600160a01b03881690600090600080516020612ea9833981519152908290a46124cb60008784806001019550876120d1565b6124e8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106124925782600054146124fd57600080fd5b612535565b5b6040516001830192906001600160a01b03881690600090600080516020612ea9833981519152908290a4808210612503575b5060009081556118bc9085838684565b60608160000180548060200260200160405190810160405280929190818152602001828054801561259557602002820191906000526020600020905b815481526020019060010190808311612581575b50505050509050919050565b8280546125ad90612de6565b90600052602060002090601f0160209004810192826125cf5760008555612615565b82601f106125e857805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126155782518255916020019190600101906125fa565b50612621929150612625565b5090565b5b808211156126215760008155600101612626565b60006001600160401b0383111561265357612653612e7c565b612666601f8401601f1916602001612d28565b905082815283838301111561267a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146126a857600080fd5b919050565b60008083601f8401126126be578182fd5b5081356001600160401b038111156126d4578182fd5b6020830191508360208260051b85010111156126ef57600080fd5b9250929050565b803580151581146126a857600080fd5b600082601f830112612716578081fd5b610f998383356020850161263a565b600060208284031215612736578081fd5b610f9982612691565b60008060408385031215612751578081fd5b61275a83612691565b915061276860208401612691565b90509250929050565b600080600060608486031215612785578081fd5b61278e84612691565b925061279c60208501612691565b9150604084013590509250925092565b600080600080608085870312156127c1578081fd5b6127ca85612691565b93506127d860208601612691565b92506040850135915060608501356001600160401b038111156127f9578182fd5b8501601f81018713612809578182fd5b6128188782356020840161263a565b91505092959194509250565b60008060408385031215612836578182fd5b61283f83612691565b9150612768602084016126f6565b6000806040838503121561285f578182fd5b61286883612691565b946020939093013593505050565b60008060006060848603121561288a578283fd5b61289384612691565b95602085013595506040909401359392505050565b600080600080604085870312156128bd578384fd5b84356001600160401b03808211156128d3578586fd5b6128df888389016126ad565b909650945060208701359150808211156128f7578384fd5b50612904878288016126ad565b95989497509550505050565b60006020808385031215612922578182fd5b82356001600160401b0380821115612938578384fd5b818501915085601f83011261294b578384fd5b81358181111561295d5761295d612e7c565b8060051b915061296e848301612d28565b8181528481019084860184860187018a1015612988578788fd5b8795505b838610156129aa57803583526001959095019491860191860161298c565b5098975050505050505050565b6000602082840312156129c8578081fd5b610f99826126f6565b6000602082840312156129e2578081fd5b8135610f9981612e92565b6000602082840312156129fe578081fd5b8151610f9981612e92565b60008060408385031215612a1b578182fd5b82356001600160401b0380821115612a31578384fd5b612a3d86838701612706565b93506020850135915080821115612a52578283fd5b50612a5f85828601612706565b9150509250929050565b600060208284031215612a7a578081fd5b5035919050565b60008151808452612a99816020860160208601612dba565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ac757607f831692505b6020808410821415612ae757634e487b7160e01b86526022600452602486fd5b818015612afb5760018114612b0c57612b39565b60ff19861689528489019650612b39565b60008881526020902060005b86811015612b315781548b820152908501908301612b18565b505084890196505b50505050505092915050565b6000612b518286612aad565b8451612b61818360208901612dba565b612b6d81830186612aad565b979650505050505050565b6000612b848287612aad565b8551612b94818360208a01612dba565b605f60f81b91019081528451612bb1816001840160208901612dba565b612bc060018284010186612aad565b98975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bff90830184612a81565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561116e57612c6083855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612c25565b6020808252825182820181905260009190848201906040850190845b8181101561116e57835183529284019291840191600101612c8f565b602081526000610f996020830184612a81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161091d565b604051601f8201601f191681016001600160401b0381118282101715612d5057612d50612e7c565b604052919050565b60008219821115612d6b57612d6b612e50565b500190565b600082612d7f57612d7f612e66565b500490565b6000816000190483118215151615612d9e57612d9e612e50565b500290565b600082821015612db557612db5612e50565b500390565b60005b83811015612dd5578181015183820152602001612dbd565b838111156118bc5750506000910152565b600181811c90821680612dfa57607f821691505b60208210811415612e1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e3557612e35612e50565b5060010190565b600082612e4b57612e4b612e66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7a57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122071a978abaca5a08f5da30d93e0b6ae9e9631d35c4c3f2a7d71f9d348dd78cd7064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b42756c6c72756e6e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542554c4c52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f62756c6c72756e6e6572732e7774662f6170692f6d6574612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636c0360eb1161017557806399a2557a116100dc578063c4e3709511610095578063cadc9bbf1161006f578063cadc9bbf1461084a578063e985e9c514610860578063f09a03c014610880578063f2fde38b146108a057600080fd5b8063c4e37095146107f5578063c87b56dd14610815578063c9e551261461083557600080fd5b806399a2557a1461073f578063a0712d681461075f578063a22cb46514610772578063b88d4fde14610792578063c002d23d146107b2578063c23dc68f146107c857600080fd5b80638462151c1161012e5780638462151c146106805780638d814d0d146106ad5780638da5cb5b146106cd57806391833ab5146106eb5780639434b8051461070b57806395d89b411461072a57600080fd5b80636c0360eb146105e157806370a08231146105f657806370ac810f14610616578063715018a61461063657806379fd5c081461064b578063841709ff1461066057600080fd5b806332cb6b0c116102345780634ccf5c6d116101ed578063603f4d52116101c7578063603f4d52146105725780636352211e1461058c5780636790a9de146105ac578063699f6812146105cc57600080fd5b80634ccf5c6d1461051b5780635503a0e8146105305780635bbb21771461054557600080fd5b806332cb6b0c1461048357806334ecc70a146104995780633ccfd60b146104af5780633f665efd146104c457806342842e0e146104db57806342966c68146104fb57600080fd5b80630d758111116102865780630d758111146103c257806317d98514146103ef57806318160ddd1461040f57806323b872dd1461042c5780632bc849751461044c5780632e0674211461046357600080fd5b8063013c53b9146102ce57806301ffc9a7146102f657806306fdde0314610326578063081812fc1461034857806308b2194014610380578063095ea7b3146103a2575b600080fd5b3480156102da57600080fd5b506102e36108c0565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506103166103113660046129d1565b6108d1565b60405190151581526020016102ed565b34801561033257600080fd5b5061033b610923565b6040516102ed9190612cab565b34801561035457600080fd5b50610368610363366004612a69565b6109b5565b6040516001600160a01b0390911681526020016102ed565b34801561038c57600080fd5b506103a061039b366004612a69565b6109f9565b005b3480156103ae57600080fd5b506103a06103bd36600461284d565b610ac1565b3480156103ce57600080fd5b506102e36103dd366004612725565b600a6020526000908152604090205481565b3480156103fb57600080fd5b506103a061040a3660046129b7565b610b94565b34801561041b57600080fd5b5060015460005403600019016102e3565b34801561043857600080fd5b506103a0610447366004612771565b610bd8565b34801561045857600080fd5b506102e36226ee6081565b34801561046f57600080fd5b506103a061047e366004612a69565b610be8565b34801561048f57600080fd5b506102e361271081565b3480156104a557600080fd5b506102e360095481565b3480156104bb57600080fd5b506103a0610c17565b3480156104d057600080fd5b506102e362090a7481565b3480156104e757600080fd5b506103a06104f6366004612771565b610c7d565b34801561050757600080fd5b506103a0610516366004612a69565b610c98565b34801561052757600080fd5b506102e3610ca3565b34801561053c57600080fd5b5061033b610cb3565b34801561055157600080fd5b50610565610560366004612910565b610d41565b6040516102ed9190612c09565b34801561057e57600080fd5b50600b546103169060ff1681565b34801561059857600080fd5b506103686105a7366004612a69565b610e31565b3480156105b857600080fd5b506103a06105c7366004612a09565b610e3c565b3480156105d857600080fd5b506102e3610e8d565b3480156105ed57600080fd5b5061033b610eb4565b34801561060257600080fd5b506102e3610611366004612725565b610ec1565b34801561062257600080fd5b506102e3610631366004612a69565b610f0f565b34801561064257600080fd5b506103a0610fa0565b34801561065757600080fd5b5061033b610fd6565b34801561066c57600080fd5b506103a061067b366004612a69565b610fe1565b34801561068c57600080fd5b506106a061069b366004612725565b611056565b6040516102ed9190612c73565b3480156106b957600080fd5b506103a06106c8366004612a69565b61117a565b3480156106d957600080fd5b506008546001600160a01b0316610368565b3480156106f757600080fd5b5061033b610706366004612a69565b6111df565b34801561071757600080fd5b50600b5461031690610100900460ff1681565b34801561073657600080fd5b5061033b611401565b34801561074b57600080fd5b506106a061075a366004612876565b611410565b6103a061076d366004612a69565b6115b5565b34801561077e57600080fd5b506103a061078d366004612824565b6117e2565b34801561079e57600080fd5b506103a06107ad3660046127ac565b611878565b3480156107be57600080fd5b506102e360115481565b3480156107d457600080fd5b506107e86107e3366004612a69565b6118c2565b6040516102ed9190612cf3565b34801561080157600080fd5b506103a06108103660046129b7565b611937565b34801561082157600080fd5b5061033b610830366004612a69565b611974565b34801561084157600080fd5b506106a0611a36565b34801561085657600080fd5b506102e3600e5481565b34801561086c57600080fd5b5061031661087b36600461273f565b611a42565b34801561088c57600080fd5b506103a061089b3660046128a8565b611a70565b3480156108ac57600080fd5b506103a06108bb366004612725565b611bf7565b6108ce60086226ee60612d70565b81565b60006301ffc9a760e01b6001600160e01b03198316148061090257506380ac58cd60e01b6001600160e01b03198316145b8061091d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461093290612de6565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612de6565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611c9b565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a2c5760405162461bcd60e51b8152600401610a2390612cbe565b60405180910390fd5b6007811115610a6d5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706861736560981b6044820152606401610a23565b610a78600f82611cd0565b15610ab25760405162461bcd60e51b815260206004820152600a60248201526930b63932b0b23c9034b760b11b6044820152606401610a23565b610abd600f82611c8f565b5050565b6000610acc82611ce8565b9050806001600160a01b0316836001600160a01b03161415610b015760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b3857610b1b8133611a42565b610b38576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610a2390612cbe565b600b80549115156101000261ff0019909216919091179055565b610be3838383611d51565b505050565b6008546001600160a01b03163314610c125760405162461bcd60e51b8152600401610a2390612cbe565b600955565b6008546001600160a01b03163314610c415760405162461bcd60e51b8152600401610a2390612cbe565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c7a573d6000803e3d6000fd5b50565b610be383838360405180602001604052806000815250611878565b610c7a816001611ee2565b6000610cae42610f0f565b905090565b600d8054610cc090612de6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cec90612de6565b8015610d395780601f10610d0e57610100808354040283529160200191610d39565b820191906000526020600020905b815481529060010190602001808311610d1c57829003601f168201915b505050505081565b80516060906000816001600160401b03811115610d6e57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d8c5790505b50905060005b828114610e2957610df6858281518110610de957634e487b7160e01b600052603260045260246000fd5b60200260200101516118c2565b828281518110610e1657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152600101610dbf565b509392505050565b600061091d82611ce8565b6008546001600160a01b03163314610e665760405162461bcd60e51b8152600401610a2390612cbe565b8151610e7990600c9060208501906125a1565b508051610be390600d9060208401906125a1565b6002610e9d60086226ee60612d70565b610ea79190612d70565b6108ce9062090a74612da3565b600c8054610cc090612de6565b60006001600160a01b038216610eea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b60006007600e5411610f23575050600e5490565b60006226ee606002610f36600883612d70565b610f409190612d70565b610f4d9062090a74612da3565b610f579085612da3565b610f619190612e3c565b9050670de0b6b3a76400006226ee60610f7a8383612d84565b610f85906008612d84565b610f8f9190612d70565b610f999190612d70565b9392505050565b6008546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a2390612cbe565b610fd46000612024565b565b6060610cae426111df565b6008546001600160a01b0316331461100b5760405162461bcd60e51b8152600401610a2390612cbe565b611016600f82611cd0565b61104b5760405162461bcd60e51b81526020600482015260066024820152653737ba1034b760d11b6044820152606401610a23565b610abd600f82612076565b6060600080600061106685610ec1565b90506000816001600160401b0381111561109057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156110b9578160200160208202803683370190505b5090506110df604080516060810182526000808252602082018190529181019190915290565b60015b83861461116e576110f281612082565b915081604001511561110357611166565b81516001600160a01b03161561111857815194505b876001600160a01b0316856001600160a01b03161415611166578083878060010198508151811061115957634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b6001016110e2565b50909695505050505050565b6008546001600160a01b031633146111a45760405162461bcd60e51b8152600401610a2390612cbe565b600e8190556040518181527f8e7ea54f67e11ec76348554f9b2250e4dffb1390980b62d626821f62d552e84a9060200160405180910390a150565b606060006111ec83610f0f565b90508061121d57505060408051808201909152600c81526b181016902732bb9026b7b7b760a11b6020820152919050565b806001141561126157505060408051808201909152601881527f31202d20576178696e67204372657363656e74204d6f6f6e00000000000000006020820152919050565b806002141561129e575050604080518082019091526016815275191016902334b939ba1028bab0b93a32b91026b7b7b760511b6020820152919050565b80600314156112e257505060408051808201909152601781527f33202d20576178696e6720476962626f7573204d6f6f6e0000000000000000006020820152919050565b806004141561131657505060408051808201909152600d81526c1a101690233ab6361026b7b7b760991b6020820152919050565b806005141561135a57505060408051808201909152601781527f35202d2057616e696e6720476962626f7573204d6f6f6e0000000000000000006020820152919050565b80600614156113965750506040805180820190915260158152741b1016902630b9ba1028bab0b93a32b91026b7b7b760591b6020820152919050565b80600714156113da57505060408051808201909152601881527f37202d2057616e696e67204372657363656e74204d6f6f6e00000000000000006020820152919050565b505060408051808201909152600981526821363ab29026b7b7b760b91b6020820152919050565b60606003805461093290612de6565b606081831061143257604051631960ccad60e11b815260040160405180910390fd5b60008061143e60005490565b9050600185101561144e57600194505b8084111561145a578093505b600061146587610ec1565b905084861015611484578585038181101561147e578091505b50611488565b5060005b6000816001600160401b038111156114b057634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114d9578160200160208202803683370190505b509050816114ec579350610f9992505050565b60006114f7886118c2565b905060008160400151611508575080515b885b88811415801561151a5750848714155b156115a45761152881612082565b92508260400151156115395761159c565b82516001600160a01b03161561154e57825191505b8a6001600160a01b0316826001600160a01b0316141561159c578084888060010199508151811061158f57634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b60010161150a565b505050928352509095945050505050565b3332146115f25760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b6044820152606401610a23565b600b5460ff166116365760405162461bcd60e51b815260206004820152600f60248201526e53616c6520697320636c6f7365642160881b6044820152606401610a23565b612710816116476000546000190190565b6116519190612d58565b11156116935760405162461bcd60e51b8152602060048201526011602482015270457863656564204d41585f535550504c5960781b6044820152606401610a23565b600081116116d75760405162461bcd60e51b81526020600482015260116024820152700416d6f756e742063616e2774206265203607c1b6044820152606401610a23565b600954336000908152600a60205260409020546116f49083612d58565b11156117375760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b585e109e55d85b1b195d60721b6044820152606401610a23565b600b54610100900460ff16156117b3576113886117576000546000190190565b11156117b357346011548261176c9190612d84565b11156117b35760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a59081c185e5b595b9d08185b5bdd5b9d60521b6044820152606401610a23565b336000908152600a6020526040812080548392906117d2908490612d58565b90915550610c7a905033826120b7565b6001600160a01b03821633141561180c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611883848484611d51565b6001600160a01b0383163b156118bc5761189f848484846120d1565b6118bc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061190857506000548310155b156119135792915050565b61191c83612082565b905080604001511561192e5792915050565b610f99836121c8565b6008546001600160a01b031633146119615760405162461bcd60e51b8152600401610a2390612cbe565b600b805460ff1916911515919091179055565b606061197f82611c9b565b61199c57604051630a14c4b560e41b815260040160405180910390fd5b60006119a742610f0f565b9050600c80546119b690612de6565b151590506119c757610f99836121f6565b6119d2600f82611cd0565b15611a1757600c6119e2846121f6565b6119eb836121f6565b600d604051602001611a009493929190612b78565b604051602081830303815290604052915050919050565b600c611a22846121f6565b600d604051602001611a0093929190612b45565b6060610cae600f612245565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314611a9a5760405162461bcd60e51b8152600401610a2390612cbe565b600b5460ff1615611add5760405162461bcd60e51b815260206004820152600d60248201526c73616c65206973206f70656e2160981b6044820152606401610a23565b828114611b235760405162461bcd60e51b81526020600482015260146024820152736d69736d61746368696e67206c656e677468732160601b6044820152606401610a23565b60005b83811015611ba457611b92858583818110611b5157634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b669190612725565b848484818110611b8657634e487b7160e01b600052603260045260246000fd5b905060200201356120b7565b80611b9c81612e21565b915050611b26565b50612710611bb56000546000190190565b11156118bc5760405162461bcd60e51b8152602060048201526011602482015270457863656564204d41585f535550504c5960781b6044820152606401610a23565b6008546001600160a01b03163314611c215760405162461bcd60e51b8152600401610a2390612cbe565b6001600160a01b038116611c865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610c7a81612024565b6000610f998383612252565b600081600111158015611caf575060005482105b801561091d575050600090815260046020526040902054600160e01b161590565b60008181526001830160205260408120541515610f99565b60008180600111611d3857600054811015611d3857600081815260046020526040902054600160e01b8116611d36575b80610f99575060001901600081815260046020526040902054611d18565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611d5c82611ce8565b9050836001600160a01b0316816001600160a01b031614611d8f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611dad5750611dad8533611a42565b80611dc8575033611dbd846109b5565b6001600160a01b0316145b905080611de857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e0f57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611eac5760018301600081815260046020526040902054611eaa576000548114611eaa5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b0316600080516020612ea983398151915260405160405180910390a45050505050565b6000611eed83611ce8565b9050808215611f51576000336001600160a01b0383161480611f145750611f148233611a42565b80611f2f575033611f24866109b5565b6001600160a01b0316145b905080611f4f57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611ff05760018401600081815260046020526040902054611fee576000548114611fee5760008181526004602052604090208390555b505b60405184906000906001600160a01b03841690600080516020612ea9833981519152908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610f9983836122a1565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461091d906123be565b610abd8282604051806020016040528060008152506123f8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612106903390899088908890600401612bcc565b602060405180830381600087803b15801561212057600080fd5b505af1925050508015612150575060408051601f3d908101601f1916820190925261214d918101906129ed565b60015b6121ab573d80801561217e576040519150601f19603f3d011682016040523d82523d6000602084013e612183565b606091505b5080516121a3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516060810182526000808252602082018190529181019190915261091d6121f183611ce8565b6123be565b604080516080810191829052607f0190826030600a8206018353600a90045b801561223357600183039250600a81066030018353600a9004612215565b50819003601f19909101908152919050565b60606000610f9983612545565b60008181526001830160205260408120546122995750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561091d565b50600061091d565b600081815260018301602052604081205480156123b45760006122c5600183612da3565b85549091506000906122d990600190612da3565b905081811461235a57600086600001828154811061230757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061233857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061237957634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061091d565b600091505061091d565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b6000546001600160a01b03841661242157604051622e076360e81b815260040160405180910390fd5b8261243f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15612502575b60405182906001600160a01b03881690600090600080516020612ea9833981519152908290a46124cb60008784806001019550876120d1565b6124e8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106124925782600054146124fd57600080fd5b612535565b5b6040516001830192906001600160a01b03881690600090600080516020612ea9833981519152908290a4808210612503575b5060009081556118bc9085838684565b60608160000180548060200260200160405190810160405280929190818152602001828054801561259557602002820191906000526020600020905b815481526020019060010190808311612581575b50505050509050919050565b8280546125ad90612de6565b90600052602060002090601f0160209004810192826125cf5760008555612615565b82601f106125e857805160ff1916838001178555612615565b82800160010185558215612615579182015b828111156126155782518255916020019190600101906125fa565b50612621929150612625565b5090565b5b808211156126215760008155600101612626565b60006001600160401b0383111561265357612653612e7c565b612666601f8401601f1916602001612d28565b905082815283838301111561267a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146126a857600080fd5b919050565b60008083601f8401126126be578182fd5b5081356001600160401b038111156126d4578182fd5b6020830191508360208260051b85010111156126ef57600080fd5b9250929050565b803580151581146126a857600080fd5b600082601f830112612716578081fd5b610f998383356020850161263a565b600060208284031215612736578081fd5b610f9982612691565b60008060408385031215612751578081fd5b61275a83612691565b915061276860208401612691565b90509250929050565b600080600060608486031215612785578081fd5b61278e84612691565b925061279c60208501612691565b9150604084013590509250925092565b600080600080608085870312156127c1578081fd5b6127ca85612691565b93506127d860208601612691565b92506040850135915060608501356001600160401b038111156127f9578182fd5b8501601f81018713612809578182fd5b6128188782356020840161263a565b91505092959194509250565b60008060408385031215612836578182fd5b61283f83612691565b9150612768602084016126f6565b6000806040838503121561285f578182fd5b61286883612691565b946020939093013593505050565b60008060006060848603121561288a578283fd5b61289384612691565b95602085013595506040909401359392505050565b600080600080604085870312156128bd578384fd5b84356001600160401b03808211156128d3578586fd5b6128df888389016126ad565b909650945060208701359150808211156128f7578384fd5b50612904878288016126ad565b95989497509550505050565b60006020808385031215612922578182fd5b82356001600160401b0380821115612938578384fd5b818501915085601f83011261294b578384fd5b81358181111561295d5761295d612e7c565b8060051b915061296e848301612d28565b8181528481019084860184860187018a1015612988578788fd5b8795505b838610156129aa57803583526001959095019491860191860161298c565b5098975050505050505050565b6000602082840312156129c8578081fd5b610f99826126f6565b6000602082840312156129e2578081fd5b8135610f9981612e92565b6000602082840312156129fe578081fd5b8151610f9981612e92565b60008060408385031215612a1b578182fd5b82356001600160401b0380821115612a31578384fd5b612a3d86838701612706565b93506020850135915080821115612a52578283fd5b50612a5f85828601612706565b9150509250929050565b600060208284031215612a7a578081fd5b5035919050565b60008151808452612a99816020860160208601612dba565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612ac757607f831692505b6020808410821415612ae757634e487b7160e01b86526022600452602486fd5b818015612afb5760018114612b0c57612b39565b60ff19861689528489019650612b39565b60008881526020902060005b86811015612b315781548b820152908501908301612b18565b505084890196505b50505050505092915050565b6000612b518286612aad565b8451612b61818360208901612dba565b612b6d81830186612aad565b979650505050505050565b6000612b848287612aad565b8551612b94818360208a01612dba565b605f60f81b91019081528451612bb1816001840160208901612dba565b612bc060018284010186612aad565b98975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bff90830184612a81565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561116e57612c6083855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612c25565b6020808252825182820181905260009190848201906040850190845b8181101561116e57835183529284019291840191600101612c8f565b602081526000610f996020830184612a81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161091d565b604051601f8201601f191681016001600160401b0381118282101715612d5057612d50612e7c565b604052919050565b60008219821115612d6b57612d6b612e50565b500190565b600082612d7f57612d7f612e66565b500490565b6000816000190483118215151615612d9e57612d9e612e50565b500290565b600082821015612db557612db5612e50565b500390565b60005b83811015612dd5578181015183820152602001612dbd565b838111156118bc5750506000910152565b600181811c90821680612dfa57607f821691505b60208210811415612e1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e3557612e35612e50565b5060010190565b600082612e4b57612e4b612e66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7a57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122071a978abaca5a08f5da30d93e0b6ae9e9631d35c4c3f2a7d71f9d348dd78cd7064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b42756c6c72756e6e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542554c4c52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f62756c6c72756e6e6572732e7774662f6170692f6d6574612f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Bullrunners
Arg [1] : symbol (string): BULLR
Arg [2] : baseURI_ (string): https://bullrunners.wtf/api/meta/
Arg [3] : uriSuffix_ (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 42756c6c72756e6e657273000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 42554c4c52000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [9] : 68747470733a2f2f62756c6c72756e6e6572732e7774662f6170692f6d657461
Arg [10] : 2f00000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62156:6603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62845:55;;;;;;;;;;;;;:::i;:::-;;;17340:25:1;;;17328:2;17313:18;62845:55:0;;;;;;;;18757:612;;;;;;;;;;-1:-1:-1;18757:612:0;;;;;:::i;:::-;;:::i;:::-;;;12127:14:1;;12120:22;12102:41;;12090:2;12075:18;18757:612:0;12057:92:1;23713:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25781:204::-;;;;;;;;;;-1:-1:-1;25781:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10057:32:1;;;10039:51;;10027:2;10012:18;25781:204:0;9994:102:1;67980:218:0;;;;;;;;;;-1:-1:-1;67980:218:0;;;;;:::i;:::-;;:::i;:::-;;25241:474;;;;;;;;;;-1:-1:-1;25241:474:0;;;;;:::i;:::-;;:::i;62412:49::-;;;;;;;;;;-1:-1:-1;62412:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;65681:131;;;;;;;;;;-1:-1:-1;65681:131:0;;;;;:::i;:::-;;:::i;17835:303::-;;;;;;;;;;-1:-1:-1;64301:1:0;18093:12;17888:7;18077:13;:28;-1:-1:-1;;18077:46:0;17835:303;;26667:170;;;;;;;;;;-1:-1:-1;26667:170:0;;;;;:::i;:::-;;:::i;62754:59::-;;;;;;;;;;;;62791:22;62754:59;;65903:114;;;;;;;;;;-1:-1:-1;65903:114:0;;;;;:::i;:::-;;:::i;62323:43::-;;;;;;;;;;;;62360:6;62323:43;;62375:30;;;;;;;;;;;;;;;;68372:106;;;;;;;;;;;;;:::i;62684:41::-;;;;;;;;;;;;62719:6;62684:41;;26908:185;;;;;;;;;;-1:-1:-1;26908:185:0;;;;;:::i;:::-;;:::i;43790:94::-;;;;;;;;;;-1:-1:-1;43790:94:0;;;;;:::i;:::-;;:::i;67585:128::-;;;;;;;;;;;;;:::i;62624:23::-;;;;;;;;;;;;;:::i;45290:436::-;;;;;;;;;;-1:-1:-1;45290:436:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;62495:21::-;;;;;;;;;;-1:-1:-1;62495:21:0;;;;;;;;23502:144;;;;;;;;;;-1:-1:-1;23502:144:0;;;;;:::i;:::-;;:::i;65215:167::-;;;;;;;;;;-1:-1:-1;65215:167:0;;;;;:::i;:::-;;:::i;62932:72::-;;;;;;;;;;;;;:::i;62577:21::-;;;;;;;;;;;;;:::i;19433:224::-;;;;;;;;;;-1:-1:-1;19433:224:0;;;;;:::i;:::-;;:::i;66569:336::-;;;;;;;;;;-1:-1:-1;66569:336:0;;;;;:::i;:::-;;:::i;13028:103::-;;;;;;;;;;;;;:::i;67721:132::-;;;;;;;;;;;;;:::i;68206:158::-;;;;;;;;;;-1:-1:-1;68206:158:0;;;;;:::i;:::-;;:::i;48854:812::-;;;;;;;;;;-1:-1:-1;48854:812:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68631:123::-;;;;;;;;;;-1:-1:-1;68631:123:0;;;;;:::i;:::-;;:::i;12377:87::-;;;;;;;;;;-1:-1:-1;12450:6:0;;-1:-1:-1;;;;;12450:6:0;12377:87;;66913:664;;;;;;;;;;-1:-1:-1;66913:664:0;;;;;:::i;:::-;;:::i;62525:28::-;;;;;;;;;;-1:-1:-1;62525:28:0;;;;;;;;;;;23882:104;;;;;;;;;;;;;:::i;46116:2289::-;;;;;;;;;;-1:-1:-1;46116:2289:0;;;;;:::i;:::-;;:::i;63480:660::-;;;;;;:::i;:::-;;:::i;26057:308::-;;;;;;;;;;-1:-1:-1;26057:308:0;;;;;:::i;:::-;;:::i;27164:396::-;;;;;;;;;;-1:-1:-1;27164:396:0;;;;;:::i;:::-;;:::i;63376:37::-;;;;;;;;;;;;;;;;44711:420;;;;;;;;;;-1:-1:-1;44711:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65467:103::-;;;;;;;;;;-1:-1:-1;65467:103:0;;;;;:::i;:::-;;:::i;64434:602::-;;;;;;;;;;-1:-1:-1;64434:602:0;;;;;:::i;:::-;;:::i;67861:111::-;;;;;;;;;;;;;:::i;63013:30::-;;;;;;;;;;;;;;;;26436:164;;;;;;;;;;-1:-1:-1;26436:164:0;;;;;:::i;:::-;;:::i;66087:411::-;;;;;;;;;;-1:-1:-1;66087:411:0;;;;;:::i;:::-;;:::i;13286:201::-;;;;;;;;;;-1:-1:-1;13286:201:0;;;;;:::i;:::-;;:::i;62845:55::-;62886:14;62899:1;62791:22;62886:14;:::i;:::-;62845:55;:::o;18757:612::-;18842:4;-1:-1:-1;;;;;;;;;19138:25:0;;;;:98;;-1:-1:-1;;;;;;;;;;19211:25:0;;;19138:98;:171;;;-1:-1:-1;;;;;;;;;;19284:25:0;;;19138:171;19122:187;18757:612;-1:-1:-1;;18757:612:0:o;23713:100::-;23767:13;23800:5;23793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23713:100;:::o;25781:204::-;25849:7;25874:16;25882:7;25874;:16::i;:::-;25869:64;;25899:34;;-1:-1:-1;;;25899:34:0;;;;;;;;;;;25869:64;-1:-1:-1;25953:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25953:24:0;;25781:204::o;67980:218::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;;;;;;;;;68078:1:::1;68069:5;:10;;68047:50;;;::::0;-1:-1:-1;;;68047:50:0;;13676:2:1;68047:50:0::1;::::0;::::1;13658:21:1::0;13715:2;13695:18;;;13688:30;-1:-1:-1;;;13734:18:1;;;13727:43;13787:18;;68047:50:0::1;13648:163:1::0;68047:50:0::1;68117:26;:10;68137:5:::0;68117:19:::1;:26::i;:::-;68116:27;68108:50;;;::::0;-1:-1:-1;;;68108:50:0;;16443:2:1;68108:50:0::1;::::0;::::1;16425:21:1::0;16482:2;16462:18;;;16455:30;-1:-1:-1;;;16501:18:1;;;16494:40;16551:18;;68108:50:0::1;16415:160:1::0;68108:50:0::1;68169:21;:10;68184:5:::0;68169:14:::1;:21::i;:::-;;67980:218:::0;:::o;25241:474::-;25314:13;25346:27;25365:7;25346:18;:27::i;:::-;25314:61;;25396:5;-1:-1:-1;;;;;25390:11:0;:2;-1:-1:-1;;;;;25390:11:0;;25386:48;;;25410:24;;-1:-1:-1;;;25410:24:0;;;;;;;;;;;25386:48;11297:10;-1:-1:-1;;;;;25451:28:0;;;25447:175;;25499:44;25516:5;11297:10;26436:164;:::i;25499:44::-;25494:128;;25571:35;;-1:-1:-1;;;25571:35:0;;;;;;;;;;;25494:128;25634:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25634:29:0;-1:-1:-1;;;;;25634:29:0;;;;;;;;;25679:28;;25634:24;;25679:28;;;;;;;25241:474;;;:::o;65681:131::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;65766:16:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;65766:38:0;;::::1;::::0;;;::::1;::::0;;65681:131::o;26667:170::-;26801:28;26811:4;26817:2;26821:7;26801:9;:28::i;:::-;26667:170;;;:::o;65903:114::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;65981:11:::1;:28:::0;65903:114::o;68372:106::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;12450:6;;68422:48:::1;::::0;-1:-1:-1;;;;;12450:6:0;;;;68448:21:::1;68422:48:::0;::::1;;;::::0;::::1;::::0;;;68448:21;12450:6;68422:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;68372:106::o:0;26908:185::-;27046:39;27063:4;27069:2;27073:7;27046:39;;;;;;;;;;;;:16;:39::i;43790:94::-;43856:20;43862:7;43871:4;43856:5;:20::i;67585:128::-;67639:17;67676:29;67689:15;67676:12;:29::i;:::-;67669:36;;67585:128;:::o;62624:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45290:436::-;45457:15;;45379:23;;45432:22;45457:15;-1:-1:-1;;;;;45520:36:0;;;;;-1:-1:-1;;;45520:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;45520:36:0;;-1:-1:-1;;45520:36:0;;;;;;;;;;;;45483:73;;45572:9;45567:117;45588:14;45583:1;:19;45567:117;;45640:32;45660:8;45669:1;45660:11;;;;;;-1:-1:-1;;;45660:11:0;;;;;;;;;;;;;;;45640:19;:32::i;:::-;45624:10;45635:1;45624:13;;;;;;-1:-1:-1;;;45624:13:0;;;;;;;;;;;;;;;;;;:48;45604:3;;45567:117;;;-1:-1:-1;45701:10:0;45290:436;-1:-1:-1;;;45290:436:0:o;23502:144::-;23566:7;23609:27;23628:7;23609:18;:27::i;65215:167::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;65319:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;65350:24:0;;::::1;::::0;:9:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;62932:72::-:0;63002:1;62886:14;62899:1;62791:22;62886:14;:::i;:::-;62985:18;;;;:::i;:::-;62973:31;;62719:6;62973:31;:::i;62577:21::-;;;;;;;:::i;19433:224::-;19497:7;-1:-1:-1;;;;;19521:19:0;;19517:60;;19549:28;;-1:-1:-1;;;19549:28:0;;;;;;;;;;;19517:60;-1:-1:-1;;;;;;19595:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;19595:54:0;;19433:224::o;66569:336::-;66631:17;66700:1;66685:11;;:16;66661:87;;-1:-1:-1;;66725:11:0;;;66569:336::o;66661:87::-;66758:20;62791:22;63002:1;62886:14;62899:1;62791:22;62886:14;:::i;:::-;62985:18;;;;:::i;:::-;62973:31;;62719:6;62973:31;:::i;:::-;66782:26;;:9;:26;:::i;:::-;66781:41;;;;:::i;:::-;66758:64;-1:-1:-1;66889:8:0;62791:22;66842:23;66758:64;66889:8;66842:23;:::i;:::-;:27;;66868:1;66842:27;:::i;:::-;66841:44;;;;:::i;:::-;66840:57;;;;:::i;:::-;66833:64;66569:336;-1:-1:-1;;;66569:336:0:o;13028:103::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;13093:30:::1;13120:1;13093:18;:30::i;:::-;13028:103::o:0;67721:132::-;67779:13;67812:33;67829:15;67812:16;:33::i;68206:158::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;68284:26:::1;:10;68304:5:::0;68284:19:::1;:26::i;:::-;68276:45;;;::::0;-1:-1:-1;;;68276:45:0;;15748:2:1;68276:45:0::1;::::0;::::1;15730:21:1::0;15787:1;15767:18;;;15760:29;-1:-1:-1;;;15805:18:1;;;15798:36;15851:18;;68276:45:0::1;15720:155:1::0;68276:45:0::1;68332:24;:10;68350:5:::0;68332:17:::1;:24::i;48854:812::-:0;48924:16;48970:19;49000:25;49036:22;49061:16;49071:5;49061:9;:16::i;:::-;49036:41;;49088:25;49130:14;-1:-1:-1;;;;;49116:29:0;;;;;-1:-1:-1;;;49116:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49116:29:0;;49088:57;;49156:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;49156:31:0;64301:1;49198:428;49247:14;49232:11;:29;49198:428;;49295:15;49308:1;49295:12;:15::i;:::-;49283:27;;49329:9;:16;;;49325:65;;;49366:8;;49325:65;49408:14;;-1:-1:-1;;;;;49408:28:0;;49404:103;;49477:14;;;-1:-1:-1;49404:103:0;49546:5;-1:-1:-1;;;;;49525:26:0;:17;-1:-1:-1;;;;;49525:26:0;;49521:94;;;49598:1;49572:8;49581:13;;;;;;49572:23;;;;;;-1:-1:-1;;;49572:23:0;;;;;;;;;;;;;;:27;;;;;49521:94;49263:3;;49198:428;;;-1:-1:-1;49643:8:0;;48854:812;-1:-1:-1;;;;;;48854:812:0:o;68631:123::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;68695:11:::1;:19:::0;;;68730:16:::1;::::0;17340:25:1;;;68730:16:0::1;::::0;17328:2:1;17313:18;68730:16:0::1;;;;;;;68631:123:::0;:::o;66913:664::-;66979:19;67011:17;67031:23;67044:9;67031:12;:23::i;:::-;67011:43;-1:-1:-1;67071:14:0;67067:41;;-1:-1:-1;;67087:21:0;;;;;;;;;;;;-1:-1:-1;;;67087:21:0;;;;;66913:664;-1:-1:-1;66913:664:0:o;67067:41::-;67123:9;67136:1;67123:14;67119:53;;;-1:-1:-1;;67139:33:0;;;;;;;;;;;;;;;;;;66913:664;-1:-1:-1;66913:664:0:o;67119:53::-;67187:9;67200:1;67187:14;67183:51;;;-1:-1:-1;;67203:31:0;;;;;;;;;;;;-1:-1:-1;;;67203:31:0;;;;;66913:664;-1:-1:-1;66913:664:0:o;67183:51::-;67249:9;67262:1;67249:14;67245:52;;;-1:-1:-1;;67265:32:0;;;;;;;;;;;;;;;;;;66913:664;-1:-1:-1;66913:664:0:o;67245:52::-;67312:9;67325:1;67312:14;67308:42;;;-1:-1:-1;;67328:22:0;;;;;;;;;;;;-1:-1:-1;;;67328:22:0;;;;;66913:664;-1:-1:-1;66913:664:0:o;67308:42::-;67365:9;67378:1;67365:14;67361:52;;;-1:-1:-1;;67381:32:0;;;;;;;;;;;;;;;;;;66913:664;-1:-1:-1;66913:664:0:o;67361:52::-;67428:9;67441:1;67428:14;67424:50;;;-1:-1:-1;;67444:30:0;;;;;;;;;;;;-1:-1:-1;;;67444:30:0;;;;;66913:664;-1:-1:-1;66913:664:0:o;67424:50::-;67489:9;67502:1;67489:14;67485:53;;;-1:-1:-1;;67505:33:0;;;;;;;;;;;;;;;;;;66913:664;-1:-1:-1;66913:664:0:o;67485:53::-;-1:-1:-1;;67551:18:0;;;;;;;;;;;;-1:-1:-1;;;67551:18:0;;;;;66913:664;-1:-1:-1;66913:664:0:o;23882:104::-;23938:13;23971:7;23964:14;;;;;:::i;46116:2289::-;46251:16;46310:4;46301:5;:13;46297:45;;46323:19;;-1:-1:-1;;;46323:19:0;;;;;;;;;;;46297:45;46353:19;46383:17;46403:14;17577:7;17604:13;;17530:95;46403:14;46383:34;-1:-1:-1;64301:1:0;46487:5;:23;46483:79;;;64301:1;46527:23;;46483:79;46630:9;46623:4;:16;46619:65;;;46663:9;46656:16;;46619:65;46694:25;46722:16;46732:5;46722:9;:16::i;:::-;46694:44;;46904:4;46896:5;:12;46892:250;;;46947:12;;;46978:31;;;46974:103;;;47050:11;47030:31;;46974:103;46892:250;;;;-1:-1:-1;47129:1:0;46892:250;47152:25;47194:17;-1:-1:-1;;;;;47180:32:0;;;;;-1:-1:-1;;;47180:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47180:32:0;-1:-1:-1;47152:60:0;-1:-1:-1;47227:22:0;47223:70;;47273:8;-1:-1:-1;47266:15:0;;-1:-1:-1;;;47266:15:0;47223:70;47425:31;47459:26;47479:5;47459:19;:26::i;:::-;47425:60;;47496:25;47729:9;:16;;;47724:84;;-1:-1:-1;47782:14:0;;47724:84;47835:5;47818:434;47847:4;47842:1;:9;;:45;;;;;47870:17;47855:11;:32;;47842:45;47818:434;;;47921:15;47934:1;47921:12;:15::i;:::-;47909:27;;47955:9;:16;;;47951:65;;;47992:8;;47951:65;48034:14;;-1:-1:-1;;;;;48034:28:0;;48030:103;;48103:14;;;-1:-1:-1;48030:103:0;48172:5;-1:-1:-1;;;;;48151:26:0;:17;-1:-1:-1;;;;;48151:26:0;;48147:94;;;48224:1;48198:8;48207:13;;;;;;48198:23;;;;;;-1:-1:-1;;;48198:23:0;;;;;;;;;;;;;;:27;;;;;48147:94;47889:3;;47818:434;;;-1:-1:-1;;;48325:29:0;;;-1:-1:-1;48325:29:0;;46116:2289;-1:-1:-1;;;;;46116:2289:0:o;63480:660::-;63545:10;63559:9;63545:23;63537:47;;;;-1:-1:-1;;;63537:47:0;;15062:2:1;63537:47:0;;;15044:21:1;15101:2;15081:18;;;15074:30;-1:-1:-1;;;15120:18:1;;;15113:41;15171:18;;63537:47:0;15034:161:1;63537:47:0;63603:9;;;;63595:37;;;;-1:-1:-1;;;63595:37:0;;14718:2:1;63595:37:0;;;14700:21:1;14757:2;14737:18;;;14730:30;-1:-1:-1;;;14776:18:1;;;14769:45;14831:18;;63595:37:0;14690:165:1;63595:37:0;62360:6;63668;63651:14;18283:7;18463:13;-1:-1:-1;;18463:31:0;;18236:273;63651:14;:23;;;;:::i;:::-;:37;;63643:67;;;;-1:-1:-1;;;63643:67:0;;16782:2:1;63643:67:0;;;16764:21:1;16821:2;16801:18;;;16794:30;-1:-1:-1;;;16840:18:1;;;16833:47;16897:18;;63643:67:0;16754:167:1;63643:67:0;63738:1;63729:6;:10;63721:40;;;;-1:-1:-1;;;63721:40:0;;15402:2:1;63721:40:0;;;15384:21:1;15441:2;15421:18;;;15414:30;-1:-1:-1;;;15460:18:1;;;15453:47;15517:18;;63721:40:0;15374:167:1;63721:40:0;63819:11;;63804:10;63789:26;;;;:14;:26;;;;;;63780:35;;:6;:35;:::i;:::-;:50;;63772:81;;;;-1:-1:-1;;;63772:81:0;;12922:2:1;63772:81:0;;;12904:21:1;12961:2;12941:18;;;12934:30;-1:-1:-1;;;12980:18:1;;;12973:48;13038:18;;63772:81:0;12894:168:1;63772:81:0;63869:16;;;;;;;63866:176;;;63923:4;63906:14;18283:7;18463:13;-1:-1:-1;;18463:31:0;;18236:273;63906:14;:21;63902:129;;;63979:9;63965:10;;63956:6;:19;;;;:::i;:::-;:32;;63948:67;;;;-1:-1:-1;;;63948:67:0;;14018:2:1;63948:67:0;;;14000:21:1;14057:2;14037:18;;;14030:30;-1:-1:-1;;;14076:18:1;;;14069:52;14138:18;;63948:67:0;13990:172:1;63948:67:0;64069:10;64054:26;;;;:14;:26;;;;;:36;;64084:6;;64054:26;:36;;64084:6;;64054:36;:::i;:::-;;;;-1:-1:-1;64103:29:0;;-1:-1:-1;64113:10:0;64125:6;64103:9;:29::i;26057:308::-;-1:-1:-1;;;;;26156:31:0;;11297:10;26156:31;26152:61;;;26196:17;;-1:-1:-1;;;26196:17:0;;;;;;;;;;;26152:61;11297:10;26226:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26226:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26226:60:0;;;;;;;;;;26302:55;;12102:41:1;;;26226:49:0;;11297:10;26302:55;;12075:18:1;26302:55:0;;;;;;;26057:308;;:::o;27164:396::-;27331:28;27341:4;27347:2;27351:7;27331:9;:28::i;:::-;-1:-1:-1;;;;;27374:14:0;;;:19;27370:183;;27413:56;27444:4;27450:2;27454:7;27463:5;27413:30;:56::i;:::-;27408:145;;27497:40;;-1:-1:-1;;;27497:40:0;;;;;;;;;;;27408:145;27164:396;;;;:::o;44711:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64301:1:0;44867:25;;;:54;;-1:-1:-1;17577:7:0;17604:13;44896:7;:25;;44867:54;44863:103;;;44945:9;44711:420;-1:-1:-1;;44711:420:0:o;44863:103::-;44988:21;45001:7;44988:12;:21::i;:::-;44976:33;;45024:9;:16;;;45020:65;;;45064:9;44711:420;-1:-1:-1;;44711:420:0:o;45020:65::-;45102:21;45115:7;45102:12;:21::i;65467:103::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;65538:9:::1;:24:::0;;-1:-1:-1;;65538:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65467:103::o;64434:602::-;64507:13;64538:16;64546:7;64538;:16::i;:::-;64533:59;;64563:29;;-1:-1:-1;;;64563:29:0;;;;;;;;;;;64533:59;64605:24;64632:29;64645:15;64632:12;:29::i;:::-;64605:56;;64684:7;64678:21;;;;;:::i;:::-;:26;64674:84;;-1:-1:-1;64674:84:0;;64728:18;64738:7;64728:9;:18::i;64674:84::-;64774:37;:10;64794:16;64774:19;:37::i;:::-;64770:175;;;64859:7;64868:18;64878:7;64868:9;:18::i;:::-;64893:27;64903:16;64893:9;:27::i;:::-;64922:9;64842:90;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64828:105;;;64434:602;;;:::o;64770:175::-;64988:7;64997:18;65007:7;64997:9;:18::i;:::-;65017:9;64971:56;;;;;;;;;;:::i;67861:111::-;67909:16;67945:19;:10;:17;:19::i;26436:164::-;-1:-1:-1;;;;;26557:25:0;;;26533:4;26557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26436:164::o;66087:411::-;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;66201:9:::1;::::0;::::1;;66200:10;66192:36;;;::::0;-1:-1:-1;;;66192:36:0;;12580:2:1;66192:36:0::1;::::0;::::1;12562:21:1::0;12619:2;12599:18;;;12592:30;-1:-1:-1;;;12638:18:1;;;12631:43;12691:18;;66192:36:0::1;12552:163:1::0;66192:36:0::1;66247:32:::0;;::::1;66239:65;;;::::0;-1:-1:-1;;;66239:65:0;;14369:2:1;66239:65:0::1;::::0;::::1;14351:21:1::0;14408:2;14388:18;;;14381:30;-1:-1:-1;;;14427:18:1;;;14420:50;14487:18;;66239:65:0::1;14341:170:1::0;66239:65:0::1;66322:9;66317:103;66333:20:::0;;::::1;66317:103;;;66375:33;66385:9;;66395:1;66385:12;;;;;-1:-1:-1::0;;;66385:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66399:5;;66405:1;66399:8;;;;;-1:-1:-1::0;;;66399:8:0::1;;;;;;;;;;;;;;;66375:9;:33::i;:::-;66355:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66317:103;;;;62360:6;66440:14;18283:7:::0;18463:13;-1:-1:-1;;18463:31:0;;18236:273;66440:14:::1;:28;;66432:58;;;::::0;-1:-1:-1;;;66432:58:0;;16782:2:1;66432:58:0::1;::::0;::::1;16764:21:1::0;16821:2;16801:18;;;16794:30;-1:-1:-1;;;16840:18:1;;;16833:47;16897:18;;66432:58:0::1;16754:167:1::0;13286:201:0;12450:6;;-1:-1:-1;;;;;12450:6:0;11297:10;12597:23;12589:68;;;;-1:-1:-1;;;12589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13375:22:0;::::1;13367:73;;;::::0;-1:-1:-1;;;13367:73:0;;13269:2:1;13367:73:0::1;::::0;::::1;13251:21:1::0;13308:2;13288:18;;;13281:30;13347:34;13327:18;;;13320:62;-1:-1:-1;;;13398:18:1;;;13391:36;13444:19;;13367:73:0::1;13241:228:1::0;13367:73:0::1;13451:28;13470:8;13451:18;:28::i;59942:131::-:0;60009:4;60033:32;60038:3;60058:5;60033:4;:32::i;27815:270::-;27872:4;27924:7;64301:1;27905:26;;:62;;;;;27954:13;;27944:7;:23;27905:62;:144;;;;-1:-1:-1;;28001:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28001:43:0;:48;;27815:270::o;60472:146::-;60549:4;53532:19;;;:12;;;:19;;;;;;:24;;60573:37;53435:129;21070:1049;21137:7;21172;;64301:1;21213:23;21209:847;;21262:13;;21255:4;:20;21251:805;;;21296:14;21313:23;;;:17;:23;;;;;;-1:-1:-1;;;21394:23:0;;21390:651;;21881:105;21888:11;21881:105;;-1:-1:-1;;;21955:6:0;21937:25;;;;:17;:25;;;;;;21881:105;;21390:651;21251:805;;22080:31;;-1:-1:-1;;;22080:31:0;;;;;;;;;;;32834:2409;32949:27;32979;32998:7;32979:18;:27::i;:::-;32949:57;;33064:4;-1:-1:-1;;;;;33023:45:0;33039:19;-1:-1:-1;;;;;33023:45:0;;33019:86;;33077:28;;-1:-1:-1;;;33077:28:0;;;;;;;;;;;33019:86;33118:22;11297:10;-1:-1:-1;;;;;33144:27:0;;;;:83;;-1:-1:-1;33184:43:0;33201:4;11297:10;26436:164;:::i;33184:43::-;33144:139;;;-1:-1:-1;11297:10:0;33240:20;33252:7;33240:11;:20::i;:::-;-1:-1:-1;;;;;33240:43:0;;33144:139;33118:166;;33302:17;33297:66;;33328:35;;-1:-1:-1;;;33328:35:0;;;;;;;;;;;33297:66;-1:-1:-1;;;;;33378:16:0;;33374:52;;33403:23;;-1:-1:-1;;;33403:23:0;;;;;;;;;;;33374:52;33555:24;;;;:15;:24;;;;;;;;33548:31;;-1:-1:-1;;;;;;33548:31:0;;;-1:-1:-1;;;;;33935:24:0;;;;;:18;:24;;;;;33933:26;;-1:-1:-1;;33933:26:0;;;34009:22;;;;;;;34007:24;;-1:-1:-1;34007:24:0;;;34287:26;;;:17;:26;;;;;-1:-1:-1;;;34359:15:0;15459:3;34359:41;34325:76;;:112;;34287:150;;;34549:46;;34545:586;;34649:1;34639:11;;34617:19;34764:30;;;:17;:30;;;;;;34760:360;;34894:13;;34879:11;:28;34875:230;;35033:30;;;;:17;:30;;;;;:52;;;34875:230;34545:586;;35174:7;35170:2;-1:-1:-1;;;;;35155:27:0;35164:4;-1:-1:-1;;;;;35155:27:0;-1:-1:-1;;;;;;;;;;;35155:27:0;;;;;;;;;32834:2409;;;;;:::o;35639:2648::-;35719:27;35749;35768:7;35749:18;:27::i;:::-;35719:57;-1:-1:-1;35719:57:0;35854:303;;;;35888:22;11297:10;-1:-1:-1;;;;;35914:27:0;;;;:87;;-1:-1:-1;35958:43:0;35975:4;11297:10;26436:164;:::i;35958:43::-;35914:147;;;-1:-1:-1;11297:10:0;36018:20;36030:7;36018:11;:20::i;:::-;-1:-1:-1;;;;;36018:43:0;;35914:147;35888:174;;36084:17;36079:66;;36110:35;;-1:-1:-1;;;36110:35:0;;;;;;;;;;;36079:66;35854:303;;36293:24;;;;:15;:24;;;;;;;;36286:31;;-1:-1:-1;;;;;;36286:31:0;;;-1:-1:-1;;;;;36874:24:0;;;;:18;:24;;;;;:59;;36902:31;36874:59;;;37147:26;;;:17;:26;;;;;-1:-1:-1;;;37221:15:0;15459:3;37221:41;37185:78;;:140;37147:178;;-1:-1:-1;;;37437:46:0;;37433:586;;37537:1;37527:11;;37505:19;37652:30;;;:17;:30;;;;;;37648:360;;37782:13;;37767:11;:28;37763:230;;37921:30;;;;:17;:30;;;;;:52;;;37763:230;37433:586;;38043:35;;38070:7;;38066:1;;-1:-1:-1;;;;;38043:35:0;;;-1:-1:-1;;;;;;;;;;;38043:35:0;38066:1;;38043:35;-1:-1:-1;;38258:12:0;:14;;;;;;-1:-1:-1;;35639:2648:0:o;13647:191::-;13740:6;;;-1:-1:-1;;;;;13757:17:0;;;-1:-1:-1;;;;;;13757:17:0;;;;;;;13790:40;;13740:6;;;13757:17;13740:6;;13790:40;;13721:16;;13790:40;13647:191;;:::o;60249:137::-;60319:4;60343:35;60351:3;60371:5;60343:7;:35::i;22626:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;22746:24:0;;;;:17;:24;;;;;;22727:44;;:18;:44::i;28169:104::-;28238:27;28248:2;28252:8;28238:27;;;;;;;;;;;;:9;:27::i;38779:716::-;38963:88;;-1:-1:-1;;;38963:88:0;;38942:4;;-1:-1:-1;;;;;38963:45:0;;;;;:88;;11297:10;;39030:4;;39036:7;;39045:5;;38963:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38963:88:0;;;;;;;;-1:-1:-1;;38963:88:0;;;;;;;;;;;;:::i;:::-;;;38959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39246:13:0;;39242:235;;39292:40;;-1:-1:-1;;;39292:40:0;;;;;;;;;;;39242:235;39435:6;39429:13;39420:6;39416:2;39412:15;39405:38;38959:529;-1:-1:-1;;;;;;39122:64:0;-1:-1:-1;;;39122:64:0;;-1:-1:-1;38779:716:0;;;;;;:::o;23282:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;23385:47:0;23404:27;23423:7;23404:18;:27::i;:::-;23385:18;:47::i;41521:1878::-;41974:4;41968:11;;41981:3;41964:21;;42055:17;;;;42723:11;;;42606:5;42851:2;42865;42855:13;;42847:22;42723:11;42834:36;42906:2;42896:13;;42502:663;42925:4;42502:663;;;43094:1;43089:3;43085:11;43078:18;;43145:2;43139:4;43135:13;43131:2;43127:22;43122:3;43114:36;43016:2;43006:13;;42502:663;;;-1:-1:-1;43195:13:0;;;-1:-1:-1;;43306:12:0;;;43362:19;;;43306:12;41617:1775;-1:-1:-1;41617:1775:0:o;61859:263::-;61919:16;61948:22;61973:19;61981:3;61973:7;:19::i;51322:414::-;51385:4;53532:19;;;:12;;;:19;;;;;;51402:327;;-1:-1:-1;51445:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;51628:18;;51606:19;;;:12;;;:19;;;;;;:40;;;;51661:11;;51402:327;-1:-1:-1;51712:5:0;51705:12;;51912:1437;51978:4;52117:19;;;:12;;;:19;;;;;;52153:15;;52149:1193;;52528:21;52552:14;52565:1;52552:10;:14;:::i;:::-;52601:18;;52528:38;;-1:-1:-1;52581:17:0;;52601:22;;52622:1;;52601:22;:::i;:::-;52581:42;;52657:13;52644:9;:26;52640:422;;52691:17;52711:3;:11;;52723:9;52711:22;;;;;;-1:-1:-1;;;52711:22:0;;;;;;;;;;;;;;;;;52691:42;;52865:9;52836:3;:11;;52848:13;52836:26;;;;;;-1:-1:-1;;;52836:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;52950:23;;;:12;;;:23;;;;;:36;;;52640:422;53143:17;;:3;;:17;;;-1:-1:-1;;;53143:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;53238:3;:12;;:19;53251:5;53238:19;;;;;;;;;;;53231:26;;;53281:4;53274:11;;;;;;;52149:1193;53325:5;53318:12;;;;;22213:322;-1:-1:-1;;;;;;;;;;;;;22323:41:0;;;;15459:3;22409:32;;;-1:-1:-1;;;;;22375:67:0;-1:-1:-1;;;22375:67:0;-1:-1:-1;;;22472:23:0;;;:28;;-1:-1:-1;;;22453:47:0;-1:-1:-1;22213:322:0:o;28646:2114::-;28769:20;28792:13;-1:-1:-1;;;;;28820:16:0;;28816:48;;28845:19;;-1:-1:-1;;;28845:19:0;;;;;;;;;;;28816:48;28879:13;28875:44;;28901:18;;-1:-1:-1;;;28901:18:0;;;;;;;;;;;28875:44;-1:-1:-1;;;;;29440:22:0;;;;;;:18;:22;;;;14942:2;29440:22;;;:70;;29478:31;29466:44;;29440:70;;;29729:31;;;:17;:31;;;;;29806:15;15459:3;29806:41;29772:76;;-1:-1:-1;29876:13:0;;15718:3;29861:56;29772:146;29729:189;;:31;;29991:23;;;;30031:14;:19;30027:609;;30067:306;30094:38;;30119:12;;-1:-1:-1;;;;;30094:38:0;;;30111:1;;-1:-1:-1;;;;;;;;;;;30094:38:0;30111:1;;30094:38;30156:69;30195:1;30199:2;30203:14;;;;;;30219:5;30156:30;:69::i;:::-;30151:166;;30257:40;;-1:-1:-1;;;30257:40:0;;;;;;;;;;;30151:166;30368:3;30353:12;:18;30067:306;;30446:12;30429:13;;:29;30425:43;;30460:8;;;30425:43;30027:609;;;30501:124;30528:40;;30553:14;;;;;-1:-1:-1;;;;;30528:40:0;;;30545:1;;-1:-1:-1;;;;;;;;;;;30528:40:0;30545:1;;30528:40;30620:3;30605:12;:18;30501:124;;30027:609;-1:-1:-1;30646:13:0;:28;;;30692:60;;30725:2;30729:12;30743:8;30692:60;:::i;54783:111::-;54839:16;54875:3;:11;;54868:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54783:111;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:395::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:2;;755:8;745;738:26;697:2;-1:-1:-1;785:20:1;;-1:-1:-1;;;;;817:30:1;;814:2;;;867:8;857;850:26;814:2;911:4;903:6;899:17;887:29;;971:3;964:4;954:6;951:1;947:14;939:6;935:27;931:38;928:47;925:2;;;988:1;985;978:12;925:2;687:311;;;;;:::o;1003:160::-;1068:20;;1124:13;;1117:21;1107:32;;1097:2;;1153:1;1150;1143:12;1168:229;1211:5;1264:3;1257:4;1249:6;1245:17;1241:27;1231:2;;1286:5;1279;1272:20;1231:2;1312:79;1387:3;1378:6;1365:20;1358:4;1350:6;1346:17;1312:79;:::i;1402:196::-;1461:6;1514:2;1502:9;1493:7;1489:23;1485:32;1482:2;;;1535:6;1527;1520:22;1482:2;1563:29;1582:9;1563:29;:::i;1603:270::-;1671:6;1679;1732:2;1720:9;1711:7;1707:23;1703:32;1700:2;;;1753:6;1745;1738:22;1700:2;1781:29;1800:9;1781:29;:::i;:::-;1771:39;;1829:38;1863:2;1852:9;1848:18;1829:38;:::i;:::-;1819:48;;1690:183;;;;;:::o;1878:338::-;1955:6;1963;1971;2024:2;2012:9;2003:7;1999:23;1995:32;1992:2;;;2045:6;2037;2030:22;1992:2;2073:29;2092:9;2073:29;:::i;:::-;2063:39;;2121:38;2155:2;2144:9;2140:18;2121:38;:::i;:::-;2111:48;;2206:2;2195:9;2191:18;2178:32;2168:42;;1982:234;;;;;:::o;2221:696::-;2316:6;2324;2332;2340;2393:3;2381:9;2372:7;2368:23;2364:33;2361:2;;;2415:6;2407;2400:22;2361:2;2443:29;2462:9;2443:29;:::i;:::-;2433:39;;2491:38;2525:2;2514:9;2510:18;2491:38;:::i;:::-;2481:48;;2576:2;2565:9;2561:18;2548:32;2538:42;;2631:2;2620:9;2616:18;2603:32;-1:-1:-1;;;;;2650:6:1;2647:30;2644:2;;;2695:6;2687;2680:22;2644:2;2723:22;;2776:4;2768:13;;2764:27;-1:-1:-1;2754:2:1;;2810:6;2802;2795:22;2754:2;2838:73;2903:7;2898:2;2885:16;2880:2;2876;2872:11;2838:73;:::i;:::-;2828:83;;;2351:566;;;;;;;:::o;2922:264::-;2987:6;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:2;;;3069:6;3061;3054:22;3016:2;3097:29;3116:9;3097:29;:::i;:::-;3087:39;;3145:35;3176:2;3165:9;3161:18;3145:35;:::i;3191:264::-;3259:6;3267;3320:2;3308:9;3299:7;3295:23;3291:32;3288:2;;;3341:6;3333;3326:22;3288:2;3369:29;3388:9;3369:29;:::i;:::-;3359:39;3445:2;3430:18;;;;3417:32;;-1:-1:-1;;;3278:177:1:o;3460:332::-;3537:6;3545;3553;3606:2;3594:9;3585:7;3581:23;3577:32;3574:2;;;3627:6;3619;3612:22;3574:2;3655:29;3674:9;3655:29;:::i;:::-;3645:39;3731:2;3716:18;;3703:32;;-1:-1:-1;3782:2:1;3767:18;;;3754:32;;3564:228;-1:-1:-1;;;3564:228:1:o;3797:803::-;3919:6;3927;3935;3943;3996:2;3984:9;3975:7;3971:23;3967:32;3964:2;;;4017:6;4009;4002:22;3964:2;4062:9;4049:23;-1:-1:-1;;;;;4132:2:1;4124:6;4121:14;4118:2;;;4153:6;4145;4138:22;4118:2;4197:70;4259:7;4250:6;4239:9;4235:22;4197:70;:::i;:::-;4286:8;;-1:-1:-1;4171:96:1;-1:-1:-1;4374:2:1;4359:18;;4346:32;;-1:-1:-1;4390:16:1;;;4387:2;;;4424:6;4416;4409:22;4387:2;;4468:72;4532:7;4521:8;4510:9;4506:24;4468:72;:::i;:::-;3954:646;;;;-1:-1:-1;4559:8:1;-1:-1:-1;;;;3954:646:1:o;4605:1002::-;4689:6;4720:2;4763;4751:9;4742:7;4738:23;4734:32;4731:2;;;4784:6;4776;4769:22;4731:2;4829:9;4816:23;-1:-1:-1;;;;;4899:2:1;4891:6;4888:14;4885:2;;;4920:6;4912;4905:22;4885:2;4963:6;4952:9;4948:22;4938:32;;5008:7;5001:4;4997:2;4993:13;4989:27;4979:2;;5035:6;5027;5020:22;4979:2;5076;5063:16;5098:2;5094;5091:10;5088:2;;;5104:18;;:::i;:::-;5150:2;5147:1;5143:10;5133:20;;5173:28;5197:2;5193;5189:11;5173:28;:::i;:::-;5235:15;;;5266:12;;;;5298:11;;;5328;;;5324:20;;5321:33;-1:-1:-1;5318:2:1;;;5372:6;5364;5357:22;5318:2;5399:6;5390:15;;5414:163;5428:2;5425:1;5422:9;5414:163;;;5485:17;;5473:30;;5446:1;5439:9;;;;;5523:12;;;;5555;;5414:163;;;-1:-1:-1;5596:5:1;4700:907;-1:-1:-1;;;;;;;;4700:907:1:o;5612:190::-;5668:6;5721:2;5709:9;5700:7;5696:23;5692:32;5689:2;;;5742:6;5734;5727:22;5689:2;5770:26;5786:9;5770:26;:::i;5807:255::-;5865:6;5918:2;5906:9;5897:7;5893:23;5889:32;5886:2;;;5939:6;5931;5924:22;5886:2;5983:9;5970:23;6002:30;6026:5;6002:30;:::i;6067:259::-;6136:6;6189:2;6177:9;6168:7;6164:23;6160:32;6157:2;;;6210:6;6202;6195:22;6157:2;6247:9;6241:16;6266:30;6290:5;6266:30;:::i;6331:573::-;6419:6;6427;6480:2;6468:9;6459:7;6455:23;6451:32;6448:2;;;6501:6;6493;6486:22;6448:2;6546:9;6533:23;-1:-1:-1;;;;;6616:2:1;6608:6;6605:14;6602:2;;;6637:6;6629;6622:22;6602:2;6665:50;6707:7;6698:6;6687:9;6683:22;6665:50;:::i;:::-;6655:60;;6768:2;6757:9;6753:18;6740:32;6724:48;;6797:2;6787:8;6784:16;6781:2;;;6818:6;6810;6803:22;6781:2;;6846:52;6890:7;6879:8;6868:9;6864:24;6846:52;:::i;:::-;6836:62;;;6438:466;;;;;:::o;6909:190::-;6968:6;7021:2;7009:9;7000:7;6996:23;6992:32;6989:2;;;7042:6;7034;7027:22;6989:2;-1:-1:-1;7070:23:1;;6979:120;-1:-1:-1;6979:120:1:o;7104:257::-;7145:3;7183:5;7177:12;7210:6;7205:3;7198:19;7226:63;7282:6;7275:4;7270:3;7266:14;7259:4;7252:5;7248:16;7226:63;:::i;:::-;7343:2;7322:15;-1:-1:-1;;7318:29:1;7309:39;;;;7350:4;7305:50;;7153:208;-1:-1:-1;;7153:208:1:o;7366:979::-;7451:12;;7416:3;;7508:1;7528:18;;;;7581;;;;7608:2;;7662:4;7654:6;7650:17;7640:27;;7608:2;7688;7736;7728:6;7725:14;7705:18;7702:38;7699:2;;;-1:-1:-1;;;7763:33:1;;7819:4;7816:1;7809:15;7849:4;7770:3;7837:17;7699:2;7880:18;7907:104;;;;8025:1;8020:319;;;;7873:466;;7907:104;-1:-1:-1;;7940:24:1;;7928:37;;7985:16;;;;-1:-1:-1;7907:104:1;;8020:319;17703:4;17722:17;;;17772:4;17756:21;;8114:1;8128:165;8142:6;8139:1;8136:13;8128:165;;;8220:14;;8207:11;;;8200:35;8263:16;;;;8157:10;;8128:165;;;8132:3;;8322:6;8317:3;8313:16;8306:23;;7873:466;;;;;;;7424:921;;;;:::o;8633:456::-;8854:3;8882:38;8916:3;8908:6;8882:38;:::i;:::-;8949:6;8943:13;8965:52;9010:6;9006:2;8999:4;8991:6;8987:17;8965:52;:::i;:::-;9033:50;9075:6;9071:2;9067:15;9059:6;9033:50;:::i;:::-;9026:57;8862:227;-1:-1:-1;;;;;;;8862:227:1:o;9094:794::-;9464:3;9492:38;9526:3;9518:6;9492:38;:::i;:::-;9559:6;9553:13;9575:52;9620:6;9616:2;9609:4;9601:6;9597:17;9575:52;:::i;:::-;-1:-1:-1;;;9649:15:1;;9673:18;;;9716:13;;9738:65;9716:13;9790:1;9779:13;;9772:4;9760:17;;9738:65;:::i;:::-;9819:63;9879:1;9868:8;9861:5;9857:20;9853:28;9845:6;9819:63;:::i;:::-;9812:70;9472:416;-1:-1:-1;;;;;;;;9472:416:1:o;10101:488::-;-1:-1:-1;;;;;10370:15:1;;;10352:34;;10422:15;;10417:2;10402:18;;10395:43;10469:2;10454:18;;10447:34;;;10517:3;10512:2;10497:18;;10490:31;;;10295:4;;10538:45;;10563:19;;10555:6;10538:45;:::i;:::-;10530:53;10304:285;-1:-1:-1;;;;;;10304:285:1:o;10594:723::-;10825:2;10877:21;;;10947:13;;10850:18;;;10969:22;;;10796:4;;10825:2;11048:15;;;;11022:2;11007:18;;;10796:4;11094:197;11108:6;11105:1;11102:13;11094:197;;;11157:52;11205:3;11196:6;11190:13;8434:12;;-1:-1:-1;;;;;8430:38:1;8418:51;;8522:4;8511:16;;;8505:23;-1:-1:-1;;;;;8501:48:1;8485:14;;;8478:72;8613:4;8602:16;;;8596:23;8589:31;8582:39;8566:14;;8559:63;8408:220;11157:52;11266:15;;;;11238:4;11229:14;;;;;11130:1;11123:9;11094:197;;11322:635;11493:2;11545:21;;;11615:13;;11518:18;;;11637:22;;;11464:4;;11493:2;11716:15;;;;11690:2;11675:18;;;11464:4;11762:169;11776:6;11773:1;11770:13;11762:169;;;11837:13;;11825:26;;11906:15;;;;11871:12;;;;11798:1;11791:9;11762:169;;12154:219;12303:2;12292:9;12285:21;12266:4;12323:44;12363:2;12352:9;12348:18;12340:6;12323:44;:::i;15880:356::-;16082:2;16064:21;;;16101:18;;;16094:30;16160:34;16155:2;16140:18;;16133:62;16227:2;16212:18;;16054:182::o;16926:263::-;8434:12;;-1:-1:-1;;;;;8430:38:1;8418:51;;8522:4;8511:16;;;8505:23;-1:-1:-1;;;;;8501:48:1;8485:14;;;8478:72;8613:4;8602:16;;;8596:23;8589:31;8582:39;8566:14;;;8559:63;17120:2;17105:18;;17132:51;8408:220;17376:275;17447:2;17441:9;17512:2;17493:13;;-1:-1:-1;;17489:27:1;17477:40;;-1:-1:-1;;;;;17532:34:1;;17568:22;;;17529:62;17526:2;;;17594:18;;:::i;:::-;17630:2;17623:22;17421:230;;-1:-1:-1;17421:230:1:o;17788:128::-;17828:3;17859:1;17855:6;17852:1;17849:13;17846:2;;;17865:18;;:::i;:::-;-1:-1:-1;17901:9:1;;17836:80::o;17921:120::-;17961:1;17987;17977:2;;17992:18;;:::i;:::-;-1:-1:-1;18026:9:1;;17967:74::o;18046:168::-;18086:7;18152:1;18148;18144:6;18140:14;18137:1;18134:21;18129:1;18122:9;18115:17;18111:45;18108:2;;;18159:18;;:::i;:::-;-1:-1:-1;18199:9:1;;18098:116::o;18219:125::-;18259:4;18287:1;18284;18281:8;18278:2;;;18292:18;;:::i;:::-;-1:-1:-1;18329:9:1;;18268:76::o;18349:258::-;18421:1;18431:113;18445:6;18442:1;18439:13;18431:113;;;18521:11;;;18515:18;18502:11;;;18495:39;18467:2;18460:10;18431:113;;;18562:6;18559:1;18556:13;18553:2;;;-1:-1:-1;;18597:1:1;18579:16;;18572:27;18402:205::o;18612:380::-;18691:1;18687:12;;;;18734;;;18755:2;;18809:4;18801:6;18797:17;18787:27;;18755:2;18862;18854:6;18851:14;18831:18;18828:38;18825:2;;;18908:10;18903:3;18899:20;18896:1;18889:31;18943:4;18940:1;18933:15;18971:4;18968:1;18961:15;18825:2;;18667:325;;;:::o;18997:135::-;19036:3;-1:-1:-1;;19057:17:1;;19054:2;;;19077:18;;:::i;:::-;-1:-1:-1;19124:1:1;19113:13;;19044:88::o;19137:112::-;19169:1;19195;19185:2;;19200:18;;:::i;:::-;-1:-1:-1;19234:9:1;;19175:74::o;19254:127::-;19315:10;19310:3;19306:20;19303:1;19296:31;19346:4;19343:1;19336:15;19370:4;19367:1;19360:15;19386:127;19447:10;19442:3;19438:20;19435:1;19428:31;19478:4;19475:1;19468:15;19502:4;19499:1;19492:15;19518:127;19579:10;19574:3;19570:20;19567:1;19560:31;19610:4;19607:1;19600:15;19634:4;19631:1;19624:15;19650:131;-1:-1:-1;;;;;;19724:32:1;;19714:43;;19704:2;;19771:1;19768;19761:12

Swarm Source

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