ETH Price: $3,443.75 (-0.98%)
Gas: 4 Gwei

Token

devilvalley (DV)
 

Overview

Max Total Supply

6,666 DV

Holders

1,720

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
gemmabear.eth
Balance
3 DV
0xdf8df10c7c4114de4eb5632e4d7107aea3abd9d0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to devilvalley

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
devilvalleywtfNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/devilvalleywtfNFT.sol


pragma solidity ^0.8.11;



/*

⛥ d̷͍̲̮͕̔̏e̴̫̖͒v̵̳̱̈́̊̇̒i̷̦̺͕̪̪̋͂͛l̷̨͕͔̅̌͋̂͘ṽ̶̢͖̬̩̕ạ̶̛͍͕̱͊̊̃̈́l̶̥̭͇̋̋l̷̨̜̯͆́̃̃ẻ̶͙͎͒̉̽y̴͉͈̮̑͆͑̈̕ ̷̫̺̲̘̾͛͠d̸̪̟̈̎e̶̩͙̹͎̾̋̅v̶̘̓̉̊i̶̬͌̃l̶̞̅͛́͘v̵̛̦͙̬̺̿̅a̶͚̐͛̋͜l̶͖̭̋̌̊ḽ̴̎ẻ̴̖̤̖̭͇̇̾ÿ̵̨̹̬̙́ͅ ̸̛̙̥̝͍d̴͙͆̔̅e̸͍͓͎̖̐v̸̡̻͕͓̦̓͋͌͌ï̸̢̨̗̗l̷͚͙̻̈̈́̏̽ͅṽ̶̳̥̗̹̪͗ả̶̱̗͖̏̍͌̊ĺ̷͎͎̰̜̺̔̈ĺ̵̻͚̬̼̈́̄́ë̵̛̱̄͘͝y̵̨̧̮̥̭̐ ̵̗̭̪̣̯̀͌̍d̴̬̜̐́̆͒ë̸̬́̾̓̃̓v̵̺͈͐͐i̴̢̙̙͓̿̓̚ļ̶͗͛̏͘͝v̷͙͎̩͔̏å̷̧̺͚̲̻̾̇́̒ľ̵͖̥̖̽l̴̨̤̝͌͛̇͐é̵̮̜y
̸̨̛͍͈̑̓̍͠
̷̥͍͘͜ͅd̷̖̲̾̐̾̚è̸͍̤̞͇̇́͌ṿ̸̝͎̀ǐ̶̘̗̆̄̈́̈ͅl̷̝̲̤̈́̽͠ṿ̸̱̔̂̕͝à̸͖̣̈̀͆͂l̴͚͙͒̓͑̓̕l̴̝̽͑͝ĕ̴̜̞̽͠͝y̴̰͗͠ ̴̨͔̞̑d̴͉̫̙̣̭̈́ȩ̷̠̩̓ṽ̸͓̦̹̃̀́̍į̶͖̫͉̒̆͘͝͠l̴͎͂̀̕̕͠v̵̬̽ḁ̸̰̓̀͑̅̓l̶̦̱̦͕͓̇̋̈̂l̷̻̔̿̓̉̔ę̶̏̀̽͝y̷͈͕̳̽͌̊̆ ̵̛͇̮̄̀̊̕d̵͈̘͎̳͉̃̆e̴̻̞̙̼̋v̸̻̞̱̙̽̐̀̒̓ͅĩ̵̻͑̈́͘l̶̨̧̙͖̈́̒̀͒v̵̱̣̯͉͋a̴̢̧̹̋̎l̴̳̟̟̿̄͋̃͝l̶̹̱͉̊̿e̶̛͓̱̲͛y̸̧̡̝̙̳̍̕ ̴̹̈̍d̵̳͈̼̘͐̄̑ē̴̘͂̕v̴̨̬̥̋̈̄̓̓ͅi̵̹̺̠͈͆̅̈́l̸̻̼̔̉͠ͅv̵̡̫͍̝͆̈́ͅå̷̢̲̞̟̞͗͂l̶̨̧̛͑̉̿l̵͙̱͓̖̊̽̓ȇ̵͇̙̓̏̾͝y̶
̵̛̘̝̻̤͕̏͐͝
̷̧̢̬̤͈̐̉͂ď̵̲e̷̱̺̮̗̫̔́v̵̮̼͉̜̐́i̴͎͙͊͂l̴̮͎͌͆͌v̸͇̗̝̩͋̋̃͜ä̴̻̗͍͠͠l̶̮̰͚̫͐̀̇̋̀l̴̛̦̊̇͗͜e̶̛̟̼̦͇̾̂̚ȳ̶̧̻̪̺͕̌̄̕̕ ̶͓̗̮̰̓̎̅̓͊d̵̛̤͇̳͗̿̎e̸̡͖̦̓́͛͌̓ͅv̷̗̣̑̓̿ì̶̯̋̂ļ̶̼̳͉͚̈́̔̑̀v̵̱̲̩̍̆̑͐a̵̟̠̩͌̽͒̆̂l̶̙̍̾ḽ̴̛̼̺̍͗̍ẹ̸̤͘y̵̝̳͈̔͌́́̋ ̷̡̻͇̯̼͐̍d̴̛͎̐é̵̤̳̐v̷̳̟͝i̶̦̬̣̐̈́̈̏l̶̢̘̖͊̑͂v̶̛̱̭̟́ͅa̶̧̳̖̺̕͜l̷̡͈͚̠̮̍̂̀͠͝l̵̖̜͒̓̑̈́̊e̷̠̫̹͇̿͐͛̚͘y̶̯͙̘͒̈́͒͑͋͜ ̶̺̘̝̬͒̄͜ḑ̷̣͍̞̭͛ę̵̣̝̗̠̽̉̀̈v̷̛̹͔̈́̀ǐ̷̻̼l̸̯̱̚v̵̪̀ä̷̠̟́̋́̓̕ļ̷̱̟͇͛̈l̴̺͖̈́͋̓̍e̵̬͌̈́̅͋y̷͙̎͌͂̍̉
̶̬͛̐́̅͝
̸̢̫̬̭͖͛̍̓̇̿d̴̥͔̔͘͘͜e̸͍̱̒͘ͅv̴̨̬̘͖̈̄̏i̶̻̯͎̳̲͆l̶̛̲̩̮̲ͅv̶̢̼̪̊̒͒̈́͜ä̶̤́̒ļ̸͔͖͗̆l̴̥͔͓̰͆͌͋ẹ̶͎̦͝y̵͚͙͉̮͕͂͌̃ ̶̣̗́d̶̹͗̉͌e̸̱͎̾̈́̒͂̚v̸̢̿ȉ̶̢̜͍̫̄l̸̰̜̞͒̆͘v̵̰͍̣̪̖͌͂̄͑a̶͖̖͇͒̈͐ĺ̷̲l̸̛̪̬̹̳͕̃̏ȩ̵͔̥͉͐̏̓͝y̸̯͎̮̺̿͌̃̈́ ̶̨̩̀̓͌͒d̸͉̽̑̿e̵̖̻̋̐v̴̖̅̅̔̈̊i̵̱͓̝͝ļ̴̛v̶̫̬̥̦̮̅â̶̢̍l̶̜̎l̸̰̤̰͕͑͗͂̈́e̶̛͕̫̻͌̅̌y̴̼̟͓̓͛̄ ̷͔̍d̴͚̈́̋̾̌̊ḛ̶̪͑v̸̟̠̄̍̅i̴̫̪̽l̷̝͓͚̀͒͝v̷̦̑a̶͔͕̓̆l̴͇̞̍̎̈́̓͐ľ̵̫e̷͓͗͊͛͜y̷͌̏
̵̢̨̛͈̥̙̉͑̀̾
̸̙͎̗̬̇̄͝ḑ̵̮̣̺͙͊̒́͝e̶̢͌v̵̭̜̮͌͐̾͜i̶̝̘͛͑l̸̢̢̬̘͛̚͝ͅv̴̢͇̖̈́̒͗̇ȃ̴̡̡̳̪͜l̷̺͌͊͝l̸͓̰̦̖̗͋e̵̪͖̖̪͗y̴͉̬͚̫̓̀͜ ̷̡̳͈͍͂̾̂̒͠ď̵̥͕̙͐̾͑̚ë̴͙́̏̆v̷̲̗̓͒̓i̴̛̘̖̣̻̿̏̈l̷̤͛́̒v̶͖̳̖̟̞̓͛á̷̰l̸͓͂̀l̸̘̼͚̤̟͗͌̿̀e̷̘̙͉̯͌y̷̦̩̮̻̜͑́ ̴̣̊͊̅͘d̸̬̼͊è̷͇̫̗͋̓ṿ̶̘͈̑̓̌́i̴̭͖͋́̃̕ḻ̵͓̭̗̐̔̎͛̒v̷̞͖̖͖͋͑̈́͊͜͝ą̴̛̮̼͌̍̈́͑l̷̬̃̉̓̈́ļ̶̱̗̦͌ë̵͎͓̣̞̗́̈́y̶̨͚̠̘̯̎́̆͑̕ ̷̢̭̩͒̔̓̈́̃ḑ̷̭̲̲̎͠è̴͚v̵̦͇͕̞̉̂͜i̷̬̊͛ľ̶͖̫̼̉͂v̷͓̲̓a̵̛̭̫̯͕̽͛͆̇ͅl̴͈͙̱̱̀̈l̸̼̰͍͍̔̆̔̓̂e̵̩̔̿̿y


*/



