ETH Price: $3,108.03 (+0.86%)
Gas: 4 Gwei

Token

Big Eye Rebellion (BER)
 

Overview

Max Total Supply

10,000 BER

Holders

1,997

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BER
0xb1c2b19d112dca00fa37c8fe71073d100902c88c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BER is a free-to-mint NFT project that can only be minted through the BER smart contract. The total supply is 10,000.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BER

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

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

/**
 * @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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

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

contract BER is ERC721A, Ownable, Pausable 
{
    using Strings for uint256;
    
    uint256 public collectionSize;
    mapping(address => uint256) public mintList;
    uint256 public walletMintLimit;
    string private baseTokenURI;
    string private preRevealTokenURI;
    bool public revealed = false;
    bool public freeMintActive = false;

    constructor
    ( 
        string memory _name,
        string memory _symbol,
        uint256 _collectionSize,
        uint256 _walletMintLimit,
        string memory _preRevealTokenURI
    ) ERC721A(_name, _symbol) 
    {
        collectionSize = _collectionSize;
        walletMintLimit = _walletMintLimit;
        preRevealTokenURI = _preRevealTokenURI;
    }

    modifier callerIsUser() 
    {
        require(tx.origin == msg.sender, "Caller is contract");
        _;
    }

    modifier onlyFreeMintActive() {
        require(freeMintActive, "Minting is not active");
        _;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not existed");

        return !revealed ? preRevealTokenURI : string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json"));
    }
    
    
    function reveal(string calldata _baseTokenURI) external onlyOwner 
    {
        revealed = true;
        baseTokenURI = _baseTokenURI;
    }


    function _startTokenId() internal pure override returns (uint256) {
        return 0;
    }

    function freeMint(uint256 quantity)
        external
        payable
        onlyFreeMintActive
        callerIsUser    
    {
        require(mintList[msg.sender] + quantity <= walletMintLimit, "Up to 5 mints allowed per wallet");
        //3000 reserved NFTs
        require(totalSupply() + quantity < collectionSize - 3000, "EXCEED_COL_SIZE");

        mintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function teamMint(uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE");

        _safeMint(msg.sender, quantity);
    }

    function airdrop(address toAdd,uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE");

        _safeMint(toAdd, quantity);
    }

    function activeFreeMint() 
        external 
        onlyOwner 
    {
        freeMintActive = !freeMintActive;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

//The remaining amount that has not been mint
    function remaining() public view returns (uint256) {
        unchecked {
            return collectionSize - totalSupply();
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_walletMintLimit","type":"uint256"},{"internalType":"string","name":"_preRevealTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"activeFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAdd","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"payable","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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintList","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620039e9380380620039e983398181016040528101906200006d919062000332565b8484816002908051906020019062000087929190620001f9565b508060039080519060200190620000a0929190620001f9565b50620000b16200012660201b60201c565b6000819055505050620000d9620000cd6200012b60201b60201c565b6200013360201b60201c565b6000600860146101000a81548160ff0219169083151502179055508260098190555081600b8190555080600d90805190602001906200011a929190620001f9565b50505050505062000593565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000207906200049e565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b6000620002c0620002ba8462000428565b620003ff565b905082815260208101848484011115620002d957600080fd5b620002e684828562000468565b509392505050565b600082601f8301126200030057600080fd5b815162000312848260208601620002a9565b91505092915050565b6000815190506200032c8162000579565b92915050565b600080600080600060a086880312156200034b57600080fd5b600086015167ffffffffffffffff8111156200036657600080fd5b6200037488828901620002ee565b955050602086015167ffffffffffffffff8111156200039257600080fd5b620003a088828901620002ee565b9450506040620003b3888289016200031b565b9350506060620003c6888289016200031b565b925050608086015167ffffffffffffffff811115620003e457600080fd5b620003f288828901620002ee565b9150509295509295909350565b60006200040b6200041e565b9050620004198282620004d4565b919050565b6000604051905090565b600067ffffffffffffffff82111562000446576200044562000539565b5b620004518262000568565b9050602081019050919050565b6000819050919050565b60005b83811015620004885780820151818401526020810190506200046b565b8381111562000498576000848401525b50505050565b60006002820490506001821680620004b757607f821691505b60208210811415620004ce57620004cd6200050a565b5b50919050565b620004df8262000568565b810181811067ffffffffffffffff8211171562000501576200050062000539565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000584816200045e565b81146200059057600080fd5b50565b61344680620005a36000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063cb5bc2aa11610064578063cb5bc2aa1461065d578063e985e9c514610688578063f2fde38b146106c5578063fd01a93c146106ee576101d8565b8063a22cb46514610591578063b88d4fde146105ba578063bef432c6146105e3578063c87b56dd14610620576101d8565b80638456cb59116100d15780638456cb59146105085780638ba4cc3c1461051f5780638da5cb5b1461053b57806395d89b4114610566576101d8565b806370a082311461046d578063715018a6146104aa57806374c28561146104c15780637c928fe9146104ec576101d8565b80633f4ba83a1161017a578063518302271161014957806351830227146103af57806355234ec0146103da5780635c975abb146104055780636352211e14610430576101d8565b80633f4ba83a1461031b57806342842e0e1461033257806345c0f5331461035b5780634c26124714610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632fbba115146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612844565b610705565b6040516102119190612c6a565b60405180910390f35b34801561022657600080fd5b5061022f610797565b60405161023c9190612c85565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906128db565b610829565b6040516102799190612c03565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612808565b6108a5565b005b3480156102b757600080fd5b506102c06109e6565b6040516102cd9190612de7565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612702565b6109fd565b005b610319600480360381019061031491906128db565b610d22565b005b34801561032757600080fd5b50610330610e45565b005b34801561033e57600080fd5b5061035960048036038101906103549190612702565b610ecb565b005b34801561036757600080fd5b50610370610eeb565b60405161037d9190612de7565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612896565b610ef1565b005b3480156103bb57600080fd5b506103c4610f9e565b6040516103d19190612c6a565b60405180910390f35b3480156103e657600080fd5b506103ef610fb1565b6040516103fc9190612de7565b60405180910390f35b34801561041157600080fd5b5061041a610fc4565b6040516104279190612c6a565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906128db565b610fdb565b6040516104649190612c03565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f919061269d565b610fed565b6040516104a19190612de7565b60405180910390f35b3480156104b657600080fd5b506104bf6110a6565b005b3480156104cd57600080fd5b506104d661112e565b6040516104e39190612de7565b60405180910390f35b610506600480360381019061050191906128db565b611134565b005b34801561051457600080fd5b5061051d611346565b005b61053960048036038101906105349190612808565b6113cc565b005b34801561054757600080fd5b506105506114f0565b60405161055d9190612c03565b60405180910390f35b34801561057257600080fd5b5061057b61151a565b6040516105889190612c85565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906127cc565b6115ac565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612751565b611724565b005b3480156105ef57600080fd5b5061060a6004803603810190610605919061269d565b611797565b6040516106179190612de7565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906128db565b6117af565b6040516106549190612c85565b60405180910390f35b34801561066957600080fd5b506106726118d1565b60405161067f9190612c6a565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906126c6565b6118e4565b6040516106bc9190612c6a565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e7919061269d565b611978565b005b3480156106fa57600080fd5b50610703611a70565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a690613021565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290613021565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600061083482611b18565b61086a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610fdb565b90508073ffffffffffffffffffffffffffffffffffffffff166108d1611b77565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f8611b77565b6118e4565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f0611b7f565b6001546000540303905090565b6000610a0882611b84565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7b84611c52565b91509150610a918187610a8c611b77565b611c74565b610add57610aa686610aa1611b77565b6118e4565b610adc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b44576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b518686866001611cb8565b8015610b5c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2a85610c06888887611cbe565b7c020000000000000000000000000000000000000000000000000000000017611ce6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cb2576000600185019050600060046000838152602001908152602001600020541415610cb0576000548114610caf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1a8686866001611d11565b505050505050565b610d2a611d17565b73ffffffffffffffffffffffffffffffffffffffff16610d486114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612d67565b60405180910390fd5b60008111610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890612d47565b60405180910390fd5b60095481610ded6109e6565b610df79190612eb0565b1115610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90612cc7565b60405180910390fd5b610e423382611d1f565b50565b610e4d611d17565b73ffffffffffffffffffffffffffffffffffffffff16610e6b6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890612d67565b60405180910390fd5b610ec9611d3d565b565b610ee683838360405180602001604052806000815250611724565b505050565b60095481565b610ef9611d17565b73ffffffffffffffffffffffffffffffffffffffff16610f176114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490612d67565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c9190610f999291906124df565b505050565b600e60009054906101000a900460ff1681565b6000610fbb6109e6565b60095403905090565b6000600860149054906101000a900460ff16905090565b6000610fe682611b84565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ae611d17565b73ffffffffffffffffffffffffffffffffffffffff166110cc6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612d67565b60405180910390fd5b61112c6000611ddf565b565b600b5481565b600e60019054906101000a900460ff16611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612d87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612da7565b60405180910390fd5b600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123f9190612eb0565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612dc7565b60405180910390fd5b610bb86009546112909190612f37565b816112996109e6565b6112a39190612eb0565b106112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612cc7565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113329190612eb0565b925050819055506113433382611d1f565b50565b61134e611d17565b73ffffffffffffffffffffffffffffffffffffffff1661136c6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990612d67565b60405180910390fd5b6113ca611ea5565b565b6113d4611d17565b73ffffffffffffffffffffffffffffffffffffffff166113f26114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90612d67565b60405180910390fd5b6000811161148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612d47565b60405180910390fd5b600954816114976109e6565b6114a19190612eb0565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990612cc7565b60405180910390fd5b6114ec8282611d1f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461152990613021565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613021565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b6115b4611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611626611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d3611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117189190612c6a565b60405180910390a35050565b61172f8484846109fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117915761175a84848484611f48565b611790576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606117ba82611b18565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090612d27565b60405180910390fd5b600e60009054906101000a900460ff161561183e57600c611819836120a8565b60405160200161182a929190612bd4565b6040516020818303038152906040526118ca565b600d805461184b90613021565b80601f016020809104026020016040519081016040528092919081815260200182805461187790613021565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b50505050505b9050919050565b600e60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611980611d17565b73ffffffffffffffffffffffffffffffffffffffff1661199e6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612d67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90612ce7565b60405180910390fd5b611a6d81611ddf565b50565b611a78611d17565b73ffffffffffffffffffffffffffffffffffffffff16611a966114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390612d67565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600081611b23611b7f565b11158015611b32575060005482105b8015611b70575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b93611b7f565b11611c1b57600054811015611c1a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c18575b6000811415611c0e576004600083600190039350838152602001908152602001600020549050611be3565b8092505050611c4d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd5868684612255565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d3982826040518060200160405280600081525061225e565b5050565b611d45610fc4565b611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90612ca7565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611dc8611d17565b604051611dd59190612c03565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ead610fc4565b15611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490612d07565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f31611d17565b604051611f3e9190612c03565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6e611b77565b8786866040518563ffffffff1660e01b8152600401611f909493929190612c1e565b602060405180830381600087803b158015611faa57600080fd5b505af1925050508015611fdb57506040513d601f19601f82011682018060405250810190611fd8919061286d565b60015b612055573d806000811461200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b5060008151141561204d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612250565b600082905060005b6000821461212257808061210b90613084565b915050600a8261211b9190612f06565b91506120f8565b60008167ffffffffffffffff811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121965781602001600182028036833780820191505090505b5090505b60008514612249576001826121af9190612f37565b9150600a856121be91906130cd565b60306121ca9190612eb0565b60f81b818381518110612206577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122429190612f06565b945061219a565b8093505050505b919050565b60009392505050565b61226883836122fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122f657600080549050600083820390505b6122a86000868380600101945086611f48565b6122de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122955781600054146122f357600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612368576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385611cb8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612427836124186000866000611cbe565b612421856124cf565b17611ce6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061244b578060008190555050506124ca6000848385611d11565b505050565b60006001821460e11b9050919050565b8280546124eb90613021565b90600052602060002090601f01602090048101928261250d5760008555612554565b82601f1061252657803560ff1916838001178555612554565b82800160010185558215612554579182015b82811115612553578235825591602001919060010190612538565b5b5090506125619190612565565b5090565b5b8082111561257e576000816000905550600101612566565b5090565b600061259561259084612e27565b612e02565b9050828152602081018484840111156125ad57600080fd5b6125b8848285612fdf565b509392505050565b6000813590506125cf816133b4565b92915050565b6000813590506125e4816133cb565b92915050565b6000813590506125f9816133e2565b92915050565b60008151905061260e816133e2565b92915050565b600082601f83011261262557600080fd5b8135612635848260208601612582565b91505092915050565b60008083601f84011261265057600080fd5b8235905067ffffffffffffffff81111561266957600080fd5b60208301915083600182028301111561268157600080fd5b9250929050565b600081359050612697816133f9565b92915050565b6000602082840312156126af57600080fd5b60006126bd848285016125c0565b91505092915050565b600080604083850312156126d957600080fd5b60006126e7858286016125c0565b92505060206126f8858286016125c0565b9150509250929050565b60008060006060848603121561271757600080fd5b6000612725868287016125c0565b9350506020612736868287016125c0565b925050604061274786828701612688565b9150509250925092565b6000806000806080858703121561276757600080fd5b6000612775878288016125c0565b9450506020612786878288016125c0565b935050604061279787828801612688565b925050606085013567ffffffffffffffff8111156127b457600080fd5b6127c087828801612614565b91505092959194509250565b600080604083850312156127df57600080fd5b60006127ed858286016125c0565b92505060206127fe858286016125d5565b9150509250929050565b6000806040838503121561281b57600080fd5b6000612829858286016125c0565b925050602061283a85828601612688565b9150509250929050565b60006020828403121561285657600080fd5b6000612864848285016125ea565b91505092915050565b60006020828403121561287f57600080fd5b600061288d848285016125ff565b91505092915050565b600080602083850312156128a957600080fd5b600083013567ffffffffffffffff8111156128c357600080fd5b6128cf8582860161263e565b92509250509250929050565b6000602082840312156128ed57600080fd5b60006128fb84828501612688565b91505092915050565b61290d81612f6b565b82525050565b61291c81612f7d565b82525050565b600061292d82612e6d565b6129378185612e83565b9350612947818560208601612fee565b612950816131ba565b840191505092915050565b600061296682612e78565b6129708185612e94565b9350612980818560208601612fee565b612989816131ba565b840191505092915050565b600061299f82612e78565b6129a98185612ea5565b93506129b9818560208601612fee565b80840191505092915050565b600081546129d281613021565b6129dc8186612ea5565b945060018216600081146129f75760018114612a0857612a3b565b60ff19831686528186019350612a3b565b612a1185612e58565b60005b83811015612a3357815481890152600182019150602081019050612a14565b838801955050505b50505092915050565b6000612a51601483612e94565b9150612a5c826131cb565b602082019050919050565b6000612a74600f83612e94565b9150612a7f826131f4565b602082019050919050565b6000612a97602683612e94565b9150612aa28261321d565b604082019050919050565b6000612aba601083612e94565b9150612ac58261326c565b602082019050919050565b6000612add601183612e94565b9150612ae882613295565b602082019050919050565b6000612b00601083612e94565b9150612b0b826132be565b602082019050919050565b6000612b23600583612ea5565b9150612b2e826132e7565b600582019050919050565b6000612b46602083612e94565b9150612b5182613310565b602082019050919050565b6000612b69601583612e94565b9150612b7482613339565b602082019050919050565b6000612b8c601283612e94565b9150612b9782613362565b602082019050919050565b6000612baf602083612e94565b9150612bba8261338b565b602082019050919050565b612bce81612fd5565b82525050565b6000612be082856129c5565b9150612bec8284612994565b9150612bf782612b16565b91508190509392505050565b6000602082019050612c186000830184612904565b92915050565b6000608082019050612c336000830187612904565b612c406020830186612904565b612c4d6040830185612bc5565b8181036060830152612c5f8184612922565b905095945050505050565b6000602082019050612c7f6000830184612913565b92915050565b60006020820190508181036000830152612c9f818461295b565b905092915050565b60006020820190508181036000830152612cc081612a44565b9050919050565b60006020820190508181036000830152612ce081612a67565b9050919050565b60006020820190508181036000830152612d0081612a8a565b9050919050565b60006020820190508181036000830152612d2081612aad565b9050919050565b60006020820190508181036000830152612d4081612ad0565b9050919050565b60006020820190508181036000830152612d6081612af3565b9050919050565b60006020820190508181036000830152612d8081612b39565b9050919050565b60006020820190508181036000830152612da081612b5c565b9050919050565b60006020820190508181036000830152612dc081612b7f565b9050919050565b60006020820190508181036000830152612de081612ba2565b9050919050565b6000602082019050612dfc6000830184612bc5565b92915050565b6000612e0c612e1d565b9050612e188282613053565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4257612e4161318b565b5b612e4b826131ba565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ebb82612fd5565b9150612ec683612fd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efb57612efa6130fe565b5b828201905092915050565b6000612f1182612fd5565b9150612f1c83612fd5565b925082612f2c57612f2b61312d565b5b828204905092915050565b6000612f4282612fd5565b9150612f4d83612fd5565b925082821015612f6057612f5f6130fe565b5b828203905092915050565b6000612f7682612fb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561300c578082015181840152602081019050612ff1565b8381111561301b576000848401525b50505050565b6000600282049050600182168061303957607f821691505b6020821081141561304d5761304c61315c565b5b50919050565b61305c826131ba565b810181811067ffffffffffffffff8211171561307b5761307a61318b565b5b80604052505050565b600061308f82612fd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130c2576130c16130fe565b5b600182019050919050565b60006130d882612fd5565b91506130e383612fd5565b9250826130f3576130f261312d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b6133bd81612f6b565b81146133c857600080fd5b50565b6133d481612f7d565b81146133df57600080fd5b50565b6133eb81612f89565b81146133f657600080fd5b50565b61340281612fd5565b811461340d57600080fd5b5056fea264697066735822122041bbe7a4cda7bc457e56eb68303fab6c7abb051c90435f95a32040fa0ac5629264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000114269672045796520526562656c6c696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034245520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f626967657965726562656c6c696f6e2e6d7970696e6174612e636c6f75642f697066732f516d536956354c78396545635a703578704a4d6f464b35455a786d5139515363356753353155444b586f7431775a2f0000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a22cb46511610095578063cb5bc2aa11610064578063cb5bc2aa1461065d578063e985e9c514610688578063f2fde38b146106c5578063fd01a93c146106ee576101d8565b8063a22cb46514610591578063b88d4fde146105ba578063bef432c6146105e3578063c87b56dd14610620576101d8565b80638456cb59116100d15780638456cb59146105085780638ba4cc3c1461051f5780638da5cb5b1461053b57806395d89b4114610566576101d8565b806370a082311461046d578063715018a6146104aa57806374c28561146104c15780637c928fe9146104ec576101d8565b80633f4ba83a1161017a578063518302271161014957806351830227146103af57806355234ec0146103da5780635c975abb146104055780636352211e14610430576101d8565b80633f4ba83a1461031b57806342842e0e1461033257806345c0f5331461035b5780634c26124714610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632fbba115146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612844565b610705565b6040516102119190612c6a565b60405180910390f35b34801561022657600080fd5b5061022f610797565b60405161023c9190612c85565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906128db565b610829565b6040516102799190612c03565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612808565b6108a5565b005b3480156102b757600080fd5b506102c06109e6565b6040516102cd9190612de7565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612702565b6109fd565b005b610319600480360381019061031491906128db565b610d22565b005b34801561032757600080fd5b50610330610e45565b005b34801561033e57600080fd5b5061035960048036038101906103549190612702565b610ecb565b005b34801561036757600080fd5b50610370610eeb565b60405161037d9190612de7565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612896565b610ef1565b005b3480156103bb57600080fd5b506103c4610f9e565b6040516103d19190612c6a565b60405180910390f35b3480156103e657600080fd5b506103ef610fb1565b6040516103fc9190612de7565b60405180910390f35b34801561041157600080fd5b5061041a610fc4565b6040516104279190612c6a565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906128db565b610fdb565b6040516104649190612c03565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f919061269d565b610fed565b6040516104a19190612de7565b60405180910390f35b3480156104b657600080fd5b506104bf6110a6565b005b3480156104cd57600080fd5b506104d661112e565b6040516104e39190612de7565b60405180910390f35b610506600480360381019061050191906128db565b611134565b005b34801561051457600080fd5b5061051d611346565b005b61053960048036038101906105349190612808565b6113cc565b005b34801561054757600080fd5b506105506114f0565b60405161055d9190612c03565b60405180910390f35b34801561057257600080fd5b5061057b61151a565b6040516105889190612c85565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b391906127cc565b6115ac565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612751565b611724565b005b3480156105ef57600080fd5b5061060a6004803603810190610605919061269d565b611797565b6040516106179190612de7565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906128db565b6117af565b6040516106549190612c85565b60405180910390f35b34801561066957600080fd5b506106726118d1565b60405161067f9190612c6a565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906126c6565b6118e4565b6040516106bc9190612c6a565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e7919061269d565b611978565b005b3480156106fa57600080fd5b50610703611a70565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a690613021565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290613021565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600061083482611b18565b61086a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b082610fdb565b90508073ffffffffffffffffffffffffffffffffffffffff166108d1611b77565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f8611b77565b6118e4565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f0611b7f565b6001546000540303905090565b6000610a0882611b84565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7b84611c52565b91509150610a918187610a8c611b77565b611c74565b610add57610aa686610aa1611b77565b6118e4565b610adc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b44576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b518686866001611cb8565b8015610b5c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2a85610c06888887611cbe565b7c020000000000000000000000000000000000000000000000000000000017611ce6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cb2576000600185019050600060046000838152602001908152602001600020541415610cb0576000548114610caf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d1a8686866001611d11565b505050505050565b610d2a611d17565b73ffffffffffffffffffffffffffffffffffffffff16610d486114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590612d67565b60405180910390fd5b60008111610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890612d47565b60405180910390fd5b60095481610ded6109e6565b610df79190612eb0565b1115610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90612cc7565b60405180910390fd5b610e423382611d1f565b50565b610e4d611d17565b73ffffffffffffffffffffffffffffffffffffffff16610e6b6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890612d67565b60405180910390fd5b610ec9611d3d565b565b610ee683838360405180602001604052806000815250611724565b505050565b60095481565b610ef9611d17565b73ffffffffffffffffffffffffffffffffffffffff16610f176114f0565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490612d67565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c9190610f999291906124df565b505050565b600e60009054906101000a900460ff1681565b6000610fbb6109e6565b60095403905090565b6000600860149054906101000a900460ff16905090565b6000610fe682611b84565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ae611d17565b73ffffffffffffffffffffffffffffffffffffffff166110cc6114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612d67565b60405180910390fd5b61112c6000611ddf565b565b600b5481565b600e60019054906101000a900460ff16611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612d87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890612da7565b60405180910390fd5b600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461123f9190612eb0565b1115611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612dc7565b60405180910390fd5b610bb86009546112909190612f37565b816112996109e6565b6112a39190612eb0565b106112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612cc7565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113329190612eb0565b925050819055506113433382611d1f565b50565b61134e611d17565b73ffffffffffffffffffffffffffffffffffffffff1661136c6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990612d67565b60405180910390fd5b6113ca611ea5565b565b6113d4611d17565b73ffffffffffffffffffffffffffffffffffffffff166113f26114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90612d67565b60405180910390fd5b6000811161148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612d47565b60405180910390fd5b600954816114976109e6565b6114a19190612eb0565b11156114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990612cc7565b60405180910390fd5b6114ec8282611d1f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461152990613021565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613021565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905090565b6115b4611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611626611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d3611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117189190612c6a565b60405180910390a35050565b61172f8484846109fd565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117915761175a84848484611f48565b611790576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606117ba82611b18565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090612d27565b60405180910390fd5b600e60009054906101000a900460ff161561183e57600c611819836120a8565b60405160200161182a929190612bd4565b6040516020818303038152906040526118ca565b600d805461184b90613021565b80601f016020809104026020016040519081016040528092919081815260200182805461187790613021565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b50505050505b9050919050565b600e60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611980611d17565b73ffffffffffffffffffffffffffffffffffffffff1661199e6114f0565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612d67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90612ce7565b60405180910390fd5b611a6d81611ddf565b50565b611a78611d17565b73ffffffffffffffffffffffffffffffffffffffff16611a966114f0565b73ffffffffffffffffffffffffffffffffffffffff1614611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390612d67565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600081611b23611b7f565b11158015611b32575060005482105b8015611b70575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b93611b7f565b11611c1b57600054811015611c1a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c18575b6000811415611c0e576004600083600190039350838152602001908152602001600020549050611be3565b8092505050611c4d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd5868684612255565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611d3982826040518060200160405280600081525061225e565b5050565b611d45610fc4565b611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90612ca7565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611dc8611d17565b604051611dd59190612c03565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ead610fc4565b15611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490612d07565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f31611d17565b604051611f3e9190612c03565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6e611b77565b8786866040518563ffffffff1660e01b8152600401611f909493929190612c1e565b602060405180830381600087803b158015611faa57600080fd5b505af1925050508015611fdb57506040513d601f19601f82011682018060405250810190611fd8919061286d565b60015b612055573d806000811461200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b5060008151141561204d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612250565b600082905060005b6000821461212257808061210b90613084565b915050600a8261211b9190612f06565b91506120f8565b60008167ffffffffffffffff811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121965781602001600182028036833780820191505090505b5090505b60008514612249576001826121af9190612f37565b9150600a856121be91906130cd565b60306121ca9190612eb0565b60f81b818381518110612206577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122429190612f06565b945061219a565b8093505050505b919050565b60009392505050565b61226883836122fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122f657600080549050600083820390505b6122a86000868380600101945086611f48565b6122de576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122955781600054146122f357600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612368576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385611cb8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612427836124186000866000611cbe565b612421856124cf565b17611ce6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061244b578060008190555050506124ca6000848385611d11565b505050565b60006001821460e11b9050919050565b8280546124eb90613021565b90600052602060002090601f01602090048101928261250d5760008555612554565b82601f1061252657803560ff1916838001178555612554565b82800160010185558215612554579182015b82811115612553578235825591602001919060010190612538565b5b5090506125619190612565565b5090565b5b8082111561257e576000816000905550600101612566565b5090565b600061259561259084612e27565b612e02565b9050828152602081018484840111156125ad57600080fd5b6125b8848285612fdf565b509392505050565b6000813590506125cf816133b4565b92915050565b6000813590506125e4816133cb565b92915050565b6000813590506125f9816133e2565b92915050565b60008151905061260e816133e2565b92915050565b600082601f83011261262557600080fd5b8135612635848260208601612582565b91505092915050565b60008083601f84011261265057600080fd5b8235905067ffffffffffffffff81111561266957600080fd5b60208301915083600182028301111561268157600080fd5b9250929050565b600081359050612697816133f9565b92915050565b6000602082840312156126af57600080fd5b60006126bd848285016125c0565b91505092915050565b600080604083850312156126d957600080fd5b60006126e7858286016125c0565b92505060206126f8858286016125c0565b9150509250929050565b60008060006060848603121561271757600080fd5b6000612725868287016125c0565b9350506020612736868287016125c0565b925050604061274786828701612688565b9150509250925092565b6000806000806080858703121561276757600080fd5b6000612775878288016125c0565b9450506020612786878288016125c0565b935050604061279787828801612688565b925050606085013567ffffffffffffffff8111156127b457600080fd5b6127c087828801612614565b91505092959194509250565b600080604083850312156127df57600080fd5b60006127ed858286016125c0565b92505060206127fe858286016125d5565b9150509250929050565b6000806040838503121561281b57600080fd5b6000612829858286016125c0565b925050602061283a85828601612688565b9150509250929050565b60006020828403121561285657600080fd5b6000612864848285016125ea565b91505092915050565b60006020828403121561287f57600080fd5b600061288d848285016125ff565b91505092915050565b600080602083850312156128a957600080fd5b600083013567ffffffffffffffff8111156128c357600080fd5b6128cf8582860161263e565b92509250509250929050565b6000602082840312156128ed57600080fd5b60006128fb84828501612688565b91505092915050565b61290d81612f6b565b82525050565b61291c81612f7d565b82525050565b600061292d82612e6d565b6129378185612e83565b9350612947818560208601612fee565b612950816131ba565b840191505092915050565b600061296682612e78565b6129708185612e94565b9350612980818560208601612fee565b612989816131ba565b840191505092915050565b600061299f82612e78565b6129a98185612ea5565b93506129b9818560208601612fee565b80840191505092915050565b600081546129d281613021565b6129dc8186612ea5565b945060018216600081146129f75760018114612a0857612a3b565b60ff19831686528186019350612a3b565b612a1185612e58565b60005b83811015612a3357815481890152600182019150602081019050612a14565b838801955050505b50505092915050565b6000612a51601483612e94565b9150612a5c826131cb565b602082019050919050565b6000612a74600f83612e94565b9150612a7f826131f4565b602082019050919050565b6000612a97602683612e94565b9150612aa28261321d565b604082019050919050565b6000612aba601083612e94565b9150612ac58261326c565b602082019050919050565b6000612add601183612e94565b9150612ae882613295565b602082019050919050565b6000612b00601083612e94565b9150612b0b826132be565b602082019050919050565b6000612b23600583612ea5565b9150612b2e826132e7565b600582019050919050565b6000612b46602083612e94565b9150612b5182613310565b602082019050919050565b6000612b69601583612e94565b9150612b7482613339565b602082019050919050565b6000612b8c601283612e94565b9150612b9782613362565b602082019050919050565b6000612baf602083612e94565b9150612bba8261338b565b602082019050919050565b612bce81612fd5565b82525050565b6000612be082856129c5565b9150612bec8284612994565b9150612bf782612b16565b91508190509392505050565b6000602082019050612c186000830184612904565b92915050565b6000608082019050612c336000830187612904565b612c406020830186612904565b612c4d6040830185612bc5565b8181036060830152612c5f8184612922565b905095945050505050565b6000602082019050612c7f6000830184612913565b92915050565b60006020820190508181036000830152612c9f818461295b565b905092915050565b60006020820190508181036000830152612cc081612a44565b9050919050565b60006020820190508181036000830152612ce081612a67565b9050919050565b60006020820190508181036000830152612d0081612a8a565b9050919050565b60006020820190508181036000830152612d2081612aad565b9050919050565b60006020820190508181036000830152612d4081612ad0565b9050919050565b60006020820190508181036000830152612d6081612af3565b9050919050565b60006020820190508181036000830152612d8081612b39565b9050919050565b60006020820190508181036000830152612da081612b5c565b9050919050565b60006020820190508181036000830152612dc081612b7f565b9050919050565b60006020820190508181036000830152612de081612ba2565b9050919050565b6000602082019050612dfc6000830184612bc5565b92915050565b6000612e0c612e1d565b9050612e188282613053565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4257612e4161318b565b5b612e4b826131ba565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ebb82612fd5565b9150612ec683612fd5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612efb57612efa6130fe565b5b828201905092915050565b6000612f1182612fd5565b9150612f1c83612fd5565b925082612f2c57612f2b61312d565b5b828204905092915050565b6000612f4282612fd5565b9150612f4d83612fd5565b925082821015612f6057612f5f6130fe565b5b828203905092915050565b6000612f7682612fb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561300c578082015181840152602081019050612ff1565b8381111561301b576000848401525b50505050565b6000600282049050600182168061303957607f821691505b6020821081141561304d5761304c61315c565b5b50919050565b61305c826131ba565b810181811067ffffffffffffffff8211171561307b5761307a61318b565b5b80604052505050565b600061308f82612fd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130c2576130c16130fe565b5b600182019050919050565b60006130d882612fd5565b91506130e383612fd5565b9250826130f3576130f261312d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b6133bd81612f6b565b81146133c857600080fd5b50565b6133d481612f7d565b81146133df57600080fd5b50565b6133eb81612f89565b81146133f657600080fd5b50565b61340281612fd5565b811461340d57600080fd5b5056fea264697066735822122041bbe7a4cda7bc457e56eb68303fab6c7abb051c90435f95a32040fa0ac5629264736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000114269672045796520526562656c6c696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034245520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f626967657965726562656c6c696f6e2e6d7970696e6174612e636c6f75642f697066732f516d536956354c78396545635a703578704a4d6f464b35455a786d5139515363356753353155444b586f7431775a2f0000000000

-----Decoded View---------------
Arg [0] : _name (string): Big Eye Rebellion
Arg [1] : _symbol (string): BER
Arg [2] : _collectionSize (uint256): 10000
Arg [3] : _walletMintLimit (uint256): 5
Arg [4] : _preRevealTokenURI (string): https://bigeyerebellion.mypinata.cloud/ipfs/QmSiV5Lx9eEcZp5xpJMoFK5EZxmQ9QSc5gS51UDKXot1wZ/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 4269672045796520526562656c6c696f6e000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4245520000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000005b
Arg [10] : 68747470733a2f2f626967657965726562656c6c696f6e2e6d7970696e617461
Arg [11] : 2e636c6f75642f697066732f516d536956354c78396545635a703578704a4d6f
Arg [12] : 464b35455a786d5139515363356753353155444b586f7431775a2f0000000000


Deployed Bytecode Sourcemap

55405:3100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25213:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32354:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24267:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57450:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58235:67;;;;;;;;;;;;;:::i;:::-;;33696:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55495:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56734:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55691:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58357:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30649:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:103;;;;;;;;;;;;;:::i;:::-;;55581:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56990:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58164:63;;;;;;;;;;;;;:::i;:::-;;57738:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9153:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31029:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33952:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55531:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56392:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55726:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33461:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58034:122;;;;;;;;;;;;;:::i;:::-;;25213:615;25298:4;25613:10;25598:25;;:11;:25;;;;:102;;;;25690:10;25675:25;;:11;:25;;;;25598:102;:179;;;;25767:10;25752:25;;:11;:25;;;;25598:179;25578:199;;25213:615;;;:::o;30860:100::-;30914:13;30947:5;30940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30860:100;:::o;32806:204::-;32874:7;32899:16;32907:7;32899;:16::i;:::-;32894:64;;32924:34;;;;;;;;;;;;;;32894:64;32978:15;:24;32994:7;32978:24;;;;;;;;;;;;;;;;;;;;;32971:31;;32806:204;;;:::o;32354:386::-;32427:13;32443:16;32451:7;32443;:16::i;:::-;32427:32;;32499:5;32476:28;;:19;:17;:19::i;:::-;:28;;;32472:175;;32524:44;32541:5;32548:19;:17;:19::i;:::-;32524:16;:44::i;:::-;32519:128;;32596:35;;;;;;;;;;;;;;32519:128;32472:175;32686:2;32659:15;:24;32675:7;32659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32724:7;32720:2;32704:28;;32713:5;32704:28;;;;;;;;;;;;32354:386;;;:::o;24267:315::-;24320:7;24548:15;:13;:15::i;:::-;24533:12;;24517:13;;:28;:46;24510:53;;24267:315;:::o;42071:2800::-;42205:27;42235;42254:7;42235:18;:27::i;:::-;42205:57;;42320:4;42279:45;;42295:19;42279:45;;;42275:86;;42333:28;;;;;;;;;;;;;;42275:86;42375:27;42404:23;42431:28;42451:7;42431:19;:28::i;:::-;42374:85;;;;42559:62;42578:15;42595:4;42601:19;:17;:19::i;:::-;42559:18;:62::i;:::-;42554:174;;42641:43;42658:4;42664:19;:17;:19::i;:::-;42641:16;:43::i;:::-;42636:92;;42693:35;;;;;;;;;;;;;;42636:92;42554:174;42759:1;42745:16;;:2;:16;;;42741:52;;;42770:23;;;;;;;;;;;;;;42741:52;42806:43;42828:4;42834:2;42838:7;42847:1;42806:21;:43::i;:::-;42942:15;42939:2;;;43082:1;43061:19;43054:30;42939:2;43477:18;:24;43496:4;43477:24;;;;;;;;;;;;;;;;43475:26;;;;;;;;;;;;43546:18;:22;43565:2;43546:22;;;;;;;;;;;;;;;;43544:24;;;;;;;;;;;43868:145;43905:2;43953:45;43968:4;43974:2;43978:19;43953:14;:45::i;:::-;21495:8;43926:72;43868:18;:145::i;:::-;43839:17;:26;43857:7;43839:26;;;;;;;;;;;:174;;;;44183:1;21495:8;44133:19;:46;:51;44129:626;;;44205:19;44237:1;44227:7;:11;44205:33;;44394:1;44360:17;:30;44378:11;44360:30;;;;;;;;;;;;:35;44356:384;;;44498:13;;44483:11;:28;44479:242;;44678:19;44645:17;:30;44663:11;44645:30;;;;;;;;;;;:52;;;;44479:242;44356:384;44129:626;;44802:7;44798:2;44783:27;;44792:4;44783:27;;;;;;;;;;;;44821:42;44842:4;44848:2;44852:7;44861:1;44821:20;:42::i;:::-;42071:2800;;;;;;:::o;57450:280::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57575:1:::1;57564:8;:12;57556:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57644:14;;57632:8;57616:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;57608:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57691:31;57701:10;57713:8;57691:9;:31::i;:::-;57450:280:::0;:::o;58235:67::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58284:10:::1;:8;:10::i;:::-;58235:67::o:0;33696:185::-;33834:39;33851:4;33857:2;33861:7;33834:39;;;;;;;;;;;;:16;:39::i;:::-;33696:185;;;:::o;55495:29::-;;;;:::o;56734:145::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56828:4:::1;56817:8;;:15;;;;;;;;;;;;;;;;;;56858:13;;56843:12;:28;;;;;;;:::i;:::-;;56734:145:::0;;:::o;55691:28::-;;;;;;;;;;;;;:::o;58357:143::-;58399:7;58468:13;:11;:13::i;:::-;58451:14;;:30;58444:37;;58357:143;:::o;6905:86::-;6952:4;6976:7;;;;;;;;;;;6969:14;;6905:86;:::o;30649:144::-;30713:7;30756:27;30775:7;30756:18;:27::i;:::-;30733:52;;30649:144;;;:::o;25892:224::-;25956:7;25997:1;25980:19;;:5;:19;;;25976:60;;;26008:28;;;;;;;;;;;;;;25976:60;20447:13;26054:18;:25;26073:5;26054:25;;;;;;;;;;;;;;;;:54;26047:61;;25892:224;;;:::o;9804:103::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9869:30:::1;9896:1;9869:18;:30::i;:::-;9804:103::o:0;55581:30::-;;;;:::o;56990:448::-;56324:14;;;;;;;;;;;56316:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;56214:10:::1;56201:23;;:9;:23;;;56193:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57174:15:::2;;57162:8;57139;:20;57148:10;57139:20;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:50;;57131:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57319:4;57302:14;;:21;;;;:::i;:::-;57291:8;57275:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:48;57267:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57380:8;57356;:20;57365:10;57356:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;57399:31;57409:10;57421:8;57399:9;:31::i;:::-;56990:448:::0;:::o;58164:63::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58211:8:::1;:6;:8::i;:::-;58164:63::o:0;57738:288::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57876:1:::1;57865:8;:12;57857:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57945:14;;57933:8;57917:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;57909:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57992:26;58002:5;58009:8;57992:9;:26::i;:::-;57738:288:::0;;:::o;9153:87::-;9199:7;9226:6;;;;;;;;;;;9219:13;;9153:87;:::o;31029:104::-;31085:13;31118:7;31111:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31029:104;:::o;33082:308::-;33193:19;:17;:19::i;:::-;33181:31;;:8;:31;;;33177:61;;;33221:17;;;;;;;;;;;;;;33177:61;33303:8;33251:18;:39;33270:19;:17;:19::i;:::-;33251:39;;;;;;;;;;;;;;;:49;33291:8;33251:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33363:8;33327:55;;33342:19;:17;:19::i;:::-;33327:55;;;33373:8;33327:55;;;;;;:::i;:::-;;;;;;;;33082:308;;:::o;33952:399::-;34119:31;34132:4;34138:2;34142:7;34119:12;:31::i;:::-;34183:1;34165:2;:14;;;:19;34161:183;;34204:56;34235:4;34241:2;34245:7;34254:5;34204:30;:56::i;:::-;34199:145;;34288:40;;;;;;;;;;;;;;34199:145;34161:183;33952:399;;;;:::o;55531:43::-;;;;;;;;;;;;;;;;;:::o;56392:324::-;56511:13;56550:17;56558:8;56550:7;:17::i;:::-;56542:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56610:8;;;;;;;;;;;56609:9;:99;;56665:12;56679:19;:8;:17;:19::i;:::-;56648:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56609:99;;;56621:17;56609:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56602:106;;56392:324;;;:::o;55726:34::-;;;;;;;;;;;;;:::o;33461:164::-;33558:4;33582:18;:25;33601:5;33582:25;;;;;;;;;;;;;;;:35;33608:8;33582:35;;;;;;;;;;;;;;;;;;;;;;;;;33575:42;;33461:164;;;;:::o;10062:201::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10171:1:::1;10151:22;;:8;:22;;;;10143:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10227:28;10246:8;10227:18;:28::i;:::-;10062:201:::0;:::o;58034:122::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58134:14:::1;;;;;;;;;;;58133:15;58116:14;;:32;;;;;;;;;;;;;;;;;;58034:122::o:0;34606:273::-;34663:4;34719:7;34700:15;:13;:15::i;:::-;:26;;:66;;;;;34753:13;;34743:7;:23;34700:66;:152;;;;;34851:1;21217:8;34804:17;:26;34822:7;34804:26;;;;;;;;;;;;:43;:48;34700:152;34680:172;;34606:273;;;:::o;53167:105::-;53227:7;53254:10;53247:17;;53167:105;:::o;56889:93::-;56946:7;56889:93;:::o;27566:1129::-;27633:7;27653:12;27668:7;27653:22;;27736:4;27717:15;:13;:15::i;:::-;:23;27713:915;;27770:13;;27763:4;:20;27759:869;;;27808:14;27825:17;:23;27843:4;27825:23;;;;;;;;;;;;27808:40;;27941:1;21217:8;27914:6;:23;:28;27910:699;;;28433:113;28450:1;28440:6;:11;28433:113;;;28493:17;:25;28511:6;;;;;;;28493:25;;;;;;;;;;;;28484:34;;28433:113;;;28579:6;28572:13;;;;;;27910:699;27759:869;;27713:915;28656:31;;;;;;;;;;;;;;27566:1129;;;;:::o;40407:652::-;40502:27;40531:23;40572:53;40628:15;40572:71;;40814:7;40808:4;40801:21;40849:22;40843:4;40836:36;40925:4;40919;40909:21;40886:44;;41021:19;41015:26;40996:45;;40752:300;;;;:::o;41172:645::-;41314:11;41476:15;41470:4;41466:26;41458:34;;41635:15;41624:9;41620:31;41607:44;;41782:15;41771:9;41768:30;41761:4;41750:9;41747:19;41744:55;41734:65;;41347:463;;;;;:::o;52000:159::-;;;;;:::o;50312:309::-;50447:7;50467:16;21618:3;50493:19;:40;;50467:67;;21618:3;50560:31;50571:4;50577:2;50581:9;50560:10;:31::i;:::-;50552:40;;:61;;50545:68;;;50312:309;;;;;:::o;30140:447::-;30220:14;30388:15;30381:5;30377:27;30368:36;;30562:5;30548:11;30524:22;30520:40;30517:51;30510:5;30507:62;30497:72;;30256:324;;;;:::o;52818:158::-;;;;;:::o;5559:98::-;5612:7;5639:10;5632:17;;5559:98;:::o;34963:104::-;35032:27;35042:2;35046:8;35032:27;;;;;;;;;;;;:9;:27::i;:::-;34963:104;;:::o;7964:120::-;7508:8;:6;:8::i;:::-;7500:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8033:5:::1;8023:7;;:15;;;;;;;;;;;;;;;;;;8054:22;8063:12;:10;:12::i;:::-;8054:22;;;;;;:::i;:::-;;;;;;;;7964:120::o:0;10423:191::-;10497:16;10516:6;;;;;;;;;;;10497:25;;10542:8;10533:6;;:17;;;;;;;;;;;;;;;;;;10597:8;10566:40;;10587:8;10566:40;;;;;;;;;;;;10423:191;;:::o;7705:118::-;7231:8;:6;:8::i;:::-;7230:9;7222:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7775:4:::1;7765:7;;:14;;;;;;;;;;;;;;;;;;7795:20;7802:12;:10;:12::i;:::-;7795:20;;;;;;:::i;:::-;;;;;;;;7705:118::o:0;48822:716::-;48985:4;49031:2;49006:45;;;49052:19;:17;:19::i;:::-;49073:4;49079:7;49088:5;49006:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49002:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49306:1;49289:6;:13;:18;49285:235;;;49335:40;;;;;;;;;;;;;;49285:235;49478:6;49472:13;49463:6;49459:2;49455:15;49448:38;49002:529;49175:54;;;49165:64;;;:6;:64;;;;49158:71;;;48822:716;;;;;;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;51197:147::-;51334:6;51197:147;;;;;:::o;35483:681::-;35606:19;35612:2;35616:8;35606:5;:19::i;:::-;35685:1;35667:2;:14;;;:19;35663:483;;35707:11;35721:13;;35707:27;;35753:13;35775:8;35769:3;:14;35753:30;;35802:233;35833:62;35872:1;35876:2;35880:7;;;;;;35889:5;35833:30;:62::i;:::-;35828:167;;35931:40;;;;;;;;;;;;;;35828:167;36030:3;36022:5;:11;35802:233;;36117:3;36100:13;;:20;36096:34;;36122:8;;;36096:34;35663:483;;;35483:681;;;:::o;36437:1529::-;36502:20;36525:13;;36502:36;;36567:1;36553:16;;:2;:16;;;36549:48;;;36578:19;;;;;;;;;;;;;;36549:48;36624:1;36612:8;:13;36608:44;;;36634:18;;;;;;;;;;;;;;36608:44;36665:61;36695:1;36699:2;36703:12;36717:8;36665:21;:61::i;:::-;37208:1;20584:2;37179:1;:25;;37178:31;37166:8;:44;37140:18;:22;37159:2;37140:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;37487:139;37524:2;37578:33;37601:1;37605:2;37609:1;37578:14;:33::i;:::-;37545:30;37566:8;37545:20;:30::i;:::-;:66;37487:18;:139::i;:::-;37453:17;:31;37471:12;37453:31;;;;;;;;;;;:173;;;;37643:15;37661:12;37643:30;;37688:11;37717:8;37702:12;:23;37688:37;;37740:101;37792:9;;;;;;37788:2;37767:35;;37784:1;37767:35;;;;;;;;;;;;37836:3;37826:7;:13;37740:101;;37873:3;37857:13;:19;;;;36437:1529;;37898:60;37927:1;37931:2;37935:12;37949:8;37898:20;:60::i;:::-;36437:1529;;;:::o;31970:322::-;32040:14;32271:1;32261:8;32258:15;32233:23;32229:45;32219:55;;32142:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7216:845::-;7319:3;7356:5;7350:12;7385:36;7411:9;7385:36;:::i;:::-;7437:89;7519:6;7514:3;7437:89;:::i;:::-;7430:96;;7557:1;7546:9;7542:17;7573:1;7568:137;;;;7719:1;7714:341;;;;7535:520;;7568:137;7652:4;7648:9;7637;7633:25;7628:3;7621:38;7688:6;7683:3;7679:16;7672:23;;7568:137;;7714:341;7781:38;7813:5;7781:38;:::i;:::-;7841:1;7855:154;7869:6;7866:1;7863:13;7855:154;;;7943:7;7937:14;7933:1;7928:3;7924:11;7917:35;7993:1;7984:7;7980:15;7969:26;;7891:4;7888:1;7884:12;7879:17;;7855:154;;;8038:6;8033:3;8029:16;8022:23;;7721:334;;7535:520;;7323:738;;;;;;:::o;8067:366::-;8209:3;8230:67;8294:2;8289:3;8230:67;:::i;:::-;8223:74;;8306:93;8395:3;8306:93;:::i;:::-;8424:2;8419:3;8415:12;8408:19;;8213:220;;;:::o;8439:366::-;8581:3;8602:67;8666:2;8661:3;8602:67;:::i;:::-;8595:74;;8678:93;8767:3;8678:93;:::i;:::-;8796:2;8791:3;8787:12;8780:19;;8585:220;;;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8957:220;;;:::o;9183:366::-;9325:3;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9422:93;9511:3;9422:93;:::i;:::-;9540:2;9535:3;9531:12;9524:19;;9329:220;;;:::o;9555:366::-;9697:3;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9794:93;9883:3;9794:93;:::i;:::-;9912:2;9907:3;9903:12;9896:19;;9701:220;;;:::o;9927:366::-;10069:3;10090:67;10154:2;10149:3;10090:67;:::i;:::-;10083:74;;10166:93;10255:3;10166:93;:::i;:::-;10284:2;10279:3;10275:12;10268:19;;10073:220;;;:::o;10299:400::-;10459:3;10480:84;10562:1;10557:3;10480:84;:::i;:::-;10473:91;;10573:93;10662:3;10573:93;:::i;:::-;10691:1;10686:3;10682:11;10675:18;;10463:236;;;:::o;10705:366::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10851:220;;;:::o;11077:366::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11223:220;;;:::o;11449:366::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11595:220;;;:::o;11821:366::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11967:220;;;:::o;12193:118::-;12280:24;12298:5;12280:24;:::i;:::-;12275:3;12268:37;12258:53;;:::o;12317:695::-;12595:3;12617:92;12705:3;12696:6;12617:92;:::i;:::-;12610:99;;12726:95;12817:3;12808:6;12726:95;:::i;:::-;12719:102;;12838:148;12982:3;12838:148;:::i;:::-;12831:155;;13003:3;12996:10;;12599:413;;;;;:::o;13018:222::-;13111:4;13149:2;13138:9;13134:18;13126:26;;13162:71;13230:1;13219:9;13215:17;13206:6;13162:71;:::i;:::-;13116:124;;;;:::o;13246:640::-;13441:4;13479:3;13468:9;13464:19;13456:27;;13493:71;13561:1;13550:9;13546:17;13537:6;13493:71;:::i;:::-;13574:72;13642:2;13631:9;13627:18;13618:6;13574:72;:::i;:::-;13656;13724:2;13713:9;13709:18;13700:6;13656:72;:::i;:::-;13775:9;13769:4;13765:20;13760:2;13749:9;13745:18;13738:48;13803:76;13874:4;13865:6;13803:76;:::i;:::-;13795:84;;13446:440;;;;;;;:::o;13892:210::-;13979:4;14017:2;14006:9;14002:18;13994:26;;14030:65;14092:1;14081:9;14077:17;14068:6;14030:65;:::i;:::-;13984:118;;;;:::o;14108:313::-;14221:4;14259:2;14248:9;14244:18;14236:26;;14308:9;14302:4;14298:20;14294:1;14283:9;14279:17;14272:47;14336:78;14409:4;14400:6;14336:78;:::i;:::-;14328:86;;14226:195;;;;:::o;14427:419::-;14593:4;14631:2;14620:9;14616:18;14608:26;;14680:9;14674:4;14670:20;14666:1;14655:9;14651:17;14644:47;14708:131;14834:4;14708:131;:::i;:::-;14700:139;;14598:248;;;:::o;14852:419::-;15018:4;15056:2;15045:9;15041:18;15033:26;;15105:9;15099:4;15095:20;15091:1;15080:9;15076:17;15069:47;15133:131;15259:4;15133:131;:::i;:::-;15125:139;;15023:248;;;:::o;15277:419::-;15443:4;15481:2;15470:9;15466:18;15458:26;;15530:9;15524:4;15520:20;15516:1;15505:9;15501:17;15494:47;15558:131;15684:4;15558:131;:::i;:::-;15550:139;;15448:248;;;:::o;15702:419::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15873:248;;;:::o;16127:419::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16380:9;16374:4;16370:20;16366:1;16355:9;16351:17;16344:47;16408:131;16534:4;16408:131;:::i;:::-;16400:139;;16298:248;;;:::o;16552:419::-;16718:4;16756:2;16745:9;16741:18;16733:26;;16805:9;16799:4;16795:20;16791:1;16780:9;16776:17;16769:47;16833:131;16959:4;16833:131;:::i;:::-;16825:139;;16723:248;;;:::o;16977:419::-;17143:4;17181:2;17170:9;17166:18;17158:26;;17230:9;17224:4;17220:20;17216:1;17205:9;17201:17;17194:47;17258:131;17384:4;17258:131;:::i;:::-;17250:139;;17148:248;;;:::o;17402:419::-;17568:4;17606:2;17595:9;17591:18;17583:26;;17655:9;17649:4;17645:20;17641:1;17630:9;17626:17;17619:47;17683:131;17809:4;17683:131;:::i;:::-;17675:139;;17573:248;;;:::o;17827:419::-;17993:4;18031:2;18020:9;18016:18;18008:26;;18080:9;18074:4;18070:20;18066:1;18055:9;18051:17;18044:47;18108:131;18234:4;18108:131;:::i;:::-;18100:139;;17998:248;;;:::o;18252:419::-;18418:4;18456:2;18445:9;18441:18;18433:26;;18505:9;18499:4;18495:20;18491:1;18480:9;18476:17;18469:47;18533:131;18659:4;18533:131;:::i;:::-;18525:139;;18423:248;;;:::o;18677:222::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18821:71;18889:1;18878:9;18874:17;18865:6;18821:71;:::i;:::-;18775:124;;;;:::o;18905:129::-;18939:6;18966:20;;:::i;:::-;18956:30;;18995:33;19023:4;19015:6;18995:33;:::i;:::-;18946:88;;;:::o;19040:75::-;19073:6;19106:2;19100:9;19090:19;;19080:35;:::o;19121:307::-;19182:4;19272:18;19264:6;19261:30;19258:2;;;19294:18;;:::i;:::-;19258:2;19332:29;19354:6;19332:29;:::i;:::-;19324:37;;19416:4;19410;19406:15;19398:23;;19187:241;;;:::o;19434:141::-;19483:4;19506:3;19498:11;;19529:3;19526:1;19519:14;19563:4;19560:1;19550:18;19542:26;;19488:87;;;:::o;19581:98::-;19632:6;19666:5;19660:12;19650:22;;19639:40;;;:::o;19685:99::-;19737:6;19771:5;19765:12;19755:22;;19744:40;;;:::o;19790:168::-;19873:11;19907:6;19902:3;19895:19;19947:4;19942:3;19938:14;19923:29;;19885:73;;;;:::o;19964:169::-;20048:11;20082:6;20077:3;20070:19;20122:4;20117:3;20113:14;20098:29;;20060:73;;;;:::o;20139:148::-;20241:11;20278:3;20263:18;;20253:34;;;;:::o;20293:305::-;20333:3;20352:20;20370:1;20352:20;:::i;:::-;20347:25;;20386:20;20404:1;20386:20;:::i;:::-;20381:25;;20540:1;20472:66;20468:74;20465:1;20462:81;20459:2;;;20546:18;;:::i;:::-;20459:2;20590:1;20587;20583:9;20576:16;;20337:261;;;;:::o;20604:185::-;20644:1;20661:20;20679:1;20661:20;:::i;:::-;20656:25;;20695:20;20713:1;20695:20;:::i;:::-;20690:25;;20734:1;20724:2;;20739:18;;:::i;:::-;20724:2;20781:1;20778;20774:9;20769:14;;20646:143;;;;:::o;20795:191::-;20835:4;20855:20;20873:1;20855:20;:::i;:::-;20850:25;;20889:20;20907:1;20889:20;:::i;:::-;20884:25;;20928:1;20925;20922:8;20919:2;;;20933:18;;:::i;:::-;20919:2;20978:1;20975;20971:9;20963:17;;20840:146;;;;:::o;20992:96::-;21029:7;21058:24;21076:5;21058:24;:::i;:::-;21047:35;;21037:51;;;:::o;21094:90::-;21128:7;21171:5;21164:13;21157:21;21146:32;;21136:48;;;:::o;21190:149::-;21226:7;21266:66;21259:5;21255:78;21244:89;;21234:105;;;:::o;21345:126::-;21382:7;21422:42;21415:5;21411:54;21400:65;;21390:81;;;:::o;21477:77::-;21514:7;21543:5;21532:16;;21522:32;;;:::o;21560:154::-;21644:6;21639:3;21634;21621:30;21706:1;21697:6;21692:3;21688:16;21681:27;21611:103;;;:::o;21720:307::-;21788:1;21798:113;21812:6;21809:1;21806:13;21798:113;;;21897:1;21892:3;21888:11;21882:18;21878:1;21873:3;21869:11;21862:39;21834:2;21831:1;21827:10;21822:15;;21798:113;;;21929:6;21926:1;21923:13;21920:2;;;22009:1;22000:6;21995:3;21991:16;21984:27;21920:2;21769:258;;;;:::o;22033:320::-;22077:6;22114:1;22108:4;22104:12;22094:22;;22161:1;22155:4;22151:12;22182:18;22172:2;;22238:4;22230:6;22226:17;22216:27;;22172:2;22300;22292:6;22289:14;22269:18;22266:38;22263:2;;;22319:18;;:::i;:::-;22263:2;22084:269;;;;:::o;22359:281::-;22442:27;22464:4;22442:27;:::i;:::-;22434:6;22430:40;22572:6;22560:10;22557:22;22536:18;22524:10;22521:34;22518:62;22515:2;;;22583:18;;:::i;:::-;22515:2;22623:10;22619:2;22612:22;22402:238;;;:::o;22646:233::-;22685:3;22708:24;22726:5;22708:24;:::i;:::-;22699:33;;22754:66;22747:5;22744:77;22741:2;;;22824:18;;:::i;:::-;22741:2;22871:1;22864:5;22860:13;22853:20;;22689:190;;;:::o;22885:176::-;22917:1;22934:20;22952:1;22934:20;:::i;:::-;22929:25;;22968:20;22986:1;22968:20;:::i;:::-;22963:25;;23007:1;22997:2;;23012:18;;:::i;:::-;22997:2;23053:1;23050;23046:9;23041:14;;22919:142;;;;:::o;23067:180::-;23115:77;23112:1;23105:88;23212:4;23209:1;23202:15;23236:4;23233:1;23226:15;23253:180;23301:77;23298:1;23291:88;23398:4;23395:1;23388:15;23422:4;23419:1;23412:15;23439:180;23487:77;23484:1;23477:88;23584:4;23581:1;23574:15;23608:4;23605:1;23598:15;23625:180;23673:77;23670:1;23663:88;23770:4;23767:1;23760:15;23794:4;23791:1;23784:15;23811:102;23852:6;23903:2;23899:7;23894:2;23887:5;23883:14;23879:28;23869:38;;23859:54;;;:::o;23919:170::-;24059:22;24055:1;24047:6;24043:14;24036:46;24025:64;:::o;24095:165::-;24235:17;24231:1;24223:6;24219:14;24212:41;24201:59;:::o;24266:225::-;24406:34;24402:1;24394:6;24390:14;24383:58;24475:8;24470:2;24462:6;24458:15;24451:33;24372:119;:::o;24497:166::-;24637:18;24633:1;24625:6;24621:14;24614:42;24603:60;:::o;24669:167::-;24809:19;24805:1;24797:6;24793:14;24786:43;24775:61;:::o;24842:166::-;24982:18;24978:1;24970:6;24966:14;24959:42;24948:60;:::o;25014:155::-;25154:7;25150:1;25142:6;25138:14;25131:31;25120:49;:::o;25175:182::-;25315:34;25311:1;25303:6;25299:14;25292:58;25281:76;:::o;25363:171::-;25503:23;25499:1;25491:6;25487:14;25480:47;25469:65;:::o;25540:168::-;25680:20;25676:1;25668:6;25664:14;25657:44;25646:62;:::o;25714:182::-;25854:34;25850:1;25842:6;25838:14;25831:58;25820:76;:::o;25902:122::-;25975:24;25993:5;25975:24;:::i;:::-;25968:5;25965:35;25955:2;;26014:1;26011;26004:12;25955:2;25945:79;:::o;26030:116::-;26100:21;26115:5;26100:21;:::i;:::-;26093:5;26090:32;26080:2;;26136:1;26133;26126:12;26080:2;26070:76;:::o;26152:120::-;26224:23;26241:5;26224:23;:::i;:::-;26217:5;26214:34;26204:2;;26262:1;26259;26252:12;26204:2;26194:78;:::o;26278:122::-;26351:24;26369:5;26351:24;:::i;:::-;26344:5;26341:35;26331:2;;26390:1;26387;26380:12;26331:2;26321:79;:::o

Swarm Source

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