ETH Price: $2,625.01 (+1.08%)

Token

Renga Rave DAO (REND)
 

Overview

Max Total Supply

134 REND

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
lilweb.eth
Balance
1 REND
0x074DF02d5bA34eC03e4167f8dab7FE6c3a18de63
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RengaRaveDAO

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-17
*/

// SPDX-License-Identifier: MIT


// 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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: RengaRaveDAO.sol



pragma solidity ^0.8.0;



contract RengaRaveDAO is ERC721A, Ownable {
    uint256 public price;
    uint256 public maxMintPerTx;
    uint256 public immutable collectionSize;
    string public baseUri;
    bool public open = false;
    uint256 public maxFree;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _price,
        uint256 _maxMintPerTx,
        uint256 _collectionSize,
        uint256 _maxFree
    ) ERC721A(_name, _symbol) {
        price = _price;
        maxMintPerTx = _maxMintPerTx;
        collectionSize = _collectionSize;
        maxFree = _maxFree;
    }

    // Events
    event PriceChanged(uint256 newPrice);
    event MaxMintPerTxChanged(uint256 newMaxMintPerTx);

    modifier mintCompliance(uint256 _quantity) {
        unchecked {
            require(open, "Minting has not started yet");
            require(_quantity <= maxMintPerTx, "Quantity is too large");
            require(_quantity != 0, "Must mint at least 1 token");
        }
        _;
    }

    // Minting
    function mint(uint256 _quantity)
        external
        payable
        mintCompliance(_quantity)
    {
        uint256 requiredValue = _quantity * price;
        uint256 userMinted = _numberMinted(msg.sender);

        if (userMinted == 0) {
            requiredValue = _quantity <= maxFree
                ? 0
                : requiredValue - (price * maxFree);
        }
        require(msg.value >= requiredValue, "Sent Ether is too low");
        if (_totalMinted() + _quantity <= collectionSize) {
            _safeMint(msg.sender, _quantity);
        }
    }

    // TokenURIs
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    // Utils
    function setPrice(uint256 _newPrice) external onlyOwner {
        require(price != _newPrice, "Already set to this value");
        price = _newPrice;

        emit PriceChanged(_newPrice);
    }

    function setMaxMintPerTx(uint256 _newMaxMintPerTx) external onlyOwner {
        require(maxMintPerTx != _newMaxMintPerTx, "Already set to this value");
        maxMintPerTx = _newMaxMintPerTx;

        emit MaxMintPerTxChanged(_newMaxMintPerTx);
    }

    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        baseUri = _newBaseURI;
    }

    function setOpen(bool _value) external onlyOwner {
        open = _value;
    }

    function setMaxFree(uint256 _newMaxFree) external onlyOwner {
        require(maxFree != _newMaxFree, "Already set to this value");
        maxFree = _newMaxFree;
    }

    function allowlistMint(uint256 _quantity) external onlyOwner {
        require(
            _totalMinted() + _quantity <= collectionSize,
            "Collection is full"
        );
        _safeMint(msg.sender, _quantity);
    }

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

    // ERC721A overrides
    // ERC721A starts counting tokenIds from 0, this contract starts from 1
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    // ERC721A has no file extensions for its tokenURIs
    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), ".json"))
                : "";
    }

                function treasuryMint(uint256 quantity) public onlyOwner {
        require(quantity > 0, "Invalid mint amount");
      require(totalSupply()+ quantity< collectionSize, 'max supply reached');
        _safeMint(msg.sender, quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":false,"internalType":"uint256","name":"newMaxMintPerTx","type":"uint256"}],"name":"MaxMintPerTxChanged","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":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620035e6380380620035e68339818101604052810190620000529190620002f7565b858581600290805190602001906200006c929190620001be565b50806003908051906020019062000085929190620001be565b5062000096620000e760201b60201c565b6000819055505050620000be620000b2620000f060201b60201c565b620000f860201b60201c565b8360098190555082600a81905550816080818152505080600d8190555050505050505062000553565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cc906200045e565b90600052602060002090601f016020900481019282620001f057600085556200023c565b82601f106200020b57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023b5782518255916020019190600101906200021e565b5b5090506200024b91906200024f565b5090565b5b808211156200026a57600081600090555060010162000250565b5090565b6000620002856200027f84620003e8565b620003bf565b9050828152602081018484840111156200029e57600080fd5b620002ab84828562000428565b509392505050565b600082601f830112620002c557600080fd5b8151620002d78482602086016200026e565b91505092915050565b600081519050620002f18162000539565b92915050565b60008060008060008060c087890312156200031157600080fd5b600087015167ffffffffffffffff8111156200032c57600080fd5b6200033a89828a01620002b3565b965050602087015167ffffffffffffffff8111156200035857600080fd5b6200036689828a01620002b3565b95505060406200037989828a01620002e0565b94505060606200038c89828a01620002e0565b93505060806200039f89828a01620002e0565b92505060a0620003b289828a01620002e0565b9150509295509295509295565b6000620003cb620003de565b9050620003d9828262000494565b919050565b6000604051905090565b600067ffffffffffffffff821115620004065762000405620004f9565b5b620004118262000528565b9050602081019050919050565b6000819050919050565b60005b83811015620004485780820151818401526020810190506200042b565b8381111562000458576000848401525b50505050565b600060028204905060018216806200047757607f821691505b602082108114156200048e576200048d620004ca565b5b50919050565b6200049f8262000528565b810181811067ffffffffffffffff82111715620004c157620004c0620004f9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000544816200041e565b81146200055057600080fd5b50565b6080516130626200058460003960008181610e2b0152818161135701528181611527015261178401526130626000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c180526a11610095578063e985e9c511610064578063e985e9c514610675578063efdc7788146106b2578063f2fde38b146106db578063fcfff16f14610704576101e3565b8063c180526a146105bb578063c87b56dd146105e4578063d755bf9914610621578063de7fcb1d1461064a576101e3565b8063a035b1fe116100d1578063a035b1fe1461052f578063a0712d681461055a578063a22cb46514610576578063b88d4fde1461059f576101e3565b80638da5cb5b1461048557806391b7f5ed146104b057806395d89b41146104d95780639abc832014610504576101e3565b806345c0f5331161017a5780636352211e116101495780636352211e146103cb5780636fdca5e01461040857806370a0823114610431578063715018a61461046e576101e3565b806345c0f53314610323578063485a68a31461034e57806355f804b314610379578063616cdb1e146103a2576101e3565b806318160ddd116101b657806318160ddd146102a957806323b872dd146102d45780633ccfd60b146102f057806342842e0e14610307576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906124c2565b61072f565b60405161021c91906128c4565b60405180910390f35b34801561023157600080fd5b5061023a6107c1565b60405161024791906128df565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612559565b610853565b604051610284919061285d565b60405180910390f35b6102a760048036038101906102a2919061245d565b6108d2565b005b3480156102b557600080fd5b506102be610a16565b6040516102cb9190612a61565b60405180910390f35b6102ee60048036038101906102e99190612357565b610a2d565b005b3480156102fc57600080fd5b50610305610d52565b005b610321600480360381019061031c9190612357565b610e09565b005b34801561032f57600080fd5b50610338610e29565b6040516103459190612a61565b60405180910390f35b34801561035a57600080fd5b50610363610e4d565b6040516103709190612a61565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190612514565b610e53565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612559565b610e71565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612559565b610eff565b6040516103ff919061285d565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612499565b610f11565b005b34801561043d57600080fd5b50610458600480360381019061045391906122f2565b610f36565b6040516104659190612a61565b60405180910390f35b34801561047a57600080fd5b50610483610fef565b005b34801561049157600080fd5b5061049a611003565b6040516104a7919061285d565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612559565b61102d565b005b3480156104e557600080fd5b506104ee6110bb565b6040516104fb91906128df565b60405180910390f35b34801561051057600080fd5b5061051961114d565b60405161052691906128df565b60405180910390f35b34801561053b57600080fd5b506105446111db565b6040516105519190612a61565b60405180910390f35b610574600480360381019061056f9190612559565b6111e1565b005b34801561058257600080fd5b5061059d60048036038101906105989190612421565b61139f565b005b6105b960048036038101906105b491906123a6565b6114aa565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612559565b61151d565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612559565b6115a7565b60405161061891906128df565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612559565b611646565b005b34801561065657600080fd5b5061065f61169d565b60405161066c9190612a61565b60405180910390f35b34801561068157600080fd5b5061069c6004803603810190610697919061231b565b6116a3565b6040516106a991906128c4565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190612559565b611737565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906122f2565b611803565b005b34801561071057600080fd5b50610719611887565b60405161072691906128c4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d090612cba565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90612cba565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e8261189a565b610894576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610eff565b90508073ffffffffffffffffffffffffffffffffffffffff166108fe6118f9565b73ffffffffffffffffffffffffffffffffffffffff16146109615761092a816109256118f9565b6116a3565b610960576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a20611901565b6001546000540303905090565b6000610a388261190a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aab846119d8565b91509150610ac18187610abc6118f9565b6119ff565b610b0d57610ad686610ad16118f9565b6116a3565b610b0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818686866001611a43565b8015610b8c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5a85610c36888887611a49565b7c020000000000000000000000000000000000000000000000000000000017611a71565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce2576000600185019050600060046000838152602001908152602001600020541415610ce0576000548114610cdf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4a8686866001611a9c565b505050505050565b610d5a611aa2565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8090612848565b60006040518083038185875af1925050503d8060008114610dbd576040519150601f19603f3d011682016040523d82523d6000602084013e610dc2565b606091505b5050905080610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612a21565b60405180910390fd5b50565b610e24838383604051806020016040528060008152506114aa565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b610e5b611aa2565b8181600b9190610e6c929190612134565b505050565b610e79611aa2565b80600a541415610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612921565b60405180910390fd5b80600a819055507f67a9eaf2f3789db91ee068d120ab9ae3231aef935f2a6a77f96d0de1638337db81604051610ef49190612a61565b60405180910390a150565b6000610f0a8261190a565b9050919050565b610f19611aa2565b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff7611aa2565b6110016000611b20565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611035611aa2565b80600954141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612921565b60405180910390fd5b806009819055507fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d622816040516110b09190612a61565b60405180910390a150565b6060600380546110ca90612cba565b80601f01602080910402602001604051908101604052809291908181526020018280546110f690612cba565b80156111435780601f1061111857610100808354040283529160200191611143565b820191906000526020600020905b81548152906001019060200180831161112657829003601f168201915b5050505050905090565b600b805461115a90612cba565b80601f016020809104026020016040519081016040528092919081815260200182805461118690612cba565b80156111d35780601f106111a8576101008083540402835291602001916111d3565b820191906000526020600020905b8154815290600101906020018083116111b657829003601f168201915b505050505081565b60095481565b80600c60009054906101000a900460ff16611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890612901565b60405180910390fd5b600a54811115611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90612981565b60405180910390fd5b60008114156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612961565b60405180910390fd5b6000600954836112ca9190612b76565b905060006112d733611be6565b9050600081141561131257600d5484111561130c57600d546009546112fc9190612b76565b826113079190612bd0565b61130f565b60005b91505b81341015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906129c1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008461137f611c3d565b6113899190612b20565b11611399576113983385611c50565b5b50505050565b80600760006113ac6118f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114596118f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149e91906128c4565b60405180910390a35050565b6114b5848484610a2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611517576114e084848484611c6e565b611516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611525611aa2565b7f00000000000000000000000000000000000000000000000000000000000000008161154f611c3d565b6115599190612b20565b111561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612a01565b60405180910390fd5b6115a43382611c50565b50565b60606115b28261189a565b6115e8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115f2611dce565b9050600081511415611613576040518060200160405280600081525061163e565b8061161d84611e60565b60405160200161162e929190612819565b6040516020818303038152906040525b915050919050565b61164e611aa2565b80600d541415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612921565b60405180910390fd5b80600d8190555050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173f611aa2565b60008111611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612a41565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816117ac610a16565b6117b69190612b20565b106117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906129a1565b60405180910390fd5b6118003382611c50565b50565b61180b611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612941565b60405180910390fd5b61188481611b20565b50565b600c60009054906101000a900460ff1681565b6000816118a5611901565b111580156118b4575060005482105b80156118f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611919611901565b116119a1576000548110156119a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561199e575b6000811415611994576004600083600190039350838152602001908152602001600020549050611969565b80925050506119d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a60868684611eb9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aaa611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611003565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906129e1565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611c47611901565b60005403905090565b611c6a828260405180602001604052806000815250611eca565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c946118f9565b8786866040518563ffffffff1660e01b8152600401611cb69493929190612878565b602060405180830381600087803b158015611cd057600080fd5b505af1925050508015611d0157506040513d601f19601f82011682018060405250810190611cfe91906124eb565b60015b611d7b573d8060008114611d31576040519150601f19603f3d011682016040523d82523d6000602084013e611d36565b606091505b50600081511415611d73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ddd90612cba565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0990612cba565b8015611e565780601f10611e2b57610100808354040283529160200191611e56565b820191906000526020600020905b815481529060010190602001808311611e3957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea457600184039350600a81066030018453600a8104905080611e9f57611ea4565b611e79565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611ed48383611f67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f6257600080549050600083820390505b611f146000868380600101945086611c6e565b611f4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f01578160005414611f5f57600080fd5b50505b505050565b6000805490506000821415611fa8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb56000848385611a43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061202c8361201d6000866000611a49565b61202685612124565b17611a71565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612092565b506000821415612109576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061211f6000848385611a9c565b505050565b60006001821460e11b9050919050565b82805461214090612cba565b90600052602060002090601f01602090048101928261216257600085556121a9565b82601f1061217b57803560ff19168380011785556121a9565b828001600101855582156121a9579182015b828111156121a857823582559160200191906001019061218d565b5b5090506121b691906121ba565b5090565b5b808211156121d35760008160009055506001016121bb565b5090565b60006121ea6121e584612aa1565b612a7c565b90508281526020810184848401111561220257600080fd5b61220d848285612c78565b509392505050565b60008135905061222481612fd0565b92915050565b60008135905061223981612fe7565b92915050565b60008135905061224e81612ffe565b92915050565b60008151905061226381612ffe565b92915050565b600082601f83011261227a57600080fd5b813561228a8482602086016121d7565b91505092915050565b60008083601f8401126122a557600080fd5b8235905067ffffffffffffffff8111156122be57600080fd5b6020830191508360018202830111156122d657600080fd5b9250929050565b6000813590506122ec81613015565b92915050565b60006020828403121561230457600080fd5b600061231284828501612215565b91505092915050565b6000806040838503121561232e57600080fd5b600061233c85828601612215565b925050602061234d85828601612215565b9150509250929050565b60008060006060848603121561236c57600080fd5b600061237a86828701612215565b935050602061238b86828701612215565b925050604061239c868287016122dd565b9150509250925092565b600080600080608085870312156123bc57600080fd5b60006123ca87828801612215565b94505060206123db87828801612215565b93505060406123ec878288016122dd565b925050606085013567ffffffffffffffff81111561240957600080fd5b61241587828801612269565b91505092959194509250565b6000806040838503121561243457600080fd5b600061244285828601612215565b92505060206124538582860161222a565b9150509250929050565b6000806040838503121561247057600080fd5b600061247e85828601612215565b925050602061248f858286016122dd565b9150509250929050565b6000602082840312156124ab57600080fd5b60006124b98482850161222a565b91505092915050565b6000602082840312156124d457600080fd5b60006124e28482850161223f565b91505092915050565b6000602082840312156124fd57600080fd5b600061250b84828501612254565b91505092915050565b6000806020838503121561252757600080fd5b600083013567ffffffffffffffff81111561254157600080fd5b61254d85828601612293565b92509250509250929050565b60006020828403121561256b57600080fd5b6000612579848285016122dd565b91505092915050565b61258b81612c04565b82525050565b61259a81612c16565b82525050565b60006125ab82612ad2565b6125b58185612ae8565b93506125c5818560208601612c87565b6125ce81612daa565b840191505092915050565b60006125e482612add565b6125ee8185612b04565b93506125fe818560208601612c87565b61260781612daa565b840191505092915050565b600061261d82612add565b6126278185612b15565b9350612637818560208601612c87565b80840191505092915050565b6000612650601b83612b04565b915061265b82612dbb565b602082019050919050565b6000612673601983612b04565b915061267e82612de4565b602082019050919050565b6000612696602683612b04565b91506126a182612e0d565b604082019050919050565b60006126b9601a83612b04565b91506126c482612e5c565b602082019050919050565b60006126dc601583612b04565b91506126e782612e85565b602082019050919050565b60006126ff601283612b04565b915061270a82612eae565b602082019050919050565b6000612722600583612b15565b915061272d82612ed7565b600582019050919050565b6000612745601583612b04565b915061275082612f00565b602082019050919050565b6000612768602083612b04565b915061277382612f29565b602082019050919050565b600061278b601283612b04565b915061279682612f52565b602082019050919050565b60006127ae600083612af9565b91506127b982612f7b565b600082019050919050565b60006127d1601083612b04565b91506127dc82612f7e565b602082019050919050565b60006127f4601383612b04565b91506127ff82612fa7565b602082019050919050565b61281381612c6e565b82525050565b60006128258285612612565b91506128318284612612565b915061283c82612715565b91508190509392505050565b6000612853826127a1565b9150819050919050565b60006020820190506128726000830184612582565b92915050565b600060808201905061288d6000830187612582565b61289a6020830186612582565b6128a7604083018561280a565b81810360608301526128b981846125a0565b905095945050505050565b60006020820190506128d96000830184612591565b92915050565b600060208201905081810360008301526128f981846125d9565b905092915050565b6000602082019050818103600083015261291a81612643565b9050919050565b6000602082019050818103600083015261293a81612666565b9050919050565b6000602082019050818103600083015261295a81612689565b9050919050565b6000602082019050818103600083015261297a816126ac565b9050919050565b6000602082019050818103600083015261299a816126cf565b9050919050565b600060208201905081810360008301526129ba816126f2565b9050919050565b600060208201905081810360008301526129da81612738565b9050919050565b600060208201905081810360008301526129fa8161275b565b9050919050565b60006020820190508181036000830152612a1a8161277e565b9050919050565b60006020820190508181036000830152612a3a816127c4565b9050919050565b60006020820190508181036000830152612a5a816127e7565b9050919050565b6000602082019050612a76600083018461280a565b92915050565b6000612a86612a97565b9050612a928282612cec565b919050565b6000604051905090565b600067ffffffffffffffff821115612abc57612abb612d7b565b5b612ac582612daa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2b82612c6e565b9150612b3683612c6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6b57612b6a612d1d565b5b828201905092915050565b6000612b8182612c6e565b9150612b8c83612c6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bc557612bc4612d1d565b5b828202905092915050565b6000612bdb82612c6e565b9150612be683612c6e565b925082821015612bf957612bf8612d1d565b5b828203905092915050565b6000612c0f82612c4e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ca5578082015181840152602081019050612c8a565b83811115612cb4576000848401525b50505050565b60006002820490506001821680612cd257607f821691505b60208210811415612ce657612ce5612d4c565b5b50919050565b612cf582612daa565b810181811067ffffffffffffffff82111715612d1457612d13612d7b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b7f416c72656164792073657420746f20746869732076616c756500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f5175616e7469747920697320746f6f206c617267650000000000000000000000600082015250565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f53656e7420457468657220697320746f6f206c6f770000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6c6c656374696f6e2069732066756c6c0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b612fd981612c04565b8114612fe457600080fd5b50565b612ff081612c16565b8114612ffb57600080fd5b50565b61300781612c22565b811461301257600080fd5b50565b61301e81612c6e565b811461302957600080fd5b5056fea2646970667358221220ca4d2de8054e12bf7e3a5c232dab377f27a3bbf1418999d87bf25e960173d54064736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000012bb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e52656e676120526176652044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452454e4400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c180526a11610095578063e985e9c511610064578063e985e9c514610675578063efdc7788146106b2578063f2fde38b146106db578063fcfff16f14610704576101e3565b8063c180526a146105bb578063c87b56dd146105e4578063d755bf9914610621578063de7fcb1d1461064a576101e3565b8063a035b1fe116100d1578063a035b1fe1461052f578063a0712d681461055a578063a22cb46514610576578063b88d4fde1461059f576101e3565b80638da5cb5b1461048557806391b7f5ed146104b057806395d89b41146104d95780639abc832014610504576101e3565b806345c0f5331161017a5780636352211e116101495780636352211e146103cb5780636fdca5e01461040857806370a0823114610431578063715018a61461046e576101e3565b806345c0f53314610323578063485a68a31461034e57806355f804b314610379578063616cdb1e146103a2576101e3565b806318160ddd116101b657806318160ddd146102a957806323b872dd146102d45780633ccfd60b146102f057806342842e0e14610307576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906124c2565b61072f565b60405161021c91906128c4565b60405180910390f35b34801561023157600080fd5b5061023a6107c1565b60405161024791906128df565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612559565b610853565b604051610284919061285d565b60405180910390f35b6102a760048036038101906102a2919061245d565b6108d2565b005b3480156102b557600080fd5b506102be610a16565b6040516102cb9190612a61565b60405180910390f35b6102ee60048036038101906102e99190612357565b610a2d565b005b3480156102fc57600080fd5b50610305610d52565b005b610321600480360381019061031c9190612357565b610e09565b005b34801561032f57600080fd5b50610338610e29565b6040516103459190612a61565b60405180910390f35b34801561035a57600080fd5b50610363610e4d565b6040516103709190612a61565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190612514565b610e53565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612559565b610e71565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612559565b610eff565b6040516103ff919061285d565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190612499565b610f11565b005b34801561043d57600080fd5b50610458600480360381019061045391906122f2565b610f36565b6040516104659190612a61565b60405180910390f35b34801561047a57600080fd5b50610483610fef565b005b34801561049157600080fd5b5061049a611003565b6040516104a7919061285d565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612559565b61102d565b005b3480156104e557600080fd5b506104ee6110bb565b6040516104fb91906128df565b60405180910390f35b34801561051057600080fd5b5061051961114d565b60405161052691906128df565b60405180910390f35b34801561053b57600080fd5b506105446111db565b6040516105519190612a61565b60405180910390f35b610574600480360381019061056f9190612559565b6111e1565b005b34801561058257600080fd5b5061059d60048036038101906105989190612421565b61139f565b005b6105b960048036038101906105b491906123a6565b6114aa565b005b3480156105c757600080fd5b506105e260048036038101906105dd9190612559565b61151d565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612559565b6115a7565b60405161061891906128df565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612559565b611646565b005b34801561065657600080fd5b5061065f61169d565b60405161066c9190612a61565b60405180910390f35b34801561068157600080fd5b5061069c6004803603810190610697919061231b565b6116a3565b6040516106a991906128c4565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190612559565b611737565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906122f2565b611803565b005b34801561071057600080fd5b50610719611887565b60405161072691906128c4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d090612cba565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90612cba565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e8261189a565b610894576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610eff565b90508073ffffffffffffffffffffffffffffffffffffffff166108fe6118f9565b73ffffffffffffffffffffffffffffffffffffffff16146109615761092a816109256118f9565b6116a3565b610960576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a20611901565b6001546000540303905090565b6000610a388261190a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aab846119d8565b91509150610ac18187610abc6118f9565b6119ff565b610b0d57610ad686610ad16118f9565b6116a3565b610b0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818686866001611a43565b8015610b8c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5a85610c36888887611a49565b7c020000000000000000000000000000000000000000000000000000000017611a71565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce2576000600185019050600060046000838152602001908152602001600020541415610ce0576000548114610cdf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4a8686866001611a9c565b505050505050565b610d5a611aa2565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d8090612848565b60006040518083038185875af1925050503d8060008114610dbd576040519150601f19603f3d011682016040523d82523d6000602084013e610dc2565b606091505b5050905080610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90612a21565b60405180910390fd5b50565b610e24838383604051806020016040528060008152506114aa565b505050565b7f00000000000000000000000000000000000000000000000000000000000012bb81565b600d5481565b610e5b611aa2565b8181600b9190610e6c929190612134565b505050565b610e79611aa2565b80600a541415610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612921565b60405180910390fd5b80600a819055507f67a9eaf2f3789db91ee068d120ab9ae3231aef935f2a6a77f96d0de1638337db81604051610ef49190612a61565b60405180910390a150565b6000610f0a8261190a565b9050919050565b610f19611aa2565b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ff7611aa2565b6110016000611b20565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611035611aa2565b80600954141561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190612921565b60405180910390fd5b806009819055507fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d622816040516110b09190612a61565b60405180910390a150565b6060600380546110ca90612cba565b80601f01602080910402602001604051908101604052809291908181526020018280546110f690612cba565b80156111435780601f1061111857610100808354040283529160200191611143565b820191906000526020600020905b81548152906001019060200180831161112657829003601f168201915b5050505050905090565b600b805461115a90612cba565b80601f016020809104026020016040519081016040528092919081815260200182805461118690612cba565b80156111d35780601f106111a8576101008083540402835291602001916111d3565b820191906000526020600020905b8154815290600101906020018083116111b657829003601f168201915b505050505081565b60095481565b80600c60009054906101000a900460ff16611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890612901565b60405180910390fd5b600a54811115611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90612981565b60405180910390fd5b60008114156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612961565b60405180910390fd5b6000600954836112ca9190612b76565b905060006112d733611be6565b9050600081141561131257600d5484111561130c57600d546009546112fc9190612b76565b826113079190612bd0565b61130f565b60005b91505b81341015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906129c1565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000012bb8461137f611c3d565b6113899190612b20565b11611399576113983385611c50565b5b50505050565b80600760006113ac6118f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114596118f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149e91906128c4565b60405180910390a35050565b6114b5848484610a2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611517576114e084848484611c6e565b611516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611525611aa2565b7f00000000000000000000000000000000000000000000000000000000000012bb8161154f611c3d565b6115599190612b20565b111561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612a01565b60405180910390fd5b6115a43382611c50565b50565b60606115b28261189a565b6115e8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115f2611dce565b9050600081511415611613576040518060200160405280600081525061163e565b8061161d84611e60565b60405160200161162e929190612819565b6040516020818303038152906040525b915050919050565b61164e611aa2565b80600d541415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612921565b60405180910390fd5b80600d8190555050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173f611aa2565b60008111611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990612a41565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000012bb816117ac610a16565b6117b69190612b20565b106117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906129a1565b60405180910390fd5b6118003382611c50565b50565b61180b611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290612941565b60405180910390fd5b61188481611b20565b50565b600c60009054906101000a900460ff1681565b6000816118a5611901565b111580156118b4575060005482105b80156118f2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611919611901565b116119a1576000548110156119a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561199e575b6000811415611994576004600083600190039350838152602001908152602001600020549050611969565b80925050506119d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a60868684611eb9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aaa611ec2565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611003565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906129e1565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611c47611901565b60005403905090565b611c6a828260405180602001604052806000815250611eca565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c946118f9565b8786866040518563ffffffff1660e01b8152600401611cb69493929190612878565b602060405180830381600087803b158015611cd057600080fd5b505af1925050508015611d0157506040513d601f19601f82011682018060405250810190611cfe91906124eb565b60015b611d7b573d8060008114611d31576040519150601f19603f3d011682016040523d82523d6000602084013e611d36565b606091505b50600081511415611d73576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611ddd90612cba565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0990612cba565b8015611e565780601f10611e2b57610100808354040283529160200191611e56565b820191906000526020600020905b815481529060010190602001808311611e3957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea457600184039350600a81066030018453600a8104905080611e9f57611ea4565b611e79565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611ed48383611f67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f6257600080549050600083820390505b611f146000868380600101945086611c6e565b611f4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f01578160005414611f5f57600080fd5b50505b505050565b6000805490506000821415611fa8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb56000848385611a43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061202c8361201d6000866000611a49565b61202685612124565b17611a71565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612092565b506000821415612109576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061211f6000848385611a9c565b505050565b60006001821460e11b9050919050565b82805461214090612cba565b90600052602060002090601f01602090048101928261216257600085556121a9565b82601f1061217b57803560ff19168380011785556121a9565b828001600101855582156121a9579182015b828111156121a857823582559160200191906001019061218d565b5b5090506121b691906121ba565b5090565b5b808211156121d35760008160009055506001016121bb565b5090565b60006121ea6121e584612aa1565b612a7c565b90508281526020810184848401111561220257600080fd5b61220d848285612c78565b509392505050565b60008135905061222481612fd0565b92915050565b60008135905061223981612fe7565b92915050565b60008135905061224e81612ffe565b92915050565b60008151905061226381612ffe565b92915050565b600082601f83011261227a57600080fd5b813561228a8482602086016121d7565b91505092915050565b60008083601f8401126122a557600080fd5b8235905067ffffffffffffffff8111156122be57600080fd5b6020830191508360018202830111156122d657600080fd5b9250929050565b6000813590506122ec81613015565b92915050565b60006020828403121561230457600080fd5b600061231284828501612215565b91505092915050565b6000806040838503121561232e57600080fd5b600061233c85828601612215565b925050602061234d85828601612215565b9150509250929050565b60008060006060848603121561236c57600080fd5b600061237a86828701612215565b935050602061238b86828701612215565b925050604061239c868287016122dd565b9150509250925092565b600080600080608085870312156123bc57600080fd5b60006123ca87828801612215565b94505060206123db87828801612215565b93505060406123ec878288016122dd565b925050606085013567ffffffffffffffff81111561240957600080fd5b61241587828801612269565b91505092959194509250565b6000806040838503121561243457600080fd5b600061244285828601612215565b92505060206124538582860161222a565b9150509250929050565b6000806040838503121561247057600080fd5b600061247e85828601612215565b925050602061248f858286016122dd565b9150509250929050565b6000602082840312156124ab57600080fd5b60006124b98482850161222a565b91505092915050565b6000602082840312156124d457600080fd5b60006124e28482850161223f565b91505092915050565b6000602082840312156124fd57600080fd5b600061250b84828501612254565b91505092915050565b6000806020838503121561252757600080fd5b600083013567ffffffffffffffff81111561254157600080fd5b61254d85828601612293565b92509250509250929050565b60006020828403121561256b57600080fd5b6000612579848285016122dd565b91505092915050565b61258b81612c04565b82525050565b61259a81612c16565b82525050565b60006125ab82612ad2565b6125b58185612ae8565b93506125c5818560208601612c87565b6125ce81612daa565b840191505092915050565b60006125e482612add565b6125ee8185612b04565b93506125fe818560208601612c87565b61260781612daa565b840191505092915050565b600061261d82612add565b6126278185612b15565b9350612637818560208601612c87565b80840191505092915050565b6000612650601b83612b04565b915061265b82612dbb565b602082019050919050565b6000612673601983612b04565b915061267e82612de4565b602082019050919050565b6000612696602683612b04565b91506126a182612e0d565b604082019050919050565b60006126b9601a83612b04565b91506126c482612e5c565b602082019050919050565b60006126dc601583612b04565b91506126e782612e85565b602082019050919050565b60006126ff601283612b04565b915061270a82612eae565b602082019050919050565b6000612722600583612b15565b915061272d82612ed7565b600582019050919050565b6000612745601583612b04565b915061275082612f00565b602082019050919050565b6000612768602083612b04565b915061277382612f29565b602082019050919050565b600061278b601283612b04565b915061279682612f52565b602082019050919050565b60006127ae600083612af9565b91506127b982612f7b565b600082019050919050565b60006127d1601083612b04565b91506127dc82612f7e565b602082019050919050565b60006127f4601383612b04565b91506127ff82612fa7565b602082019050919050565b61281381612c6e565b82525050565b60006128258285612612565b91506128318284612612565b915061283c82612715565b91508190509392505050565b6000612853826127a1565b9150819050919050565b60006020820190506128726000830184612582565b92915050565b600060808201905061288d6000830187612582565b61289a6020830186612582565b6128a7604083018561280a565b81810360608301526128b981846125a0565b905095945050505050565b60006020820190506128d96000830184612591565b92915050565b600060208201905081810360008301526128f981846125d9565b905092915050565b6000602082019050818103600083015261291a81612643565b9050919050565b6000602082019050818103600083015261293a81612666565b9050919050565b6000602082019050818103600083015261295a81612689565b9050919050565b6000602082019050818103600083015261297a816126ac565b9050919050565b6000602082019050818103600083015261299a816126cf565b9050919050565b600060208201905081810360008301526129ba816126f2565b9050919050565b600060208201905081810360008301526129da81612738565b9050919050565b600060208201905081810360008301526129fa8161275b565b9050919050565b60006020820190508181036000830152612a1a8161277e565b9050919050565b60006020820190508181036000830152612a3a816127c4565b9050919050565b60006020820190508181036000830152612a5a816127e7565b9050919050565b6000602082019050612a76600083018461280a565b92915050565b6000612a86612a97565b9050612a928282612cec565b919050565b6000604051905090565b600067ffffffffffffffff821115612abc57612abb612d7b565b5b612ac582612daa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2b82612c6e565b9150612b3683612c6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6b57612b6a612d1d565b5b828201905092915050565b6000612b8182612c6e565b9150612b8c83612c6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bc557612bc4612d1d565b5b828202905092915050565b6000612bdb82612c6e565b9150612be683612c6e565b925082821015612bf957612bf8612d1d565b5b828203905092915050565b6000612c0f82612c4e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ca5578082015181840152602081019050612c8a565b83811115612cb4576000848401525b50505050565b60006002820490506001821680612cd257607f821691505b60208210811415612ce657612ce5612d4c565b5b50919050565b612cf582612daa565b810181811067ffffffffffffffff82111715612d1457612d13612d7b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e74696e6720686173206e6f742073746172746564207965740000000000600082015250565b7f416c72656164792073657420746f20746869732076616c756500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f5175616e7469747920697320746f6f206c617267650000000000000000000000600082015250565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f53656e7420457468657220697320746f6f206c6f770000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6c6c656374696f6e2069732066756c6c0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b612fd981612c04565b8114612fe457600080fd5b50565b612ff081612c16565b8114612ffb57600080fd5b50565b61300781612c22565b811461301257600080fd5b50565b61301e81612c6e565b811461302957600080fd5b5056fea2646970667358221220ca4d2de8054e12bf7e3a5c232dab377f27a3bbf1418999d87bf25e960173d54064736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000012bb0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e52656e676120526176652044414f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452454e4400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Renga Rave DAO
Arg [1] : _symbol (string): REND
Arg [2] : _price (uint256): 3000000000000000
Arg [3] : _maxMintPerTx (uint256): 50
Arg [4] : _collectionSize (uint256): 4795
Arg [5] : _maxFree (uint256): 1

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 00000000000000000000000000000000000000000000000000000000000012bb
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 52656e676120526176652044414f000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 52454e4400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55129:4020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22034:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29427:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28860:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18687:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58019:173;;;;;;;;;;;;;:::i;:::-;;35987:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55239:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55344:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57392:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57128:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24329:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57508:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19871:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2813:103;;;;;;;;;;;;;:::i;:::-;;2165:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56920:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23112:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55285:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55178:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56187:585;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29985:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36778:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57776:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58461:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57597:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55205:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30376:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58905:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3071:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55313:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22034:639;22119:4;22458:10;22443:25;;:11;:25;;;;:102;;;;22535:10;22520:25;;:11;:25;;;;22443:102;:179;;;;22612:10;22597:25;;:11;:25;;;;22443:179;22423:199;;22034:639;;;:::o;22936:100::-;22990:13;23023:5;23016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22936:100;:::o;29427:218::-;29503:7;29528:16;29536:7;29528;:16::i;:::-;29523:64;;29553:34;;;;;;;;;;;;;;29523:64;29607:15;:24;29623:7;29607:24;;;;;;;;;;;:30;;;;;;;;;;;;29600:37;;29427:218;;;:::o;28860:408::-;28949:13;28965:16;28973:7;28965;:16::i;:::-;28949:32;;29021:5;28998:28;;:19;:17;:19::i;:::-;:28;;;28994:175;;29046:44;29063:5;29070:19;:17;:19::i;:::-;29046:16;:44::i;:::-;29041:128;;29118:35;;;;;;;;;;;;;;29041:128;28994:175;29214:2;29181:15;:24;29197:7;29181:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29252:7;29248:2;29232:28;;29241:5;29232:28;;;;;;;;;;;;28860:408;;;:::o;18687:323::-;18748:7;18976:15;:13;:15::i;:::-;18961:12;;18945:13;;:28;:46;18938:53;;18687:323;:::o;33066:2825::-;33208:27;33238;33257:7;33238:18;:27::i;:::-;33208:57;;33323:4;33282:45;;33298:19;33282:45;;;33278:86;;33336:28;;;;;;;;;;;;;;33278:86;33378:27;33407:23;33434:35;33461:7;33434:26;:35::i;:::-;33377:92;;;;33569:68;33594:15;33611:4;33617:19;:17;:19::i;:::-;33569:24;:68::i;:::-;33564:180;;33657:43;33674:4;33680:19;:17;:19::i;:::-;33657:16;:43::i;:::-;33652:92;;33709:35;;;;;;;;;;;;;;33652:92;33564:180;33775:1;33761:16;;:2;:16;;;33757:52;;;33786:23;;;;;;;;;;;;;;33757:52;33822:43;33844:4;33850:2;33854:7;33863:1;33822:21;:43::i;:::-;33958:15;33955:2;;;34098:1;34077:19;34070:30;33955:2;34495:18;:24;34514:4;34495:24;;;;;;;;;;;;;;;;34493:26;;;;;;;;;;;;34564:18;:22;34583:2;34564:22;;;;;;;;;;;;;;;;34562:24;;;;;;;;;;;34886:146;34923:2;34972:45;34987:4;34993:2;34997:19;34972:14;:45::i;:::-;15086:8;34944:73;34886:18;:146::i;:::-;34857:17;:26;34875:7;34857:26;;;;;;;;;;;:175;;;;35203:1;15086:8;35152:19;:47;:52;35148:627;;;35225:19;35257:1;35247:7;:11;35225:33;;35414:1;35380:17;:30;35398:11;35380:30;;;;;;;;;;;;:35;35376:384;;;35518:13;;35503:11;:28;35499:242;;35698:19;35665:17;:30;35683:11;35665:30;;;;;;;;;;;:52;;;;35499:242;35376:384;35148:627;;35822:7;35818:2;35803:27;;35812:4;35803:27;;;;;;;;;;;;35841:42;35862:4;35868:2;35872:7;35881:1;35841:20;:42::i;:::-;33066:2825;;;;;;:::o;58019:173::-;2051:13;:11;:13::i;:::-;58070:12:::1;58088:10;:15;;58111:21;58088:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58069:68;;;58156:7;58148:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2075:1;58019:173::o:0;35987:193::-;36133:39;36150:4;36156:2;36160:7;36133:39;;;;;;;;;;;;:16;:39::i;:::-;35987:193;;;:::o;55239:39::-;;;:::o;55344:22::-;;;;:::o;57392:108::-;2051:13;:11;:13::i;:::-;57481:11:::1;;57471:7;:21;;;;;;;:::i;:::-;;57392:108:::0;;:::o;57128:256::-;2051:13;:11;:13::i;:::-;57233:16:::1;57217:12;;:32;;57209:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57305:16;57290:12;:31;;;;57339:37;57359:16;57339:37;;;;;;:::i;:::-;;;;;;;;57128:256:::0;:::o;24329:152::-;24401:7;24444:27;24463:7;24444:18;:27::i;:::-;24421:52;;24329:152;;;:::o;57508:81::-;2051:13;:11;:13::i;:::-;57575:6:::1;57568:4;;:13;;;;;;;;;;;;;;;;;;57508:81:::0;:::o;19871:233::-;19943:7;19984:1;19967:19;;:5;:19;;;19963:60;;;19995:28;;;;;;;;;;;;;;19963:60;14030:13;20041:18;:25;20060:5;20041:25;;;;;;;;;;;;;;;;:55;20034:62;;19871:233;;;:::o;2813:103::-;2051:13;:11;:13::i;:::-;2878:30:::1;2905:1;2878:18;:30::i;:::-;2813:103::o:0;2165:87::-;2211:7;2238:6;;;;;;;;;;;2231:13;;2165:87;:::o;56920:200::-;2051:13;:11;:13::i;:::-;57004:9:::1;56995:5;;:18;;56987:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57062:9;57054:5;:17;;;;57089:23;57102:9;57089:23;;;;;;:::i;:::-;;;;;;;;56920:200:::0;:::o;23112:104::-;23168:13;23201:7;23194:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23112:104;:::o;55285:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55178:20::-;;;;:::o;56187:585::-;56279:9;55954:4;;;;;;;;;;;55946:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;56026:12;;56013:9;:25;;56005:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56100:1;56087:9;:14;;56079:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56306:21:::1;56342:5;;56330:9;:17;;;;:::i;:::-;56306:41;;56358:18;56379:25;56393:10;56379:13;:25::i;:::-;56358:46;;56435:1;56421:10;:15;56417:158;;;56482:7;;56469:9;:20;;:94;;56555:7;;56547:5;;:15;;;;:::i;:::-;56530:13;:33;;;;:::i;:::-;56469:94;;;56509:1;56469:94;56453:110;;56417:158;56606:13;56593:9;:26;;56585:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;56690:14;56677:9;56660:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:44;56656:109;;56721:32;56731:10;56743:9;56721;:32::i;:::-;56656:109;56154:1;;56187:585:::0;;:::o;29985:234::-;30132:8;30080:18;:39;30099:19;:17;:19::i;:::-;30080:39;;;;;;;;;;;;;;;:49;30120:8;30080:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30192:8;30156:55;;30171:19;:17;:19::i;:::-;30156:55;;;30202:8;30156:55;;;;;;:::i;:::-;;;;;;;;29985:234;;:::o;36778:407::-;36953:31;36966:4;36972:2;36976:7;36953:12;:31::i;:::-;37017:1;36999:2;:14;;;:19;36995:183;;37038:56;37069:4;37075:2;37079:7;37088:5;37038:30;:56::i;:::-;37033:145;;37122:40;;;;;;;;;;;;;;37033:145;36995:183;36778:407;;;;:::o;57776:235::-;2051:13;:11;:13::i;:::-;57900:14:::1;57887:9;57870:14;:12;:14::i;:::-;:26;;;;:::i;:::-;:44;;57848:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;57971:32;57981:10;57993:9;57971;:32::i;:::-;57776:235:::0;:::o;58461:424::-;58579:13;58615:16;58623:7;58615;:16::i;:::-;58610:59;;58640:29;;;;;;;;;;;;;;58610:59;58682:21;58706:10;:8;:10::i;:::-;58682:34;;58772:1;58753:7;58747:21;:26;;:130;;;;;;;;;;;;;;;;;58817:7;58826:18;58836:7;58826:9;:18::i;:::-;58800:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58747:130;58727:150;;;58461:424;;;:::o;57597:171::-;2051:13;:11;:13::i;:::-;57687:11:::1;57676:7;;:22;;57668:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;57749:11;57739:7;:21;;;;57597:171:::0;:::o;55205:27::-;;;;:::o;30376:164::-;30473:4;30497:18;:25;30516:5;30497:25;;;;;;;;;;;;;;;:35;30523:8;30497:35;;;;;;;;;;;;;;;;;;;;;;;;;30490:42;;30376:164;;;;:::o;58905:241::-;2051:13;:11;:13::i;:::-;58992:1:::1;58981:8;:12;58973:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;59059:14;59049:8;59034:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:39;59026:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;59107:31;59117:10;59129:8;59107:9;:31::i;:::-;58905:241:::0;:::o;3071:201::-;2051:13;:11;:13::i;:::-;3180:1:::1;3160:22;;:8;:22;;;;3152:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3236:28;3255:8;3236:18;:28::i;:::-;3071:201:::0;:::o;55313:24::-;;;;;;;;;;;;;:::o;30798:282::-;30863:4;30919:7;30900:15;:13;:15::i;:::-;:26;;:66;;;;;30953:13;;30943:7;:23;30900:66;:153;;;;;31052:1;14806:8;31004:17;:26;31022:7;31004:26;;;;;;;;;;;;:44;:49;30900:153;30880:173;;30798:282;;;:::o;53106:105::-;53166:7;53193:10;53186:17;;53106:105;:::o;58303:93::-;58360:7;58387:1;58380:8;;58303:93;:::o;25484:1275::-;25551:7;25571:12;25586:7;25571:22;;25654:4;25635:15;:13;:15::i;:::-;:23;25631:1061;;25688:13;;25681:4;:20;25677:1015;;;25726:14;25743:17;:23;25761:4;25743:23;;;;;;;;;;;;25726:40;;25860:1;14806:8;25832:6;:24;:29;25828:845;;;26497:113;26514:1;26504:6;:11;26497:113;;;26557:17;:25;26575:6;;;;;;;26557:25;;;;;;;;;;;;26548:34;;26497:113;;;26643:6;26636:13;;;;;;25828:845;25677:1015;;25631:1061;26720:31;;;;;;;;;;;;;;25484:1275;;;;:::o;31961:485::-;32063:27;32092:23;32133:38;32174:15;:24;32190:7;32174:24;;;;;;;;;;;32133:65;;32351:18;32328:41;;32408:19;32402:26;32383:45;;32313:126;;;;:::o;31189:659::-;31338:11;31503:16;31496:5;31492:28;31483:37;;31663:16;31652:9;31648:32;31635:45;;31813:15;31802:9;31799:30;31791:5;31780:9;31777:20;31774:56;31764:66;;31371:470;;;;;:::o;37847:159::-;;;;;:::o;52415:311::-;52550:7;52570:16;15210:3;52596:19;:41;;52570:68;;15210:3;52664:31;52675:4;52681:2;52685:9;52664:10;:31::i;:::-;52656:40;;:62;;52649:69;;;52415:311;;;;;:::o;27307:450::-;27387:14;27555:16;27548:5;27544:28;27535:37;;27732:5;27718:11;27693:23;27689:41;27686:52;27679:5;27676:63;27666:73;;27423:327;;;;:::o;38671:158::-;;;;;:::o;2330:132::-;2405:12;:10;:12::i;:::-;2394:23;;:7;:5;:7::i;:::-;:23;;;2386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2330:132::o;3432:191::-;3506:16;3525:6;;;;;;;;;;;3506:25;;3551:8;3542:6;;:17;;;;;;;;;;;;;;;;;;3606:8;3575:40;;3596:8;3575:40;;;;;;;;;;;;3432:191;;:::o;20186:178::-;20247:7;14030:13;14168:2;20275:18;:25;20294:5;20275:25;;;;;;;;;;;;;;;;:50;;20274:82;20267:89;;20186:178;;;:::o;19108:296::-;19163:7;19370:15;:13;:15::i;:::-;19354:13;;:31;19347:38;;19108:296;:::o;46938:112::-;47015:27;47025:2;47029:8;47015:27;;;;;;;;;;;;:9;:27::i;:::-;46938:112;;:::o;39269:716::-;39432:4;39478:2;39453:45;;;39499:19;:17;:19::i;:::-;39520:4;39526:7;39535:5;39453:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39449:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39753:1;39736:6;:13;:18;39732:235;;;39782:40;;;;;;;;;;;;;;39732:235;39925:6;39919:13;39910:6;39906:2;39902:15;39895:38;39449:529;39622:54;;;39612:64;;;:6;:64;;;;39605:71;;;39269:716;;;;;;:::o;56798:100::-;56850:13;56883:7;56876:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56798:100;:::o;53313:1745::-;53378:17;53812:4;53805;53799:11;53795:22;53904:1;53898:4;53891:15;53979:4;53976:1;53972:12;53965:19;;54061:1;54056:3;54049:14;54165:3;54404:5;54386:428;54412:1;54386:428;;;54452:1;54447:3;54443:11;54436:18;;54623:2;54617:4;54613:13;54609:2;54605:22;54600:3;54592:36;54717:2;54711:4;54707:13;54699:21;;54784:4;54774:2;;54792:5;;54774:2;54386:428;;;54390:21;54853:3;54848;54844:13;54968:4;54963:3;54959:14;54952:21;;55033:6;55028:3;55021:19;53417:1634;;;;;;:::o;52116:147::-;52253:6;52116:147;;;;;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;46165:689::-;46296:19;46302:2;46306:8;46296:5;:19::i;:::-;46375:1;46357:2;:14;;;:19;46353:483;;46397:11;46411:13;;46397:27;;46443:13;46465:8;46459:3;:14;46443:30;;46492:233;46523:62;46562:1;46566:2;46570:7;;;;;;46579:5;46523:30;:62::i;:::-;46518:167;;46621:40;;;;;;;;;;;;;;46518:167;46720:3;46712:5;:11;46492:233;;46807:3;46790:13;;:20;46786:34;;46812:8;;;46786:34;46353:483;;;46165:689;;;:::o;40447:2966::-;40520:20;40543:13;;40520:36;;40583:1;40571:8;:13;40567:44;;;40593:18;;;;;;;;;;;;;;40567:44;40624:61;40654:1;40658:2;40662:12;40676:8;40624:21;:61::i;:::-;41168:1;14168:2;41138:1;:26;;41137:32;41125:8;:45;41099:18;:22;41118:2;41099:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41447:139;41484:2;41538:33;41561:1;41565:2;41569:1;41538:14;:33::i;:::-;41505:30;41526:8;41505:20;:30::i;:::-;:66;41447:18;:139::i;:::-;41413:17;:31;41431:12;41413:31;;;;;;;;;;;:173;;;;41603:16;41634:11;41663:8;41648:12;:23;41634:37;;42184:16;42180:2;42176:25;42164:37;;42556:12;42516:8;42475:1;42413:25;42354:1;42293;42266:335;42927:1;42913:12;42909:20;42867:346;42968:3;42959:7;42956:16;42867:346;;43186:7;43176:8;43173:1;43146:25;43143:1;43140;43135:59;43021:1;43012:7;43008:15;42997:26;;42867:346;;;42871:77;43258:1;43246:8;:13;43242:45;;;43268:19;;;;;;;;;;;;;;43242:45;43320:3;43304:13;:19;;;;40447:2966;;43345:60;43374:1;43378:2;43382:12;43396:8;43345:20;:60::i;:::-;40447:2966;;;:::o;27859:324::-;27929:14;28162:1;28152:8;28149:15;28123:24;28119:46;28109:56;;28031:145;;;:::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:256::-;4667:6;4716:2;4704:9;4695:7;4691:23;4687:32;4684:2;;;4732:1;4729;4722:12;4684:2;4775:1;4800:50;4842:7;4833:6;4822:9;4818:22;4800:50;:::i;:::-;4790:60;;4746:114;4674:193;;;;:::o;4873:260::-;4931:6;4980:2;4968:9;4959:7;4955:23;4951:32;4948:2;;;4996:1;4993;4986:12;4948:2;5039:1;5064:52;5108:7;5099:6;5088:9;5084:22;5064:52;:::i;:::-;5054:62;;5010:116;4938:195;;;;:::o;5139:282::-;5208:6;5257:2;5245:9;5236:7;5232:23;5228:32;5225:2;;;5273:1;5270;5263:12;5225:2;5316:1;5341:63;5396:7;5387:6;5376:9;5372:22;5341:63;:::i;:::-;5331:73;;5287:127;5215:206;;;;:::o;5427:395::-;5498:6;5506;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5740:65;5797:7;5788:6;5777:9;5773:22;5740:65;:::i;:::-;5722:83;;;;5585:230;5513:309;;;;;:::o;5828:262::-;5887:6;5936:2;5924:9;5915:7;5911:23;5907:32;5904:2;;;5952:1;5949;5942:12;5904:2;5995:1;6020:53;6065:7;6056:6;6045:9;6041:22;6020:53;:::i;:::-;6010:63;;5966:117;5894:196;;;;:::o;6096:118::-;6183:24;6201:5;6183:24;:::i;:::-;6178:3;6171:37;6161:53;;:::o;6220:109::-;6301:21;6316:5;6301:21;:::i;:::-;6296:3;6289:34;6279:50;;:::o;6335:360::-;6421:3;6449:38;6481:5;6449:38;:::i;:::-;6503:70;6566:6;6561:3;6503:70;:::i;:::-;6496:77;;6582:52;6627:6;6622:3;6615:4;6608:5;6604:16;6582:52;:::i;:::-;6659:29;6681:6;6659:29;:::i;:::-;6654:3;6650:39;6643:46;;6425:270;;;;;:::o;6701:364::-;6789:3;6817:39;6850:5;6817:39;:::i;:::-;6872:71;6936:6;6931:3;6872:71;:::i;:::-;6865:78;;6952:52;6997:6;6992:3;6985:4;6978:5;6974:16;6952:52;:::i;:::-;7029:29;7051:6;7029:29;:::i;:::-;7024:3;7020:39;7013:46;;6793:272;;;;;:::o;7071:377::-;7177:3;7205:39;7238:5;7205:39;:::i;:::-;7260:89;7342:6;7337:3;7260:89;:::i;:::-;7253:96;;7358:52;7403:6;7398:3;7391:4;7384:5;7380:16;7358:52;:::i;:::-;7435:6;7430:3;7426:16;7419:23;;7181:267;;;;;:::o;7454:366::-;7596:3;7617:67;7681:2;7676:3;7617:67;:::i;:::-;7610:74;;7693:93;7782:3;7693:93;:::i;:::-;7811:2;7806:3;7802:12;7795:19;;7600:220;;;:::o;7826:366::-;7968:3;7989:67;8053:2;8048:3;7989:67;:::i;:::-;7982:74;;8065:93;8154:3;8065:93;:::i;:::-;8183:2;8178:3;8174:12;8167:19;;7972:220;;;:::o;8198:366::-;8340:3;8361:67;8425:2;8420:3;8361:67;:::i;:::-;8354:74;;8437:93;8526:3;8437:93;:::i;:::-;8555:2;8550:3;8546:12;8539:19;;8344:220;;;:::o;8570:366::-;8712:3;8733:67;8797:2;8792:3;8733:67;:::i;:::-;8726:74;;8809:93;8898:3;8809:93;:::i;:::-;8927:2;8922:3;8918:12;8911:19;;8716:220;;;:::o;8942:366::-;9084:3;9105:67;9169:2;9164:3;9105:67;:::i;:::-;9098:74;;9181:93;9270:3;9181:93;:::i;:::-;9299:2;9294:3;9290:12;9283:19;;9088:220;;;:::o;9314:366::-;9456:3;9477:67;9541:2;9536:3;9477:67;:::i;:::-;9470:74;;9553:93;9642:3;9553:93;:::i;:::-;9671:2;9666:3;9662:12;9655:19;;9460:220;;;:::o;9686:400::-;9846:3;9867:84;9949:1;9944:3;9867:84;:::i;:::-;9860:91;;9960:93;10049:3;9960:93;:::i;:::-;10078:1;10073:3;10069:11;10062:18;;9850:236;;;:::o;10092:366::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10238:220;;;:::o;10464:366::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10610:220;;;:::o;10836:366::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10982:220;;;:::o;11208:398::-;11367:3;11388:83;11469:1;11464:3;11388:83;:::i;:::-;11381:90;;11480:93;11569:3;11480:93;:::i;:::-;11598:1;11593:3;11589:11;11582:18;;11371:235;;;:::o;11612:366::-;11754:3;11775:67;11839:2;11834:3;11775:67;:::i;:::-;11768:74;;11851:93;11940:3;11851:93;:::i;:::-;11969:2;11964:3;11960:12;11953:19;;11758:220;;;:::o;11984:366::-;12126:3;12147:67;12211:2;12206:3;12147:67;:::i;:::-;12140:74;;12223:93;12312:3;12223:93;:::i;:::-;12341:2;12336:3;12332:12;12325:19;;12130:220;;;:::o;12356:118::-;12443:24;12461:5;12443:24;:::i;:::-;12438:3;12431:37;12421:53;;:::o;12480:701::-;12761:3;12783:95;12874:3;12865:6;12783:95;:::i;:::-;12776:102;;12895:95;12986:3;12977:6;12895:95;:::i;:::-;12888:102;;13007:148;13151:3;13007:148;:::i;:::-;13000:155;;13172:3;13165:10;;12765:416;;;;;:::o;13187:379::-;13371:3;13393:147;13536:3;13393:147;:::i;:::-;13386:154;;13557:3;13550:10;;13375:191;;;:::o;13572:222::-;13665:4;13703:2;13692:9;13688:18;13680:26;;13716:71;13784:1;13773:9;13769:17;13760:6;13716:71;:::i;:::-;13670:124;;;;:::o;13800:640::-;13995:4;14033:3;14022:9;14018:19;14010:27;;14047:71;14115:1;14104:9;14100:17;14091:6;14047:71;:::i;:::-;14128:72;14196:2;14185:9;14181:18;14172:6;14128:72;:::i;:::-;14210;14278:2;14267:9;14263:18;14254:6;14210:72;:::i;:::-;14329:9;14323:4;14319:20;14314:2;14303:9;14299:18;14292:48;14357:76;14428:4;14419:6;14357:76;:::i;:::-;14349:84;;14000:440;;;;;;;:::o;14446:210::-;14533:4;14571:2;14560:9;14556:18;14548:26;;14584:65;14646:1;14635:9;14631:17;14622:6;14584:65;:::i;:::-;14538:118;;;;:::o;14662:313::-;14775:4;14813:2;14802:9;14798:18;14790:26;;14862:9;14856:4;14852:20;14848:1;14837:9;14833:17;14826:47;14890:78;14963:4;14954:6;14890:78;:::i;:::-;14882:86;;14780:195;;;;:::o;14981:419::-;15147:4;15185:2;15174:9;15170:18;15162:26;;15234:9;15228:4;15224:20;15220:1;15209:9;15205:17;15198:47;15262:131;15388:4;15262:131;:::i;:::-;15254:139;;15152:248;;;:::o;15406:419::-;15572:4;15610:2;15599:9;15595:18;15587:26;;15659:9;15653:4;15649:20;15645:1;15634:9;15630:17;15623:47;15687:131;15813:4;15687:131;:::i;:::-;15679:139;;15577:248;;;:::o;15831:419::-;15997:4;16035:2;16024:9;16020:18;16012:26;;16084:9;16078:4;16074:20;16070:1;16059:9;16055:17;16048:47;16112:131;16238:4;16112:131;:::i;:::-;16104:139;;16002:248;;;:::o;16256:419::-;16422:4;16460:2;16449:9;16445:18;16437:26;;16509:9;16503:4;16499:20;16495:1;16484:9;16480:17;16473:47;16537:131;16663:4;16537:131;:::i;:::-;16529:139;;16427:248;;;:::o;16681:419::-;16847:4;16885:2;16874:9;16870:18;16862:26;;16934:9;16928:4;16924:20;16920:1;16909:9;16905:17;16898:47;16962:131;17088:4;16962:131;:::i;:::-;16954:139;;16852:248;;;:::o;17106:419::-;17272:4;17310:2;17299:9;17295:18;17287:26;;17359:9;17353:4;17349:20;17345:1;17334:9;17330:17;17323:47;17387:131;17513:4;17387:131;:::i;:::-;17379:139;;17277:248;;;:::o;17531:419::-;17697:4;17735:2;17724:9;17720:18;17712:26;;17784:9;17778:4;17774:20;17770:1;17759:9;17755:17;17748:47;17812:131;17938:4;17812:131;:::i;:::-;17804:139;;17702:248;;;:::o;17956:419::-;18122:4;18160:2;18149:9;18145:18;18137:26;;18209:9;18203:4;18199:20;18195:1;18184:9;18180:17;18173:47;18237:131;18363:4;18237:131;:::i;:::-;18229:139;;18127:248;;;:::o;18381:419::-;18547:4;18585:2;18574:9;18570:18;18562:26;;18634:9;18628:4;18624:20;18620:1;18609:9;18605:17;18598:47;18662:131;18788:4;18662:131;:::i;:::-;18654:139;;18552:248;;;:::o;18806:419::-;18972:4;19010:2;18999:9;18995:18;18987:26;;19059:9;19053:4;19049:20;19045:1;19034:9;19030:17;19023:47;19087:131;19213:4;19087:131;:::i;:::-;19079:139;;18977:248;;;:::o;19231:419::-;19397:4;19435:2;19424:9;19420:18;19412:26;;19484:9;19478:4;19474:20;19470:1;19459:9;19455:17;19448:47;19512:131;19638:4;19512:131;:::i;:::-;19504:139;;19402:248;;;:::o;19656:222::-;19749:4;19787:2;19776:9;19772:18;19764:26;;19800:71;19868:1;19857:9;19853:17;19844:6;19800:71;:::i;:::-;19754:124;;;;:::o;19884:129::-;19918:6;19945:20;;:::i;:::-;19935:30;;19974:33;20002:4;19994:6;19974:33;:::i;:::-;19925:88;;;:::o;20019:75::-;20052:6;20085:2;20079:9;20069:19;;20059:35;:::o;20100:307::-;20161:4;20251:18;20243:6;20240:30;20237:2;;;20273:18;;:::i;:::-;20237:2;20311:29;20333:6;20311:29;:::i;:::-;20303:37;;20395:4;20389;20385:15;20377:23;;20166:241;;;:::o;20413:98::-;20464:6;20498:5;20492:12;20482:22;;20471:40;;;:::o;20517:99::-;20569:6;20603:5;20597:12;20587:22;;20576:40;;;:::o;20622:168::-;20705:11;20739:6;20734:3;20727:19;20779:4;20774:3;20770:14;20755:29;;20717:73;;;;:::o;20796:147::-;20897:11;20934:3;20919:18;;20909:34;;;;:::o;20949:169::-;21033:11;21067:6;21062:3;21055:19;21107:4;21102:3;21098:14;21083:29;;21045:73;;;;:::o;21124:148::-;21226:11;21263:3;21248:18;;21238:34;;;;:::o;21278:305::-;21318:3;21337:20;21355:1;21337:20;:::i;:::-;21332:25;;21371:20;21389:1;21371:20;:::i;:::-;21366:25;;21525:1;21457:66;21453:74;21450:1;21447:81;21444:2;;;21531:18;;:::i;:::-;21444:2;21575:1;21572;21568:9;21561:16;;21322:261;;;;:::o;21589:348::-;21629:7;21652:20;21670:1;21652:20;:::i;:::-;21647:25;;21686:20;21704:1;21686:20;:::i;:::-;21681:25;;21874:1;21806:66;21802:74;21799:1;21796:81;21791:1;21784:9;21777:17;21773:105;21770:2;;;21881:18;;:::i;:::-;21770:2;21929:1;21926;21922:9;21911:20;;21637:300;;;;:::o;21943:191::-;21983:4;22003:20;22021:1;22003:20;:::i;:::-;21998:25;;22037:20;22055:1;22037:20;:::i;:::-;22032:25;;22076:1;22073;22070:8;22067:2;;;22081:18;;:::i;:::-;22067:2;22126:1;22123;22119:9;22111:17;;21988:146;;;;:::o;22140:96::-;22177:7;22206:24;22224:5;22206:24;:::i;:::-;22195:35;;22185:51;;;:::o;22242:90::-;22276:7;22319:5;22312:13;22305:21;22294:32;;22284:48;;;:::o;22338:149::-;22374:7;22414:66;22407:5;22403:78;22392:89;;22382:105;;;:::o;22493:126::-;22530:7;22570:42;22563:5;22559:54;22548:65;;22538:81;;;:::o;22625:77::-;22662:7;22691:5;22680:16;;22670:32;;;:::o;22708:154::-;22792:6;22787:3;22782;22769:30;22854:1;22845:6;22840:3;22836:16;22829:27;22759:103;;;:::o;22868:307::-;22936:1;22946:113;22960:6;22957:1;22954:13;22946:113;;;23045:1;23040:3;23036:11;23030:18;23026:1;23021:3;23017:11;23010:39;22982:2;22979:1;22975:10;22970:15;;22946:113;;;23077:6;23074:1;23071:13;23068:2;;;23157:1;23148:6;23143:3;23139:16;23132:27;23068:2;22917:258;;;;:::o;23181:320::-;23225:6;23262:1;23256:4;23252:12;23242:22;;23309:1;23303:4;23299:12;23330:18;23320:2;;23386:4;23378:6;23374:17;23364:27;;23320:2;23448;23440:6;23437:14;23417:18;23414:38;23411:2;;;23467:18;;:::i;:::-;23411:2;23232:269;;;;:::o;23507:281::-;23590:27;23612:4;23590:27;:::i;:::-;23582:6;23578:40;23720:6;23708:10;23705:22;23684:18;23672:10;23669:34;23666:62;23663:2;;;23731:18;;:::i;:::-;23663:2;23771:10;23767:2;23760:22;23550:238;;;:::o;23794:180::-;23842:77;23839:1;23832:88;23939:4;23936:1;23929:15;23963:4;23960:1;23953:15;23980:180;24028:77;24025:1;24018:88;24125:4;24122:1;24115:15;24149:4;24146:1;24139:15;24166:180;24214:77;24211:1;24204:88;24311:4;24308:1;24301:15;24335:4;24332:1;24325:15;24352:102;24393:6;24444:2;24440:7;24435:2;24428:5;24424:14;24420:28;24410:38;;24400:54;;;:::o;24460:177::-;24600:29;24596:1;24588:6;24584:14;24577:53;24566:71;:::o;24643:175::-;24783:27;24779:1;24771:6;24767:14;24760:51;24749:69;:::o;24824:225::-;24964:34;24960:1;24952:6;24948:14;24941:58;25033:8;25028:2;25020:6;25016:15;25009:33;24930:119;:::o;25055:176::-;25195:28;25191:1;25183:6;25179:14;25172:52;25161:70;:::o;25237:171::-;25377:23;25373:1;25365:6;25361:14;25354:47;25343:65;:::o;25414:168::-;25554:20;25550:1;25542:6;25538:14;25531:44;25520:62;:::o;25588:155::-;25728:7;25724:1;25716:6;25712:14;25705:31;25694:49;:::o;25749:171::-;25889:23;25885:1;25877:6;25873:14;25866:47;25855:65;:::o;25926:182::-;26066:34;26062:1;26054:6;26050:14;26043:58;26032:76;:::o;26114:168::-;26254:20;26250:1;26242:6;26238:14;26231:44;26220:62;:::o;26288:114::-;26394:8;:::o;26408:166::-;26548:18;26544:1;26536:6;26532:14;26525:42;26514:60;:::o;26580:169::-;26720:21;26716:1;26708:6;26704:14;26697:45;26686:63;:::o;26755:122::-;26828:24;26846:5;26828:24;:::i;:::-;26821:5;26818:35;26808:2;;26867:1;26864;26857:12;26808:2;26798:79;:::o;26883:116::-;26953:21;26968:5;26953:21;:::i;:::-;26946:5;26943:32;26933:2;;26989:1;26986;26979:12;26933:2;26923:76;:::o;27005:120::-;27077:23;27094:5;27077:23;:::i;:::-;27070:5;27067:34;27057:2;;27115:1;27112;27105:12;27057:2;27047:78;:::o;27131:122::-;27204:24;27222:5;27204:24;:::i;:::-;27197:5;27194:35;27184:2;;27243:1;27240;27233:12;27184:2;27174:79;:::o

Swarm Source

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