contract devilvalleywtfNFT is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;

  uint256 public mintPrice = 0.00666 ether;
  uint256 public MAX_SUPPLY = 6666;
  uint256 public FREE_MAX_SUPPLY = 2222;
  uint256 private reserveAtATime = 66;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 66;
  uint256 public maxAllowedTokensPerPurchase = 5;
  uint256 public maxAllowedTokensPerWallet = 5;
  uint256 public FREE_AllowedTokensPerWallet = 1;

  address private Address1 = 0x56b4cC5eF8A95F88868F9e44EfC5371fDd1Fc1e3;
  address private Address2 = 0xfE1cD162F07A70914584c24437Dfa88ef1212807;


  constructor(string memory baseURI) ERC721A("devilvalley", "DV") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }
  
  function toggleSale() public onlyAuthorized {
    isActive = !isActive;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

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

  function setMaximumAllowedTokensPerTx(uint256 _count) public onlyAuthorized {
    maxAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maxAllowedTokensPerWallet = _count;
  }

  function setFreeMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    FREE_AllowedTokensPerWallet = _count;
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    MAX_SUPPLY = maxMintSupply;
  }

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");

     _safeMint(msg.sender, reserveAtATime);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyAuthorized {
    uint256 supply = totalSupply();

    require(supply <= MAX_SUPPLY, "Total supply spent.");
    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i],_count);
    }
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
      require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
      require(_count <= maxAllowedTokensPerPurchase,"Exceeds maximum allowed tokens");
      require(balanceOf(msg.sender) + _count <= maxAllowedTokensPerWallet,"Exceeds maximum tokens allowed per wallet");

      if(balanceOf(msg.sender) < FREE_AllowedTokensPerWallet && mintIndex < FREE_MAX_SUPPLY) {
          require(msg.value >= mintPrice*(_count - FREE_AllowedTokensPerWallet), "insufficient funds");
      } else {
        require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent.");
      }
    }

    _safeMint(msg.sender, _count);
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(Address1).transfer((balance * 8500) / 10000);
    payable(Address2).transfer((balance * 1500) / 10000);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_AllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506617a93c16344000600b55611a0a600c556108ae600d556042600e556000600f5560426010556005601155600560125560016013557356b4cc5ef8a95f88868f9e44efc5371fdd1fc1e3601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fe1cd162f07a70914584c24437dfa88ef1212807601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010b57600080fd5b5060405162003d7738038062003d778339818101604052810190620001319190620005cd565b6040518060400160405280600b81526020017f646576696c76616c6c65790000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44560000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001b592919062000380565b508060039080519060200190620001ce92919062000380565b50620001df6200021f60201b60201c565b600081905550505062000207620001fb6200022460201b60201c565b6200022c60201b60201c565b6200021881620002f260201b60201c565b5062000683565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620003196200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033a57600080fd5b80600990805190602001906200035292919062000380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038e906200064d565b90600052602060002090601f016020900481019282620003b25760008555620003fe565b82601f10620003cd57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fd578251825591602001919060010190620003e0565b5b5090506200040d919062000411565b5090565b5b808211156200042c57600081600090555060010162000412565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000499826200044e565b810181811067ffffffffffffffff82111715620004bb57620004ba6200045f565b5b80604052505050565b6000620004d062000430565b9050620004de82826200048e565b919050565b600067ffffffffffffffff8211156200050157620005006200045f565b5b6200050c826200044e565b9050602081019050919050565b60005b83811015620005395780820151818401526020810190506200051c565b8381111562000549576000848401525b50505050565b6000620005666200056084620004e3565b620004c4565b90508281526020810184848401111562000585576200058462000449565b5b6200059284828562000519565b509392505050565b600082601f830112620005b257620005b162000444565b5b8151620005c48482602086016200054f565b91505092915050565b600060208284031215620005e657620005e56200043a565b5b600082015167ffffffffffffffff8111156200060757620006066200043f565b5b62000615848285016200059a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066657607f821691505b602082108114156200067d576200067c6200061e565b5b50919050565b6136e480620006936000396000f3fe60806040526004361061021a5760003560e01c80637389fbb711610123578063b88d4fde116100ab578063ea6eb8361161006f578063ea6eb83614610778578063ee0781b8146107a1578063f2fde38b146107ca578063f6c9d9e3146107f3578063fb7e6ccb1461081c5761021a565b8063b88d4fde14610681578063bbb7438d146106aa578063c87b56dd146106d3578063e0a7051514610710578063e985e9c51461073b5761021a565b80638da5cb5b116100f25780638da5cb5b146105bd57806391b7f5ed146105e857806395d89b4114610611578063a0712d681461063c578063a22cb465146106585761021a565b80637389fbb7146105275780637d8966e4146105505780638069876d1461056757806384939ac2146105925761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104545780636817c76c1461049157806370a08231146104bc578063715018a6146104f957806371e3500c146105105761021a565b80633ccfd60b146103c257806342842e0e146103d957806355f804b31461040257806356a87caa1461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806322f3e2d41461034357806323b872dd1461036e57806332cb6b0c146103975761021a565b806301ffc9a71461021f5780630691987b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c2565b610845565b604051610253919061270a565b60405180910390f35b34801561026857600080fd5b506102716108d7565b60405161027e919061273e565b60405180910390f35b34801561029357600080fd5b5061029c6108dd565b6040516102a991906127f2565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612840565b61096f565b6040516102e691906128ae565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906128f5565b6109eb565b005b34801561032457600080fd5b5061032d610b2c565b60405161033a919061273e565b60405180910390f35b34801561034f57600080fd5b50610358610b43565b604051610365919061270a565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612935565b610b56565b005b3480156103a357600080fd5b506103ac610e7b565b6040516103b9919061273e565b60405180910390f35b3480156103ce57600080fd5b506103d7610e81565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612935565b610fce565b005b34801561040e57600080fd5b5061042960048036038101906104249190612abd565b610fee565b005b34801561043757600080fd5b50610452600480360381019061044d9190612840565b611047565b005b34801561046057600080fd5b5061047b60048036038101906104769190612840565b611090565b60405161048891906128ae565b60405180910390f35b34801561049d57600080fd5b506104a66110a2565b6040516104b3919061273e565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190612b06565b6110a8565b6040516104f0919061273e565b60405180910390f35b34801561050557600080fd5b5061050e611161565b005b34801561051c57600080fd5b506105256111e9565b005b34801561053357600080fd5b5061054e60048036038101906105499190612840565b61127d565b005b34801561055c57600080fd5b506105656112c6565b005b34801561057357600080fd5b5061057c611331565b604051610589919061273e565b60405180910390f35b34801561059e57600080fd5b506105a7611337565b6040516105b4919061273e565b60405180910390f35b3480156105c957600080fd5b506105d261133d565b6040516105df91906128ae565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612840565b611367565b005b34801561061d57600080fd5b506106266113b0565b60405161063391906127f2565b60405180910390f35b61065660048036038101906106519190612840565b611442565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612b5f565b6116f1565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612c40565b611869565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612840565b6118dc565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612840565b611925565b60405161070791906127f2565b60405180910390f35b34801561071c57600080fd5b506107256119c4565b604051610732919061273e565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612cc3565b6119ca565b60405161076f919061270a565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612840565b611a5e565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612840565b611aa7565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612b06565b611af0565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190612840565b611be8565b005b34801561082857600080fd5b50610843600480360381019061083e9190612d63565b611c31565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b6060600280546108ec90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612df2565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611e01565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f682611090565b90508073ffffffffffffffffffffffffffffffffffffffff16610a17611e60565b73ffffffffffffffffffffffffffffffffffffffff1614610a7a57610a4381610a3e611e60565b6119ca565b610a79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b36611e68565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610b6182611e6d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bd484611f3b565b91509150610bea8187610be5611e60565b611f5d565b610c3657610bff86610bfa611e60565b6119ca565b610c35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610caa8686866001611fa1565b8015610cb557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8385610d5f888887611fa7565b7c020000000000000000000000000000000000000000000000000000000017611fcf565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e0b576000600185019050600060046000838152602001908152602001600020541415610e09576000548114610e08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e738686866001611ffa565b505050505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610ea061133d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec057600080fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061213484610f129190612e53565b610f1c9190612edc565b9081150290604051600060405180830381858888f19350505050158015610f47573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc84610f959190612e53565b610f9f9190612edc565b9081150290604051600060405180830381858888f19350505050158015610fca573d6000803e3d6000fd5b5050565b610fe983838360405180602001604052806000815250611869565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661100d61133d565b73ffffffffffffffffffffffffffffffffffffffff161461102d57600080fd5b80600990805190602001906110439291906125b3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661106661133d565b73ffffffffffffffffffffffffffffffffffffffff161461108657600080fd5b8060108190555050565b600061109b82611e6d565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611110576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611169612000565b73ffffffffffffffffffffffffffffffffffffffff1661118761133d565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612f59565b60405180910390fd5b6111e76000612008565b565b3373ffffffffffffffffffffffffffffffffffffffff1661120861133d565b73ffffffffffffffffffffffffffffffffffffffff161461122857600080fd5b601054600f54111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690612fc5565b60405180910390fd5b61127b33600e546120ce565b565b3373ffffffffffffffffffffffffffffffffffffffff1661129c61133d565b73ffffffffffffffffffffffffffffffffffffffff16146112bc57600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112e561133d565b73ffffffffffffffffffffffffffffffffffffffff161461130557600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600d5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661138661133d565b73ffffffffffffffffffffffffffffffffffffffff16146113a657600080fd5b80600b8190555050565b6060600380546113bf90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546113eb90612df2565b80156114385780601f1061140d57610100808354040283529160200191611438565b820191906000526020600020905b81548152906001019060200180831161141b57829003601f168201915b5050505050905090565b600c5461144d610b2c565b111561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613031565b60405180910390fd5b6000611498610b2c565b90506114a261133d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116e357600a60009054906101000a900460ff16611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a9061309d565b60405180910390fd5b600c54828261153291906130bd565b1115611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061315f565b60405180910390fd5b6011548211156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af906131cb565b60405180910390fd5b601254826115c5336110a8565b6115cf91906130bd565b1115611610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116079061325d565b60405180910390fd5b60135461161c336110a8565b10801561162a5750600d5481105b15611691576013548261163d919061327d565b600b5461164a9190612e53565b34101561168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906132fd565b60405180910390fd5b6116e2565b81600b5461169f9190612e53565b3410156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613369565b60405180910390fd5b5b5b6116ed33836120ce565b5050565b6116f9611e60565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061176b611e60565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611818611e60565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185d919061270a565b60405180910390a35050565b611874848484610b56565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118d65761189f848484846120ec565b6118d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff166118fb61133d565b73ffffffffffffffffffffffffffffffffffffffff161461191b57600080fd5b8060118190555050565b606061193082611e01565b611966576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061197061223d565b905060008151141561199157604051806020016040528060008152506119bc565b8061199b846122cf565b6040516020016119ac9291906133c5565b6040516020818303038152906040525b915050919050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611a7d61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a9d57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ac661133d565b73ffffffffffffffffffffffffffffffffffffffff1614611ae657600080fd5b8060138190555050565b611af8612000565b73ffffffffffffffffffffffffffffffffffffffff16611b1661133d565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390612f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061345b565b60405180910390fd5b611be581612008565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611c0761133d565b73ffffffffffffffffffffffffffffffffffffffff1614611c2757600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611c5061133d565b73ffffffffffffffffffffffffffffffffffffffff1614611c7057600080fd5b6000611c7a610b2c565b9050600c54811115611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906134c7565b60405180910390fd5b600c548482611cd091906130bd565b1115611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061315f565b60405180910390fd5b60005b83839050811015611dfa57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611d4a57611d496134e7565b5b9050602002016020810190611d5f9190612b06565b73ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90613562565b60405180910390fd5b611de7848483818110611dcc57611dcb6134e7565b5b9050602002016020810190611de19190612b06565b866120ce565b8080611df290613582565b915050611d14565b5050505050565b600081611e0c611e68565b11158015611e1b575060005482105b8015611e59575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e7c611e68565b11611f0457600054811015611f035760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f01575b6000811415611ef7576004600083600190039350838152602001908152602001600020549050611ecc565b8092505050611f36565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fbe868684612329565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120e8828260405180602001604052806000815250612332565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612112611e60565b8786866040518563ffffffff1660e01b81526004016121349493929190613620565b6020604051808303816000875af192505050801561217057506040513d601f19601f8201168201806040525081019061216d9190613681565b60015b6121ea573d80600081146121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b506000815114156121e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461224c90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461227890612df2565b80156122c55780601f1061229a576101008083540402835291602001916122c5565b820191906000526020600020905b8154815290600101906020018083116122a857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561231557600183039250600a81066030018353600a810490506122f5565b508181036020830392508083525050919050565b60009392505050565b61233c83836123cf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ca57600080549050600083820390505b61237c60008683806001019450866120ec565b6123b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123695781600054146123c757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612477576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124846000848385611fa1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124fb836124ec6000866000611fa7565b6124f5856125a3565b17611fcf565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061251f5780600081905550505061259e6000848385611ffa565b505050565b60006001821460e11b9050919050565b8280546125bf90612df2565b90600052602060002090601f0160209004810192826125e15760008555612628565b82601f106125fa57805160ff1916838001178555612628565b82800160010185558215612628579182015b8281111561262757825182559160200191906001019061260c565b5b5090506126359190612639565b5090565b5b8082111561265257600081600090555060010161263a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61269f8161266a565b81146126aa57600080fd5b50565b6000813590506126bc81612696565b92915050565b6000602082840312156126d8576126d7612660565b5b60006126e6848285016126ad565b91505092915050565b60008115159050919050565b612704816126ef565b82525050565b600060208201905061271f60008301846126fb565b92915050565b6000819050919050565b61273881612725565b82525050565b6000602082019050612753600083018461272f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612793578082015181840152602081019050612778565b838111156127a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006127c482612759565b6127ce8185612764565b93506127de818560208601612775565b6127e7816127a8565b840191505092915050565b6000602082019050818103600083015261280c81846127b9565b905092915050565b61281d81612725565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b60006020828403121561285657612855612660565b5b60006128648482850161282b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128988261286d565b9050919050565b6128a88161288d565b82525050565b60006020820190506128c3600083018461289f565b92915050565b6128d28161288d565b81146128dd57600080fd5b50565b6000813590506128ef816128c9565b92915050565b6000806040838503121561290c5761290b612660565b5b600061291a858286016128e0565b925050602061292b8582860161282b565b9150509250929050565b60008060006060848603121561294e5761294d612660565b5b600061295c868287016128e0565b935050602061296d868287016128e0565b925050604061297e8682870161282b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ca826127a8565b810181811067ffffffffffffffff821117156129e9576129e8612992565b5b80604052505050565b60006129fc612656565b9050612a0882826129c1565b919050565b600067ffffffffffffffff821115612a2857612a27612992565b5b612a31826127a8565b9050602081019050919050565b82818337600083830152505050565b6000612a60612a5b84612a0d565b6129f2565b905082815260208101848484011115612a7c57612a7b61298d565b5b612a87848285612a3e565b509392505050565b600082601f830112612aa457612aa3612988565b5b8135612ab4848260208601612a4d565b91505092915050565b600060208284031215612ad357612ad2612660565b5b600082013567ffffffffffffffff811115612af157612af0612665565b5b612afd84828501612a8f565b91505092915050565b600060208284031215612b1c57612b1b612660565b5b6000612b2a848285016128e0565b91505092915050565b612b3c816126ef565b8114612b4757600080fd5b50565b600081359050612b5981612b33565b92915050565b60008060408385031215612b7657612b75612660565b5b6000612b84858286016128e0565b9250506020612b9585828601612b4a565b9150509250929050565b600067ffffffffffffffff821115612bba57612bb9612992565b5b612bc3826127a8565b9050602081019050919050565b6000612be3612bde84612b9f565b6129f2565b905082815260208101848484011115612bff57612bfe61298d565b5b612c0a848285612a3e565b509392505050565b600082601f830112612c2757612c26612988565b5b8135612c37848260208601612bd0565b91505092915050565b60008060008060808587031215612c5a57612c59612660565b5b6000612c68878288016128e0565b9450506020612c79878288016128e0565b9350506040612c8a8782880161282b565b925050606085013567ffffffffffffffff811115612cab57612caa612665565b5b612cb787828801612c12565b91505092959194509250565b60008060408385031215612cda57612cd9612660565b5b6000612ce8858286016128e0565b9250506020612cf9858286016128e0565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612d2357612d22612988565b5b8235905067ffffffffffffffff811115612d4057612d3f612d03565b5b602083019150836020820283011115612d5c57612d5b612d08565b5b9250929050565b600080600060408486031215612d7c57612d7b612660565b5b6000612d8a8682870161282b565b935050602084013567ffffffffffffffff811115612dab57612daa612665565b5b612db786828701612d0d565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0a57607f821691505b60208210811415612e1e57612e1d612dc3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e82612725565b9150612e6983612725565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea257612ea1612e24565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ee782612725565b9150612ef283612725565b925082612f0257612f01612ead565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f43602083612764565b9150612f4e82612f0d565b602082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612faf601b83612764565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b600061301b600f83612764565b915061302682612fe5565b602082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613087601d83612764565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b60006130c882612725565b91506130d383612725565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310857613107612e24565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613149601683612764565b915061315482613113565b602082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006131b5601e83612764565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000613247602983612764565b9150613252826131eb565b604082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b600061328882612725565b915061329383612725565b9250828210156132a6576132a5612e24565b5b828203905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006132e7601283612764565b91506132f2826132b1565b602082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613353601d83612764565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b600081905092915050565b600061339f82612759565b6133a98185613389565b93506133b9818560208601612775565b80840191505092915050565b60006133d18285613394565b91506133dd8284613394565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613445602683612764565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006134b1601383612764565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b600061354c601883612764565b915061355782613516565b602082019050919050565b6000602082019050818103600083015261357b8161353f565b9050919050565b600061358d82612725565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c0576135bf612e24565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006135f2826135cb565b6135fc81856135d6565b935061360c818560208601612775565b613615816127a8565b840191505092915050565b6000608082019050613635600083018761289f565b613642602083018661289f565b61364f604083018561272f565b818103606083015261366181846135e7565b905095945050505050565b60008151905061367b81612696565b92915050565b60006020828403121561369757613696612660565b5b60006136a58482850161366c565b9150509291505056fea26469706673582212206a10d211b0b65f64975894bda90f8401f41568612c0427e8f97a6edb022cbce364736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637389fbb711610123578063b88d4fde116100ab578063ea6eb8361161006f578063ea6eb83614610778578063ee0781b8146107a1578063f2fde38b146107ca578063f6c9d9e3146107f3578063fb7e6ccb1461081c5761021a565b8063b88d4fde14610681578063bbb7438d146106aa578063c87b56dd146106d3578063e0a7051514610710578063e985e9c51461073b5761021a565b80638da5cb5b116100f25780638da5cb5b146105bd57806391b7f5ed146105e857806395d89b4114610611578063a0712d681461063c578063a22cb465146106585761021a565b80637389fbb7146105275780637d8966e4146105505780638069876d1461056757806384939ac2146105925761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104545780636817c76c1461049157806370a08231146104bc578063715018a6146104f957806371e3500c146105105761021a565b80633ccfd60b146103c257806342842e0e146103d957806355f804b31461040257806356a87caa1461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806322f3e2d41461034357806323b872dd1461036e57806332cb6b0c146103975761021a565b806301ffc9a71461021f5780630691987b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c2565b610845565b604051610253919061270a565b60405180910390f35b34801561026857600080fd5b506102716108d7565b60405161027e919061273e565b60405180910390f35b34801561029357600080fd5b5061029c6108dd565b6040516102a991906127f2565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612840565b61096f565b6040516102e691906128ae565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906128f5565b6109eb565b005b34801561032457600080fd5b5061032d610b2c565b60405161033a919061273e565b60405180910390f35b34801561034f57600080fd5b50610358610b43565b604051610365919061270a565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612935565b610b56565b005b3480156103a357600080fd5b506103ac610e7b565b6040516103b9919061273e565b60405180910390f35b3480156103ce57600080fd5b506103d7610e81565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612935565b610fce565b005b34801561040e57600080fd5b5061042960048036038101906104249190612abd565b610fee565b005b34801561043757600080fd5b50610452600480360381019061044d9190612840565b611047565b005b34801561046057600080fd5b5061047b60048036038101906104769190612840565b611090565b60405161048891906128ae565b60405180910390f35b34801561049d57600080fd5b506104a66110a2565b6040516104b3919061273e565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190612b06565b6110a8565b6040516104f0919061273e565b60405180910390f35b34801561050557600080fd5b5061050e611161565b005b34801561051c57600080fd5b506105256111e9565b005b34801561053357600080fd5b5061054e60048036038101906105499190612840565b61127d565b005b34801561055c57600080fd5b506105656112c6565b005b34801561057357600080fd5b5061057c611331565b604051610589919061273e565b60405180910390f35b34801561059e57600080fd5b506105a7611337565b6040516105b4919061273e565b60405180910390f35b3480156105c957600080fd5b506105d261133d565b6040516105df91906128ae565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612840565b611367565b005b34801561061d57600080fd5b506106266113b0565b60405161063391906127f2565b60405180910390f35b61065660048036038101906106519190612840565b611442565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612b5f565b6116f1565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612c40565b611869565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612840565b6118dc565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612840565b611925565b60405161070791906127f2565b60405180910390f35b34801561071c57600080fd5b506107256119c4565b604051610732919061273e565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612cc3565b6119ca565b60405161076f919061270a565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612840565b611a5e565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190612840565b611aa7565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612b06565b611af0565b005b3480156107ff57600080fd5b5061081a60048036038101906108159190612840565b611be8565b005b34801561082857600080fd5b50610843600480360381019061083e9190612d63565b611c31565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b6060600280546108ec90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612df2565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611e01565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f682611090565b90508073ffffffffffffffffffffffffffffffffffffffff16610a17611e60565b73ffffffffffffffffffffffffffffffffffffffff1614610a7a57610a4381610a3e611e60565b6119ca565b610a79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b36611e68565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610b6182611e6d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bd484611f3b565b91509150610bea8187610be5611e60565b611f5d565b610c3657610bff86610bfa611e60565b6119ca565b610c35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610caa8686866001611fa1565b8015610cb557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8385610d5f888887611fa7565b7c020000000000000000000000000000000000000000000000000000000017611fcf565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e0b576000600185019050600060046000838152602001908152602001600020541415610e09576000548114610e08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e738686866001611ffa565b505050505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610ea061133d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec057600080fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271061213484610f129190612e53565b610f1c9190612edc565b9081150290604051600060405180830381858888f19350505050158015610f47573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc84610f959190612e53565b610f9f9190612edc565b9081150290604051600060405180830381858888f19350505050158015610fca573d6000803e3d6000fd5b5050565b610fe983838360405180602001604052806000815250611869565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661100d61133d565b73ffffffffffffffffffffffffffffffffffffffff161461102d57600080fd5b80600990805190602001906110439291906125b3565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661106661133d565b73ffffffffffffffffffffffffffffffffffffffff161461108657600080fd5b8060108190555050565b600061109b82611e6d565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611110576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611169612000565b73ffffffffffffffffffffffffffffffffffffffff1661118761133d565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490612f59565b60405180910390fd5b6111e76000612008565b565b3373ffffffffffffffffffffffffffffffffffffffff1661120861133d565b73ffffffffffffffffffffffffffffffffffffffff161461122857600080fd5b601054600f54111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690612fc5565b60405180910390fd5b61127b33600e546120ce565b565b3373ffffffffffffffffffffffffffffffffffffffff1661129c61133d565b73ffffffffffffffffffffffffffffffffffffffff16146112bc57600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112e561133d565b73ffffffffffffffffffffffffffffffffffffffff161461130557600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600d5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661138661133d565b73ffffffffffffffffffffffffffffffffffffffff16146113a657600080fd5b80600b8190555050565b6060600380546113bf90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546113eb90612df2565b80156114385780601f1061140d57610100808354040283529160200191611438565b820191906000526020600020905b81548152906001019060200180831161141b57829003601f168201915b5050505050905090565b600c5461144d610b2c565b111561148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613031565b60405180910390fd5b6000611498610b2c565b90506114a261133d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116e357600a60009054906101000a900460ff16611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a9061309d565b60405180910390fd5b600c54828261153291906130bd565b1115611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061315f565b60405180910390fd5b6011548211156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af906131cb565b60405180910390fd5b601254826115c5336110a8565b6115cf91906130bd565b1115611610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116079061325d565b60405180910390fd5b60135461161c336110a8565b10801561162a5750600d5481105b15611691576013548261163d919061327d565b600b5461164a9190612e53565b34101561168c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611683906132fd565b60405180910390fd5b6116e2565b81600b5461169f9190612e53565b3410156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613369565b60405180910390fd5b5b5b6116ed33836120ce565b5050565b6116f9611e60565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061176b611e60565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611818611e60565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185d919061270a565b60405180910390a35050565b611874848484610b56565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118d65761189f848484846120ec565b6118d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff166118fb61133d565b73ffffffffffffffffffffffffffffffffffffffff161461191b57600080fd5b8060118190555050565b606061193082611e01565b611966576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061197061223d565b905060008151141561199157604051806020016040528060008152506119bc565b8061199b846122cf565b6040516020016119ac9291906133c5565b6040516020818303038152906040525b915050919050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611a7d61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a9d57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ac661133d565b73ffffffffffffffffffffffffffffffffffffffff1614611ae657600080fd5b8060138190555050565b611af8612000565b73ffffffffffffffffffffffffffffffffffffffff16611b1661133d565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390612f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061345b565b60405180910390fd5b611be581612008565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611c0761133d565b73ffffffffffffffffffffffffffffffffffffffff1614611c2757600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611c5061133d565b73ffffffffffffffffffffffffffffffffffffffff1614611c7057600080fd5b6000611c7a610b2c565b9050600c54811115611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb8906134c7565b60405180910390fd5b600c548482611cd091906130bd565b1115611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d089061315f565b60405180910390fd5b60005b83839050811015611dfa57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611d4a57611d496134e7565b5b9050602002016020810190611d5f9190612b06565b73ffffffffffffffffffffffffffffffffffffffff161415611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90613562565b60405180910390fd5b611de7848483818110611dcc57611dcb6134e7565b5b9050602002016020810190611de19190612b06565b866120ce565b8080611df290613582565b915050611d14565b5050505050565b600081611e0c611e68565b11158015611e1b575060005482105b8015611e59575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e7c611e68565b11611f0457600054811015611f035760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f01575b6000811415611ef7576004600083600190039350838152602001908152602001600020549050611ecc565b8092505050611f36565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fbe868684612329565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120e8828260405180602001604052806000815250612332565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612112611e60565b8786866040518563ffffffff1660e01b81526004016121349493929190613620565b6020604051808303816000875af192505050801561217057506040513d601f19601f8201168201806040525081019061216d9190613681565b60015b6121ea573d80600081146121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b506000815114156121e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461224c90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461227890612df2565b80156122c55780601f1061229a576101008083540402835291602001916122c5565b820191906000526020600020905b8154815290600101906020018083116122a857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561231557600183039250600a81066030018353600a810490506122f5565b508181036020830392508083525050919050565b60009392505050565b61233c83836123cf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ca57600080549050600083820390505b61237c60008683806001019450866120ec565b6123b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123695781600054146123c757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612477576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124846000848385611fa1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124fb836124ec6000866000611fa7565b6124f5856125a3565b17611fcf565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061251f5780600081905550505061259e6000848385611ffa565b505050565b60006001821460e11b9050919050565b8280546125bf90612df2565b90600052602060002090601f0160209004810192826125e15760008555612628565b82601f106125fa57805160ff1916838001178555612628565b82800160010185558215612628579182015b8281111561262757825182559160200191906001019061260c565b5b5090506126359190612639565b5090565b5b8082111561265257600081600090555060010161263a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61269f8161266a565b81146126aa57600080fd5b50565b6000813590506126bc81612696565b92915050565b6000602082840312156126d8576126d7612660565b5b60006126e6848285016126ad565b91505092915050565b60008115159050919050565b612704816126ef565b82525050565b600060208201905061271f60008301846126fb565b92915050565b6000819050919050565b61273881612725565b82525050565b6000602082019050612753600083018461272f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612793578082015181840152602081019050612778565b838111156127a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006127c482612759565b6127ce8185612764565b93506127de818560208601612775565b6127e7816127a8565b840191505092915050565b6000602082019050818103600083015261280c81846127b9565b905092915050565b61281d81612725565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b60006020828403121561285657612855612660565b5b60006128648482850161282b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128988261286d565b9050919050565b6128a88161288d565b82525050565b60006020820190506128c3600083018461289f565b92915050565b6128d28161288d565b81146128dd57600080fd5b50565b6000813590506128ef816128c9565b92915050565b6000806040838503121561290c5761290b612660565b5b600061291a858286016128e0565b925050602061292b8582860161282b565b9150509250929050565b60008060006060848603121561294e5761294d612660565b5b600061295c868287016128e0565b935050602061296d868287016128e0565b925050604061297e8682870161282b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ca826127a8565b810181811067ffffffffffffffff821117156129e9576129e8612992565b5b80604052505050565b60006129fc612656565b9050612a0882826129c1565b919050565b600067ffffffffffffffff821115612a2857612a27612992565b5b612a31826127a8565b9050602081019050919050565b82818337600083830152505050565b6000612a60612a5b84612a0d565b6129f2565b905082815260208101848484011115612a7c57612a7b61298d565b5b612a87848285612a3e565b509392505050565b600082601f830112612aa457612aa3612988565b5b8135612ab4848260208601612a4d565b91505092915050565b600060208284031215612ad357612ad2612660565b5b600082013567ffffffffffffffff811115612af157612af0612665565b5b612afd84828501612a8f565b91505092915050565b600060208284031215612b1c57612b1b612660565b5b6000612b2a848285016128e0565b91505092915050565b612b3c816126ef565b8114612b4757600080fd5b50565b600081359050612b5981612b33565b92915050565b60008060408385031215612b7657612b75612660565b5b6000612b84858286016128e0565b9250506020612b9585828601612b4a565b9150509250929050565b600067ffffffffffffffff821115612bba57612bb9612992565b5b612bc3826127a8565b9050602081019050919050565b6000612be3612bde84612b9f565b6129f2565b905082815260208101848484011115612bff57612bfe61298d565b5b612c0a848285612a3e565b509392505050565b600082601f830112612c2757612c26612988565b5b8135612c37848260208601612bd0565b91505092915050565b60008060008060808587031215612c5a57612c59612660565b5b6000612c68878288016128e0565b9450506020612c79878288016128e0565b9350506040612c8a8782880161282b565b925050606085013567ffffffffffffffff811115612cab57612caa612665565b5b612cb787828801612c12565b91505092959194509250565b60008060408385031215612cda57612cd9612660565b5b6000612ce8858286016128e0565b9250506020612cf9858286016128e0565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612d2357612d22612988565b5b8235905067ffffffffffffffff811115612d4057612d3f612d03565b5b602083019150836020820283011115612d5c57612d5b612d08565b5b9250929050565b600080600060408486031215612d7c57612d7b612660565b5b6000612d8a8682870161282b565b935050602084013567ffffffffffffffff811115612dab57612daa612665565b5b612db786828701612d0d565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0a57607f821691505b60208210811415612e1e57612e1d612dc3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e82612725565b9150612e6983612725565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea257612ea1612e24565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ee782612725565b9150612ef283612725565b925082612f0257612f01612ead565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f43602083612764565b9150612f4e82612f0d565b602082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612faf601b83612764565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b600061301b600f83612764565b915061302682612fe5565b602082019050919050565b6000602082019050818103600083015261304a8161300e565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613087601d83612764565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b60006130c882612725565b91506130d383612725565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310857613107612e24565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613149601683612764565b915061315482613113565b602082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006131b5601e83612764565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b6000613247602983612764565b9150613252826131eb565b604082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b600061328882612725565b915061329383612725565b9250828210156132a6576132a5612e24565b5b828203905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006132e7601283612764565b91506132f2826132b1565b602082019050919050565b60006020820190508181036000830152613316816132da565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613353601d83612764565b915061335e8261331d565b602082019050919050565b6000602082019050818103600083015261338281613346565b9050919050565b600081905092915050565b600061339f82612759565b6133a98185613389565b93506133b9818560208601612775565b80840191505092915050565b60006133d18285613394565b91506133dd8284613394565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613445602683612764565b9150613450826133e9565b604082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006134b1601383612764565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b600061354c601883612764565b915061355782613516565b602082019050919050565b6000602082019050818103600083015261357b8161353f565b9050919050565b600061358d82612725565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c0576135bf612e24565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006135f2826135cb565b6135fc81856135d6565b935061360c818560208601612775565b613615816127a8565b840191505092915050565b6000608082019050613635600083018761289f565b613642602083018661289f565b61364f604083018561272f565b818103606083015261366181846135e7565b905095945050505050565b60008151905061367b81612696565b92915050565b60006020828403121561369757613696612660565b5b60006136a58482850161366c565b9150509291505056fea26469706673582212206a10d211b0b65f64975894bda90f8401f41568612c0427e8f97a6edb022cbce364736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51870:3759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52329:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51951:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52031:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55415:211;;;;;;;;;;;;;:::i;:::-;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52999:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53207:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51986:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;53941:176;;;;;;;;;;;;;:::i;:::-;;53822:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52916:77;;;;;;;;;;;;;:::i;:::-;;52068:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52280:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52821;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54570:839;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53419:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52229:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53550:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53683:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53106:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54123:441;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;52329:46::-;;;;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;51951:28::-;;;;;;;;;;;;;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;52031:32::-;;;;:::o;55415:211::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;55466:12:::1;55481:21;55466:36;;55517:8;;;;;;;;;;;55509:26;;:52;55555:5;55547:4;55537:7;:14;;;;:::i;:::-;55536:24;;;;:::i;:::-;55509:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55576:8;;;;;;;;;;;55568:26;;:52;55614:5;55606:4;55596:7;:14;;;;:::i;:::-;55595:24;;;;:::i;:::-;55568:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55459:167;55415:211::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;52999:101::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53087:7:::1;53071:13;:23;;;;;;;;;;;;:::i;:::-;;52999:101:::0;:::o;53207:92::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53290:3:::1;53272:15;:21;;;;53207:92:::0;:::o;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;51986:40::-;;;;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;53941:176::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;54017:15:::1;;54000:13;;:32;;53992:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;54074:37;54084:10;54096:14;;54074:9;:37::i;:::-;53941:176::o:0;53822:113::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53916:13:::1;53903:10;:26;;;;53822:113:::0;:::o;52916:77::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;52979:8:::1;;;;;;;;;;;52978:9;52967:8;;:20;;;;;;;;;;;;;;;;;;52916:77::o:0;52068:37::-;;;;:::o;52280:44::-;;;;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;52821:::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;52896:6:::1;52884:9;:18;;;;52821:87:::0;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;54570:839::-;52688:10;;52671:13;:11;:13::i;:::-;:27;;52663:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54633:17:::1;54653:13;:11;:13::i;:::-;54633:33;;54693:7;:5;:7::i;:::-;54679:21;;:10;:21;;;54675:691;;54719:8;;;;;;;;;;;54711:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54800:10;;54790:6;54778:9;:18;;;;:::i;:::-;:32;;54770:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54864:27;;54854:6;:37;;54846:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;54976:25;;54966:6;54942:21;54952:10;54942:9;:21::i;:::-;:30;;;;:::i;:::-;:59;;54934:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;55084:27;;55060:21;55070:10;55060:9;:21::i;:::-;:51;:82;;;;;55127:15;;55115:9;:27;55060:82;55057:302;;;55198:27;;55189:6;:36;;;;:::i;:::-;55178:9;;:48;;;;:::i;:::-;55165:9;:61;;55157:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;55057:302;;;55309:6;55297:9;;:18;;;;:::i;:::-;55284:9;:31;;55276:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55057:302;54675:691;55374:29;55384:10;55396:6;55374:9;:29::i;:::-;54626:783;54570:839:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;53419:125::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53532:6:::1;53502:27;:36;;;;53419:125:::0;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;52229:46::-;;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;53550:127::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53665:6:::1;53637:25;:34;;;;53550:127:::0;:::o;53683:133::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53804:6:::1;53774:27;:36;;;;53683:133:::0;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;53106:95::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;53192:3:::1;53175:14;:20;;;;53106:95:::0;:::o;54123:441::-;52790:10;52779:21;;:7;:5;:7::i;:::-;:21;;;52771:30;;;;;;54222:14:::1;54239:13;:11;:13::i;:::-;54222:30;;54279:10;;54269:6;:20;;54261:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;54347:10;;54337:6;54328;:15;;;;:::i;:::-;:29;;54320:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54398:9;54393:166;54417:9;;:16;;54413:1;:20;54393:166;;;54481:1;54457:26;;:9;;54467:1;54457:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;54449:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54521:30;54531:9;;54541:1;54531:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;54544:6;54521:9;:30::i;:::-;54435:3;;;;;:::i;:::-;;;;54393:166;;;;54215:349;54123:441:::0;;;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;;21235:113;21252:1;21242:6;:11;21235:113;;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;53305:108::-;53365:13;53394;53387:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53305:108;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:117::-;12230:1;12227;12220:12;12244:117;12353:1;12350;12343:12;12384:568;12457:8;12467:6;12517:3;12510:4;12502:6;12498:17;12494:27;12484:122;;12525:79;;:::i;:::-;12484:122;12638:6;12625:20;12615:30;;12668:18;12660:6;12657:30;12654:117;;;12690:79;;:::i;:::-;12654:117;12804:4;12796:6;12792:17;12780:29;;12858:3;12850:4;12842:6;12838:17;12828:8;12824:32;12821:41;12818:128;;;12865:79;;:::i;:::-;12818:128;12384:568;;;;;:::o;12958:704::-;13053:6;13061;13069;13118:2;13106:9;13097:7;13093:23;13089:32;13086:119;;;13124:79;;:::i;:::-;13086:119;13244:1;13269:53;13314:7;13305:6;13294:9;13290:22;13269:53;:::i;:::-;13259:63;;13215:117;13399:2;13388:9;13384:18;13371:32;13430:18;13422:6;13419:30;13416:117;;;13452:79;;:::i;:::-;13416:117;13565:80;13637:7;13628:6;13617:9;13613:22;13565:80;:::i;:::-;13547:98;;;;13342:313;12958:704;;;;;:::o;13668:180::-;13716:77;13713:1;13706:88;13813:4;13810:1;13803:15;13837:4;13834:1;13827:15;13854:320;13898:6;13935:1;13929:4;13925:12;13915:22;;13982:1;13976:4;13972:12;14003:18;13993:81;;14059:4;14051:6;14047:17;14037:27;;13993:81;14121:2;14113:6;14110:14;14090:18;14087:38;14084:84;;;14140:18;;:::i;:::-;14084:84;13905:269;13854:320;;;:::o;14180:180::-;14228:77;14225:1;14218:88;14325:4;14322:1;14315:15;14349:4;14346:1;14339:15;14366:348;14406:7;14429:20;14447:1;14429:20;:::i;:::-;14424:25;;14463:20;14481:1;14463:20;:::i;:::-;14458:25;;14651:1;14583:66;14579:74;14576:1;14573:81;14568:1;14561:9;14554:17;14550:105;14547:131;;;14658:18;;:::i;:::-;14547:131;14706:1;14703;14699:9;14688:20;;14366:348;;;;:::o;14720:180::-;14768:77;14765:1;14758:88;14865:4;14862:1;14855:15;14889:4;14886:1;14879:15;14906:185;14946:1;14963:20;14981:1;14963:20;:::i;:::-;14958:25;;14997:20;15015:1;14997:20;:::i;:::-;14992:25;;15036:1;15026:35;;15041:18;;:::i;:::-;15026:35;15083:1;15080;15076:9;15071:14;;14906:185;;;;:::o;15097:182::-;15237:34;15233:1;15225:6;15221:14;15214:58;15097:182;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:419::-;15823:4;15861:2;15850:9;15846:18;15838:26;;15910:9;15904:4;15900:20;15896:1;15885:9;15881:17;15874:47;15938:131;16064:4;15938:131;:::i;:::-;15930:139;;15657:419;;;:::o;16082:177::-;16222:29;16218:1;16210:6;16206:14;16199:53;16082:177;:::o;16265:366::-;16407:3;16428:67;16492:2;16487:3;16428:67;:::i;:::-;16421:74;;16504:93;16593:3;16504:93;:::i;:::-;16622:2;16617:3;16613:12;16606:19;;16265:366;;;:::o;16637:419::-;16803:4;16841:2;16830:9;16826:18;16818:26;;16890:9;16884:4;16880:20;16876:1;16865:9;16861:17;16854:47;16918:131;17044:4;16918:131;:::i;:::-;16910:139;;16637:419;;;:::o;17062:165::-;17202:17;17198:1;17190:6;17186:14;17179:41;17062:165;:::o;17233:366::-;17375:3;17396:67;17460:2;17455:3;17396:67;:::i;:::-;17389:74;;17472:93;17561:3;17472:93;:::i;:::-;17590:2;17585:3;17581:12;17574:19;;17233:366;;;:::o;17605:419::-;17771:4;17809:2;17798:9;17794:18;17786:26;;17858:9;17852:4;17848:20;17844:1;17833:9;17829:17;17822:47;17886:131;18012:4;17886:131;:::i;:::-;17878:139;;17605:419;;;:::o;18030:179::-;18170:31;18166:1;18158:6;18154:14;18147:55;18030:179;:::o;18215:366::-;18357:3;18378:67;18442:2;18437:3;18378:67;:::i;:::-;18371:74;;18454:93;18543:3;18454:93;:::i;:::-;18572:2;18567:3;18563:12;18556:19;;18215:366;;;:::o;18587:419::-;18753:4;18791:2;18780:9;18776:18;18768:26;;18840:9;18834:4;18830:20;18826:1;18815:9;18811:17;18804:47;18868:131;18994:4;18868:131;:::i;:::-;18860:139;;18587:419;;;:::o;19012:305::-;19052:3;19071:20;19089:1;19071:20;:::i;:::-;19066:25;;19105:20;19123:1;19105:20;:::i;:::-;19100:25;;19259:1;19191:66;19187:74;19184:1;19181:81;19178:107;;;19265:18;;:::i;:::-;19178:107;19309:1;19306;19302:9;19295:16;;19012:305;;;;:::o;19323:172::-;19463:24;19459:1;19451:6;19447:14;19440:48;19323:172;:::o;19501:366::-;19643:3;19664:67;19728:2;19723:3;19664:67;:::i;:::-;19657:74;;19740:93;19829:3;19740:93;:::i;:::-;19858:2;19853:3;19849:12;19842:19;;19501:366;;;:::o;19873:419::-;20039:4;20077:2;20066:9;20062:18;20054:26;;20126:9;20120:4;20116:20;20112:1;20101:9;20097:17;20090:47;20154:131;20280:4;20154:131;:::i;:::-;20146:139;;19873:419;;;:::o;20298:180::-;20438:32;20434:1;20426:6;20422:14;20415:56;20298:180;:::o;20484:366::-;20626:3;20647:67;20711:2;20706:3;20647:67;:::i;:::-;20640:74;;20723:93;20812:3;20723:93;:::i;:::-;20841:2;20836:3;20832:12;20825:19;;20484:366;;;:::o;20856:419::-;21022:4;21060:2;21049:9;21045:18;21037:26;;21109:9;21103:4;21099:20;21095:1;21084:9;21080:17;21073:47;21137:131;21263:4;21137:131;:::i;:::-;21129:139;;20856:419;;;:::o;21281:228::-;21421:34;21417:1;21409:6;21405:14;21398:58;21490:11;21485:2;21477:6;21473:15;21466:36;21281:228;:::o;21515:366::-;21657:3;21678:67;21742:2;21737:3;21678:67;:::i;:::-;21671:74;;21754:93;21843:3;21754:93;:::i;:::-;21872:2;21867:3;21863:12;21856:19;;21515:366;;;:::o;21887:419::-;22053:4;22091:2;22080:9;22076:18;22068:26;;22140:9;22134:4;22130:20;22126:1;22115:9;22111:17;22104:47;22168:131;22294:4;22168:131;:::i;:::-;22160:139;;21887:419;;;:::o;22312:191::-;22352:4;22372:20;22390:1;22372:20;:::i;:::-;22367:25;;22406:20;22424:1;22406:20;:::i;:::-;22401:25;;22445:1;22442;22439:8;22436:34;;;22450:18;;:::i;:::-;22436:34;22495:1;22492;22488:9;22480:17;;22312:191;;;;:::o;22509:168::-;22649:20;22645:1;22637:6;22633:14;22626:44;22509:168;:::o;22683:366::-;22825:3;22846:67;22910:2;22905:3;22846:67;:::i;:::-;22839:74;;22922:93;23011:3;22922:93;:::i;:::-;23040:2;23035:3;23031:12;23024:19;;22683:366;;;:::o;23055:419::-;23221:4;23259:2;23248:9;23244:18;23236:26;;23308:9;23302:4;23298:20;23294:1;23283:9;23279:17;23272:47;23336:131;23462:4;23336:131;:::i;:::-;23328:139;;23055:419;;;:::o;23480:179::-;23620:31;23616:1;23608:6;23604:14;23597:55;23480:179;:::o;23665:366::-;23807:3;23828:67;23892:2;23887:3;23828:67;:::i;:::-;23821:74;;23904:93;23993:3;23904:93;:::i;:::-;24022:2;24017:3;24013:12;24006:19;;23665:366;;;:::o;24037:419::-;24203:4;24241:2;24230:9;24226:18;24218:26;;24290:9;24284:4;24280:20;24276:1;24265:9;24261:17;24254:47;24318:131;24444:4;24318:131;:::i;:::-;24310:139;;24037:419;;;:::o;24462:148::-;24564:11;24601:3;24586:18;;24462:148;;;;:::o;24616:377::-;24722:3;24750:39;24783:5;24750:39;:::i;:::-;24805:89;24887:6;24882:3;24805:89;:::i;:::-;24798:96;;24903:52;24948:6;24943:3;24936:4;24929:5;24925:16;24903:52;:::i;:::-;24980:6;24975:3;24971:16;24964:23;;24726:267;24616:377;;;;:::o;24999:435::-;25179:3;25201:95;25292:3;25283:6;25201:95;:::i;:::-;25194:102;;25313:95;25404:3;25395:6;25313:95;:::i;:::-;25306:102;;25425:3;25418:10;;24999:435;;;;;:::o;25440:225::-;25580:34;25576:1;25568:6;25564:14;25557:58;25649:8;25644:2;25636:6;25632:15;25625:33;25440:225;:::o;25671:366::-;25813:3;25834:67;25898:2;25893:3;25834:67;:::i;:::-;25827:74;;25910:93;25999:3;25910:93;:::i;:::-;26028:2;26023:3;26019:12;26012:19;;25671:366;;;:::o;26043:419::-;26209:4;26247:2;26236:9;26232:18;26224:26;;26296:9;26290:4;26286:20;26282:1;26271:9;26267:17;26260:47;26324:131;26450:4;26324:131;:::i;:::-;26316:139;;26043:419;;;:::o;26468:169::-;26608:21;26604:1;26596:6;26592:14;26585:45;26468:169;:::o;26643:366::-;26785:3;26806:67;26870:2;26865:3;26806:67;:::i;:::-;26799:74;;26882:93;26971:3;26882:93;:::i;:::-;27000:2;26995:3;26991:12;26984:19;;26643:366;;;:::o;27015:419::-;27181:4;27219:2;27208:9;27204:18;27196:26;;27268:9;27262:4;27258:20;27254:1;27243:9;27239:17;27232:47;27296:131;27422:4;27296:131;:::i;:::-;27288:139;;27015:419;;;:::o;27440:180::-;27488:77;27485:1;27478:88;27585:4;27582:1;27575:15;27609:4;27606:1;27599:15;27626:174;27766:26;27762:1;27754:6;27750:14;27743:50;27626:174;:::o;27806:366::-;27948:3;27969:67;28033:2;28028:3;27969:67;:::i;:::-;27962:74;;28045:93;28134:3;28045:93;:::i;:::-;28163:2;28158:3;28154:12;28147:19;;27806:366;;;:::o;28178:419::-;28344:4;28382:2;28371:9;28367:18;28359:26;;28431:9;28425:4;28421:20;28417:1;28406:9;28402:17;28395:47;28459:131;28585:4;28459:131;:::i;:::-;28451:139;;28178:419;;;:::o;28603:233::-;28642:3;28665:24;28683:5;28665:24;:::i;:::-;28656:33;;28711:66;28704:5;28701:77;28698:103;;;28781:18;;:::i;:::-;28698:103;28828:1;28821:5;28817:13;28810:20;;28603:233;;;:::o;28842:98::-;28893:6;28927:5;28921:12;28911:22;;28842:98;;;:::o;28946:168::-;29029:11;29063:6;29058:3;29051:19;29103:4;29098:3;29094:14;29079:29;;28946:168;;;;:::o;29120:360::-;29206:3;29234:38;29266:5;29234:38;:::i;:::-;29288:70;29351:6;29346:3;29288:70;:::i;:::-;29281:77;;29367:52;29412:6;29407:3;29400:4;29393:5;29389:16;29367:52;:::i;:::-;29444:29;29466:6;29444:29;:::i;:::-;29439:3;29435:39;29428:46;;29210:270;29120:360;;;;:::o;29486:640::-;29681:4;29719:3;29708:9;29704:19;29696:27;;29733:71;29801:1;29790:9;29786:17;29777:6;29733:71;:::i;:::-;29814:72;29882:2;29871:9;29867:18;29858:6;29814:72;:::i;:::-;29896;29964:2;29953:9;29949:18;29940:6;29896:72;:::i;:::-;30015:9;30009:4;30005:20;30000:2;29989:9;29985:18;29978:48;30043:76;30114:4;30105:6;30043:76;:::i;:::-;30035:84;;29486:640;;;;;;;:::o;30132:141::-;30188:5;30219:6;30213:13;30204:22;;30235:32;30261:5;30235:32;:::i;:::-;30132:141;;;;:::o;30279:349::-;30348:6;30397:2;30385:9;30376:7;30372:23;30368:32;30365:119;;;30403:79;;:::i;:::-;30365:119;30523:1;30548:63;30603:7;30594:6;30583:9;30579:22;30548:63;:::i;:::-;30538:73;;30494:127;30279:349;;;;:::o

Swarm Source

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