ETH Price: $3,030.43 (+2.40%)
Gas: 1 Gwei

Token

ProjectAtmos (Atmos)
 

Overview

Max Total Supply

556 Atmos

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Atmos
0xdc5f2e5c6541e471196b88495cae938a0f809c4c
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:
SmartContract

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/SmartContract.sol

// ........................................................................................................................................................................................................
// ........................................................................................................................................................................................................
// ........................................................................................................................................................................................................
// ........................................................................................................................................................................................................
// ...........................................................................................:::::::::::::::::::::::::::::::::::::::::::::................................................................
// ..............................................................................:~!!77777?????????JJJJJJJJJJJJJJJJJJJ?!^^~!!!!!!!!!!!!!~~~!!!~~~^^::......................................................
// ..........................................................................:~7JYYJJJYYYYYY555555PPPPPPPPPPPPPPGGGGGGJ~!YPGGGGGGGGGGGGBG7~75GGGGP5YJ7!^::.................................................
// .......................................................................^!JYYYJJJJJYYYYYYYY55PPPPPP555555PPPPPPGGGGJ~!5GGGPPPPPPPPPPPG#BJ~!YGGGGGGGGGP5J?!^::............................................
// ....................................................................^7Y5YYJJJYYYYYYYYY55555PPPPPPP555555555PPGGGG?~7PGGPPPPPPPPPPPPPPG##5!~?PPPPPPPPPGGGPP5J7~^:........................................
// ................................................................:~?Y55YJJYYYYYYYY555555555PPGGGGP55555555555PGGP7^7PGGGGGGGGGGGGGGGGGGG##P!~75GPPPPPPPPPPPGGGP5Y?!^::...................................
// ............................................................~!!?5P5YYYYYY55555555555555555GGGGGGP555555555PGGG5!~JGGGGGGGGGGGGGGGGGGGGGGB#G7~!5GGGGGPPPPPPPPPGGGGGP5?!^^:::.............................
// ...........................................................~5PP5YYYYJJJJYYYYYYYY55555555PPGGGGGGPPPPPPPPPPGBP?~~5BBGGGGGGGGGGGGGGGGGGGGGGB#G7~!5GGGGGGGGGGGGGGGGGGGB#G?^~~~^............................
// ..................................................::::::^^^^^^^^^^^:::::::::^^^^^^^^~~~~~~~!!!77777???JJJYYJ!~!PB###BBBBPPPPPPPPPPPPPPPPPGBBP!~~5PPPPP5555555YYYYYYYYY!^^^~~^...........................
// ..........................................:::::::::::::::::::::::::::::::^^^^^^^^^^^^:::::::^^^^^^^^^^~~~~~~~!YBBBBBGPPP555YYYYYYJJJJJ????777!~~!!!~~~~~~~~~~~~~~^^^^^^^^^^^~!:.........................
// .....................:^~^^^^:::^:..:::::::::::::::::::::::::::::^^^^^^^^^^^^^^^^^^^^^^^^^^~~~~~~~~~~~~~~~~~~~!~!77!!!~~~~~^^^^^^^^^^^^^^^^^^~~~~~~^^~~~~~~~^^^~~^^^^^^^^^^^^^?!.........................
// .....................:YPP5555PGGG5!::::::::::^^^^^^^^^^^~?JJ???77!!!~^^^^^^^^^^^^~~~~~~~~~~~~~~~^^^^^^^^^^^^^~~^^^^^^^^^^^^^^^^^^^^^^^^^^^?555Y~^~~^^^^^^^^!J555J?!^^^^^^^^^^^?^........................
// ......................J?7777JBBBBGY~^^^^^^^^~~~~~~~~~~~~~5YYYYY55PGBGP?!~~~~~~~~~~~~~~~~~~!?JYYYJ?!~^^^^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!!~~~!~~~~~~!YGGPPPPPPY!~~~~~~~!!7^........................
// .....................:Y?!7???BGJ7~~~~~^~~~~~~~~~~~~~~~~~!57~~!7??GBBBG57!!!!!~~~~~~~~~^!JPGBBBBBGGP55?!~~~~~~!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!!!7YPPPPGBBGGBG5JY555PPPGG!........................
// ....................^5GYJJJ?JBG5555YYYYYYJJJJJJJJ?????7?5P7!77???G#G?7!!!777!!~~~~~~~~JGBBBGGBBBBBBBBG57!!~~~!!~~~~~~~!!!!!!!!!!7777????JJJJYYYYY5P555PGBGGGGGGGBBGBBPGGPPPP55Y~:.......................
// ..................^~JBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBG5YYYYY5B#GGGPP5PPG5YYYYYYYYG#BBBBGGGGGBB##&#BP?77??JJJYYYY555555PPPPPPPP55555YYYYYJJJJ??JYYG#BBBGB##GGBBBBBP??JJJJYYYY?:......................
// ..................~JY55YY5PBGGGGGGGGGGGGGGGBBGGGGGGGGBBBBBBBBBB#BB#B##BBBBBB##BBBBBBBBBBBBGGGBBGGGBB#&&#GP555555YYYJJJJJ?????????JJJJJYYYY5555PPPGGGGBBBB#BB#BB#BBBBBBBPGGGGGGGG?.......................
// ..................7JJ55555PGGGGGGGGGGG5YYY5BBBGBBGGBBBG5P555P5YYY5PP555YYYYYJJJJ????J?JBBGBGB&&BBBBBB#&&BPJJJYYY5555PPPPPGGGGGGGBBBBBBBBBBBBBBBBBBGBBBBBBBBGBB#BGGBBGB#GGGPPPPY7:.......................
// ..................7GPPPPPPPPPPPPPGGGPPPPPPPGGGGGGGGGGGGGPPPPPY???JYYYYYYYYYY555555PPGGB#BB#BG##B##BBBB#&#GBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB#B#GGB##BGG#BBBB##GPPP5Y~..........................
// ..................:!JPGGGGBBBBBBB###P!7JJ?J??YBGGGGGGGGGGGGGGGGGBB####BBBBBBBBBBBBB#B##BBBBBGGBB#BGGBBB&#BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB##B##B#&##GGBBBBB##5!~^::...........................
// .....................JGGGGYJYY5###BBG!~77!77~!G##BBBBBBBB###BBBBBB##BBBBBBBBBBBBBBBB#&#BBBGB##BBGB#BB#B#&BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGGGB###BBBPPGBBBBBGGBBGBG!................................
// .....................?PPGGJ???J##BGGG?!777?77?Y##BGB57???P###BBBBBB##BBBBBBBBBBBB##B###B####&&#BGB####B#&BGBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB#####BB5##PBBG#GGBP^::.................................
// .....................^~~~!!!!77??PGGGPPPPYYYYY5BBGGGP?JJ?P###BBGGGB##BBBBBBBBBBBB#BB###BBBPG##BB#BBB##G##BBBBBBBBBBBBBBBBBBBBBBBBBBB####BYYJ??7!?B####BBBBBG##GGGGP!....................................
// .................................~PBBBB##GY?JJJJJJYYYY55555555PPGB#####B###############BBGB#BG#BB&BB#GB##BBBBBBBBBBBBGGGGGPPP555YYYJYJJJ?:.......!G####BBBGGGGGGG5~.::::.....:.............::...........
// ..................................^YGBB####PYJJJJJJJJJJJJJJJJ?JY5GBB######&&&&&&&######BBBB#BB&#GGGBGGBBBBBBBBBBGPY?7!!!~~~~~~~~^^^^^^^^^^~^^^^^^^~?5GB###BBBGPY7^:::::::::::::::::::::::::::...........
// ....................................~J5GB######BBGY~::^^^^~~~~~!!777777??JJYJJJJ??G#####BBBBGBBBGGGGGGBB####BBBBBBG5?!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~!?Y55555YJ7!^^^::::::::::::::::::::::::::...........
// .....................................:^7JPGBBBG5J7~^^:::::::::^^^^^^^^^~~~~~~~~!!!75B#####BBBGGGGGGPPGBBBBGGGGGGPPP5J7!!!!!!!!!~~~~~~~~~~^^^^^^^^^~7?????77777777!^^::::::::::::::::....................
// ...............................:::^~7JY5PPPPPP5PPP5Y?!~~~~~~~!!!!!!7777?????JJJJJYYY5PGBBBBBBBGGP5YY55YYYYYYJJJJJJ??77!!!!!!!!!!!!!!~~~~~~~~~~~~~~7777777777777!!!!^^^^^:::::::::.......................
// ...........................::::.::^!??JJJJJJJJ?JJJJJ?!~~~~~~~~!!!!77777777777777?????JJJJJJJJ???77777777777777777777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~^^^^::::::::........................
// .......................::::::::::^~!777777!!!!!!!!!!~~~^^^^^^^^~~~~~!!!!!~~~~~~~~~~!!7777777!!!!!!!!!!!77!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~^^^:::::::.........................
// ......................::::::::::^~!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^::::::...........................
// ......................::::::::::^~~!!!~~~~~~~~~~~~~~~~~~~~~~~~~~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^:::::::.............................


pragma solidity ^0.8.9;




