ETH Price: $3,446.78 (-0.25%)
Gas: 4 Gwei

Token

Dawn Dragons (DD)
 

Overview

Max Total Supply

2,065 DD

Holders

661

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 DD
0xc0fb5a51ffe37daa497d8b22e52291336d0c823f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DawnDragons

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.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)
        }
    }
}




pragma solidity ^0.8.0;

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

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

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

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

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




pragma solidity ^0.8.0;



contract DawnDragons is ERC721A, Ownable {
	using Strings for uint;

    uint public constant MAX_PER_WALLET = 2;
	uint public maxSupply = 2500;

	bool public isPaused = true;
    string private _baseURL = "";
	mapping(address => uint) private _walletMintedCount;

	constructor()
    // Name
	ERC721A("Dawn Dragons", "DD") {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setBaseUri(string memory url) external onlyOwner {
	    _baseURL = url;
	}

	function start(bool paused) external onlyOwner {
	    isPaused = paused;
	}

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

	function devMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			"Exceeds max supply"
		);
		_safeMint(to, count);
	}

	function setMaxSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : "";
	}

	function mint(uint signature) external payable {
        uint count=MAX_PER_WALLET;
		require(!isPaused, "Sales are off");
        require(_totalMinted() + count <= maxSupply,"Exceeds max supply");
        require(count <= MAX_PER_WALLET,"Exceeds max per transaction");
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET * 3,"Exceeds max per wallet");
        signature-=44444;
        require(signature<=block.timestamp && signature >= block.timestamp-400,"Bad Signature!");
		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_PER_WALLET","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","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":[{"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"signature","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","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":[{"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":"url","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

60806040526109c46009556001600a60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200004c9291906200020e565b503480156200005a57600080fd5b506040518060400160405280600c81526020017f4461776e20447261676f6e7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f44440000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000df9291906200020e565b508060039080519060200190620000f89291906200020e565b50620001096200013760201b60201c565b600081905550505062000131620001256200014060201b60201c565b6200014860201b60201c565b62000323565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002be565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b60006002820490506001821680620002d757607f821691505b60208210811415620002ee57620002ed620002f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f5f80620003336000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d485146105d5578063e985e9c514610600578063f2fde38b1461063d578063fddcb5ea14610666576101b7565b8063c877cf3714610544578063c87b56dd1461056d578063d5abeb01146105aa576101b7565b8063a0bcfc7f116100c6578063a0bcfc7f1461049e578063a22cb465146104c7578063b187bd26146104f0578063b88d4fde1461051b576101b7565b80638da5cb5b1461042c57806395d89b4114610457578063a0712d6814610482576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e146103725780636f8b44b0146103af57806370a08231146103d8578063715018a614610415576101b7565b80633ccfd60b1461030957806342842e0e14610320578063627804af14610349576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061237f565b6106a3565b6040516101f09190612728565b60405180910390f35b34801561020557600080fd5b5061020e610735565b60405161021b9190612743565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612422565b6107c7565b60405161025891906126c1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612312565b610843565b005b34801561029657600080fd5b5061029f610984565b6040516102ac9190612865565b60405180910390f35b3480156102c157600080fd5b506102ca610989565b6040516102d79190612865565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906121fc565b6109a0565b005b34801561031557600080fd5b5061031e610cc5565b005b34801561032c57600080fd5b50610347600480360381019061034291906121fc565b610d46565b005b34801561035557600080fd5b50610370600480360381019061036b9190612312565b610d66565b005b34801561037e57600080fd5b5061039960048036038101906103949190612422565b610dd3565b6040516103a691906126c1565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612422565b610de5565b005b3480156103e457600080fd5b506103ff60048036038101906103fa919061218f565b610df7565b60405161040c9190612865565b60405180910390f35b34801561042157600080fd5b5061042a610eb0565b005b34801561043857600080fd5b50610441610ec4565b60405161044e91906126c1565b60405180910390f35b34801561046357600080fd5b5061046c610eee565b6040516104799190612743565b60405180910390f35b61049c60048036038101906104979190612422565b610f80565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906123d9565b6111db565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906122d2565b6111fd565b005b3480156104fc57600080fd5b50610505611375565b6040516105129190612728565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d919061224f565b611388565b005b34801561055057600080fd5b5061056b60048036038101906105669190612352565b6113fb565b005b34801561057957600080fd5b50610594600480360381019061058f9190612422565b611420565b6040516105a19190612743565b60405180910390f35b3480156105b657600080fd5b506105bf6114c8565b6040516105cc9190612865565b60405180910390f35b3480156105e157600080fd5b506105ea6114ce565b6040516105f79190612743565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906121bc565b6114e5565b6040516106349190612728565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f919061218f565b611579565b005b34801561067257600080fd5b5061068d6004803603810190610688919061218f565b6115fd565b60405161069a9190612865565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074490612b20565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612b20565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611646565b610808576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084e82610dd3565b90508073ffffffffffffffffffffffffffffffffffffffff1661086f6116a5565b73ffffffffffffffffffffffffffffffffffffffff16146108d25761089b816108966116a5565b6114e5565b6108d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b60006109936116ad565b6001546000540303905090565b60006109ab826116b6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1e84611784565b91509150610a348187610a2f6116a5565b6117a6565b610a8057610a4986610a446116a5565b6114e5565b610a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af486868660016117ea565b8015610aff57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bcd85610ba98888876117f0565b7c020000000000000000000000000000000000000000000000000000000017611818565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c55576000600185019050600060046000838152602001908152602001600020541415610c53576000548114610c52578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cbd8686866001611843565b505050505050565b610ccd611849565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cf3906126ac565b60006040518083038185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b50565b610d6183838360405180602001604052806000815250611388565b505050565b610d6e611849565b60095481610d7a6118c7565b610d849190612955565b1115610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906127a5565b60405180910390fd5b610dcf82826118da565b5050565b6000610dde826116b6565b9050919050565b610ded611849565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb8611849565b610ec260006118f8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610efd90612b20565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2990612b20565b8015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b5050505050905090565b600060029050600a60009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612785565b60405180910390fd5b60095481610fe26118c7565b610fec9190612955565b111561102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906127a5565b60405180910390fd5b6002811115611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612825565b60405180910390fd5b6003600261107f91906129dc565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ca9190612955565b111561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612845565b60405180910390fd5b61ad9c826111199190612a36565b91504282111580156111385750610190426111349190612a36565b8210155b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906127c5565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c69190612955565b925050819055506111d733826118da565b5050565b6111e3611849565b80600b90805190602001906111f9929190611fa3565b5050565b6112056116a5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112776116a5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113246116a5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113699190612728565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6113938484846109a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f5576113be848484846119be565b6113f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611403611849565b80600a60006101000a81548160ff02191690831515021790555050565b606061142b82611646565b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612805565b60405180910390fd5b6000611474611b1e565b511161148f57604051806020016040528060008152506114c1565b611497611b1e565b6114a083611bb0565b6040516020016114b192919061267d565b6040516020818303038152906040525b9050919050565b60095481565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611581611849565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612765565b60405180910390fd5b6115fa816118f8565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816116516116ad565b11158015611660575060005482105b801561169e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806116c56116ad565b1161174d5760005481101561174c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561174a575b6000811415611740576004600083600190039350838152602001908152602001600020549050611715565b809250505061177f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611807868684611d11565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611851611d1a565b73ffffffffffffffffffffffffffffffffffffffff1661186f610ec4565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906127e5565b60405180910390fd5b565b60006118d16116ad565b60005403905090565b6118f4828260405180602001604052806000815250611d22565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e46116a5565b8786866040518563ffffffff1660e01b8152600401611a0694939291906126dc565b602060405180830381600087803b158015611a2057600080fd5b505af1925050508015611a5157506040513d601f19601f82011682018060405250810190611a4e91906123ac565b60015b611acb573d8060008114611a81576040519150601f19603f3d011682016040523d82523d6000602084013e611a86565b606091505b50600081511415611ac3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611b2d90612b20565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5990612b20565b8015611ba65780601f10611b7b57610100808354040283529160200191611ba6565b820191906000526020600020905b815481529060010190602001808311611b8957829003601f168201915b5050505050905090565b60606000821415611bf8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0c565b600082905060005b60008214611c2a578080611c1390612b83565b915050600a82611c2391906129ab565b9150611c00565b60008167ffffffffffffffff811115611c4657611c45612cb9565b5b6040519080825280601f01601f191660200182016040528015611c785781602001600182028036833780820191505090505b5090505b60008514611d0557600182611c919190612a36565b9150600a85611ca09190612bcc565b6030611cac9190612955565b60f81b818381518110611cc257611cc1612c8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cfe91906129ab565b9450611c7c565b8093505050505b919050565b60009392505050565b600033905090565b611d2c8383611dbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dba57600080549050600083820390505b611d6c60008683806001019450866119be565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d59578160005414611db757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e67576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7460008483856117ea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eeb83611edc60008660006117f0565b611ee585611f93565b17611818565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f0f57806000819055505050611f8e6000848385611843565b505050565b60006001821460e11b9050919050565b828054611faf90612b20565b90600052602060002090601f016020900481019282611fd15760008555612018565b82601f10611fea57805160ff1916838001178555612018565b82800160010185558215612018579182015b82811115612017578251825591602001919060010190611ffc565b5b5090506120259190612029565b5090565b5b8082111561204257600081600090555060010161202a565b5090565b6000612059612054846128a5565b612880565b90508281526020810184848401111561207557612074612ced565b5b612080848285612ade565b509392505050565b600061209b612096846128d6565b612880565b9050828152602081018484840111156120b7576120b6612ced565b5b6120c2848285612ade565b509392505050565b6000813590506120d981612ecd565b92915050565b6000813590506120ee81612ee4565b92915050565b60008135905061210381612efb565b92915050565b60008151905061211881612efb565b92915050565b600082601f83011261213357612132612ce8565b5b8135612143848260208601612046565b91505092915050565b600082601f83011261216157612160612ce8565b5b8135612171848260208601612088565b91505092915050565b60008135905061218981612f12565b92915050565b6000602082840312156121a5576121a4612cf7565b5b60006121b3848285016120ca565b91505092915050565b600080604083850312156121d3576121d2612cf7565b5b60006121e1858286016120ca565b92505060206121f2858286016120ca565b9150509250929050565b60008060006060848603121561221557612214612cf7565b5b6000612223868287016120ca565b9350506020612234868287016120ca565b92505060406122458682870161217a565b9150509250925092565b6000806000806080858703121561226957612268612cf7565b5b6000612277878288016120ca565b9450506020612288878288016120ca565b93505060406122998782880161217a565b925050606085013567ffffffffffffffff8111156122ba576122b9612cf2565b5b6122c68782880161211e565b91505092959194509250565b600080604083850312156122e9576122e8612cf7565b5b60006122f7858286016120ca565b9250506020612308858286016120df565b9150509250929050565b6000806040838503121561232957612328612cf7565b5b6000612337858286016120ca565b92505060206123488582860161217a565b9150509250929050565b60006020828403121561236857612367612cf7565b5b6000612376848285016120df565b91505092915050565b60006020828403121561239557612394612cf7565b5b60006123a3848285016120f4565b91505092915050565b6000602082840312156123c2576123c1612cf7565b5b60006123d084828501612109565b91505092915050565b6000602082840312156123ef576123ee612cf7565b5b600082013567ffffffffffffffff81111561240d5761240c612cf2565b5b6124198482850161214c565b91505092915050565b60006020828403121561243857612437612cf7565b5b60006124468482850161217a565b91505092915050565b61245881612a6a565b82525050565b61246781612a7c565b82525050565b600061247882612907565b612482818561291d565b9350612492818560208601612aed565b61249b81612cfc565b840191505092915050565b60006124b182612912565b6124bb8185612939565b93506124cb818560208601612aed565b6124d481612cfc565b840191505092915050565b60006124ea82612912565b6124f4818561294a565b9350612504818560208601612aed565b80840191505092915050565b600061251d602683612939565b915061252882612d0d565b604082019050919050565b6000612540600d83612939565b915061254b82612d5c565b602082019050919050565b6000612563601283612939565b915061256e82612d85565b602082019050919050565b6000612586600e83612939565b915061259182612dae565b602082019050919050565b60006125a960058361294a565b91506125b482612dd7565b600582019050919050565b60006125cc602083612939565b91506125d782612e00565b602082019050919050565b60006125ef602f83612939565b91506125fa82612e29565b604082019050919050565b6000612612601b83612939565b915061261d82612e78565b602082019050919050565b600061263560008361292e565b915061264082612ea1565b600082019050919050565b6000612658601683612939565b915061266382612ea4565b602082019050919050565b61267781612ad4565b82525050565b600061268982856124df565b915061269582846124df565b91506126a08261259c565b91508190509392505050565b60006126b782612628565b9150819050919050565b60006020820190506126d6600083018461244f565b92915050565b60006080820190506126f1600083018761244f565b6126fe602083018661244f565b61270b604083018561266e565b818103606083015261271d818461246d565b905095945050505050565b600060208201905061273d600083018461245e565b92915050565b6000602082019050818103600083015261275d81846124a6565b905092915050565b6000602082019050818103600083015261277e81612510565b9050919050565b6000602082019050818103600083015261279e81612533565b9050919050565b600060208201905081810360008301526127be81612556565b9050919050565b600060208201905081810360008301526127de81612579565b9050919050565b600060208201905081810360008301526127fe816125bf565b9050919050565b6000602082019050818103600083015261281e816125e2565b9050919050565b6000602082019050818103600083015261283e81612605565b9050919050565b6000602082019050818103600083015261285e8161264b565b9050919050565b600060208201905061287a600083018461266e565b92915050565b600061288a61289b565b90506128968282612b52565b919050565b6000604051905090565b600067ffffffffffffffff8211156128c0576128bf612cb9565b5b6128c982612cfc565b9050602081019050919050565b600067ffffffffffffffff8211156128f1576128f0612cb9565b5b6128fa82612cfc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061296082612ad4565b915061296b83612ad4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129a05761299f612bfd565b5b828201905092915050565b60006129b682612ad4565b91506129c183612ad4565b9250826129d1576129d0612c2c565b5b828204905092915050565b60006129e782612ad4565b91506129f283612ad4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2b57612a2a612bfd565b5b828202905092915050565b6000612a4182612ad4565b9150612a4c83612ad4565b925082821015612a5f57612a5e612bfd565b5b828203905092915050565b6000612a7582612ab4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b0b578082015181840152602081019050612af0565b83811115612b1a576000848401525b50505050565b60006002820490506001821680612b3857607f821691505b60208210811415612b4c57612b4b612c5b565b5b50919050565b612b5b82612cfc565b810181811067ffffffffffffffff82111715612b7a57612b79612cb9565b5b80604052505050565b6000612b8e82612ad4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bc157612bc0612bfd565b5b600182019050919050565b6000612bd782612ad4565b9150612be283612ad4565b925082612bf257612bf1612c2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f426164205369676e617475726521000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b612ed681612a6a565b8114612ee157600080fd5b50565b612eed81612a7c565b8114612ef857600080fd5b50565b612f0481612a88565b8114612f0f57600080fd5b50565b612f1b81612ad4565b8114612f2657600080fd5b5056fea264697066735822122026a5516d89e74bf7f08af412eaa188b21cc6b30edeb47b7fe8408e2f70ce062f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d485146105d5578063e985e9c514610600578063f2fde38b1461063d578063fddcb5ea14610666576101b7565b8063c877cf3714610544578063c87b56dd1461056d578063d5abeb01146105aa576101b7565b8063a0bcfc7f116100c6578063a0bcfc7f1461049e578063a22cb465146104c7578063b187bd26146104f0578063b88d4fde1461051b576101b7565b80638da5cb5b1461042c57806395d89b4114610457578063a0712d6814610482576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e146103725780636f8b44b0146103af57806370a08231146103d8578063715018a614610415576101b7565b80633ccfd60b1461030957806342842e0e14610320578063627804af14610349576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061237f565b6106a3565b6040516101f09190612728565b60405180910390f35b34801561020557600080fd5b5061020e610735565b60405161021b9190612743565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612422565b6107c7565b60405161025891906126c1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612312565b610843565b005b34801561029657600080fd5b5061029f610984565b6040516102ac9190612865565b60405180910390f35b3480156102c157600080fd5b506102ca610989565b6040516102d79190612865565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906121fc565b6109a0565b005b34801561031557600080fd5b5061031e610cc5565b005b34801561032c57600080fd5b50610347600480360381019061034291906121fc565b610d46565b005b34801561035557600080fd5b50610370600480360381019061036b9190612312565b610d66565b005b34801561037e57600080fd5b5061039960048036038101906103949190612422565b610dd3565b6040516103a691906126c1565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612422565b610de5565b005b3480156103e457600080fd5b506103ff60048036038101906103fa919061218f565b610df7565b60405161040c9190612865565b60405180910390f35b34801561042157600080fd5b5061042a610eb0565b005b34801561043857600080fd5b50610441610ec4565b60405161044e91906126c1565b60405180910390f35b34801561046357600080fd5b5061046c610eee565b6040516104799190612743565b60405180910390f35b61049c60048036038101906104979190612422565b610f80565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906123d9565b6111db565b005b3480156104d357600080fd5b506104ee60048036038101906104e991906122d2565b6111fd565b005b3480156104fc57600080fd5b50610505611375565b6040516105129190612728565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d919061224f565b611388565b005b34801561055057600080fd5b5061056b60048036038101906105669190612352565b6113fb565b005b34801561057957600080fd5b50610594600480360381019061058f9190612422565b611420565b6040516105a19190612743565b60405180910390f35b3480156105b657600080fd5b506105bf6114c8565b6040516105cc9190612865565b60405180910390f35b3480156105e157600080fd5b506105ea6114ce565b6040516105f79190612743565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906121bc565b6114e5565b6040516106349190612728565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f919061218f565b611579565b005b34801561067257600080fd5b5061068d6004803603810190610688919061218f565b6115fd565b60405161069a9190612865565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074490612b20565b80601f016020809104026020016040519081016040528092919081815260200182805461077090612b20565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611646565b610808576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084e82610dd3565b90508073ffffffffffffffffffffffffffffffffffffffff1661086f6116a5565b73ffffffffffffffffffffffffffffffffffffffff16146108d25761089b816108966116a5565b6114e5565b6108d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600281565b60006109936116ad565b6001546000540303905090565b60006109ab826116b6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a1e84611784565b91509150610a348187610a2f6116a5565b6117a6565b610a8057610a4986610a446116a5565b6114e5565b610a7f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ae7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af486868660016117ea565b8015610aff57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bcd85610ba98888876117f0565b7c020000000000000000000000000000000000000000000000000000000017611818565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c55576000600185019050600060046000838152602001908152602001600020541415610c53576000548114610c52578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cbd8686866001611843565b505050505050565b610ccd611849565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cf3906126ac565b60006040518083038185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b50565b610d6183838360405180602001604052806000815250611388565b505050565b610d6e611849565b60095481610d7a6118c7565b610d849190612955565b1115610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906127a5565b60405180910390fd5b610dcf82826118da565b5050565b6000610dde826116b6565b9050919050565b610ded611849565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb8611849565b610ec260006118f8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610efd90612b20565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2990612b20565b8015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b5050505050905090565b600060029050600a60009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612785565b60405180910390fd5b60095481610fe26118c7565b610fec9190612955565b111561102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906127a5565b60405180910390fd5b6002811115611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890612825565b60405180910390fd5b6003600261107f91906129dc565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ca9190612955565b111561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612845565b60405180910390fd5b61ad9c826111199190612a36565b91504282111580156111385750610190426111349190612a36565b8210155b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906127c5565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c69190612955565b925050819055506111d733826118da565b5050565b6111e3611849565b80600b90805190602001906111f9929190611fa3565b5050565b6112056116a5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112776116a5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113246116a5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113699190612728565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6113938484846109a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113f5576113be848484846119be565b6113f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611403611849565b80600a60006101000a81548160ff02191690831515021790555050565b606061142b82611646565b61146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612805565b60405180910390fd5b6000611474611b1e565b511161148f57604051806020016040528060008152506114c1565b611497611b1e565b6114a083611bb0565b6040516020016114b192919061267d565b6040516020818303038152906040525b9050919050565b60095481565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611581611849565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612765565b60405180910390fd5b6115fa816118f8565b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000816116516116ad565b11158015611660575060005482105b801561169e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806116c56116ad565b1161174d5760005481101561174c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561174a575b6000811415611740576004600083600190039350838152602001908152602001600020549050611715565b809250505061177f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611807868684611d11565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611851611d1a565b73ffffffffffffffffffffffffffffffffffffffff1661186f610ec4565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906127e5565b60405180910390fd5b565b60006118d16116ad565b60005403905090565b6118f4828260405180602001604052806000815250611d22565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e46116a5565b8786866040518563ffffffff1660e01b8152600401611a0694939291906126dc565b602060405180830381600087803b158015611a2057600080fd5b505af1925050508015611a5157506040513d601f19601f82011682018060405250810190611a4e91906123ac565b60015b611acb573d8060008114611a81576040519150601f19603f3d011682016040523d82523d6000602084013e611a86565b606091505b50600081511415611ac3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611b2d90612b20565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5990612b20565b8015611ba65780601f10611b7b57610100808354040283529160200191611ba6565b820191906000526020600020905b815481529060010190602001808311611b8957829003601f168201915b5050505050905090565b60606000821415611bf8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0c565b600082905060005b60008214611c2a578080611c1390612b83565b915050600a82611c2391906129ab565b9150611c00565b60008167ffffffffffffffff811115611c4657611c45612cb9565b5b6040519080825280601f01601f191660200182016040528015611c785781602001600182028036833780820191505090505b5090505b60008514611d0557600182611c919190612a36565b9150600a85611ca09190612bcc565b6030611cac9190612955565b60f81b818381518110611cc257611cc1612c8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cfe91906129ab565b9450611c7c565b8093505050505b919050565b60009392505050565b600033905090565b611d2c8383611dbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dba57600080549050600083820390505b611d6c60008683806001019450866119be565b611da2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d59578160005414611db757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e67576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e7460008483856117ea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eeb83611edc60008660006117f0565b611ee585611f93565b17611818565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f0f57806000819055505050611f8e6000848385611843565b505050565b60006001821460e11b9050919050565b828054611faf90612b20565b90600052602060002090601f016020900481019282611fd15760008555612018565b82601f10611fea57805160ff1916838001178555612018565b82800160010185558215612018579182015b82811115612017578251825591602001919060010190611ffc565b5b5090506120259190612029565b5090565b5b8082111561204257600081600090555060010161202a565b5090565b6000612059612054846128a5565b612880565b90508281526020810184848401111561207557612074612ced565b5b612080848285612ade565b509392505050565b600061209b612096846128d6565b612880565b9050828152602081018484840111156120b7576120b6612ced565b5b6120c2848285612ade565b509392505050565b6000813590506120d981612ecd565b92915050565b6000813590506120ee81612ee4565b92915050565b60008135905061210381612efb565b92915050565b60008151905061211881612efb565b92915050565b600082601f83011261213357612132612ce8565b5b8135612143848260208601612046565b91505092915050565b600082601f83011261216157612160612ce8565b5b8135612171848260208601612088565b91505092915050565b60008135905061218981612f12565b92915050565b6000602082840312156121a5576121a4612cf7565b5b60006121b3848285016120ca565b91505092915050565b600080604083850312156121d3576121d2612cf7565b5b60006121e1858286016120ca565b92505060206121f2858286016120ca565b9150509250929050565b60008060006060848603121561221557612214612cf7565b5b6000612223868287016120ca565b9350506020612234868287016120ca565b92505060406122458682870161217a565b9150509250925092565b6000806000806080858703121561226957612268612cf7565b5b6000612277878288016120ca565b9450506020612288878288016120ca565b93505060406122998782880161217a565b925050606085013567ffffffffffffffff8111156122ba576122b9612cf2565b5b6122c68782880161211e565b91505092959194509250565b600080604083850312156122e9576122e8612cf7565b5b60006122f7858286016120ca565b9250506020612308858286016120df565b9150509250929050565b6000806040838503121561232957612328612cf7565b5b6000612337858286016120ca565b92505060206123488582860161217a565b9150509250929050565b60006020828403121561236857612367612cf7565b5b6000612376848285016120df565b91505092915050565b60006020828403121561239557612394612cf7565b5b60006123a3848285016120f4565b91505092915050565b6000602082840312156123c2576123c1612cf7565b5b60006123d084828501612109565b91505092915050565b6000602082840312156123ef576123ee612cf7565b5b600082013567ffffffffffffffff81111561240d5761240c612cf2565b5b6124198482850161214c565b91505092915050565b60006020828403121561243857612437612cf7565b5b60006124468482850161217a565b91505092915050565b61245881612a6a565b82525050565b61246781612a7c565b82525050565b600061247882612907565b612482818561291d565b9350612492818560208601612aed565b61249b81612cfc565b840191505092915050565b60006124b182612912565b6124bb8185612939565b93506124cb818560208601612aed565b6124d481612cfc565b840191505092915050565b60006124ea82612912565b6124f4818561294a565b9350612504818560208601612aed565b80840191505092915050565b600061251d602683612939565b915061252882612d0d565b604082019050919050565b6000612540600d83612939565b915061254b82612d5c565b602082019050919050565b6000612563601283612939565b915061256e82612d85565b602082019050919050565b6000612586600e83612939565b915061259182612dae565b602082019050919050565b60006125a960058361294a565b91506125b482612dd7565b600582019050919050565b60006125cc602083612939565b91506125d782612e00565b602082019050919050565b60006125ef602f83612939565b91506125fa82612e29565b604082019050919050565b6000612612601b83612939565b915061261d82612e78565b602082019050919050565b600061263560008361292e565b915061264082612ea1565b600082019050919050565b6000612658601683612939565b915061266382612ea4565b602082019050919050565b61267781612ad4565b82525050565b600061268982856124df565b915061269582846124df565b91506126a08261259c565b91508190509392505050565b60006126b782612628565b9150819050919050565b60006020820190506126d6600083018461244f565b92915050565b60006080820190506126f1600083018761244f565b6126fe602083018661244f565b61270b604083018561266e565b818103606083015261271d818461246d565b905095945050505050565b600060208201905061273d600083018461245e565b92915050565b6000602082019050818103600083015261275d81846124a6565b905092915050565b6000602082019050818103600083015261277e81612510565b9050919050565b6000602082019050818103600083015261279e81612533565b9050919050565b600060208201905081810360008301526127be81612556565b9050919050565b600060208201905081810360008301526127de81612579565b9050919050565b600060208201905081810360008301526127fe816125bf565b9050919050565b6000602082019050818103600083015261281e816125e2565b9050919050565b6000602082019050818103600083015261283e81612605565b9050919050565b6000602082019050818103600083015261285e8161264b565b9050919050565b600060208201905061287a600083018461266e565b92915050565b600061288a61289b565b90506128968282612b52565b919050565b6000604051905090565b600067ffffffffffffffff8211156128c0576128bf612cb9565b5b6128c982612cfc565b9050602081019050919050565b600067ffffffffffffffff8211156128f1576128f0612cb9565b5b6128fa82612cfc565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061296082612ad4565b915061296b83612ad4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129a05761299f612bfd565b5b828201905092915050565b60006129b682612ad4565b91506129c183612ad4565b9250826129d1576129d0612c2c565b5b828204905092915050565b60006129e782612ad4565b91506129f283612ad4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2b57612a2a612bfd565b5b828202905092915050565b6000612a4182612ad4565b9150612a4c83612ad4565b925082821015612a5f57612a5e612bfd565b5b828203905092915050565b6000612a7582612ab4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b0b578082015181840152602081019050612af0565b83811115612b1a576000848401525b50505050565b60006002820490506001821680612b3857607f821691505b60208210811415612b4c57612b4b612c5b565b5b50919050565b612b5b82612cfc565b810181811067ffffffffffffffff82111715612b7a57612b79612cb9565b5b80604052505050565b6000612b8e82612ad4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bc157612bc0612bfd565b5b600182019050919050565b6000612bd782612ad4565b9150612be283612ad4565b925082612bf257612bf1612c2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f426164205369676e617475726521000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b612ed681612a6a565b8114612ee157600080fd5b50565b612eed81612a7c565b8114612ef857600080fd5b50565b612f0481612a88565b8114612f0f57600080fd5b50565b612f1b81612ad4565b8114612f2657600080fd5b5056fea264697066735822122026a5516d89e74bf7f08af412eaa188b21cc6b30edeb47b7fe8408e2f70ce062f64736f6c63430008070033

Deployed Bytecode Sourcemap

50547:2295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18360:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24007:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25953:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25501:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50623:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17414:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35218:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51460:177;;;;;;;;;;;;;:::i;:::-;;26843:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51642:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23796:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51821:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19039:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2951:103;;;;;;;;;;;;;:::i;:::-;;2303:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24176:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52254:585;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51288:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26229:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50700:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27099:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51378:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51920:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50666:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51078:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26608:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3209:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51164:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18360:615;18445:4;18760:10;18745:25;;:11;:25;;;;:102;;;;18837:10;18822:25;;:11;:25;;;;18745:102;:179;;;;18914:10;18899:25;;:11;:25;;;;18745:179;18725:199;;18360:615;;;:::o;24007:100::-;24061:13;24094:5;24087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24007:100;:::o;25953:204::-;26021:7;26046:16;26054:7;26046;:16::i;:::-;26041:64;;26071:34;;;;;;;;;;;;;;26041:64;26125:15;:24;26141:7;26125:24;;;;;;;;;;;;;;;;;;;;;26118:31;;25953:204;;;:::o;25501:386::-;25574:13;25590:16;25598:7;25590;:16::i;:::-;25574:32;;25646:5;25623:28;;:19;:17;:19::i;:::-;:28;;;25619:175;;25671:44;25688:5;25695:19;:17;:19::i;:::-;25671:16;:44::i;:::-;25666:128;;25743:35;;;;;;;;;;;;;;25666:128;25619:175;25833:2;25806:15;:24;25822:7;25806:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25871:7;25867:2;25851:28;;25860:5;25851:28;;;;;;;;;;;;25563:324;25501:386;;:::o;50623:39::-;50661:1;50623:39;:::o;17414:315::-;17467:7;17695:15;:13;:15::i;:::-;17680:12;;17664:13;;:28;:46;17657:53;;17414:315;:::o;35218:2800::-;35352:27;35382;35401:7;35382:18;:27::i;:::-;35352:57;;35467:4;35426:45;;35442:19;35426:45;;;35422:86;;35480:28;;;;;;;;;;;;;;35422:86;35522:27;35551:23;35578:28;35598:7;35578:19;:28::i;:::-;35521:85;;;;35706:62;35725:15;35742:4;35748:19;:17;:19::i;:::-;35706:18;:62::i;:::-;35701:174;;35788:43;35805:4;35811:19;:17;:19::i;:::-;35788:16;:43::i;:::-;35783:92;;35840:35;;;;;;;;;;;;;;35783:92;35701:174;35906:1;35892:16;;:2;:16;;;35888:52;;;35917:23;;;;;;;;;;;;;;35888:52;35953:43;35975:4;35981:2;35985:7;35994:1;35953:21;:43::i;:::-;36089:15;36086:160;;;36229:1;36208:19;36201:30;36086:160;36624:18;:24;36643:4;36624:24;;;;;;;;;;;;;;;;36622:26;;;;;;;;;;;;36693:18;:22;36712:2;36693:22;;;;;;;;;;;;;;;;36691:24;;;;;;;;;;;37015:145;37052:2;37100:45;37115:4;37121:2;37125:19;37100:14;:45::i;:::-;14642:8;37073:72;37015:18;:145::i;:::-;36986:17;:26;37004:7;36986:26;;;;;;;;;;;:174;;;;37330:1;14642:8;37280:19;:46;:51;37276:626;;;37352:19;37384:1;37374:7;:11;37352:33;;37541:1;37507:17;:30;37525:11;37507:30;;;;;;;;;;;;:35;37503:384;;;37645:13;;37630:11;:28;37626:242;;37825:19;37792:17;:30;37810:11;37792:30;;;;;;;;;;;:52;;;;37626:242;37503:384;37333:569;37276:626;37949:7;37945:2;37930:27;;37939:4;37930:27;;;;;;;;;;;;37968:42;37989:4;37995:2;37999:7;38008:1;37968:20;:42::i;:::-;35341:2677;;;35218:2800;;;:::o;51460:177::-;2189:13;:11;:13::i;:::-;51505:12:::1;51531:10;51523:24;;51569:21;51523:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51504:101;;;51624:7;51616:16;;;::::0;::::1;;51499:138;51460:177::o:0;26843:185::-;26981:39;26998:4;27004:2;27008:7;26981:39;;;;;;;;;;;;:16;:39::i;:::-;26843:185;;;:::o;51642:174::-;2189:13;:11;:13::i;:::-;51746:9:::1;;51737:5;51720:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;51707:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51791:20;51801:2;51805:5;51791:9;:20::i;:::-;51642:174:::0;;:::o;23796:144::-;23860:7;23903:27;23922:7;23903:18;:27::i;:::-;23880:52;;23796:144;;;:::o;51821:94::-;2189:13;:11;:13::i;:::-;51898:12:::1;51886:9;:24;;;;51821:94:::0;:::o;19039:224::-;19103:7;19144:1;19127:19;;:5;:19;;;19123:60;;;19155:28;;;;;;;;;;;;;;19123:60;13594:13;19201:18;:25;19220:5;19201:25;;;;;;;;;;;;;;;;:54;19194:61;;19039:224;;;:::o;2951:103::-;2189:13;:11;:13::i;:::-;3016:30:::1;3043:1;3016:18;:30::i;:::-;2951:103::o:0;2303:87::-;2349:7;2376:6;;;;;;;;;;;2369:13;;2303:87;:::o;24176:104::-;24232:13;24265:7;24258:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24176:104;:::o;52254:585::-;52312:10;50661:1;52312:25;;52351:8;;;;;;;;;;;52350:9;52342:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;52422:9;;52413:5;52396:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;52388:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50661:1;52472:5;:23;;52464:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52604:1;50661;52587:18;;;;:::i;:::-;52578:5;52545:18;:30;52564:10;52545:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:60;;52537:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52653:5;52642:16;;;;;:::i;:::-;;;52688:15;52677:9;:26;;:62;;;;;52736:3;52720:15;:19;;;;:::i;:::-;52707:9;:32;;52677:62;52669:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;52796:5;52762:18;:30;52781:10;52762:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;52806:28;52816:10;52828:5;52806:9;:28::i;:::-;52301:538;52254:585;:::o;51288:85::-;2189:13;:11;:13::i;:::-;51365:3:::1;51354:8;:14;;;;;;;;;;;;:::i;:::-;;51288:85:::0;:::o;26229:308::-;26340:19;:17;:19::i;:::-;26328:31;;:8;:31;;;26324:61;;;26368:17;;;;;;;;;;;;;;26324:61;26450:8;26398:18;:39;26417:19;:17;:19::i;:::-;26398:39;;;;;;;;;;;;;;;:49;26438:8;26398:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26510:8;26474:55;;26489:19;:17;:19::i;:::-;26474:55;;;26520:8;26474:55;;;;;;:::i;:::-;;;;;;;;26229:308;;:::o;50700:27::-;;;;;;;;;;;;;:::o;27099:399::-;27266:31;27279:4;27285:2;27289:7;27266:12;:31::i;:::-;27330:1;27312:2;:14;;;:19;27308:183;;27351:56;27382:4;27388:2;27392:7;27401:5;27351:30;:56::i;:::-;27346:145;;27435:40;;;;;;;;;;;;;;27346:145;27308:183;27099:399;;;;:::o;51378:77::-;2189:13;:11;:13::i;:::-;51444:6:::1;51433:8;;:17;;;;;;;;;;;;;;;;;;51378:77:::0;:::o;51920:329::-;51994:13;52030:16;52038:7;52030;:16::i;:::-;52022:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52143:1;52122:10;:8;:10::i;:::-;52116:24;:28;:128;;;;;;;;;;;;;;;;;52185:10;:8;:10::i;:::-;52197:18;:7;:16;:18::i;:::-;52168:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52116:128;52109:135;;51920:329;;;:::o;50666:28::-;;;;:::o;51078:78::-;51122:13;51142:9;;;;;;;;;;;;;;51078:78;:::o;26608:164::-;26705:4;26729:18;:25;26748:5;26729:25;;;;;;;;;;;;;;;:35;26755:8;26729:35;;;;;;;;;;;;;;;;;;;;;;;;;26722:42;;26608:164;;;;:::o;3209:201::-;2189:13;:11;:13::i;:::-;3318:1:::1;3298:22;;:8;:22;;;;3290:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3374:28;3393:8;3374:18;:28::i;:::-;3209:201:::0;:::o;51164:116::-;51223:4;51247:18;:25;51266:5;51247:25;;;;;;;;;;;;;;;;51240:32;;51164:116;;;:::o;27753:273::-;27810:4;27866:7;27847:15;:13;:15::i;:::-;:26;;:66;;;;;27900:13;;27890:7;:23;27847:66;:152;;;;;27998:1;14364:8;27951:17;:26;27969:7;27951:26;;;;;;;;;;;;:43;:48;27847:152;27827:172;;27753:273;;;:::o;46314:105::-;46374:7;46401:10;46394:17;;46314:105;:::o;50992:81::-;51049:4;51067:1;51060:8;;50992:81;:::o;20713:1129::-;20780:7;20800:12;20815:7;20800:22;;20883:4;20864:15;:13;:15::i;:::-;:23;20860:915;;20917:13;;20910:4;:20;20906:869;;;20955:14;20972:17;:23;20990:4;20972:23;;;;;;;;;;;;20955:40;;21088:1;14364:8;21061:6;:23;:28;21057:699;;;21580:113;21597:1;21587:6;:11;21580:113;;;21640:17;:25;21658:6;;;;;;;21640:25;;;;;;;;;;;;21631:34;;21580:113;;;21726:6;21719:13;;;;;;21057:699;20932:843;20906:869;20860:915;21803:31;;;;;;;;;;;;;;20713:1129;;;;:::o;33554:652::-;33649:27;33678:23;33719:53;33775:15;33719:71;;33961:7;33955:4;33948:21;33996:22;33990:4;33983:36;34072:4;34066;34056:21;34033:44;;34168:19;34162:26;34143:45;;33899:300;33554:652;;;:::o;34319:645::-;34461:11;34623:15;34617:4;34613:26;34605:34;;34782:15;34771:9;34767:31;34754:44;;34929:15;34918:9;34915:30;34908:4;34897:9;34894:19;34891:55;34881:65;;34319:645;;;;;:::o;45147:159::-;;;;;:::o;43459:309::-;43594:7;43614:16;14765:3;43640:19;:40;;43614:67;;14765:3;43707:31;43718:4;43724:2;43728:9;43707:10;:31::i;:::-;43699:40;;:61;;43692:68;;;43459:309;;;;;:::o;23287:447::-;23367:14;23535:15;23528:5;23524:27;23515:36;;23709:5;23695:11;23671:22;23667:40;23664:51;23657:5;23654:62;23644:72;;23287:447;;;;:::o;45965:158::-;;;;;:::o;2468:132::-;2543:12;:10;:12::i;:::-;2532:23;;:7;:5;:7::i;:::-;:23;;;2524:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2468:132::o;17827:285::-;17874:7;18078:15;:13;:15::i;:::-;18062:13;;:31;18055:38;;17827:285;:::o;28110:104::-;28179:27;28189:2;28193:8;28179:27;;;;;;;;;;;;:9;:27::i;:::-;28110:104;;:::o;3570:191::-;3644:16;3663:6;;;;;;;;;;;3644:25;;3689:8;3680:6;;:17;;;;;;;;;;;;;;;;;;3744:8;3713:40;;3734:8;3713:40;;;;;;;;;;;;3633:128;3570:191;:::o;41969:716::-;42132:4;42178:2;42153:45;;;42199:19;:17;:19::i;:::-;42220:4;42226:7;42235:5;42153:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42149:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42453:1;42436:6;:13;:18;42432:235;;;42482:40;;;;;;;;;;;;;;42432:235;42625:6;42619:13;42610:6;42606:2;42602:15;42595:38;42149:529;42322:54;;;42312:64;;;:6;:64;;;;42305:71;;;41969:716;;;;;;:::o;50895:92::-;50947:13;50974:8;50967:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50895:92;:::o;48751:723::-;48807:13;49037:1;49028:5;:10;49024:53;;;49055:10;;;;;;;;;;;;;;;;;;;;;49024:53;49087:12;49102:5;49087:20;;49118:14;49143:78;49158:1;49150:4;:9;49143:78;;49176:8;;;;;:::i;:::-;;;;49207:2;49199:10;;;;;:::i;:::-;;;49143:78;;;49231:19;49263:6;49253:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49231:39;;49281:154;49297:1;49288:5;:10;49281:154;;49325:1;49315:11;;;;;:::i;:::-;;;49392:2;49384:5;:10;;;;:::i;:::-;49371:2;:24;;;;:::i;:::-;49358:39;;49341:6;49348;49341:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;49421:2;49412:11;;;;;:::i;:::-;;;49281:154;;;49459:6;49445:21;;;;;48751:723;;;;:::o;44344:147::-;44481:6;44344:147;;;;;:::o;854:98::-;907:7;934:10;927:17;;854:98;:::o;28630:681::-;28753:19;28759:2;28763:8;28753:5;:19::i;:::-;28832:1;28814:2;:14;;;:19;28810:483;;28854:11;28868:13;;28854:27;;28900:13;28922:8;28916:3;:14;28900:30;;28949:233;28980:62;29019:1;29023:2;29027:7;;;;;;29036:5;28980:30;:62::i;:::-;28975:167;;29078:40;;;;;;;;;;;;;;28975:167;29177:3;29169:5;:11;28949:233;;29264:3;29247:13;;:20;29243:34;;29269:8;;;29243:34;28835:458;;28810:483;28630:681;;;:::o;29584:1529::-;29649:20;29672:13;;29649:36;;29714:1;29700:16;;:2;:16;;;29696:48;;;29725:19;;;;;;;;;;;;;;29696:48;29771:1;29759:8;:13;29755:44;;;29781:18;;;;;;;;;;;;;;29755:44;29812:61;29842:1;29846:2;29850:12;29864:8;29812:21;:61::i;:::-;30355:1;13731:2;30326:1;:25;;30325:31;30313:8;:44;30287:18;:22;30306:2;30287:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30634:139;30671:2;30725:33;30748:1;30752:2;30756:1;30725:14;:33::i;:::-;30692:30;30713:8;30692:20;:30::i;:::-;:66;30634:18;:139::i;:::-;30600:17;:31;30618:12;30600:31;;;;;;;;;;;:173;;;;30790:15;30808:12;30790:30;;30835:11;30864:8;30849:12;:23;30835:37;;30887:101;30939:9;;;;;;30935:2;30914:35;;30931:1;30914:35;;;;;;;;;;;;30983:3;30973:7;:13;30887:101;;31020:3;31004:13;:19;;;;30061:974;;31045:60;31074:1;31078:2;31082:12;31096:8;31045:20;:60::i;:::-;29638:1475;29584:1529;;:::o;25117:322::-;25187:14;25418:1;25408:8;25405:15;25380:23;25376:45;25366:55;;25117:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:400::-;10493:3;10514:84;10596:1;10591:3;10514:84;:::i;:::-;10507:91;;10607:93;10696:3;10607:93;:::i;:::-;10725:1;10720:3;10716:11;10709:18;;10333:400;;;:::o;10739:366::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:398::-;12014:3;12035:83;12116:1;12111:3;12035:83;:::i;:::-;12028:90;;12127:93;12216:3;12127:93;:::i;:::-;12245:1;12240:3;12236:11;12229:18;;11855:398;;;:::o;12259:366::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:118::-;12718:24;12736:5;12718:24;:::i;:::-;12713:3;12706:37;12631:118;;:::o;12755:701::-;13036:3;13058:95;13149:3;13140:6;13058:95;:::i;:::-;13051:102;;13170:95;13261:3;13252:6;13170:95;:::i;:::-;13163:102;;13282:148;13426:3;13282:148;:::i;:::-;13275:155;;13447:3;13440:10;;12755:701;;;;;:::o;13462:379::-;13646:3;13668:147;13811:3;13668:147;:::i;:::-;13661:154;;13832:3;13825:10;;13462:379;;;:::o;13847:222::-;13940:4;13978:2;13967:9;13963:18;13955:26;;13991:71;14059:1;14048:9;14044:17;14035:6;13991:71;:::i;:::-;13847:222;;;;:::o;14075:640::-;14270:4;14308:3;14297:9;14293:19;14285:27;;14322:71;14390:1;14379:9;14375:17;14366:6;14322:71;:::i;:::-;14403:72;14471:2;14460:9;14456:18;14447:6;14403:72;:::i;:::-;14485;14553:2;14542:9;14538:18;14529:6;14485:72;:::i;:::-;14604:9;14598:4;14594:20;14589:2;14578:9;14574:18;14567:48;14632:76;14703:4;14694:6;14632:76;:::i;:::-;14624:84;;14075:640;;;;;;;:::o;14721:210::-;14808:4;14846:2;14835:9;14831:18;14823:26;;14859:65;14921:1;14910:9;14906:17;14897:6;14859:65;:::i;:::-;14721:210;;;;:::o;14937:313::-;15050:4;15088:2;15077:9;15073:18;15065:26;;15137:9;15131:4;15127:20;15123:1;15112:9;15108:17;15101:47;15165:78;15238:4;15229:6;15165:78;:::i;:::-;15157:86;;14937:313;;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:::-;15847:4;15885:2;15874:9;15870:18;15862:26;;15934:9;15928:4;15924:20;15920:1;15909:9;15905:17;15898:47;15962:131;16088:4;15962:131;:::i;:::-;15954:139;;15681:419;;;:::o;16106:::-;16272:4;16310:2;16299:9;16295:18;16287:26;;16359:9;16353:4;16349:20;16345:1;16334:9;16330:17;16323:47;16387:131;16513:4;16387:131;:::i;:::-;16379:139;;16106:419;;;:::o;16531:::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16784:9;16778:4;16774:20;16770:1;16759:9;16755:17;16748:47;16812:131;16938:4;16812:131;:::i;:::-;16804:139;;16531:419;;;:::o;16956:::-;17122:4;17160:2;17149:9;17145:18;17137:26;;17209:9;17203:4;17199:20;17195:1;17184:9;17180:17;17173:47;17237:131;17363:4;17237:131;:::i;:::-;17229:139;;16956:419;;;:::o;17381:::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:131;17788:4;17662:131;:::i;:::-;17654:139;;17381:419;;;:::o;17806:::-;17972:4;18010:2;17999:9;17995:18;17987:26;;18059:9;18053:4;18049:20;18045:1;18034:9;18030:17;18023:47;18087:131;18213:4;18087:131;:::i;:::-;18079:139;;17806:419;;;:::o;18231:::-;18397:4;18435:2;18424:9;18420:18;18412:26;;18484:9;18478:4;18474:20;18470:1;18459:9;18455:17;18448:47;18512:131;18638:4;18512:131;:::i;:::-;18504:139;;18231:419;;;:::o;18656:222::-;18749:4;18787:2;18776:9;18772:18;18764:26;;18800:71;18868:1;18857:9;18853:17;18844:6;18800:71;:::i;:::-;18656:222;;;;:::o;18884:129::-;18918:6;18945:20;;:::i;:::-;18935:30;;18974:33;19002:4;18994:6;18974:33;:::i;:::-;18884:129;;;:::o;19019:75::-;19052:6;19085:2;19079:9;19069:19;;19019:75;:::o;19100:307::-;19161:4;19251:18;19243:6;19240:30;19237:56;;;19273:18;;:::i;:::-;19237:56;19311:29;19333:6;19311:29;:::i;:::-;19303:37;;19395:4;19389;19385:15;19377:23;;19100:307;;;:::o;19413:308::-;19475:4;19565:18;19557:6;19554:30;19551:56;;;19587:18;;:::i;:::-;19551:56;19625:29;19647:6;19625:29;:::i;:::-;19617:37;;19709:4;19703;19699:15;19691:23;;19413:308;;;:::o;19727:98::-;19778:6;19812:5;19806:12;19796:22;;19727:98;;;:::o;19831:99::-;19883:6;19917:5;19911:12;19901:22;;19831:99;;;:::o;19936:168::-;20019:11;20053:6;20048:3;20041:19;20093:4;20088:3;20084:14;20069:29;;19936:168;;;;:::o;20110:147::-;20211:11;20248:3;20233:18;;20110:147;;;;:::o;20263:169::-;20347:11;20381:6;20376:3;20369:19;20421:4;20416:3;20412:14;20397:29;;20263:169;;;;:::o;20438:148::-;20540:11;20577:3;20562:18;;20438:148;;;;:::o;20592:305::-;20632:3;20651:20;20669:1;20651:20;:::i;:::-;20646:25;;20685:20;20703:1;20685:20;:::i;:::-;20680:25;;20839:1;20771:66;20767:74;20764:1;20761:81;20758:107;;;20845:18;;:::i;:::-;20758:107;20889:1;20886;20882:9;20875:16;;20592:305;;;;:::o;20903:185::-;20943:1;20960:20;20978:1;20960:20;:::i;:::-;20955:25;;20994:20;21012:1;20994:20;:::i;:::-;20989:25;;21033:1;21023:35;;21038:18;;:::i;:::-;21023:35;21080:1;21077;21073:9;21068:14;;20903:185;;;;:::o;21094:348::-;21134:7;21157:20;21175:1;21157:20;:::i;:::-;21152:25;;21191:20;21209:1;21191:20;:::i;:::-;21186:25;;21379:1;21311:66;21307:74;21304:1;21301:81;21296:1;21289:9;21282:17;21278:105;21275:131;;;21386:18;;:::i;:::-;21275:131;21434:1;21431;21427:9;21416:20;;21094:348;;;;:::o;21448:191::-;21488:4;21508:20;21526:1;21508:20;:::i;:::-;21503:25;;21542:20;21560:1;21542:20;:::i;:::-;21537:25;;21581:1;21578;21575:8;21572:34;;;21586:18;;:::i;:::-;21572:34;21631:1;21628;21624:9;21616:17;;21448:191;;;;:::o;21645:96::-;21682:7;21711:24;21729:5;21711:24;:::i;:::-;21700:35;;21645:96;;;:::o;21747:90::-;21781:7;21824:5;21817:13;21810:21;21799:32;;21747:90;;;:::o;21843:149::-;21879:7;21919:66;21912:5;21908:78;21897:89;;21843:149;;;:::o;21998:126::-;22035:7;22075:42;22068:5;22064:54;22053:65;;21998:126;;;:::o;22130:77::-;22167:7;22196:5;22185:16;;22130:77;;;:::o;22213:154::-;22297:6;22292:3;22287;22274:30;22359:1;22350:6;22345:3;22341:16;22334:27;22213:154;;;:::o;22373:307::-;22441:1;22451:113;22465:6;22462:1;22459:13;22451:113;;;22550:1;22545:3;22541:11;22535:18;22531:1;22526:3;22522:11;22515:39;22487:2;22484:1;22480:10;22475:15;;22451:113;;;22582:6;22579:1;22576:13;22573:101;;;22662:1;22653:6;22648:3;22644:16;22637:27;22573:101;22422:258;22373:307;;;:::o;22686:320::-;22730:6;22767:1;22761:4;22757:12;22747:22;;22814:1;22808:4;22804:12;22835:18;22825:81;;22891:4;22883:6;22879:17;22869:27;;22825:81;22953:2;22945:6;22942:14;22922:18;22919:38;22916:84;;;22972:18;;:::i;:::-;22916:84;22737:269;22686:320;;;:::o;23012:281::-;23095:27;23117:4;23095:27;:::i;:::-;23087:6;23083:40;23225:6;23213:10;23210:22;23189:18;23177:10;23174:34;23171:62;23168:88;;;23236:18;;:::i;:::-;23168:88;23276:10;23272:2;23265:22;23055:238;23012:281;;:::o;23299:233::-;23338:3;23361:24;23379:5;23361:24;:::i;:::-;23352:33;;23407:66;23400:5;23397:77;23394:103;;;23477:18;;:::i;:::-;23394:103;23524:1;23517:5;23513:13;23506:20;;23299:233;;;:::o;23538:176::-;23570:1;23587:20;23605:1;23587:20;:::i;:::-;23582:25;;23621:20;23639:1;23621:20;:::i;:::-;23616:25;;23660:1;23650:35;;23665:18;;:::i;:::-;23650:35;23706:1;23703;23699:9;23694:14;;23538:176;;;;:::o;23720:180::-;23768:77;23765:1;23758:88;23865:4;23862:1;23855:15;23889:4;23886:1;23879:15;23906:180;23954:77;23951:1;23944:88;24051:4;24048:1;24041:15;24075:4;24072:1;24065:15;24092:180;24140:77;24137:1;24130:88;24237:4;24234:1;24227:15;24261:4;24258:1;24251:15;24278:180;24326:77;24323:1;24316:88;24423:4;24420:1;24413:15;24447:4;24444:1;24437:15;24464:180;24512:77;24509:1;24502:88;24609:4;24606:1;24599:15;24633:4;24630:1;24623:15;24650:117;24759:1;24756;24749:12;24773:117;24882:1;24879;24872:12;24896:117;25005:1;25002;24995:12;25019:117;25128:1;25125;25118:12;25142:102;25183:6;25234:2;25230:7;25225:2;25218:5;25214:14;25210:28;25200:38;;25142:102;;;:::o;25250:225::-;25390:34;25386:1;25378:6;25374:14;25367:58;25459:8;25454:2;25446:6;25442:15;25435:33;25250:225;:::o;25481:163::-;25621:15;25617:1;25609:6;25605:14;25598:39;25481:163;:::o;25650:168::-;25790:20;25786:1;25778:6;25774:14;25767:44;25650:168;:::o;25824:164::-;25964:16;25960:1;25952:6;25948:14;25941:40;25824:164;:::o;25994:155::-;26134:7;26130:1;26122:6;26118:14;26111:31;25994:155;:::o;26155:182::-;26295:34;26291:1;26283:6;26279:14;26272:58;26155:182;:::o;26343:234::-;26483:34;26479:1;26471:6;26467:14;26460:58;26552:17;26547:2;26539:6;26535:15;26528:42;26343:234;:::o;26583:177::-;26723:29;26719:1;26711:6;26707:14;26700:53;26583:177;:::o;26766:114::-;;:::o;26886:172::-;27026:24;27022:1;27014:6;27010:14;27003:48;26886:172;:::o;27064:122::-;27137:24;27155:5;27137:24;:::i;:::-;27130:5;27127:35;27117:63;;27176:1;27173;27166:12;27117:63;27064:122;:::o;27192:116::-;27262:21;27277:5;27262:21;:::i;:::-;27255:5;27252:32;27242:60;;27298:1;27295;27288:12;27242:60;27192:116;:::o;27314:120::-;27386:23;27403:5;27386:23;:::i;:::-;27379:5;27376:34;27366:62;;27424:1;27421;27414:12;27366:62;27314:120;:::o;27440:122::-;27513:24;27531:5;27513:24;:::i;:::-;27506:5;27503:35;27493:63;;27552:1;27549;27542:12;27493:63;27440:122;:::o

Swarm Source

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