contract SmartContract is ERC721A, Ownable {
    
    using StringsUpgradeable for uint256;

    // IPFS Information
    string public baseURI;
    string public baseExtension = ".json";
    string notRevealedUri;
    // Collection and Pricing Information
    uint256 MAX_MINT_PER_TRANSAC = 50;
    uint256 public MAX_SUPPLY = 6942;
    uint256 public PUBLIC_MINT_PRICE = 0.088 ether;
    uint256 public WL_MINT_PRICE = 0.069 ether;
    // Mint Logistics
    bool public paused = true;
    bool public revealed = false;
    bool public onlyWhitelisted = true;
    // Whitelist
    address[] public whitelistAddresses;
    mapping(address => bool) public isWhitelisted;

    // Internal
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    // Team addresses
    address t1 = 0x25661f02D686714DC5ba63B7915774654e8E5538;
    address t2 = 0xa8D0Dd2070d2874E0B185e2d42c5a6Cfa6971C26;
    address t3 = 0x610BE2Ba080A0f69E5787C826B7734274fcdb0f3;
    address t4 = 0x9F38376129e766ee0A9Ba903f9A8D7425F6b8013;
    address t5 = 0x4104fbE93BCacfc4EF5683CF49ab07e5fE9E78ef;
    address t6 = 0x24d697a82b9ad433296c7B203a31846DAfae5079;
    address t7 = 0xDaCe8A59B8733e932957AC4A3101c80B87414BD0;
    address t8 = 0xeAb0798749b2Cd4B3E188Aa7fE37A410E554689F;
    address tt = 0x8fd50896b8a7aE31B80EC47bc76Cf4bF2caC8FEc;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A ("ProjectAtmos", "Atmos") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        // Team gets the first 69 Atmos banner;
        _safeMint(t1, 7);
        _safeMint(t2, 10);
        _safeMint(t3, 9);
        _safeMint(t4, 10);
        _safeMint(t5, 9);
        _safeMint(t6, 8);
        _safeMint(t7, 8);
        _safeMint(t8, 8);
        // Treasury gets the next 420 Atmos banner;
        _safeMint(tt, 420);
    }
    // Mint Function ====================================================================
    function publicMint (uint256 quantity) external payable{
        require(quantity <= MAX_MINT_PER_TRANSAC, "Exceed max mint amount per transaction.");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        if (msg.sender != owner()){
            require(!paused, "The contract is paused.");
            require(!onlyWhitelisted, "Public sale not started. Whitelist mint only.");
            require(msg.value >= (PUBLIC_MINT_PRICE * quantity), "Insufficient funds sent");
        }
        _safeMint(msg.sender, quantity);
    }
    function whiteListMint (uint256 quantity) external payable {
        require(quantity <= MAX_MINT_PER_TRANSAC, "Exceed max mint amount per transaction.");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        if (msg.sender != owner()){
            require(!paused, "The contract is paused.");
            if(onlyWhitelisted == true){
                // Whitelist verification
                require(isWhitelisted[msg.sender], "Only whitelisted users allowed during presale");
                require(msg.value >= (WL_MINT_PRICE * quantity), "Insufficient funds sent");
            }
        }
        _safeMint(msg.sender, quantity);
    }
    // ==================================================================================
    // Token retrieve
    function tokenURI(uint256 tokenId) public view virtual override returns(string memory){
        require(_exists(tokenId), "ERC721AMetadata: URI query for nonexistent token");
        if (!revealed){
            return string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension));
        }
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : "";
    }
    // Getters and Setters
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    function setPaused(bool _bool) public onlyOwner{
        paused = _bool;
    }
    function setRevealed(bool _bool) public onlyOwner{
        revealed = _bool;
    }
    function setOnlyWhitelisted(bool _bool) public onlyOwner{
        onlyWhitelisted = _bool;
    }
    // Whitelist
    function setWhitelist(address[] calldata _newWhitelistAddresses) public onlyOwner{
        for (uint i = 0; i < whitelistAddresses.length; i++){
            isWhitelisted[whitelistAddresses[i]] = false;
        }
        delete whitelistAddresses;
        whitelistAddresses = _newWhitelistAddresses;
        for (uint i = 0; i < whitelistAddresses.length; i++){
            isWhitelisted[whitelistAddresses[i]] = true;
        }
    }
    function checkIsWhitelist(address addr) public view returns(bool){
        return isWhitelisted[addr];
    }
    // Withdraw
    function withdraw() external payable onlyOwner {
        (bool hs, ) = payable(tt).call{value: address(this).balance}("");
        if (!hs){
            payable(owner()).transfer(address(this).balance);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_PRICE","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIsWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_newWhitelistAddresses","type":"address[]"}],"name":"setWhitelist","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000dbc565b506032600c55611b1e600d55670138a388a43c0000600e5566f5232269808000600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055507325661f02d686714dc5ba63b7915774654e8e5538601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a8d0dd2070d2874e0b185e2d42c5a6cfa6971c26601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073610be2ba080a0f69e5787c826b7734274fcdb0f3601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739f38376129e766ee0a9ba903f9a8d7425f6b8013601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734104fbe93bcacfc4ef5683cf49ab07e5fe9e78ef601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507324d697a82b9ad433296c7b203a31846dafae5079601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dace8a59b8733e932957ac4a3101c80b87414bd0601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073eab0798749b2cd4b3e188aa7fe37a410e554689f601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738fd50896b8a7ae31b80ec47bc76cf4bf2cac8fec601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620003cf57600080fd5b50604051620050ab380380620050ab8339818101604052810190620003f5919062001009565b6040518060400160405280600c81526020017f50726f6a65637441746d6f7300000000000000000000000000000000000000008152506040518060400160405280600581526020017f41746d6f7300000000000000000000000000000000000000000000000000000081525081600290805190602001906200047992919062000dbc565b5080600390805190602001906200049292919062000dbc565b50620004a3620006d360201b60201c565b6000819055505050620004cb620004bf620006dc60201b60201c565b620006e460201b60201c565b620004dc82620007aa60201b60201c565b620004ed816200085560201b60201c565b62000522601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660076200090060201b60201c565b62000557601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200090060201b60201c565b6200058c601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660096200090060201b60201c565b620005c1601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200090060201b60201c565b620005f6601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660096200090060201b60201c565b6200062b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660086200090060201b60201c565b62000660601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660086200090060201b60201c565b62000695601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660086200090060201b60201c565b620006cb601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101a46200090060201b60201c565b505062001315565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007ba620006dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007e06200092660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083090620010ef565b60405180910390fd5b80600990805190602001906200085192919062000dbc565b5050565b62000865620006dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088b6200092660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008db90620010ef565b60405180910390fd5b80600b9080519060200190620008fc92919062000dbc565b5050565b620009228282604051806020016040528060008152506200095060201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620009bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620009f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000a0d600085838662000c3360201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000a7a6001851462000c3960201b60201c565b901b60a042901b62000a928662000c4360201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000ba3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000b4f600087848060010195508762000c4d60201b60201c565b62000b86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821062000ad857826000541462000b9d57600080fd5b62000c0f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000ba4575b81600081905550505062000c2d600085838662000dae60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c7b62000db460201b60201c565b8786866040518563ffffffff1660e01b815260040162000c9f9493929190620011ce565b6020604051808303816000875af192505050801562000cde57506040513d601f19601f8201168201806040525081019062000cdb91906200127f565b60015b62000d5b573d806000811462000d11576040519150601f19603f3d011682016040523d82523d6000602084013e62000d16565b606091505b50600081510362000d53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b82805462000dca90620012e0565b90600052602060002090601f01602090048101928262000dee576000855562000e3a565b82601f1062000e0957805160ff191683800117855562000e3a565b8280016001018555821562000e3a579182015b8281111562000e3957825182559160200191906001019062000e1c565b5b50905062000e49919062000e4d565b5090565b5b8082111562000e6857600081600090555060010162000e4e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ed58262000e8a565b810181811067ffffffffffffffff8211171562000ef75762000ef662000e9b565b5b80604052505050565b600062000f0c62000e6c565b905062000f1a828262000eca565b919050565b600067ffffffffffffffff82111562000f3d5762000f3c62000e9b565b5b62000f488262000e8a565b9050602081019050919050565b60005b8381101562000f7557808201518184015260208101905062000f58565b8381111562000f85576000848401525b50505050565b600062000fa262000f9c8462000f1f565b62000f00565b90508281526020810184848401111562000fc15762000fc062000e85565b5b62000fce84828562000f55565b509392505050565b600082601f83011262000fee5762000fed62000e80565b5b81516200100084826020860162000f8b565b91505092915050565b6000806040838503121562001023576200102262000e76565b5b600083015167ffffffffffffffff81111562001044576200104362000e7b565b5b620010528582860162000fd6565b925050602083015167ffffffffffffffff81111562001076576200107562000e7b565b5b620010848582860162000fd6565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010d76020836200108e565b9150620010e4826200109f565b602082019050919050565b600060208201905081810360008301526200110a81620010c8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200113e8262001111565b9050919050565b620011508162001131565b82525050565b6000819050919050565b6200116b8162001156565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200119a8262001171565b620011a681856200117c565b9350620011b881856020860162000f55565b620011c38162000e8a565b840191505092915050565b6000608082019050620011e5600083018762001145565b620011f4602083018662001145565b62001203604083018562001160565b81810360608301526200121781846200118d565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620012598162001222565b81146200126557600080fd5b50565b60008151905062001279816200124e565b92915050565b60006020828403121562001298576200129762000e76565b5b6000620012a88482850162001268565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012f957607f821691505b6020821081036200130f576200130e620012b1565b5b50919050565b613d8680620013256000396000f3fe6080604052600436106102255760003560e01c80636bde262711610123578063a85f31d8116100ab578063e0a808531161006f578063e0a80853146107e0578063e985e9c514610809578063f2c4ce1e14610846578063f2fde38b1461086f578063f42176481461089857610225565b8063a85f31d8146106e9578063b88d4fde14610726578063c66828621461074f578063c87b56dd1461077a578063da3ef23f146107b757610225565b806388089f0b116100f257806388089f0b146106145780638da5cb5b1461063f57806395d89b411461066a5780639c70b51214610695578063a22cb465146106c057610225565b80636bde26271461056a5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd57610225565b806332cb6b0c116101b15780635183022711610175578063518302271461047157806355f804b31461049c5780635c975abb146104c55780635d1235d4146104f05780636352211e1461052d57610225565b806332cb6b0c146103ad5780633af32abf146103d85780633c952764146104155780633ccfd60b1461043e57806342842e0e1461044857610225565b8063095ea7b3116101f8578063095ea7b3146102eb57806316c38b3c1461031457806318160ddd1461033d57806323b872dd146103685780632db115441461039157610225565b806301ffc9a71461022a57806302e001ef1461026757806306fdde0314610283578063081812fc146102ae575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d06565b6108c1565b60405161025e9190612d4e565b60405180910390f35b610281600480360381019061027c9190612d9f565b610953565b005b34801561028f57600080fd5b50610298610b7f565b6040516102a59190612e65565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612d9f565b610c11565b6040516102e29190612ec8565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612f0f565b610c8d565b005b34801561032057600080fd5b5061033b60048036038101906103369190612f7b565b610e33565b005b34801561034957600080fd5b50610352610ecc565b60405161035f9190612fb7565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612fd2565b610ee3565b005b6103ab60048036038101906103a69190612d9f565b610ef3565b005b3480156103b957600080fd5b506103c26110c7565b6040516103cf9190612fb7565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613025565b6110cd565b60405161040c9190612d4e565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612f7b565b6110ed565b005b610446611186565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612fd2565b6112e7565b005b34801561047d57600080fd5b50610486611307565b6040516104939190612d4e565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190613187565b61131a565b005b3480156104d157600080fd5b506104da6113b0565b6040516104e79190612d4e565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612d9f565b6113c3565b6040516105249190612ec8565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612d9f565b611402565b6040516105619190612ec8565b60405180910390f35b34801561057657600080fd5b5061057f611414565b60405161058c9190612fb7565b60405180910390f35b3480156105a157600080fd5b506105aa61141a565b6040516105b79190612e65565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613025565b6114a8565b6040516105f49190612fb7565b60405180910390f35b34801561060957600080fd5b50610612611560565b005b34801561062057600080fd5b506106296115e8565b6040516106369190612fb7565b60405180910390f35b34801561064b57600080fd5b506106546115ee565b6040516106619190612ec8565b60405180910390f35b34801561067657600080fd5b5061067f611618565b60405161068c9190612e65565b60405180910390f35b3480156106a157600080fd5b506106aa6116aa565b6040516106b79190612d4e565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906131d0565b6116bd565b005b3480156106f557600080fd5b50610710600480360381019061070b9190613025565b611834565b60405161071d9190612d4e565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906132b1565b61188a565b005b34801561075b57600080fd5b506107646118fd565b6040516107719190612e65565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190612d9f565b61198b565b6040516107ae9190612e65565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613187565b611a80565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612f7b565b611b16565b005b34801561081557600080fd5b50610830600480360381019061082b9190613334565b611baf565b60405161083d9190612d4e565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613187565b611c43565b005b34801561087b57600080fd5b5061089660048036038101906108919190613025565b611cd9565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906133d4565b611dd0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c54811115610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90613493565b60405180910390fd5b600d54816109a4610ecc565b6109ae91906134e2565b11156109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613584565b60405180910390fd5b6109f76115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7257601060009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906135f0565b60405180910390fd5b60011515601060029054906101000a900460ff16151503610b7157601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613682565b60405180910390fd5b80600f54610b2e91906136a2565b341015610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613748565b60405180910390fd5b5b5b610b7c3382611fe4565b50565b606060028054610b8e90613797565b80601f0160208091040260200160405190810160405280929190818152602001828054610bba90613797565b8015610c075780601f10610bdc57610100808354040283529160200191610c07565b820191906000526020600020905b815481529060010190602001808311610bea57829003601f168201915b5050505050905090565b6000610c1c82612002565b610c52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9882612061565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e61212d565b73ffffffffffffffffffffffffffffffffffffffff1614610d8157610d4a81610d4561212d565b611baf565b610d80576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e3b612135565b73ffffffffffffffffffffffffffffffffffffffff16610e596115ee565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613814565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ed661213d565b6001546000540303905090565b610eee838383612146565b505050565b600c54811115610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613493565b60405180910390fd5b600d5481610f44610ecc565b610f4e91906134e2565b1115610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613584565b60405180910390fd5b610f976115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ba57601060009054906101000a900460ff1615611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906135f0565b60405180910390fd5b601060029054906101000a900460ff1615611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906138a6565b60405180910390fd5b80600e5461107791906136a2565b3410156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613748565b60405180910390fd5b5b6110c43382611fe4565b50565b600d5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6110f5612135565b73ffffffffffffffffffffffffffffffffffffffff166111136115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613814565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b61118e612135565b73ffffffffffffffffffffffffffffffffffffffff166111ac6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613814565b60405180910390fd5b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161124a906138f7565b60006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b50509050806112e45761129d6115ee565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505b50565b6113028383836040518060200160405280600081525061188a565b505050565b601060019054906101000a900460ff1681565b611322612135565b73ffffffffffffffffffffffffffffffffffffffff166113406115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613814565b60405180910390fd5b80600990805190602001906113ac929190612b36565b5050565b601060009054906101000a900460ff1681565b601181815481106113d357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061140d82612061565b9050919050565b600e5481565b6009805461142790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461145390613797565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611568612135565b73ffffffffffffffffffffffffffffffffffffffff166115866115ee565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390613814565b60405180910390fd5b6115e660006124ed565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461162790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461165390613797565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b6116c561212d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611729576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061173661212d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e361212d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118289190612d4e565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611895848484612146565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f7576118c0848484846125b3565b6118f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461190a90613797565b80601f016020809104026020016040519081016040528092919081815260200182805461193690613797565b80156119835780601f1061195857610100808354040283529160200191611983565b820191906000526020600020905b81548152906001019060200180831161196657829003601f168201915b505050505081565b606061199682612002565b6119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061397e565b60405180910390fd5b601060019054906101000a900460ff16611a1e57600b6119f483612703565b600a604051602001611a0893929190613a6e565b6040516020818303038152906040529050611a7b565b600060098054611a2d90613797565b905011611a495760405180602001604052806000815250611a78565b6009611a5483612703565b600a604051602001611a6893929190613a6e565b6040516020818303038152906040525b90505b919050565b611a88612135565b73ffffffffffffffffffffffffffffffffffffffff16611aa66115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613814565b60405180910390fd5b80600a9080519060200190611b12929190612b36565b5050565b611b1e612135565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613814565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4b612135565b73ffffffffffffffffffffffffffffffffffffffff16611c696115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613814565b60405180910390fd5b80600b9080519060200190611cd5929190612b36565b5050565b611ce1612135565b73ffffffffffffffffffffffffffffffffffffffff16611cff6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613b11565b60405180910390fd5b611dcd816124ed565b50565b611dd8612135565b73ffffffffffffffffffffffffffffffffffffffff16611df66115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613814565b60405180910390fd5b60005b601180549050811015611f055760006012600060118481548110611e7657611e75613b31565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611efd90613b60565b915050611e4f565b5060116000611f149190612bbc565b818160119190611f25929190612bdd565b5060005b601180549050811015611fdf5760016012600060118481548110611f5057611f4f613b31565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611fd790613b60565b915050611f29565b505050565b611ffe828260405180602001604052806000815250612863565b5050565b60008161200d61213d565b1115801561201c575060005482105b801561205a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061207061213d565b116120f6576000548110156120f55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f3575b600081036120e95760046000836001900393508381526020019081526020016000205490506120bf565b8092505050612128565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061215182612061565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d961212d565b73ffffffffffffffffffffffffffffffffffffffff16148061220857506122078561220261212d565b611baf565b5b8061224d575061221661212d565b73ffffffffffffffffffffffffffffffffffffffff1661223584610c11565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612286576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f98585856001612b16565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f686612b1c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361247e576000600184019050600060046000838152602001908152602001600020540361247c57600054811461247b578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e68585856001612b26565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d961212d565b8786866040518563ffffffff1660e01b81526004016125fb9493929190613bfd565b6020604051808303816000875af192505050801561263757506040513d601f19601f820116820180604052508101906126349190613c5e565b60015b6126b0573d8060008114612667576040519150601f19603f3d011682016040523d82523d6000602084013e61266c565b606091505b5060008151036126a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361274a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061285e565b600082905060005b6000821461277c57808061276590613b60565b915050600a826127759190613cba565b9150612752565b60008167ffffffffffffffff8111156127985761279761305c565b5b6040519080825280601f01601f1916602001820160405280156127ca5781602001600182028036833780820191505090505b5090505b60008514612857576001826127e39190613ceb565b9150600a856127f29190613d1f565b60306127fe91906134e2565b60f81b81838151811061281457612813613b31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128509190613cba565b94506127ce565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612909576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129166000858386612b16565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161297b60018514612b2c565b901b60a042901b61298b86612b1c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a8f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a3f60008784806001019550876125b3565b612a75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129d0578260005414612a8a57600080fd5b612afa565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a90575b816000819055505050612b106000858386612b26565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612b4290613797565b90600052602060002090601f016020900481019282612b645760008555612bab565b82601f10612b7d57805160ff1916838001178555612bab565b82800160010185558215612bab579182015b82811115612baa578251825591602001919060010190612b8f565b5b509050612bb89190612c7d565b5090565b5080546000825590600052602060002090810190612bda9190612c7d565b50565b828054828255906000526020600020908101928215612c6c579160200282015b82811115612c6b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612bfd565b5b509050612c799190612c7d565b5090565b5b80821115612c96576000816000905550600101612c7e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce381612cae565b8114612cee57600080fd5b50565b600081359050612d0081612cda565b92915050565b600060208284031215612d1c57612d1b612ca4565b5b6000612d2a84828501612cf1565b91505092915050565b60008115159050919050565b612d4881612d33565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b6000819050919050565b612d7c81612d69565b8114612d8757600080fd5b50565b600081359050612d9981612d73565b92915050565b600060208284031215612db557612db4612ca4565b5b6000612dc384828501612d8a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e06578082015181840152602081019050612deb565b83811115612e15576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3782612dcc565b612e418185612dd7565b9350612e51818560208601612de8565b612e5a81612e1b565b840191505092915050565b60006020820190508181036000830152612e7f8184612e2c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eb282612e87565b9050919050565b612ec281612ea7565b82525050565b6000602082019050612edd6000830184612eb9565b92915050565b612eec81612ea7565b8114612ef757600080fd5b50565b600081359050612f0981612ee3565b92915050565b60008060408385031215612f2657612f25612ca4565b5b6000612f3485828601612efa565b9250506020612f4585828601612d8a565b9150509250929050565b612f5881612d33565b8114612f6357600080fd5b50565b600081359050612f7581612f4f565b92915050565b600060208284031215612f9157612f90612ca4565b5b6000612f9f84828501612f66565b91505092915050565b612fb181612d69565b82525050565b6000602082019050612fcc6000830184612fa8565b92915050565b600080600060608486031215612feb57612fea612ca4565b5b6000612ff986828701612efa565b935050602061300a86828701612efa565b925050604061301b86828701612d8a565b9150509250925092565b60006020828403121561303b5761303a612ca4565b5b600061304984828501612efa565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309482612e1b565b810181811067ffffffffffffffff821117156130b3576130b261305c565b5b80604052505050565b60006130c6612c9a565b90506130d2828261308b565b919050565b600067ffffffffffffffff8211156130f2576130f161305c565b5b6130fb82612e1b565b9050602081019050919050565b82818337600083830152505050565b600061312a613125846130d7565b6130bc565b90508281526020810184848401111561314657613145613057565b5b613151848285613108565b509392505050565b600082601f83011261316e5761316d613052565b5b813561317e848260208601613117565b91505092915050565b60006020828403121561319d5761319c612ca4565b5b600082013567ffffffffffffffff8111156131bb576131ba612ca9565b5b6131c784828501613159565b91505092915050565b600080604083850312156131e7576131e6612ca4565b5b60006131f585828601612efa565b925050602061320685828601612f66565b9150509250929050565b600067ffffffffffffffff82111561322b5761322a61305c565b5b61323482612e1b565b9050602081019050919050565b600061325461324f84613210565b6130bc565b9050828152602081018484840111156132705761326f613057565b5b61327b848285613108565b509392505050565b600082601f83011261329857613297613052565b5b81356132a8848260208601613241565b91505092915050565b600080600080608085870312156132cb576132ca612ca4565b5b60006132d987828801612efa565b94505060206132ea87828801612efa565b93505060406132fb87828801612d8a565b925050606085013567ffffffffffffffff81111561331c5761331b612ca9565b5b61332887828801613283565b91505092959194509250565b6000806040838503121561334b5761334a612ca4565b5b600061335985828601612efa565b925050602061336a85828601612efa565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261339457613393613052565b5b8235905067ffffffffffffffff8111156133b1576133b0613374565b5b6020830191508360208202830111156133cd576133cc613379565b5b9250929050565b600080602083850312156133eb576133ea612ca4565b5b600083013567ffffffffffffffff81111561340957613408612ca9565b5b6134158582860161337e565b92509250509250929050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b600061347d602783612dd7565b915061348882613421565b604082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ed82612d69565b91506134f883612d69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561352d5761352c6134b3565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061356e601683612dd7565b915061357982613538565b602082019050919050565b6000602082019050818103600083015261359d81613561565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b60006135da601783612dd7565b91506135e5826135a4565b602082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b7f4f6e6c792077686974656c697374656420757365727320616c6c6f776564206460008201527f7572696e672070726573616c6500000000000000000000000000000000000000602082015250565b600061366c602d83612dd7565b915061367782613610565b604082019050919050565b6000602082019050818103600083015261369b8161365f565b9050919050565b60006136ad82612d69565b91506136b883612d69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f1576136f06134b3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613732601783612dd7565b915061373d826136fc565b602082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137af57607f821691505b6020821081036137c2576137c1613768565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137fe602083612dd7565b9150613809826137c8565b602082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f5075626c69632073616c65206e6f7420737461727465642e2057686974656c6960008201527f7374206d696e74206f6e6c792e00000000000000000000000000000000000000602082015250565b6000613890602d83612dd7565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b600081905092915050565b50565b60006138e16000836138c6565b91506138ec826138d1565b600082019050919050565b6000613902826138d4565b9150819050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613968603083612dd7565b91506139738261390c565b604082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139cb81613797565b6139d5818661399e565b945060018216600081146139f05760018114613a0157613a34565b60ff19831686528186019350613a34565b613a0a856139a9565b60005b83811015613a2c57815481890152600182019150602081019050613a0d565b838801955050505b50505092915050565b6000613a4882612dcc565b613a52818561399e565b9350613a62818560208601612de8565b80840191505092915050565b6000613a7a82866139be565b9150613a868285613a3d565b9150613a9282846139be565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613afb602683612dd7565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b6b82612d69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b9d57613b9c6134b3565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613bcf82613ba8565b613bd98185613bb3565b9350613be9818560208601612de8565b613bf281612e1b565b840191505092915050565b6000608082019050613c126000830187612eb9565b613c1f6020830186612eb9565b613c2c6040830185612fa8565b8181036060830152613c3e8184613bc4565b905095945050505050565b600081519050613c5881612cda565b92915050565b600060208284031215613c7457613c73612ca4565b5b6000613c8284828501613c49565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cc582612d69565b9150613cd083612d69565b925082613ce057613cdf613c8b565b5b828204905092915050565b6000613cf682612d69565b9150613d0183612d69565b925082821015613d1457613d136134b3565b5b828203905092915050565b6000613d2a82612d69565b9150613d3583612d69565b925082613d4557613d44613c8b565b5b82820690509291505056fea2646970667358221220789e7064f5a23036957b4ec582e568049366053e3150c594f642c441113200e664736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516133704d5035636f71347275456d7435724b484d39756736514b52366a355a71526b6b59423275715276782f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65656a566548443865323435777432776244324a4b6d68483543487075337968676a723176486752354147432f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636bde262711610123578063a85f31d8116100ab578063e0a808531161006f578063e0a80853146107e0578063e985e9c514610809578063f2c4ce1e14610846578063f2fde38b1461086f578063f42176481461089857610225565b8063a85f31d8146106e9578063b88d4fde14610726578063c66828621461074f578063c87b56dd1461077a578063da3ef23f146107b757610225565b806388089f0b116100f257806388089f0b146106145780638da5cb5b1461063f57806395d89b411461066a5780639c70b51214610695578063a22cb465146106c057610225565b80636bde26271461056a5780636c0360eb1461059557806370a08231146105c0578063715018a6146105fd57610225565b806332cb6b0c116101b15780635183022711610175578063518302271461047157806355f804b31461049c5780635c975abb146104c55780635d1235d4146104f05780636352211e1461052d57610225565b806332cb6b0c146103ad5780633af32abf146103d85780633c952764146104155780633ccfd60b1461043e57806342842e0e1461044857610225565b8063095ea7b3116101f8578063095ea7b3146102eb57806316c38b3c1461031457806318160ddd1461033d57806323b872dd146103685780632db115441461039157610225565b806301ffc9a71461022a57806302e001ef1461026757806306fdde0314610283578063081812fc146102ae575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d06565b6108c1565b60405161025e9190612d4e565b60405180910390f35b610281600480360381019061027c9190612d9f565b610953565b005b34801561028f57600080fd5b50610298610b7f565b6040516102a59190612e65565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612d9f565b610c11565b6040516102e29190612ec8565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190612f0f565b610c8d565b005b34801561032057600080fd5b5061033b60048036038101906103369190612f7b565b610e33565b005b34801561034957600080fd5b50610352610ecc565b60405161035f9190612fb7565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612fd2565b610ee3565b005b6103ab60048036038101906103a69190612d9f565b610ef3565b005b3480156103b957600080fd5b506103c26110c7565b6040516103cf9190612fb7565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613025565b6110cd565b60405161040c9190612d4e565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190612f7b565b6110ed565b005b610446611186565b005b34801561045457600080fd5b5061046f600480360381019061046a9190612fd2565b6112e7565b005b34801561047d57600080fd5b50610486611307565b6040516104939190612d4e565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190613187565b61131a565b005b3480156104d157600080fd5b506104da6113b0565b6040516104e79190612d4e565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612d9f565b6113c3565b6040516105249190612ec8565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190612d9f565b611402565b6040516105619190612ec8565b60405180910390f35b34801561057657600080fd5b5061057f611414565b60405161058c9190612fb7565b60405180910390f35b3480156105a157600080fd5b506105aa61141a565b6040516105b79190612e65565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613025565b6114a8565b6040516105f49190612fb7565b60405180910390f35b34801561060957600080fd5b50610612611560565b005b34801561062057600080fd5b506106296115e8565b6040516106369190612fb7565b60405180910390f35b34801561064b57600080fd5b506106546115ee565b6040516106619190612ec8565b60405180910390f35b34801561067657600080fd5b5061067f611618565b60405161068c9190612e65565b60405180910390f35b3480156106a157600080fd5b506106aa6116aa565b6040516106b79190612d4e565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e291906131d0565b6116bd565b005b3480156106f557600080fd5b50610710600480360381019061070b9190613025565b611834565b60405161071d9190612d4e565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906132b1565b61188a565b005b34801561075b57600080fd5b506107646118fd565b6040516107719190612e65565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190612d9f565b61198b565b6040516107ae9190612e65565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613187565b611a80565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612f7b565b611b16565b005b34801561081557600080fd5b50610830600480360381019061082b9190613334565b611baf565b60405161083d9190612d4e565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613187565b611c43565b005b34801561087b57600080fd5b5061089660048036038101906108919190613025565b611cd9565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906133d4565b611dd0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c54811115610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90613493565b60405180910390fd5b600d54816109a4610ecc565b6109ae91906134e2565b11156109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613584565b60405180910390fd5b6109f76115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7257601060009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a70906135f0565b60405180910390fd5b60011515601060029054906101000a900460ff16151503610b7157601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613682565b60405180910390fd5b80600f54610b2e91906136a2565b341015610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613748565b60405180910390fd5b5b5b610b7c3382611fe4565b50565b606060028054610b8e90613797565b80601f0160208091040260200160405190810160405280929190818152602001828054610bba90613797565b8015610c075780601f10610bdc57610100808354040283529160200191610c07565b820191906000526020600020905b815481529060010190602001808311610bea57829003601f168201915b5050505050905090565b6000610c1c82612002565b610c52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9882612061565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1e61212d565b73ffffffffffffffffffffffffffffffffffffffff1614610d8157610d4a81610d4561212d565b611baf565b610d80576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610e3b612135565b73ffffffffffffffffffffffffffffffffffffffff16610e596115ee565b73ffffffffffffffffffffffffffffffffffffffff1614610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690613814565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ed661213d565b6001546000540303905090565b610eee838383612146565b505050565b600c54811115610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613493565b60405180910390fd5b600d5481610f44610ecc565b610f4e91906134e2565b1115610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613584565b60405180910390fd5b610f976115ee565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ba57601060009054906101000a900460ff1615611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906135f0565b60405180910390fd5b601060029054906101000a900460ff1615611069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611060906138a6565b60405180910390fd5b80600e5461107791906136a2565b3410156110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b090613748565b60405180910390fd5b5b6110c43382611fe4565b50565b600d5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6110f5612135565b73ffffffffffffffffffffffffffffffffffffffff166111136115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613814565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b61118e612135565b73ffffffffffffffffffffffffffffffffffffffff166111ac6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613814565b60405180910390fd5b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161124a906138f7565b60006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b50509050806112e45761129d6115ee565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505b50565b6113028383836040518060200160405280600081525061188a565b505050565b601060019054906101000a900460ff1681565b611322612135565b73ffffffffffffffffffffffffffffffffffffffff166113406115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613814565b60405180910390fd5b80600990805190602001906113ac929190612b36565b5050565b601060009054906101000a900460ff1681565b601181815481106113d357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061140d82612061565b9050919050565b600e5481565b6009805461142790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461145390613797565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611568612135565b73ffffffffffffffffffffffffffffffffffffffff166115866115ee565b73ffffffffffffffffffffffffffffffffffffffff16146115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d390613814565b60405180910390fd5b6115e660006124ed565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461162790613797565b80601f016020809104026020016040519081016040528092919081815260200182805461165390613797565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b6116c561212d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611729576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061173661212d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e361212d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118289190612d4e565b60405180910390a35050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611895848484612146565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f7576118c0848484846125b3565b6118f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461190a90613797565b80601f016020809104026020016040519081016040528092919081815260200182805461193690613797565b80156119835780601f1061195857610100808354040283529160200191611983565b820191906000526020600020905b81548152906001019060200180831161196657829003601f168201915b505050505081565b606061199682612002565b6119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc9061397e565b60405180910390fd5b601060019054906101000a900460ff16611a1e57600b6119f483612703565b600a604051602001611a0893929190613a6e565b6040516020818303038152906040529050611a7b565b600060098054611a2d90613797565b905011611a495760405180602001604052806000815250611a78565b6009611a5483612703565b600a604051602001611a6893929190613a6e565b6040516020818303038152906040525b90505b919050565b611a88612135565b73ffffffffffffffffffffffffffffffffffffffff16611aa66115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613814565b60405180910390fd5b80600a9080519060200190611b12929190612b36565b5050565b611b1e612135565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613814565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4b612135565b73ffffffffffffffffffffffffffffffffffffffff16611c696115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613814565b60405180910390fd5b80600b9080519060200190611cd5929190612b36565b5050565b611ce1612135565b73ffffffffffffffffffffffffffffffffffffffff16611cff6115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90613b11565b60405180910390fd5b611dcd816124ed565b50565b611dd8612135565b73ffffffffffffffffffffffffffffffffffffffff16611df66115ee565b73ffffffffffffffffffffffffffffffffffffffff1614611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613814565b60405180910390fd5b60005b601180549050811015611f055760006012600060118481548110611e7657611e75613b31565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611efd90613b60565b915050611e4f565b5060116000611f149190612bbc565b818160119190611f25929190612bdd565b5060005b601180549050811015611fdf5760016012600060118481548110611f5057611f4f613b31565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611fd790613b60565b915050611f29565b505050565b611ffe828260405180602001604052806000815250612863565b5050565b60008161200d61213d565b1115801561201c575060005482105b801561205a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061207061213d565b116120f6576000548110156120f55760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f3575b600081036120e95760046000836001900393508381526020019081526020016000205490506120bf565b8092505050612128565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061215182612061565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d961212d565b73ffffffffffffffffffffffffffffffffffffffff16148061220857506122078561220261212d565b611baf565b5b8061224d575061221661212d565b73ffffffffffffffffffffffffffffffffffffffff1661223584610c11565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612286576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036122ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f98585856001612b16565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f686612b1c565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083160361247e576000600184019050600060046000838152602001908152602001600020540361247c57600054811461247b578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e68585856001612b26565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d961212d565b8786866040518563ffffffff1660e01b81526004016125fb9493929190613bfd565b6020604051808303816000875af192505050801561263757506040513d601f19601f820116820180604052508101906126349190613c5e565b60015b6126b0573d8060008114612667576040519150601f19603f3d011682016040523d82523d6000602084013e61266c565b606091505b5060008151036126a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361274a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061285e565b600082905060005b6000821461277c57808061276590613b60565b915050600a826127759190613cba565b9150612752565b60008167ffffffffffffffff8111156127985761279761305c565b5b6040519080825280601f01601f1916602001820160405280156127ca5781602001600182028036833780820191505090505b5090505b60008514612857576001826127e39190613ceb565b9150600a856127f29190613d1f565b60306127fe91906134e2565b60f81b81838151811061281457612813613b31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128509190613cba565b94506127ce565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612909576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129166000858386612b16565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161297b60018514612b2c565b901b60a042901b61298b86612b1c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a8f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a3f60008784806001019550876125b3565b612a75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129d0578260005414612a8a57600080fd5b612afa565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a90575b816000819055505050612b106000858386612b26565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612b4290613797565b90600052602060002090601f016020900481019282612b645760008555612bab565b82601f10612b7d57805160ff1916838001178555612bab565b82800160010185558215612bab579182015b82811115612baa578251825591602001919060010190612b8f565b5b509050612bb89190612c7d565b5090565b5080546000825590600052602060002090810190612bda9190612c7d565b50565b828054828255906000526020600020908101928215612c6c579160200282015b82811115612c6b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612bfd565b5b509050612c799190612c7d565b5090565b5b80821115612c96576000816000905550600101612c7e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce381612cae565b8114612cee57600080fd5b50565b600081359050612d0081612cda565b92915050565b600060208284031215612d1c57612d1b612ca4565b5b6000612d2a84828501612cf1565b91505092915050565b60008115159050919050565b612d4881612d33565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b6000819050919050565b612d7c81612d69565b8114612d8757600080fd5b50565b600081359050612d9981612d73565b92915050565b600060208284031215612db557612db4612ca4565b5b6000612dc384828501612d8a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e06578082015181840152602081019050612deb565b83811115612e15576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3782612dcc565b612e418185612dd7565b9350612e51818560208601612de8565b612e5a81612e1b565b840191505092915050565b60006020820190508181036000830152612e7f8184612e2c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612eb282612e87565b9050919050565b612ec281612ea7565b82525050565b6000602082019050612edd6000830184612eb9565b92915050565b612eec81612ea7565b8114612ef757600080fd5b50565b600081359050612f0981612ee3565b92915050565b60008060408385031215612f2657612f25612ca4565b5b6000612f3485828601612efa565b9250506020612f4585828601612d8a565b9150509250929050565b612f5881612d33565b8114612f6357600080fd5b50565b600081359050612f7581612f4f565b92915050565b600060208284031215612f9157612f90612ca4565b5b6000612f9f84828501612f66565b91505092915050565b612fb181612d69565b82525050565b6000602082019050612fcc6000830184612fa8565b92915050565b600080600060608486031215612feb57612fea612ca4565b5b6000612ff986828701612efa565b935050602061300a86828701612efa565b925050604061301b86828701612d8a565b9150509250925092565b60006020828403121561303b5761303a612ca4565b5b600061304984828501612efa565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309482612e1b565b810181811067ffffffffffffffff821117156130b3576130b261305c565b5b80604052505050565b60006130c6612c9a565b90506130d2828261308b565b919050565b600067ffffffffffffffff8211156130f2576130f161305c565b5b6130fb82612e1b565b9050602081019050919050565b82818337600083830152505050565b600061312a613125846130d7565b6130bc565b90508281526020810184848401111561314657613145613057565b5b613151848285613108565b509392505050565b600082601f83011261316e5761316d613052565b5b813561317e848260208601613117565b91505092915050565b60006020828403121561319d5761319c612ca4565b5b600082013567ffffffffffffffff8111156131bb576131ba612ca9565b5b6131c784828501613159565b91505092915050565b600080604083850312156131e7576131e6612ca4565b5b60006131f585828601612efa565b925050602061320685828601612f66565b9150509250929050565b600067ffffffffffffffff82111561322b5761322a61305c565b5b61323482612e1b565b9050602081019050919050565b600061325461324f84613210565b6130bc565b9050828152602081018484840111156132705761326f613057565b5b61327b848285613108565b509392505050565b600082601f83011261329857613297613052565b5b81356132a8848260208601613241565b91505092915050565b600080600080608085870312156132cb576132ca612ca4565b5b60006132d987828801612efa565b94505060206132ea87828801612efa565b93505060406132fb87828801612d8a565b925050606085013567ffffffffffffffff81111561331c5761331b612ca9565b5b61332887828801613283565b91505092959194509250565b6000806040838503121561334b5761334a612ca4565b5b600061335985828601612efa565b925050602061336a85828601612efa565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261339457613393613052565b5b8235905067ffffffffffffffff8111156133b1576133b0613374565b5b6020830191508360208202830111156133cd576133cc613379565b5b9250929050565b600080602083850312156133eb576133ea612ca4565b5b600083013567ffffffffffffffff81111561340957613408612ca9565b5b6134158582860161337e565b92509250509250929050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b600061347d602783612dd7565b915061348882613421565b604082019050919050565b600060208201905081810360008301526134ac81613470565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ed82612d69565b91506134f883612d69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561352d5761352c6134b3565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061356e601683612dd7565b915061357982613538565b602082019050919050565b6000602082019050818103600083015261359d81613561565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b60006135da601783612dd7565b91506135e5826135a4565b602082019050919050565b60006020820190508181036000830152613609816135cd565b9050919050565b7f4f6e6c792077686974656c697374656420757365727320616c6c6f776564206460008201527f7572696e672070726573616c6500000000000000000000000000000000000000602082015250565b600061366c602d83612dd7565b915061367782613610565b604082019050919050565b6000602082019050818103600083015261369b8161365f565b9050919050565b60006136ad82612d69565b91506136b883612d69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f1576136f06134b3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b6000613732601783612dd7565b915061373d826136fc565b602082019050919050565b6000602082019050818103600083015261376181613725565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137af57607f821691505b6020821081036137c2576137c1613768565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137fe602083612dd7565b9150613809826137c8565b602082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f5075626c69632073616c65206e6f7420737461727465642e2057686974656c6960008201527f7374206d696e74206f6e6c792e00000000000000000000000000000000000000602082015250565b6000613890602d83612dd7565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b600081905092915050565b50565b60006138e16000836138c6565b91506138ec826138d1565b600082019050919050565b6000613902826138d4565b9150819050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613968603083612dd7565b91506139738261390c565b604082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546139cb81613797565b6139d5818661399e565b945060018216600081146139f05760018114613a0157613a34565b60ff19831686528186019350613a34565b613a0a856139a9565b60005b83811015613a2c57815481890152600182019150602081019050613a0d565b838801955050505b50505092915050565b6000613a4882612dcc565b613a52818561399e565b9350613a62818560208601612de8565b80840191505092915050565b6000613a7a82866139be565b9150613a868285613a3d565b9150613a9282846139be565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613afb602683612dd7565b9150613b0682613a9f565b604082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b6b82612d69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b9d57613b9c6134b3565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000613bcf82613ba8565b613bd98185613bb3565b9350613be9818560208601612de8565b613bf281612e1b565b840191505092915050565b6000608082019050613c126000830187612eb9565b613c1f6020830186612eb9565b613c2c6040830185612fa8565b8181036060830152613c3e8184613bc4565b905095945050505050565b600081519050613c5881612cda565b92915050565b600060208284031215613c7457613c73612ca4565b5b6000613c8284828501613c49565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cc582612d69565b9150613cd083612d69565b925082613ce057613cdf613c8b565b5b828204905092915050565b6000613cf682612d69565b9150613d0183612d69565b925082821015613d1457613d136134b3565b5b828203905092915050565b6000613d2a82612d69565b9150613d3583612d69565b925082613d4557613d44613c8b565b5b82820690509291505056fea2646970667358221220789e7064f5a23036957b4ec582e568049366053e3150c594f642c441113200e664736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516133704d5035636f71347275456d7435724b484d39756736514b52366a355a71526b6b59423275715276782f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65656a566548443865323435777432776244324a4b6d68483543487075337968676a723176486752354147432f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmQa3pMP5coq4ruEmt5rKHM9ug6QKR6j5ZqRkkYB2uqRvx/
Arg [1] : _initNotRevealedUri (string): ipfs://QmeejVeHD8e245wt2wbD2JKmhH5CHpu3yhgjr1vHgR5AGC/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d516133704d5035636f71347275456d7435724b484d3975
Arg [4] : 6736514b52366a355a71526b6b59423275715276782f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d65656a566548443865323435777432776244324a4b6d68
Arg [7] : 483543487075337968676a723176486752354147432f00000000000000000000


Deployed Bytecode Sourcemap

51385:5490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18654:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54114:690;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25735:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25195:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55768:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17708:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26621:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53535:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51694:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52026:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55944:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56649:223;;;:::i;:::-;;26862:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51890:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55392:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51858:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51984:35;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23456:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51733:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51511:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19333:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4764:103;;;;;;;;;;;;;:::i;:::-;;51786:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4113:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23836:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51925:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26011:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56516:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27118:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51539:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54924:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55502:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55854:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26390:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55636:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5022:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56066:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18654:615;18739:4;19054:10;19039:25;;:11;:25;;;;:102;;;;19131:10;19116:25;;:11;:25;;;;19039:102;:179;;;;19208:10;19193:25;;:11;:25;;;;19039:179;19019:199;;18654:615;;;:::o;54114:690::-;54204:20;;54192:8;:32;;54184:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54315:10;;54303:8;54287:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;54279:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54381:7;:5;:7::i;:::-;54367:21;;:10;:21;;;54363:392;;54413:6;;;;;;;;;;;54412:7;54404:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;54484:4;54465:23;;:15;;;;;;;;;;;:23;;;54462:282;;54559:13;:25;54573:10;54559:25;;;;;;;;;;;;;;;;;;;;;;;;;54551:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;54691:8;54675:13;;:24;;;;:::i;:::-;54661:9;:39;;54653:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;54462:282;54363:392;54765:31;54775:10;54787:8;54765:9;:31::i;:::-;54114:690;:::o;23667:100::-;23721:13;23754:5;23747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23667:100;:::o;25735:204::-;25803:7;25828:16;25836:7;25828;:16::i;:::-;25823:64;;25853:34;;;;;;;;;;;;;;25823:64;25907:15;:24;25923:7;25907:24;;;;;;;;;;;;;;;;;;;;;25900:31;;25735:204;;;:::o;25195:474::-;25268:13;25300:27;25319:7;25300:18;:27::i;:::-;25268:61;;25350:5;25344:11;;:2;:11;;;25340:48;;25364:24;;;;;;;;;;;;;;25340:48;25428:5;25405:28;;:19;:17;:19::i;:::-;:28;;;25401:175;;25453:44;25470:5;25477:19;:17;:19::i;:::-;25453:16;:44::i;:::-;25448:128;;25525:35;;;;;;;;;;;;;;25448:128;25401:175;25615:2;25588:15;:24;25604:7;25588:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25653:7;25649:2;25633:28;;25642:5;25633:28;;;;;;;;;;;;25257:412;25195:474;;:::o;55768:80::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55835:5:::1;55826:6;;:14;;;;;;;;;;;;;;;;;;55768:80:::0;:::o;17708:315::-;17761:7;17989:15;:13;:15::i;:::-;17974:12;;17958:13;;:28;:46;17951:53;;17708:315;:::o;26621:170::-;26755:28;26765:4;26771:2;26775:7;26755:9;:28::i;:::-;26621:170;;;:::o;53535:573::-;53621:20;;53609:8;:32;;53601:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;53732:10;;53720:8;53704:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53696:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53798:7;:5;:7::i;:::-;53784:21;;:10;:21;;;53780:279;;53830:6;;;;;;;;;;;53829:7;53821:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;53888:15;;;;;;;;;;;53887:16;53879:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;54010:8;53990:17;;:28;;;;:::i;:::-;53976:9;:43;;53968:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;53780:279;54069:31;54079:10;54091:8;54069:9;:31::i;:::-;53535:573;:::o;51694:32::-;;;;:::o;52026:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;55944:98::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56029:5:::1;56011:15;;:23;;;;;;;;;;;;;;;;;;55944:98:::0;:::o;56649:223::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56708:7:::1;56729:2;;;;;;;;;;;56721:16;;56745:21;56721:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56707:64;;;56787:2;56782:83;;56813:7;:5;:7::i;:::-;56805:25;;:48;56831:21;56805:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56782:83;56696:176;56649:223::o:0;26862:185::-;27000:39;27017:4;27023:2;27027:7;27000:39;;;;;;;;;;;;:16;:39::i;:::-;26862:185;;;:::o;51890:28::-;;;;;;;;;;;;;:::o;55392:104::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55477:11:::1;55467:7;:21;;;;;;;;;;;;:::i;:::-;;55392:104:::0;:::o;51858:25::-;;;;;;;;;;;;;:::o;51984:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23456:144::-;23520:7;23563:27;23582:7;23563:18;:27::i;:::-;23540:52;;23456:144;;;:::o;51733:46::-;;;;:::o;51511:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19333:224::-;19397:7;19438:1;19421:19;;:5;:19;;;19417:60;;19449:28;;;;;;;;;;;;;;19417:60;14672:13;19495:18;:25;19514:5;19495:25;;;;;;;;;;;;;;;;:54;19488:61;;19333:224;;;:::o;4764:103::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4829:30:::1;4856:1;4829:18;:30::i;:::-;4764:103::o:0;51786:42::-;;;;:::o;4113:87::-;4159:7;4186:6;;;;;;;;;;;4179:13;;4113:87;:::o;23836:104::-;23892:13;23925:7;23918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23836:104;:::o;51925:34::-;;;;;;;;;;;;;:::o;26011:308::-;26122:19;:17;:19::i;:::-;26110:31;;:8;:31;;;26106:61;;26150:17;;;;;;;;;;;;;;26106:61;26232:8;26180:18;:39;26199:19;:17;:19::i;:::-;26180:39;;;;;;;;;;;;;;;:49;26220:8;26180:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26292:8;26256:55;;26271:19;:17;:19::i;:::-;26256:55;;;26302:8;26256:55;;;;;;:::i;:::-;;;;;;;;26011:308;;:::o;56516:110::-;56576:4;56599:13;:19;56613:4;56599:19;;;;;;;;;;;;;;;;;;;;;;;;;56592:26;;56516:110;;;:::o;27118:396::-;27285:28;27295:4;27301:2;27305:7;27285:9;:28::i;:::-;27346:1;27328:2;:14;;;:19;27324:183;;27367:56;27398:4;27404:2;27408:7;27417:5;27367:30;:56::i;:::-;27362:145;;27451:40;;;;;;;;;;;;;;27362:145;27324:183;27118:396;;;;:::o;51539:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54924:434::-;54996:13;55029:16;55037:7;55029;:16::i;:::-;55021:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55114:8;;;;;;;;;;;55109:123;;55169:14;55185:18;:7;:16;:18::i;:::-;55205:13;55152:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55138:82;;;;55109:123;55273:1;55255:7;55249:21;;;;;:::i;:::-;;;:25;:101;;;;;;;;;;;;;;;;;55301:7;55310:18;:7;:16;:18::i;:::-;55330:13;55284:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55249:101;55242:108;;54924:434;;;;:::o;55502:128::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55605:17:::1;55589:13;:33;;;;;;;;;;;;:::i;:::-;;55502:128:::0;:::o;55854:84::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55925:5:::1;55914:8;;:16;;;;;;;;;;;;;;;;;;55854:84:::0;:::o;26390:164::-;26487:4;26511:18;:25;26530:5;26511:25;;;;;;;;;;;;;;;:35;26537:8;26511:35;;;;;;;;;;;;;;;;;;;;;;;;;26504:42;;26390:164;;;;:::o;55636:126::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55739:15:::1;55722:14;:32;;;;;;;;;;;;:::i;:::-;;55636:126:::0;:::o;5022:201::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5131:1:::1;5111:22;;:8;:22;;::::0;5103:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5187:28;5206:8;5187:18;:28::i;:::-;5022:201:::0;:::o;56066:444::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56163:6:::1;56158:123;56179:18;:25;;;;56175:1;:29;56158:123;;;56264:5;56225:13;:36;56239:18;56258:1;56239:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56225:36;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;56206:3;;;;;:::i;:::-;;;;56158:123;;;;56298:18;;56291:25;;;;:::i;:::-;56348:22;;56327:18;:43;;;;;;;:::i;:::-;;56386:6;56381:122;56402:18;:25;;;;56398:1;:29;56381:122;;;56487:4;56448:13;:36;56462:18;56481:1;56462:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56448:36;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;56429:3;;;;;:::i;:::-;;;;56381:122;;;;56066:444:::0;;:::o;28126:104::-;28195:27;28205:2;28209:8;28195:27;;;;;;;;;;;;:9;:27::i;:::-;28126:104;;:::o;27769:273::-;27826:4;27882:7;27863:15;:13;:15::i;:::-;:26;;:66;;;;;27916:13;;27906:7;:23;27863:66;:152;;;;;28014:1;15442:8;27967:17;:26;27985:7;27967:26;;;;;;;;;;;;:43;:48;27863:152;27843:172;;27769:273;;;:::o;20971:1129::-;21038:7;21058:12;21073:7;21058:22;;21141:4;21122:15;:13;:15::i;:::-;:23;21118:915;;21175:13;;21168:4;:20;21164:869;;;21213:14;21230:17;:23;21248:4;21230:23;;;;;;;;;;;;21213:40;;21346:1;15442:8;21319:6;:23;:28;21315:699;;21838:113;21855:1;21845:6;:11;21838:113;;21898:17;:25;21916:6;;;;;;;21898:25;;;;;;;;;;;;21889:34;;21838:113;;;21984:6;21977:13;;;;;;21315:699;21190:843;21164:869;21118:915;22061:31;;;;;;;;;;;;;;20971:1129;;;;:::o;41751:105::-;41811:7;41838:10;41831:17;;41751:105;:::o;2837:98::-;2890:7;2917:10;2910:17;;2837:98;:::o;52203:93::-;52260:7;52287:1;52280:8;;52203:93;:::o;33008:2515::-;33123:27;33153;33172:7;33153:18;:27::i;:::-;33123:57;;33238:4;33197:45;;33213:19;33197:45;;;33193:86;;33251:28;;;;;;;;;;;;;;33193:86;33292:22;33341:4;33318:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33362:43;33379:4;33385:19;:17;:19::i;:::-;33362:16;:43::i;:::-;33318:87;:147;;;;33446:19;:17;:19::i;:::-;33422:43;;:20;33434:7;33422:11;:20::i;:::-;:43;;;33318:147;33292:174;;33484:17;33479:66;;33510:35;;;;;;;;;;;;;;33479:66;33574:1;33560:16;;:2;:16;;;33556:52;;33585:23;;;;;;;;;;;;;;33556:52;33621:43;33643:4;33649:2;33653:7;33662:1;33621:21;:43::i;:::-;33737:15;:24;33753:7;33737:24;;;;;;;;;;;;33730:31;;;;;;;;;;;34129:18;:24;34148:4;34129:24;;;;;;;;;;;;;;;;34127:26;;;;;;;;;;;;34198:18;:22;34217:2;34198:22;;;;;;;;;;;;;;;;34196:24;;;;;;;;;;;15724:8;15326:3;34579:15;:41;;34537:21;34555:2;34537:17;:21::i;:::-;:84;:128;34491:17;:26;34509:7;34491:26;;;;;;;;;;;:174;;;;34835:1;15724:8;34785:19;:46;:51;34781:626;;34857:19;34889:1;34879:7;:11;34857:33;;35046:1;35012:17;:30;35030:11;35012:30;;;;;;;;;;;;:35;35008:384;;35150:13;;35135:11;:28;35131:242;;35330:19;35297:17;:30;35315:11;35297:30;;;;;;;;;;;:52;;;;35131:242;35008:384;34838:569;34781:626;35454:7;35450:2;35435:27;;35444:4;35435:27;;;;;;;;;;;;35473:42;35494:4;35500:2;35504:7;35513:1;35473:20;:42::i;:::-;33112:2411;;33008:2515;;;:::o;5383:191::-;5457:16;5476:6;;;;;;;;;;;5457:25;;5502:8;5493:6;;:17;;;;;;;;;;;;;;;;;;5557:8;5526:40;;5547:8;5526:40;;;;;;;;;;;;5446:128;5383:191;:::o;39220:716::-;39383:4;39429:2;39404:45;;;39450:19;:17;:19::i;:::-;39471:4;39477:7;39486:5;39404:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39400:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39704:1;39687:6;:13;:18;39683:235;;39733:40;;;;;;;;;;;;;;39683:235;39876:6;39870:13;39861:6;39857:2;39853:15;39846:38;39400:529;39573:54;;;39563:64;;;:6;:64;;;;39556:71;;;39220:716;;;;;;:::o;399:723::-;455:13;685:1;676:5;:10;672:53;;703:10;;;;;;;;;;;;;;;;;;;;;672:53;735:12;750:5;735:20;;766:14;791:78;806:1;798:4;:9;791:78;;824:8;;;;;:::i;:::-;;;;855:2;847:10;;;;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;879:39;;929:154;945:1;936:5;:10;929:154;;973:1;963:11;;;;;:::i;:::-;;;1040:2;1032:5;:10;;;;:::i;:::-;1019:2;:24;;;;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1069:2;1060:11;;;;;:::i;:::-;;;929:154;;;1107:6;1093:21;;;;;399:723;;;;:::o;28603:2236::-;28726:20;28749:13;;28726:36;;28791:1;28777:16;;:2;:16;;;28773:48;;28802:19;;;;;;;;;;;;;;28773:48;28848:1;28836:8;:13;28832:44;;28858:18;;;;;;;;;;;;;;28832:44;28889:61;28919:1;28923:2;28927:12;28941:8;28889:21;:61::i;:::-;29493:1;14809:2;29464:1;:25;;29463:31;29451:8;:44;29425:18;:22;29444:2;29425:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15589:3;29894:29;29921:1;29909:8;:13;29894:14;:29::i;:::-;:56;;15326:3;29831:15;:41;;29789:21;29807:2;29789:17;:21::i;:::-;:84;:162;29738:17;:31;29756:12;29738:31;;;;;;;;;;;:213;;;;29968:20;29991:12;29968:35;;30018:11;30047:8;30032:12;:23;30018:37;;30094:1;30076:2;:14;;;:19;30072:635;;30116:313;30172:12;30168:2;30147:38;;30164:1;30147:38;;;;;;;;;;;;30213:69;30252:1;30256:2;30260:14;;;;;;30276:5;30213:30;:69::i;:::-;30208:174;;30318:40;;;;;;;;;;;;;;30208:174;30424:3;30409:12;:18;30116:313;;30510:12;30493:13;;:29;30489:43;;30524:8;;;30489:43;30072:635;;;30573:119;30629:14;;;;;;30625:2;30604:40;;30621:1;30604:40;;;;;;;;;;;;30687:3;30672:12;:18;30573:119;;30072:635;30737:12;30721:13;:28;;;;29202:1559;;30771:60;30800:1;30804:2;30808:12;30822:8;30771:20;:60::i;:::-;28715:2124;28603:2236;;;:::o;40584:159::-;;;;;:::o;24756:148::-;24820:14;24881:5;24871:15;;24756:148;;;:::o;41402:158::-;;;;;:::o;24991:142::-;25049:14;25110:5;25100:15;;24991:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:99::-;2261:6;2295:5;2289:12;2279:22;;2209:99;;;:::o;2314:169::-;2398:11;2432:6;2427:3;2420:19;2472:4;2467:3;2463:14;2448:29;;2314:169;;;;:::o;2489:307::-;2557:1;2567:113;2581:6;2578:1;2575:13;2567:113;;;2666:1;2661:3;2657:11;2651:18;2647:1;2642:3;2638:11;2631:39;2603:2;2600:1;2596:10;2591:15;;2567:113;;;2698:6;2695:1;2692:13;2689:101;;;2778:1;2769:6;2764:3;2760:16;2753:27;2689:101;2538:258;2489:307;;;:::o;2802:102::-;2843:6;2894:2;2890:7;2885:2;2878:5;2874:14;2870:28;2860:38;;2802:102;;;:::o;2910:364::-;2998:3;3026:39;3059:5;3026:39;:::i;:::-;3081:71;3145:6;3140:3;3081:71;:::i;:::-;3074:78;;3161:52;3206:6;3201:3;3194:4;3187:5;3183:16;3161:52;:::i;:::-;3238:29;3260:6;3238:29;:::i;:::-;3233:3;3229:39;3222:46;;3002:272;2910:364;;;;:::o;3280:313::-;3393:4;3431:2;3420:9;3416:18;3408:26;;3480:9;3474:4;3470:20;3466:1;3455:9;3451:17;3444:47;3508:78;3581:4;3572:6;3508:78;:::i;:::-;3500:86;;3280:313;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:116::-;5008:21;5023:5;5008:21;:::i;:::-;5001:5;4998:32;4988:60;;5044:1;5041;5034:12;4988:60;4938:116;:::o;5060:133::-;5103:5;5141:6;5128:20;5119:29;;5157:30;5181:5;5157:30;:::i;:::-;5060:133;;;;:::o;5199:323::-;5255:6;5304:2;5292:9;5283:7;5279:23;5275:32;5272:119;;;5310:79;;:::i;:::-;5272:119;5430:1;5455:50;5497:7;5488:6;5477:9;5473:22;5455:50;:::i;:::-;5445:60;;5401:114;5199:323;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:117::-;12559:1;12556;12549:12;12573:117;12682:1;12679;12672:12;12713:568;12786:8;12796:6;12846:3;12839:4;12831:6;12827:17;12823:27;12813:122;;12854:79;;:::i;:::-;12813:122;12967:6;12954:20;12944:30;;12997:18;12989:6;12986:30;12983:117;;;13019:79;;:::i;:::-;12983:117;13133:4;13125:6;13121:17;13109:29;;13187:3;13179:4;13171:6;13167:17;13157:8;13153:32;13150:41;13147:128;;;13194:79;;:::i;:::-;13147:128;12713:568;;;;;:::o;13287:559::-;13373:6;13381;13430:2;13418:9;13409:7;13405:23;13401:32;13398:119;;;13436:79;;:::i;:::-;13398:119;13584:1;13573:9;13569:17;13556:31;13614:18;13606:6;13603:30;13600:117;;;13636:79;;:::i;:::-;13600:117;13749:80;13821:7;13812:6;13801:9;13797:22;13749:80;:::i;:::-;13731:98;;;;13527:312;13287:559;;;;;:::o;13852:226::-;13992:34;13988:1;13980:6;13976:14;13969:58;14061:9;14056:2;14048:6;14044:15;14037:34;13852:226;:::o;14084:366::-;14226:3;14247:67;14311:2;14306:3;14247:67;:::i;:::-;14240:74;;14323:93;14412:3;14323:93;:::i;:::-;14441:2;14436:3;14432:12;14425:19;;14084:366;;;:::o;14456:419::-;14622:4;14660:2;14649:9;14645:18;14637:26;;14709:9;14703:4;14699:20;14695:1;14684:9;14680:17;14673:47;14737:131;14863:4;14737:131;:::i;:::-;14729:139;;14456:419;;;:::o;14881:180::-;14929:77;14926:1;14919:88;15026:4;15023:1;15016:15;15050:4;15047:1;15040:15;15067:305;15107:3;15126:20;15144:1;15126:20;:::i;:::-;15121:25;;15160:20;15178:1;15160:20;:::i;:::-;15155:25;;15314:1;15246:66;15242:74;15239:1;15236:81;15233:107;;;15320:18;;:::i;:::-;15233:107;15364:1;15361;15357:9;15350:16;;15067:305;;;;:::o;15378:172::-;15518:24;15514:1;15506:6;15502:14;15495:48;15378:172;:::o;15556:366::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:419::-;16094:4;16132:2;16121:9;16117:18;16109:26;;16181:9;16175:4;16171:20;16167:1;16156:9;16152:17;16145:47;16209:131;16335:4;16209:131;:::i;:::-;16201:139;;15928:419;;;:::o;16353:173::-;16493:25;16489:1;16481:6;16477:14;16470:49;16353:173;:::o;16532:366::-;16674:3;16695:67;16759:2;16754:3;16695:67;:::i;:::-;16688:74;;16771:93;16860:3;16771:93;:::i;:::-;16889:2;16884:3;16880:12;16873:19;;16532:366;;;:::o;16904:419::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17157:9;17151:4;17147:20;17143:1;17132:9;17128:17;17121:47;17185:131;17311:4;17185:131;:::i;:::-;17177:139;;16904:419;;;:::o;17329:232::-;17469:34;17465:1;17457:6;17453:14;17446:58;17538:15;17533:2;17525:6;17521:15;17514:40;17329:232;:::o;17567:366::-;17709:3;17730:67;17794:2;17789:3;17730:67;:::i;:::-;17723:74;;17806:93;17895:3;17806:93;:::i;:::-;17924:2;17919:3;17915:12;17908:19;;17567:366;;;:::o;17939:419::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:348::-;18404:7;18427:20;18445:1;18427:20;:::i;:::-;18422:25;;18461:20;18479:1;18461:20;:::i;:::-;18456:25;;18649:1;18581:66;18577:74;18574:1;18571:81;18566:1;18559:9;18552:17;18548:105;18545:131;;;18656:18;;:::i;:::-;18545:131;18704:1;18701;18697:9;18686:20;;18364:348;;;;:::o;18718:173::-;18858:25;18854:1;18846:6;18842:14;18835:49;18718:173;:::o;18897:366::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:419::-;19435:4;19473:2;19462:9;19458:18;19450:26;;19522:9;19516:4;19512:20;19508:1;19497:9;19493:17;19486:47;19550:131;19676:4;19550:131;:::i;:::-;19542:139;;19269:419;;;:::o;19694:180::-;19742:77;19739:1;19732:88;19839:4;19836:1;19829:15;19863:4;19860:1;19853:15;19880:320;19924:6;19961:1;19955:4;19951:12;19941:22;;20008:1;20002:4;19998:12;20029:18;20019:81;;20085:4;20077:6;20073:17;20063:27;;20019:81;20147:2;20139:6;20136:14;20116:18;20113:38;20110:84;;20166:18;;:::i;:::-;20110:84;19931:269;19880:320;;;:::o;20206:182::-;20346:34;20342:1;20334:6;20330:14;20323:58;20206:182;:::o;20394:366::-;20536:3;20557:67;20621:2;20616:3;20557:67;:::i;:::-;20550:74;;20633:93;20722:3;20633:93;:::i;:::-;20751:2;20746:3;20742:12;20735:19;;20394:366;;;:::o;20766:419::-;20932:4;20970:2;20959:9;20955:18;20947:26;;21019:9;21013:4;21009:20;21005:1;20994:9;20990:17;20983:47;21047:131;21173:4;21047:131;:::i;:::-;21039:139;;20766:419;;;:::o;21191:232::-;21331:34;21327:1;21319:6;21315:14;21308:58;21400:15;21395:2;21387:6;21383:15;21376:40;21191:232;:::o;21429:366::-;21571:3;21592:67;21656:2;21651:3;21592:67;:::i;:::-;21585:74;;21668:93;21757:3;21668:93;:::i;:::-;21786:2;21781:3;21777:12;21770:19;;21429:366;;;:::o;21801:419::-;21967:4;22005:2;21994:9;21990:18;21982:26;;22054:9;22048:4;22044:20;22040:1;22029:9;22025:17;22018:47;22082:131;22208:4;22082:131;:::i;:::-;22074:139;;21801:419;;;:::o;22226:147::-;22327:11;22364:3;22349:18;;22226:147;;;;:::o;22379:114::-;;:::o;22499:398::-;22658:3;22679:83;22760:1;22755:3;22679:83;:::i;:::-;22672:90;;22771:93;22860:3;22771:93;:::i;:::-;22889:1;22884:3;22880:11;22873:18;;22499:398;;;:::o;22903:379::-;23087:3;23109:147;23252:3;23109:147;:::i;:::-;23102:154;;23273:3;23266:10;;22903:379;;;:::o;23288:235::-;23428:34;23424:1;23416:6;23412:14;23405:58;23497:18;23492:2;23484:6;23480:15;23473:43;23288:235;:::o;23529:366::-;23671:3;23692:67;23756:2;23751:3;23692:67;:::i;:::-;23685:74;;23768:93;23857:3;23768:93;:::i;:::-;23886:2;23881:3;23877:12;23870:19;;23529:366;;;:::o;23901:419::-;24067:4;24105:2;24094:9;24090:18;24082:26;;24154:9;24148:4;24144:20;24140:1;24129:9;24125:17;24118:47;24182:131;24308:4;24182:131;:::i;:::-;24174:139;;23901:419;;;:::o;24326:148::-;24428:11;24465:3;24450:18;;24326:148;;;;:::o;24480:141::-;24529:4;24552:3;24544:11;;24575:3;24572:1;24565:14;24609:4;24606:1;24596:18;24588:26;;24480:141;;;:::o;24651:845::-;24754:3;24791:5;24785:12;24820:36;24846:9;24820:36;:::i;:::-;24872:89;24954:6;24949:3;24872:89;:::i;:::-;24865:96;;24992:1;24981:9;24977:17;25008:1;25003:137;;;;25154:1;25149:341;;;;24970:520;;25003:137;25087:4;25083:9;25072;25068:25;25063:3;25056:38;25123:6;25118:3;25114:16;25107:23;;25003:137;;25149:341;25216:38;25248:5;25216:38;:::i;:::-;25276:1;25290:154;25304:6;25301:1;25298:13;25290:154;;;25378:7;25372:14;25368:1;25363:3;25359:11;25352:35;25428:1;25419:7;25415:15;25404:26;;25326:4;25323:1;25319:12;25314:17;;25290:154;;;25473:6;25468:3;25464:16;25457:23;;25156:334;;24970:520;;24758:738;;24651:845;;;;:::o;25502:377::-;25608:3;25636:39;25669:5;25636:39;:::i;:::-;25691:89;25773:6;25768:3;25691:89;:::i;:::-;25684:96;;25789:52;25834:6;25829:3;25822:4;25815:5;25811:16;25789:52;:::i;:::-;25866:6;25861:3;25857:16;25850:23;;25612:267;25502:377;;;;:::o;25885:583::-;26107:3;26129:92;26217:3;26208:6;26129:92;:::i;:::-;26122:99;;26238:95;26329:3;26320:6;26238:95;:::i;:::-;26231:102;;26350:92;26438:3;26429:6;26350:92;:::i;:::-;26343:99;;26459:3;26452:10;;25885:583;;;;;;:::o;26474:225::-;26614:34;26610:1;26602:6;26598:14;26591:58;26683:8;26678:2;26670:6;26666:15;26659:33;26474:225;:::o;26705:366::-;26847:3;26868:67;26932:2;26927:3;26868:67;:::i;:::-;26861:74;;26944:93;27033:3;26944:93;:::i;:::-;27062:2;27057:3;27053:12;27046:19;;26705:366;;;:::o;27077:419::-;27243:4;27281:2;27270:9;27266:18;27258:26;;27330:9;27324:4;27320:20;27316:1;27305:9;27301:17;27294:47;27358:131;27484:4;27358:131;:::i;:::-;27350:139;;27077:419;;;:::o;27502:180::-;27550:77;27547:1;27540:88;27647:4;27644:1;27637:15;27671:4;27668:1;27661:15;27688:233;27727:3;27750:24;27768:5;27750:24;:::i;:::-;27741:33;;27796:66;27789:5;27786:77;27783:103;;27866:18;;:::i;:::-;27783:103;27913:1;27906:5;27902:13;27895:20;;27688:233;;;:::o;27927:98::-;27978:6;28012:5;28006:12;27996:22;;27927:98;;;:::o;28031:168::-;28114:11;28148:6;28143:3;28136:19;28188:4;28183:3;28179:14;28164:29;;28031:168;;;;:::o;28205:360::-;28291:3;28319:38;28351:5;28319:38;:::i;:::-;28373:70;28436:6;28431:3;28373:70;:::i;:::-;28366:77;;28452:52;28497:6;28492:3;28485:4;28478:5;28474:16;28452:52;:::i;:::-;28529:29;28551:6;28529:29;:::i;:::-;28524:3;28520:39;28513:46;;28295:270;28205:360;;;;:::o;28571:640::-;28766:4;28804:3;28793:9;28789:19;28781:27;;28818:71;28886:1;28875:9;28871:17;28862:6;28818:71;:::i;:::-;28899:72;28967:2;28956:9;28952:18;28943:6;28899:72;:::i;:::-;28981;29049:2;29038:9;29034:18;29025:6;28981:72;:::i;:::-;29100:9;29094:4;29090:20;29085:2;29074:9;29070:18;29063:48;29128:76;29199:4;29190:6;29128:76;:::i;:::-;29120:84;;28571:640;;;;;;;:::o;29217:141::-;29273:5;29304:6;29298:13;29289:22;;29320:32;29346:5;29320:32;:::i;:::-;29217:141;;;;:::o;29364:349::-;29433:6;29482:2;29470:9;29461:7;29457:23;29453:32;29450:119;;;29488:79;;:::i;:::-;29450:119;29608:1;29633:63;29688:7;29679:6;29668:9;29664:22;29633:63;:::i;:::-;29623:73;;29579:127;29364:349;;;;:::o;29719:180::-;29767:77;29764:1;29757:88;29864:4;29861:1;29854:15;29888:4;29885:1;29878:15;29905:185;29945:1;29962:20;29980:1;29962:20;:::i;:::-;29957:25;;29996:20;30014:1;29996:20;:::i;:::-;29991:25;;30035:1;30025:35;;30040:18;;:::i;:::-;30025:35;30082:1;30079;30075:9;30070:14;;29905:185;;;;:::o;30096:191::-;30136:4;30156:20;30174:1;30156:20;:::i;:::-;30151:25;;30190:20;30208:1;30190:20;:::i;:::-;30185:25;;30229:1;30226;30223:8;30220:34;;;30234:18;;:::i;:::-;30220:34;30279:1;30276;30272:9;30264:17;;30096:191;;;;:::o;30293:176::-;30325:1;30342:20;30360:1;30342:20;:::i;:::-;30337:25;;30376:20;30394:1;30376:20;:::i;:::-;30371:25;;30415:1;30405:35;;30420:18;;:::i;:::-;30405:35;30461:1;30458;30454:9;30449:14;;30293:176;;;;:::o

Swarm Source

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