ETH Price: $3,305.15 (-3.75%)
Gas: 24 Gwei

Token

ProjectAtmos (Atmos)
 

Overview

Max Total Supply

6,942 Atmos

Holders

2,577

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
brosbeforehoes.eth
Balance
6 Atmos
0x299fee10cd3f03ebb2f9eb5d59bfeb6c502dfeeb
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.9+commit.e5eed63a

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-27
*/

// 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 public MAX_SUPPLY = 6942;
    uint256 public MINT_PRICE = 0 ether;
    // MINT LIMIT
    uint256 public MAX_MINT_PER_TRANSAC = 2;
    uint256 public nftPerAddressLimit = 2;
    mapping(address => uint256) public addressMintedBalance;
    // Mint Logistics
    bool public paused = true;
    bool public revealed = false;
    // 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 681 Atmos banner;
        _safeMint(tt, 694);
    }
    // Mint Function ====================================================================
    function publicMint (uint256 quantity) external payable{
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        if (msg.sender != owner()){
            require(!paused, "The contract is paused.");
            require(quantity <= MAX_MINT_PER_TRANSAC, "Exceed max mint amount per transaction.");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + quantity <= nftPerAddressLimit, "Max NFT per address exceeded");
            require(msg.value >= (MINT_PRICE * quantity), "Insufficient funds sent");
        }
        // Increment address record
        addressMintedBalance[msg.sender] += quantity;
        _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 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 setMintPrice(uint256 _newMintPrice) public onlyOwner{
        MINT_PRICE = _newMintPrice;
    }
    function setNftPerAddressLimit(uint256 _limit) public onlyOwner{
        nftPerAddressLimit = _limit;
    }
    function getAddressBalance(address _userAddr) public view returns (uint256){
        return addressMintedBalance[_userAddr];
    }
    // 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_MINT_PER_TRANSAC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"_userAddr","type":"address"}],"name":"getAddressBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","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":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000da7565b50611b1e600c556000600d556002600e556002600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055507325661f02d686714dc5ba63b7915774654e8e5538601160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a8d0dd2070d2874e0b185e2d42c5a6cfa6971c26601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073610be2ba080a0f69e5787c826b7734274fcdb0f3601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739f38376129e766ee0a9ba903f9a8d7425f6b8013601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734104fbe93bcacfc4ef5683cf49ab07e5fe9e78ef601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507324d697a82b9ad433296c7b203a31846dafae5079601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dace8a59b8733e932957ac4a3101c80b87414bd0601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073eab0798749b2cd4b3e188aa7fe37a410e554689f601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738fd50896b8a7ae31b80ec47bc76cf4bf2cac8fec601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620003a757600080fd5b5060405162004a6138038062004a618339818101604052810190620003cd919062000ff4565b6040518060400160405280600c81526020017f50726f6a65637441746d6f7300000000000000000000000000000000000000008152506040518060400160405280600581526020017f41746d6f7300000000000000000000000000000000000000000000000000000081525081600290805190602001906200045192919062000da7565b5080600390805190602001906200046a92919062000da7565b506200047b620006ab60201b60201c565b6000819055505050620004a362000497620006b460201b60201c565b620006bc60201b60201c565b620004b4826200078260201b60201c565b620004c5816200082d60201b60201c565b620004fa601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007620008d860201b60201c565b6200052f601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a620008d860201b60201c565b62000564601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009620008d860201b60201c565b62000599601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a620008d860201b60201c565b620005ce601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009620008d860201b60201c565b62000603601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008620008d860201b60201c565b62000638601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008620008d860201b60201c565b6200066d601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008620008d860201b60201c565b620006a3601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166102b6620008d860201b60201c565b505062001301565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000792620006b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b8620008fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080890620010da565b60405180910390fd5b80600990805190602001906200082992919062000da7565b5050565b6200083d620006b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000863620008fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b390620010da565b60405180910390fd5b80600b9080519060200190620008d492919062000da7565b5050565b620008fa8282604051806020016040528060008152506200092860201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000996576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620009d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620009e7600085838662000c0d60201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000a546001851462000c1360201b60201c565b901b60a042901b62000a6c8662000c1d60201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000b7d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000b29600087848060010195508762000c2760201b60201c565b62000b60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821062000ab257826000541462000b7757600080fd5b62000be9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000b7e575b81600081905550505062000c07600085838662000d9960201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c5562000d9f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000c799493929190620011b9565b602060405180830381600087803b15801562000c9457600080fd5b505af192505050801562000cc857506040513d601f19601f8201168201806040525081019062000cc591906200126a565b60015b62000d46573d806000811462000cfb576040519150601f19603f3d011682016040523d82523d6000602084013e62000d00565b606091505b5060008151141562000d3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b82805462000db590620012cb565b90600052602060002090601f01602090048101928262000dd9576000855562000e25565b82601f1062000df457805160ff191683800117855562000e25565b8280016001018555821562000e25579182015b8281111562000e2457825182559160200191906001019062000e07565b5b50905062000e34919062000e38565b5090565b5b8082111562000e5357600081600090555060010162000e39565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000ec08262000e75565b810181811067ffffffffffffffff8211171562000ee25762000ee162000e86565b5b80604052505050565b600062000ef762000e57565b905062000f05828262000eb5565b919050565b600067ffffffffffffffff82111562000f285762000f2762000e86565b5b62000f338262000e75565b9050602081019050919050565b60005b8381101562000f6057808201518184015260208101905062000f43565b8381111562000f70576000848401525b50505050565b600062000f8d62000f878462000f0a565b62000eeb565b90508281526020810184848401111562000fac5762000fab62000e70565b5b62000fb984828562000f40565b509392505050565b600082601f83011262000fd95762000fd862000e6b565b5b815162000feb84826020860162000f76565b91505092915050565b600080604083850312156200100e576200100d62000e61565b5b600083015167ffffffffffffffff8111156200102f576200102e62000e66565b5b6200103d8582860162000fc1565b925050602083015167ffffffffffffffff81111562001061576200106062000e66565b5b6200106f8582860162000fc1565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c260208362001079565b9150620010cf826200108a565b602082019050919050565b60006020820190508181036000830152620010f581620010b3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200112982620010fc565b9050919050565b6200113b816200111c565b82525050565b6000819050919050565b620011568162001141565b82525050565b600081519050919050565b600082825260208201905092915050565b600062001185826200115c565b62001191818562001167565b9350620011a381856020860162000f40565b620011ae8162000e75565b840191505092915050565b6000608082019050620011d0600083018762001130565b620011df602083018662001130565b620011ee60408301856200114b565b818103606083015262001202818462001178565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001244816200120d565b81146200125057600080fd5b50565b600081519050620012648162001239565b92915050565b60006020828403121562001283576200128262000e61565b5b6000620012938482850162001253565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012e457607f821691505b60208210811415620012fb57620012fa6200129c565b5b50919050565b61375080620013116000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063c6682862116100a0578063e0a808531161006f578063e0a8085314610771578063e985e9c51461079a578063f2c4ce1e146107d7578063f2fde38b14610800578063f4a0a528146108295761020f565b8063c6682862146106b7578063c87b56dd146106e2578063d0eb26b01461071f578063da3ef23f146107485761020f565b806395d89b41116100e757806395d89b41146105e4578063a22cb4651461060f578063b88d4fde14610638578063ba7d2c7614610661578063c002d23d1461068c5761020f565b80636c0360eb1461053a57806370a0823114610565578063715018a6146105a25780638da5cb5b146105b95761020f565b80632db115441161019b57806342842e0e1161016a57806342842e0e14610455578063518302271461047e57806355f804b3146104a95780635c975abb146104d25780636352211e146104fd5761020f565b80632db11544146103c757806332cb6b0c146103e3578063350467221461040e5780633ccfd60b1461044b5761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806316c38b3c1461030d57806318160ddd1461033657806318cae2691461036157806323b872dd1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c5780630921b8d2146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612833565b610852565b604051610248919061287b565b60405180910390f35b34801561025d57600080fd5b506102666108e4565b604051610273919061292f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612987565b610976565b6040516102b091906129f5565b60405180910390f35b3480156102c557600080fd5b506102ce6109f2565b6040516102db9190612a1f565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612a66565b6109f8565b005b34801561031957600080fd5b50610334600480360381019061032f9190612ad2565b610b9f565b005b34801561034257600080fd5b5061034b610c38565b6040516103589190612a1f565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612aff565b610c4f565b6040516103959190612a1f565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612b2c565b610c67565b005b6103e160048036038101906103dc9190612987565b610c77565b005b3480156103ef57600080fd5b506103f8610ee6565b6040516104059190612a1f565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612aff565b610eec565b6040516104429190612a1f565b60405180910390f35b610453610f35565b005b34801561046157600080fd5b5061047c60048036038101906104779190612b2c565b611096565b005b34801561048a57600080fd5b506104936110b6565b6040516104a0919061287b565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612cb4565b6110c9565b005b3480156104de57600080fd5b506104e761115f565b6040516104f4919061287b565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612987565b611172565b60405161053191906129f5565b60405180910390f35b34801561054657600080fd5b5061054f611184565b60405161055c919061292f565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612aff565b611212565b6040516105999190612a1f565b60405180910390f35b3480156105ae57600080fd5b506105b76112cb565b005b3480156105c557600080fd5b506105ce611353565b6040516105db91906129f5565b60405180910390f35b3480156105f057600080fd5b506105f961137d565b604051610606919061292f565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612cfd565b61140f565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612dde565b611587565b005b34801561066d57600080fd5b506106766115fa565b6040516106839190612a1f565b60405180910390f35b34801561069857600080fd5b506106a1611600565b6040516106ae9190612a1f565b60405180910390f35b3480156106c357600080fd5b506106cc611606565b6040516106d9919061292f565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612987565b611694565b604051610716919061292f565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612987565b61175d565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612cb4565b6117e3565b005b34801561077d57600080fd5b5061079860048036038101906107939190612ad2565b611879565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612e61565b611912565b6040516107ce919061287b565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612cb4565b6119a6565b005b34801561080c57600080fd5b5061082760048036038101906108229190612aff565b611a3c565b005b34801561083557600080fd5b50610850600480360381019061084b9190612987565b611b34565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ad57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108f390612ed0565b80601f016020809104026020016040519081016040528092919081815260200182805461091f90612ed0565b801561096c5780601f106109415761010080835404028352916020019161096c565b820191906000526020600020905b81548152906001019060200180831161094f57829003601f168201915b5050505050905090565b600061098182611bba565b6109b7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b6000610a0382611c19565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611ce7565b73ffffffffffffffffffffffffffffffffffffffff1614610aed57610ab681610ab1611ce7565b611912565b610aec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ba7611cef565b73ffffffffffffffffffffffffffffffffffffffff16610bc5611353565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612f4e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610c42611cf7565b6001546000540303905090565b60106020528060005260406000206000915090505481565b610c72838383611d00565b505050565b600c5481610c83610c38565b610c8d9190612f9d565b1115610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc59061303f565b60405180910390fd5b610cd6611353565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8357601160009054906101000a900460ff1615610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906130ab565b60405180910390fd5b600e54811115610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061313d565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548282610df09190612f9d565b1115610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e28906131a9565b60405180910390fd5b81600d54610e3f91906131c9565b341015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061326f565b60405180910390fd5b505b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed29190612f9d565b92505081905550610ee333826120aa565b50565b600c5481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3d611cef565b73ffffffffffffffffffffffffffffffffffffffff16610f5b611353565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612f4e565b60405180910390fd5b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ff9906132c0565b60006040518083038185875af1925050503d8060008114611036576040519150601f19603f3d011682016040523d82523d6000602084013e61103b565b606091505b50509050806110935761104c611353565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611091573d6000803e3d6000fd5b505b50565b6110b183838360405180602001604052806000815250611587565b505050565b601160019054906101000a900460ff1681565b6110d1611cef565b73ffffffffffffffffffffffffffffffffffffffff166110ef611353565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612f4e565b60405180910390fd5b806009908051906020019061115b929190612724565b5050565b601160009054906101000a900460ff1681565b600061117d82611c19565b9050919050565b6009805461119190612ed0565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd90612ed0565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d3611cef565b73ffffffffffffffffffffffffffffffffffffffff166112f1611353565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612f4e565b60405180910390fd5b61135160006120c8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138c90612ed0565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890612ed0565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b611417611ce7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611489611ce7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611536611ce7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157b919061287b565b60405180910390a35050565b611592848484611d00565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115f4576115bd8484848461218e565b6115f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600d5481565b600a805461161390612ed0565b80601f016020809104026020016040519081016040528092919081815260200182805461163f90612ed0565b801561168c5780601f106116615761010080835404028352916020019161168c565b820191906000526020600020905b81548152906001019060200180831161166f57829003601f168201915b505050505081565b606061169f82611bba565b6116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613347565b60405180910390fd5b601160019054906101000a900460ff1661172757600b6116fd836122ee565b600a60405160200161171193929190613437565b6040516020818303038152906040529050611758565b6009611732836122ee565b600a60405160200161174693929190613437565b60405160208183030381529060405290505b919050565b611765611cef565b73ffffffffffffffffffffffffffffffffffffffff16611783611353565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612f4e565b60405180910390fd5b80600f8190555050565b6117eb611cef565b73ffffffffffffffffffffffffffffffffffffffff16611809611353565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690612f4e565b60405180910390fd5b80600a9080519060200190611875929190612724565b5050565b611881611cef565b73ffffffffffffffffffffffffffffffffffffffff1661189f611353565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612f4e565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ae611cef565b73ffffffffffffffffffffffffffffffffffffffff166119cc611353565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990612f4e565b60405180910390fd5b80600b9080519060200190611a38929190612724565b5050565b611a44611cef565b73ffffffffffffffffffffffffffffffffffffffff16611a62611353565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90612f4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f906134da565b60405180910390fd5b611b31816120c8565b50565b611b3c611cef565b73ffffffffffffffffffffffffffffffffffffffff16611b5a611353565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790612f4e565b60405180910390fd5b80600d8190555050565b600081611bc5611cf7565b11158015611bd4575060005482105b8015611c12575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611c28611cf7565b11611cb057600054811015611caf5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cad575b6000811415611ca3576004600083600190039350838152602001908152602001600020549050611c78565b8092505050611ce2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000611d0b82611c19565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d72576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d93611ce7565b73ffffffffffffffffffffffffffffffffffffffff161480611dc25750611dc185611dbc611ce7565b611912565b5b80611e075750611dd0611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611def84610976565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ea7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb4858585600161244f565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fb186612455565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561203b576000600184019050600060046000838152602001908152602001600020541415612039576000548114612038578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a3858585600161245f565b5050505050565b6120c4828260405180602001604052806000815250612465565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121b4611ce7565b8786866040518563ffffffff1660e01b81526004016121d6949392919061354f565b602060405180830381600087803b1580156121f057600080fd5b505af192505050801561222157506040513d601f19601f8201168201806040525081019061221e91906135b0565b60015b61229b573d8060008114612251576040519150601f19603f3d011682016040523d82523d6000602084013e612256565b606091505b50600081511415612293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612336576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244a565b600082905060005b60008214612368578080612351906135dd565b915050600a826123619190613655565b915061233e565b60008167ffffffffffffffff81111561238457612383612b89565b5b6040519080825280601f01601f1916602001820160405280156123b65781602001600182028036833780820191505090505b5090505b60008514612443576001826123cf9190613686565b9150600a856123de91906136ba565b60306123ea9190612f9d565b60f81b818381518110612400576123ff6136eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243c9190613655565b94506123ba565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561250d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61251a600085838661244f565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161257f6001851461271a565b901b60a042901b61258f86612455565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612693575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612643600087848060010195508761218e565b612679576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125d457826000541461268e57600080fd5b6126fe565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612694575b816000819055505050612714600085838661245f565b50505050565b6000819050919050565b82805461273090612ed0565b90600052602060002090601f0160209004810192826127525760008555612799565b82601f1061276b57805160ff1916838001178555612799565b82800160010185558215612799579182015b8281111561279857825182559160200191906001019061277d565b5b5090506127a691906127aa565b5090565b5b808211156127c35760008160009055506001016127ab565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612810816127db565b811461281b57600080fd5b50565b60008135905061282d81612807565b92915050565b600060208284031215612849576128486127d1565b5b60006128578482850161281e565b91505092915050565b60008115159050919050565b61287581612860565b82525050565b6000602082019050612890600083018461286c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d05780820151818401526020810190506128b5565b838111156128df576000848401525b50505050565b6000601f19601f8301169050919050565b600061290182612896565b61290b81856128a1565b935061291b8185602086016128b2565b612924816128e5565b840191505092915050565b6000602082019050818103600083015261294981846128f6565b905092915050565b6000819050919050565b61296481612951565b811461296f57600080fd5b50565b6000813590506129818161295b565b92915050565b60006020828403121561299d5761299c6127d1565b5b60006129ab84828501612972565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129df826129b4565b9050919050565b6129ef816129d4565b82525050565b6000602082019050612a0a60008301846129e6565b92915050565b612a1981612951565b82525050565b6000602082019050612a346000830184612a10565b92915050565b612a43816129d4565b8114612a4e57600080fd5b50565b600081359050612a6081612a3a565b92915050565b60008060408385031215612a7d57612a7c6127d1565b5b6000612a8b85828601612a51565b9250506020612a9c85828601612972565b9150509250929050565b612aaf81612860565b8114612aba57600080fd5b50565b600081359050612acc81612aa6565b92915050565b600060208284031215612ae857612ae76127d1565b5b6000612af684828501612abd565b91505092915050565b600060208284031215612b1557612b146127d1565b5b6000612b2384828501612a51565b91505092915050565b600080600060608486031215612b4557612b446127d1565b5b6000612b5386828701612a51565b9350506020612b6486828701612a51565b9250506040612b7586828701612972565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc1826128e5565b810181811067ffffffffffffffff82111715612be057612bdf612b89565b5b80604052505050565b6000612bf36127c7565b9050612bff8282612bb8565b919050565b600067ffffffffffffffff821115612c1f57612c1e612b89565b5b612c28826128e5565b9050602081019050919050565b82818337600083830152505050565b6000612c57612c5284612c04565b612be9565b905082815260208101848484011115612c7357612c72612b84565b5b612c7e848285612c35565b509392505050565b600082601f830112612c9b57612c9a612b7f565b5b8135612cab848260208601612c44565b91505092915050565b600060208284031215612cca57612cc96127d1565b5b600082013567ffffffffffffffff811115612ce857612ce76127d6565b5b612cf484828501612c86565b91505092915050565b60008060408385031215612d1457612d136127d1565b5b6000612d2285828601612a51565b9250506020612d3385828601612abd565b9150509250929050565b600067ffffffffffffffff821115612d5857612d57612b89565b5b612d61826128e5565b9050602081019050919050565b6000612d81612d7c84612d3d565b612be9565b905082815260208101848484011115612d9d57612d9c612b84565b5b612da8848285612c35565b509392505050565b600082601f830112612dc557612dc4612b7f565b5b8135612dd5848260208601612d6e565b91505092915050565b60008060008060808587031215612df857612df76127d1565b5b6000612e0687828801612a51565b9450506020612e1787828801612a51565b9350506040612e2887828801612972565b925050606085013567ffffffffffffffff811115612e4957612e486127d6565b5b612e5587828801612db0565b91505092959194509250565b60008060408385031215612e7857612e776127d1565b5b6000612e8685828601612a51565b9250506020612e9785828601612a51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ee857607f821691505b60208210811415612efc57612efb612ea1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f386020836128a1565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa882612951565b9150612fb383612951565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fe857612fe7612f6e565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006130296016836128a1565b915061303482612ff3565b602082019050919050565b600060208201905081810360008301526130588161301c565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b60006130956017836128a1565b91506130a08261305f565b602082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b60006131276027836128a1565b9150613132826130cb565b604082019050919050565b600060208201905081810360008301526131568161311a565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613193601c836128a1565b915061319e8261315d565b602082019050919050565b600060208201905081810360008301526131c281613186565b9050919050565b60006131d482612951565b91506131df83612951565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561321857613217612f6e565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b60006132596017836128a1565b915061326482613223565b602082019050919050565b600060208201905081810360008301526132888161324c565b9050919050565b600081905092915050565b50565b60006132aa60008361328f565b91506132b58261329a565b600082019050919050565b60006132cb8261329d565b9150819050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006133316030836128a1565b915061333c826132d5565b604082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461339481612ed0565b61339e8186613367565b945060018216600081146133b957600181146133ca576133fd565b60ff198316865281860193506133fd565b6133d385613372565b60005b838110156133f5578154818901526001820191506020810190506133d6565b838801955050505b50505092915050565b600061341182612896565b61341b8185613367565b935061342b8185602086016128b2565b80840191505092915050565b60006134438286613387565b915061344f8285613406565b915061345b8284613387565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134c46026836128a1565b91506134cf82613468565b604082019050919050565b600060208201905081810360008301526134f3816134b7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613521826134fa565b61352b8185613505565b935061353b8185602086016128b2565b613544816128e5565b840191505092915050565b600060808201905061356460008301876129e6565b61357160208301866129e6565b61357e6040830185612a10565b81810360608301526135908184613516565b905095945050505050565b6000815190506135aa81612807565b92915050565b6000602082840312156135c6576135c56127d1565b5b60006135d48482850161359b565b91505092915050565b60006135e882612951565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361b5761361a612f6e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366082612951565b915061366b83612951565b92508261367b5761367a613626565b5b828204905092915050565b600061369182612951565b915061369c83612951565b9250828210156136af576136ae612f6e565b5b828203905092915050565b60006136c582612951565b91506136d083612951565b9250826136e0576136df613626565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c5a9bc90ae2cfa6fb3f9b18e5e498cb25115e8caee319f44669d316149cc19de64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d516133704d5035636f71347275456d7435724b484d39756736514b52366a355a71526b6b59423275715276782f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65656a566548443865323435777432776244324a4b6d68483543487075337968676a723176486752354147432f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063c6682862116100a0578063e0a808531161006f578063e0a8085314610771578063e985e9c51461079a578063f2c4ce1e146107d7578063f2fde38b14610800578063f4a0a528146108295761020f565b8063c6682862146106b7578063c87b56dd146106e2578063d0eb26b01461071f578063da3ef23f146107485761020f565b806395d89b41116100e757806395d89b41146105e4578063a22cb4651461060f578063b88d4fde14610638578063ba7d2c7614610661578063c002d23d1461068c5761020f565b80636c0360eb1461053a57806370a0823114610565578063715018a6146105a25780638da5cb5b146105b95761020f565b80632db115441161019b57806342842e0e1161016a57806342842e0e14610455578063518302271461047e57806355f804b3146104a95780635c975abb146104d25780636352211e146104fd5761020f565b80632db11544146103c757806332cb6b0c146103e3578063350467221461040e5780633ccfd60b1461044b5761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806316c38b3c1461030d57806318160ddd1461033657806318cae2691461036157806323b872dd1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c5780630921b8d2146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612833565b610852565b604051610248919061287b565b60405180910390f35b34801561025d57600080fd5b506102666108e4565b604051610273919061292f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612987565b610976565b6040516102b091906129f5565b60405180910390f35b3480156102c557600080fd5b506102ce6109f2565b6040516102db9190612a1f565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612a66565b6109f8565b005b34801561031957600080fd5b50610334600480360381019061032f9190612ad2565b610b9f565b005b34801561034257600080fd5b5061034b610c38565b6040516103589190612a1f565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612aff565b610c4f565b6040516103959190612a1f565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612b2c565b610c67565b005b6103e160048036038101906103dc9190612987565b610c77565b005b3480156103ef57600080fd5b506103f8610ee6565b6040516104059190612a1f565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190612aff565b610eec565b6040516104429190612a1f565b60405180910390f35b610453610f35565b005b34801561046157600080fd5b5061047c60048036038101906104779190612b2c565b611096565b005b34801561048a57600080fd5b506104936110b6565b6040516104a0919061287b565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612cb4565b6110c9565b005b3480156104de57600080fd5b506104e761115f565b6040516104f4919061287b565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612987565b611172565b60405161053191906129f5565b60405180910390f35b34801561054657600080fd5b5061054f611184565b60405161055c919061292f565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612aff565b611212565b6040516105999190612a1f565b60405180910390f35b3480156105ae57600080fd5b506105b76112cb565b005b3480156105c557600080fd5b506105ce611353565b6040516105db91906129f5565b60405180910390f35b3480156105f057600080fd5b506105f961137d565b604051610606919061292f565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190612cfd565b61140f565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612dde565b611587565b005b34801561066d57600080fd5b506106766115fa565b6040516106839190612a1f565b60405180910390f35b34801561069857600080fd5b506106a1611600565b6040516106ae9190612a1f565b60405180910390f35b3480156106c357600080fd5b506106cc611606565b6040516106d9919061292f565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612987565b611694565b604051610716919061292f565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612987565b61175d565b005b34801561075457600080fd5b5061076f600480360381019061076a9190612cb4565b6117e3565b005b34801561077d57600080fd5b5061079860048036038101906107939190612ad2565b611879565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190612e61565b611912565b6040516107ce919061287b565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190612cb4565b6119a6565b005b34801561080c57600080fd5b5061082760048036038101906108229190612aff565b611a3c565b005b34801561083557600080fd5b50610850600480360381019061084b9190612987565b611b34565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ad57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108f390612ed0565b80601f016020809104026020016040519081016040528092919081815260200182805461091f90612ed0565b801561096c5780601f106109415761010080835404028352916020019161096c565b820191906000526020600020905b81548152906001019060200180831161094f57829003601f168201915b5050505050905090565b600061098182611bba565b6109b7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b6000610a0382611c19565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611ce7565b73ffffffffffffffffffffffffffffffffffffffff1614610aed57610ab681610ab1611ce7565b611912565b610aec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ba7611cef565b73ffffffffffffffffffffffffffffffffffffffff16610bc5611353565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612f4e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610c42611cf7565b6001546000540303905090565b60106020528060005260406000206000915090505481565b610c72838383611d00565b505050565b600c5481610c83610c38565b610c8d9190612f9d565b1115610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc59061303f565b60405180910390fd5b610cd6611353565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8357601160009054906101000a900460ff1615610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f906130ab565b60405180910390fd5b600e54811115610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061313d565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548282610df09190612f9d565b1115610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e28906131a9565b60405180910390fd5b81600d54610e3f91906131c9565b341015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061326f565b60405180910390fd5b505b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed29190612f9d565b92505081905550610ee333826120aa565b50565b600c5481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3d611cef565b73ffffffffffffffffffffffffffffffffffffffff16610f5b611353565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612f4e565b60405180910390fd5b6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ff9906132c0565b60006040518083038185875af1925050503d8060008114611036576040519150601f19603f3d011682016040523d82523d6000602084013e61103b565b606091505b50509050806110935761104c611353565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611091573d6000803e3d6000fd5b505b50565b6110b183838360405180602001604052806000815250611587565b505050565b601160019054906101000a900460ff1681565b6110d1611cef565b73ffffffffffffffffffffffffffffffffffffffff166110ef611353565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90612f4e565b60405180910390fd5b806009908051906020019061115b929190612724565b5050565b601160009054906101000a900460ff1681565b600061117d82611c19565b9050919050565b6009805461119190612ed0565b80601f01602080910402602001604051908101604052809291908181526020018280546111bd90612ed0565b801561120a5780601f106111df5761010080835404028352916020019161120a565b820191906000526020600020905b8154815290600101906020018083116111ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d3611cef565b73ffffffffffffffffffffffffffffffffffffffff166112f1611353565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612f4e565b60405180910390fd5b61135160006120c8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138c90612ed0565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890612ed0565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b611417611ce7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611489611ce7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611536611ce7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161157b919061287b565b60405180910390a35050565b611592848484611d00565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115f4576115bd8484848461218e565b6115f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600d5481565b600a805461161390612ed0565b80601f016020809104026020016040519081016040528092919081815260200182805461163f90612ed0565b801561168c5780601f106116615761010080835404028352916020019161168c565b820191906000526020600020905b81548152906001019060200180831161166f57829003601f168201915b505050505081565b606061169f82611bba565b6116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613347565b60405180910390fd5b601160019054906101000a900460ff1661172757600b6116fd836122ee565b600a60405160200161171193929190613437565b6040516020818303038152906040529050611758565b6009611732836122ee565b600a60405160200161174693929190613437565b60405160208183030381529060405290505b919050565b611765611cef565b73ffffffffffffffffffffffffffffffffffffffff16611783611353565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612f4e565b60405180910390fd5b80600f8190555050565b6117eb611cef565b73ffffffffffffffffffffffffffffffffffffffff16611809611353565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690612f4e565b60405180910390fd5b80600a9080519060200190611875929190612724565b5050565b611881611cef565b73ffffffffffffffffffffffffffffffffffffffff1661189f611353565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612f4e565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ae611cef565b73ffffffffffffffffffffffffffffffffffffffff166119cc611353565b73ffffffffffffffffffffffffffffffffffffffff1614611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990612f4e565b60405180910390fd5b80600b9080519060200190611a38929190612724565b5050565b611a44611cef565b73ffffffffffffffffffffffffffffffffffffffff16611a62611353565b73ffffffffffffffffffffffffffffffffffffffff1614611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90612f4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f906134da565b60405180910390fd5b611b31816120c8565b50565b611b3c611cef565b73ffffffffffffffffffffffffffffffffffffffff16611b5a611353565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790612f4e565b60405180910390fd5b80600d8190555050565b600081611bc5611cf7565b11158015611bd4575060005482105b8015611c12575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611c28611cf7565b11611cb057600054811015611caf5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cad575b6000811415611ca3576004600083600190039350838152602001908152602001600020549050611c78565b8092505050611ce2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b6000611d0b82611c19565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d72576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d93611ce7565b73ffffffffffffffffffffffffffffffffffffffff161480611dc25750611dc185611dbc611ce7565b611912565b5b80611e075750611dd0611ce7565b73ffffffffffffffffffffffffffffffffffffffff16611def84610976565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ea7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb4858585600161244f565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fb186612455565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561203b576000600184019050600060046000838152602001908152602001600020541415612039576000548114612038578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a3858585600161245f565b5050505050565b6120c4828260405180602001604052806000815250612465565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121b4611ce7565b8786866040518563ffffffff1660e01b81526004016121d6949392919061354f565b602060405180830381600087803b1580156121f057600080fd5b505af192505050801561222157506040513d601f19601f8201168201806040525081019061221e91906135b0565b60015b61229b573d8060008114612251576040519150601f19603f3d011682016040523d82523d6000602084013e612256565b606091505b50600081511415612293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612336576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244a565b600082905060005b60008214612368578080612351906135dd565b915050600a826123619190613655565b915061233e565b60008167ffffffffffffffff81111561238457612383612b89565b5b6040519080825280601f01601f1916602001820160405280156123b65781602001600182028036833780820191505090505b5090505b60008514612443576001826123cf9190613686565b9150600a856123de91906136ba565b60306123ea9190612f9d565b60f81b818381518110612400576123ff6136eb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243c9190613655565b94506123ba565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124d2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561250d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61251a600085838661244f565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161257f6001851461271a565b901b60a042901b61258f86612455565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612693575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612643600087848060010195508761218e565b612679576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106125d457826000541461268e57600080fd5b6126fe565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612694575b816000819055505050612714600085838661245f565b50505050565b6000819050919050565b82805461273090612ed0565b90600052602060002090601f0160209004810192826127525760008555612799565b82601f1061276b57805160ff1916838001178555612799565b82800160010185558215612799579182015b8281111561279857825182559160200191906001019061277d565b5b5090506127a691906127aa565b5090565b5b808211156127c35760008160009055506001016127ab565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612810816127db565b811461281b57600080fd5b50565b60008135905061282d81612807565b92915050565b600060208284031215612849576128486127d1565b5b60006128578482850161281e565b91505092915050565b60008115159050919050565b61287581612860565b82525050565b6000602082019050612890600083018461286c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d05780820151818401526020810190506128b5565b838111156128df576000848401525b50505050565b6000601f19601f8301169050919050565b600061290182612896565b61290b81856128a1565b935061291b8185602086016128b2565b612924816128e5565b840191505092915050565b6000602082019050818103600083015261294981846128f6565b905092915050565b6000819050919050565b61296481612951565b811461296f57600080fd5b50565b6000813590506129818161295b565b92915050565b60006020828403121561299d5761299c6127d1565b5b60006129ab84828501612972565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129df826129b4565b9050919050565b6129ef816129d4565b82525050565b6000602082019050612a0a60008301846129e6565b92915050565b612a1981612951565b82525050565b6000602082019050612a346000830184612a10565b92915050565b612a43816129d4565b8114612a4e57600080fd5b50565b600081359050612a6081612a3a565b92915050565b60008060408385031215612a7d57612a7c6127d1565b5b6000612a8b85828601612a51565b9250506020612a9c85828601612972565b9150509250929050565b612aaf81612860565b8114612aba57600080fd5b50565b600081359050612acc81612aa6565b92915050565b600060208284031215612ae857612ae76127d1565b5b6000612af684828501612abd565b91505092915050565b600060208284031215612b1557612b146127d1565b5b6000612b2384828501612a51565b91505092915050565b600080600060608486031215612b4557612b446127d1565b5b6000612b5386828701612a51565b9350506020612b6486828701612a51565b9250506040612b7586828701612972565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc1826128e5565b810181811067ffffffffffffffff82111715612be057612bdf612b89565b5b80604052505050565b6000612bf36127c7565b9050612bff8282612bb8565b919050565b600067ffffffffffffffff821115612c1f57612c1e612b89565b5b612c28826128e5565b9050602081019050919050565b82818337600083830152505050565b6000612c57612c5284612c04565b612be9565b905082815260208101848484011115612c7357612c72612b84565b5b612c7e848285612c35565b509392505050565b600082601f830112612c9b57612c9a612b7f565b5b8135612cab848260208601612c44565b91505092915050565b600060208284031215612cca57612cc96127d1565b5b600082013567ffffffffffffffff811115612ce857612ce76127d6565b5b612cf484828501612c86565b91505092915050565b60008060408385031215612d1457612d136127d1565b5b6000612d2285828601612a51565b9250506020612d3385828601612abd565b9150509250929050565b600067ffffffffffffffff821115612d5857612d57612b89565b5b612d61826128e5565b9050602081019050919050565b6000612d81612d7c84612d3d565b612be9565b905082815260208101848484011115612d9d57612d9c612b84565b5b612da8848285612c35565b509392505050565b600082601f830112612dc557612dc4612b7f565b5b8135612dd5848260208601612d6e565b91505092915050565b60008060008060808587031215612df857612df76127d1565b5b6000612e0687828801612a51565b9450506020612e1787828801612a51565b9350506040612e2887828801612972565b925050606085013567ffffffffffffffff811115612e4957612e486127d6565b5b612e5587828801612db0565b91505092959194509250565b60008060408385031215612e7857612e776127d1565b5b6000612e8685828601612a51565b9250506020612e9785828601612a51565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ee857607f821691505b60208210811415612efc57612efb612ea1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f386020836128a1565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa882612951565b9150612fb383612951565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fe857612fe7612f6e565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b60006130296016836128a1565b915061303482612ff3565b602082019050919050565b600060208201905081810360008301526130588161301c565b9050919050565b7f54686520636f6e7472616374206973207061757365642e000000000000000000600082015250565b60006130956017836128a1565b91506130a08261305f565b602082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f457863656564206d6178206d696e7420616d6f756e7420706572207472616e7360008201527f616374696f6e2e00000000000000000000000000000000000000000000000000602082015250565b60006131276027836128a1565b9150613132826130cb565b604082019050919050565b600060208201905081810360008301526131568161311a565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000613193601c836128a1565b915061319e8261315d565b602082019050919050565b600060208201905081810360008301526131c281613186565b9050919050565b60006131d482612951565b91506131df83612951565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561321857613217612f6e565b5b828202905092915050565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b60006132596017836128a1565b915061326482613223565b602082019050919050565b600060208201905081810360008301526132888161324c565b9050919050565b600081905092915050565b50565b60006132aa60008361328f565b91506132b58261329a565b600082019050919050565b60006132cb8261329d565b9150819050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006133316030836128a1565b915061333c826132d5565b604082019050919050565b6000602082019050818103600083015261336081613324565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461339481612ed0565b61339e8186613367565b945060018216600081146133b957600181146133ca576133fd565b60ff198316865281860193506133fd565b6133d385613372565b60005b838110156133f5578154818901526001820191506020810190506133d6565b838801955050505b50505092915050565b600061341182612896565b61341b8185613367565b935061342b8185602086016128b2565b80840191505092915050565b60006134438286613387565b915061344f8285613406565b915061345b8284613387565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134c46026836128a1565b91506134cf82613468565b604082019050919050565b600060208201905081810360008301526134f3816134b7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613521826134fa565b61352b8185613505565b935061353b8185602086016128b2565b613544816128e5565b840191505092915050565b600060808201905061356460008301876129e6565b61357160208301866129e6565b61357e6040830185612a10565b81810360608301526135908184613516565b905095945050505050565b6000815190506135aa81612807565b92915050565b6000602082840312156135c6576135c56127d1565b5b60006135d48482850161359b565b91505092915050565b60006135e882612951565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361b5761361a612f6e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061366082612951565b915061366b83612951565b92508261367b5761367a613626565b5b828204905092915050565b600061369182612951565b915061369c83612951565b9250828210156136af576136ae612f6e565b5b828203905092915050565b60006136c582612951565b91506136d083612951565b9250826136e0576136df613626565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c5a9bc90ae2cfa6fb3f9b18e5e498cb25115e8caee319f44669d316149cc19de64736f6c63430008090033

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

51383:4521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18654:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25735:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51744:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25195:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55120:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17708:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51834:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26621:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53437:752;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51644:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55523:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55678:223;;;:::i;:::-;;26862:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51951:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54744:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51919:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23456:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51501:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19333:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4764:103;;;;;;;;;;;;;:::i;:::-;;4113:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23836:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26011:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27118:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51790:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51683:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51529:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54309:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55408:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54854:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55206:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26390:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54988:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5022:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55296:106;;;;;;;;;;;;;;;;;;;;;;;:::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;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;51744:39::-;;;;:::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;55120:80::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55187:5:::1;55178:6;;:14;;;;;;;;;;;;;;;;;;55120:80:::0;:::o;17708:315::-;17761:7;17989:15;:13;:15::i;:::-;17974:12;;17958:13;;:28;:46;17951:53;;17708:315;:::o;51834:55::-;;;;;;;;;;;;;;;;;:::o;26621:170::-;26755:28;26765:4;26771:2;26775:7;26755:9;:28::i;:::-;26621:170;;;:::o;53437:752::-;53539:10;;53527:8;53511:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53503:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53605:7;:5;:7::i;:::-;53591:21;;:10;:21;;;53587:461;;53637:6;;;;;;;;;;;53636:7;53628:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;53706:20;;53694:8;:32;;53686:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;53785:24;53812:20;:32;53833:10;53812:32;;;;;;;;;;;;;;;;53785:59;;53898:18;;53886:8;53867:16;:27;;;;:::i;:::-;:49;;53859:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;53999:8;53986:10;;:21;;;;:::i;:::-;53972:9;:36;;53964:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;53613:435;53587:461;54131:8;54095:20;:32;54116:10;54095:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;54150:31;54160:10;54172:8;54150:9;:31::i;:::-;53437:752;:::o;51644:32::-;;;;:::o;55523:132::-;55590:7;55616:20;:31;55637:9;55616:31;;;;;;;;;;;;;;;;55609:38;;55523:132;;;:::o;55678:223::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55737:7:::1;55758:2;;;;;;;;;;;55750:16;;55774:21;55750:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55736:64;;;55816:2;55811:83;;55842:7;:5;:7::i;:::-;55834:25;;:48;55860:21;55834:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55811:83;55725:176;55678:223::o:0;26862:185::-;27000:39;27017:4;27023:2;27027:7;27000:39;;;;;;;;;;;;:16;:39::i;:::-;26862:185;;;:::o;51951:28::-;;;;;;;;;;;;;:::o;54744:104::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54829:11:::1;54819:7;:21;;;;;;;;;;;;:::i;:::-;;54744:104:::0;:::o;51919:25::-;;;;;;;;;;;;;:::o;23456:144::-;23520:7;23563:27;23582:7;23563:18;:27::i;:::-;23540:52;;23456:144;;;:::o;51501: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;4113:87::-;4159:7;4186:6;;;;;;;;;;;4179:13;;4113:87;:::o;23836:104::-;23892:13;23925:7;23918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23836:104;:::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;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;51790:37::-;;;;:::o;51683:35::-;;;;:::o;51529:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54309:401::-;54381:13;54414:16;54422:7;54414;:16::i;:::-;54406:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54499:8;;;;;;;;;;;54494:123;;54554:14;54570:18;:7;:16;:18::i;:::-;54590:13;54537:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54523:82;;;;54494:123;54658:7;54667:18;:7;:16;:18::i;:::-;54687:13;54641:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54627:75;;54309:401;;;;:::o;55408:109::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55503:6:::1;55482:18;:27;;;;55408:109:::0;:::o;54854:128::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54957:17:::1;54941:13;:33;;;;;;;;;;;;:::i;:::-;;54854:128:::0;:::o;55206:84::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55277:5:::1;55266:8;;:16;;;;;;;;;;;;;;;;;;55206:84:::0;:::o;26390:164::-;26487:4;26511:18;:25;26530:5;26511:25;;;;;;;;;;;;;;;:35;26537:8;26511:35;;;;;;;;;;;;;;;;;;;;;;;;;26504:42;;26390:164;;;;:::o;54988:126::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55091:15:::1;55074:14;:32;;;;;;;;;;;;:::i;:::-;;54988: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;;;;5103:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5187:28;5206:8;5187:18;:28::i;:::-;5022:201:::0;:::o;55296:106::-;4344:12;:10;:12::i;:::-;4333:23;;:7;:5;:7::i;:::-;:23;;;4325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55381:13:::1;55368:10;:26;;;;55296:106:::0;:::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;52109:93::-;52166:7;52193:1;52186:8;;52109: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;28126:104::-;28195:27;28205:2;28209:8;28195:27;;;;;;;;;;;;:9;:27::i;:::-;28126:104;;:::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;40584:159::-;;;;;:::o;24756:148::-;24820:14;24881:5;24871:15;;24756:148;;;:::o;41402:158::-;;;;;:::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;24991:142::-;25049:14;25110:5;25100:15;;24991:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::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:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::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:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:180::-;13995:77;13992:1;13985:88;14092:4;14089:1;14082:15;14116:4;14113:1;14106:15;14133:305;14173:3;14192:20;14210:1;14192:20;:::i;:::-;14187:25;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14380:1;14312:66;14308:74;14305:1;14302:81;14299:107;;;14386:18;;:::i;:::-;14299:107;14430:1;14427;14423:9;14416:16;;14133:305;;;;:::o;14444:172::-;14584:24;14580:1;14572:6;14568:14;14561:48;14444:172;:::o;14622:366::-;14764:3;14785:67;14849:2;14844:3;14785:67;:::i;:::-;14778:74;;14861:93;14950:3;14861:93;:::i;:::-;14979:2;14974:3;14970:12;14963:19;;14622:366;;;:::o;14994:419::-;15160:4;15198:2;15187:9;15183:18;15175:26;;15247:9;15241:4;15237:20;15233:1;15222:9;15218:17;15211:47;15275:131;15401:4;15275:131;:::i;:::-;15267:139;;14994:419;;;:::o;15419:173::-;15559:25;15555:1;15547:6;15543:14;15536:49;15419:173;:::o;15598:366::-;15740:3;15761:67;15825:2;15820:3;15761:67;:::i;:::-;15754:74;;15837:93;15926:3;15837:93;:::i;:::-;15955:2;15950:3;15946:12;15939:19;;15598:366;;;:::o;15970:419::-;16136:4;16174:2;16163:9;16159:18;16151:26;;16223:9;16217:4;16213:20;16209:1;16198:9;16194:17;16187:47;16251:131;16377:4;16251:131;:::i;:::-;16243:139;;15970:419;;;:::o;16395:226::-;16535:34;16531:1;16523:6;16519:14;16512:58;16604:9;16599:2;16591:6;16587:15;16580:34;16395:226;:::o;16627:366::-;16769:3;16790:67;16854:2;16849:3;16790:67;:::i;:::-;16783:74;;16866:93;16955:3;16866:93;:::i;:::-;16984:2;16979:3;16975:12;16968:19;;16627:366;;;:::o;16999:419::-;17165:4;17203:2;17192:9;17188:18;17180:26;;17252:9;17246:4;17242:20;17238:1;17227:9;17223:17;17216:47;17280:131;17406:4;17280:131;:::i;:::-;17272:139;;16999:419;;;:::o;17424:178::-;17564:30;17560:1;17552:6;17548:14;17541:54;17424:178;:::o;17608:366::-;17750:3;17771:67;17835:2;17830:3;17771:67;:::i;:::-;17764:74;;17847:93;17936:3;17847:93;:::i;:::-;17965:2;17960:3;17956:12;17949:19;;17608:366;;;:::o;17980:419::-;18146:4;18184:2;18173:9;18169:18;18161:26;;18233:9;18227:4;18223:20;18219:1;18208:9;18204:17;18197:47;18261:131;18387:4;18261:131;:::i;:::-;18253:139;;17980:419;;;:::o;18405:348::-;18445:7;18468:20;18486:1;18468:20;:::i;:::-;18463:25;;18502:20;18520:1;18502:20;:::i;:::-;18497:25;;18690:1;18622:66;18618:74;18615:1;18612:81;18607:1;18600:9;18593:17;18589:105;18586:131;;;18697:18;;:::i;:::-;18586:131;18745:1;18742;18738:9;18727:20;;18405:348;;;;:::o;18759:173::-;18899:25;18895:1;18887:6;18883:14;18876:49;18759:173;:::o;18938:366::-;19080:3;19101:67;19165:2;19160:3;19101:67;:::i;:::-;19094:74;;19177:93;19266:3;19177:93;:::i;:::-;19295:2;19290:3;19286:12;19279:19;;18938:366;;;:::o;19310:419::-;19476:4;19514:2;19503:9;19499:18;19491:26;;19563:9;19557:4;19553:20;19549:1;19538:9;19534:17;19527:47;19591:131;19717:4;19591:131;:::i;:::-;19583:139;;19310:419;;;:::o;19735:147::-;19836:11;19873:3;19858:18;;19735:147;;;;:::o;19888:114::-;;:::o;20008:398::-;20167:3;20188:83;20269:1;20264:3;20188:83;:::i;:::-;20181:90;;20280:93;20369:3;20280:93;:::i;:::-;20398:1;20393:3;20389:11;20382:18;;20008:398;;;:::o;20412:379::-;20596:3;20618:147;20761:3;20618:147;:::i;:::-;20611:154;;20782:3;20775:10;;20412:379;;;:::o;20797:235::-;20937:34;20933:1;20925:6;20921:14;20914:58;21006:18;21001:2;20993:6;20989:15;20982:43;20797:235;:::o;21038:366::-;21180:3;21201:67;21265:2;21260:3;21201:67;:::i;:::-;21194:74;;21277:93;21366:3;21277:93;:::i;:::-;21395:2;21390:3;21386:12;21379:19;;21038:366;;;:::o;21410:419::-;21576:4;21614:2;21603:9;21599:18;21591:26;;21663:9;21657:4;21653:20;21649:1;21638:9;21634:17;21627:47;21691:131;21817:4;21691:131;:::i;:::-;21683:139;;21410:419;;;:::o;21835:148::-;21937:11;21974:3;21959:18;;21835:148;;;;:::o;21989:141::-;22038:4;22061:3;22053:11;;22084:3;22081:1;22074:14;22118:4;22115:1;22105:18;22097:26;;21989:141;;;:::o;22160:845::-;22263:3;22300:5;22294:12;22329:36;22355:9;22329:36;:::i;:::-;22381:89;22463:6;22458:3;22381:89;:::i;:::-;22374:96;;22501:1;22490:9;22486:17;22517:1;22512:137;;;;22663:1;22658:341;;;;22479:520;;22512:137;22596:4;22592:9;22581;22577:25;22572:3;22565:38;22632:6;22627:3;22623:16;22616:23;;22512:137;;22658:341;22725:38;22757:5;22725:38;:::i;:::-;22785:1;22799:154;22813:6;22810:1;22807:13;22799:154;;;22887:7;22881:14;22877:1;22872:3;22868:11;22861:35;22937:1;22928:7;22924:15;22913:26;;22835:4;22832:1;22828:12;22823:17;;22799:154;;;22982:6;22977:3;22973:16;22966:23;;22665:334;;22479:520;;22267:738;;22160:845;;;;:::o;23011:377::-;23117:3;23145:39;23178:5;23145:39;:::i;:::-;23200:89;23282:6;23277:3;23200:89;:::i;:::-;23193:96;;23298:52;23343:6;23338:3;23331:4;23324:5;23320:16;23298:52;:::i;:::-;23375:6;23370:3;23366:16;23359:23;;23121:267;23011:377;;;;:::o;23394:583::-;23616:3;23638:92;23726:3;23717:6;23638:92;:::i;:::-;23631:99;;23747:95;23838:3;23829:6;23747:95;:::i;:::-;23740:102;;23859:92;23947:3;23938:6;23859:92;:::i;:::-;23852:99;;23968:3;23961:10;;23394:583;;;;;;:::o;23983:225::-;24123:34;24119:1;24111:6;24107:14;24100:58;24192:8;24187:2;24179:6;24175:15;24168:33;23983:225;:::o;24214:366::-;24356:3;24377:67;24441:2;24436:3;24377:67;:::i;:::-;24370:74;;24453:93;24542:3;24453:93;:::i;:::-;24571:2;24566:3;24562:12;24555:19;;24214:366;;;:::o;24586:419::-;24752:4;24790:2;24779:9;24775:18;24767:26;;24839:9;24833:4;24829:20;24825:1;24814:9;24810:17;24803:47;24867:131;24993:4;24867:131;:::i;:::-;24859:139;;24586:419;;;:::o;25011:98::-;25062:6;25096:5;25090:12;25080:22;;25011:98;;;:::o;25115:168::-;25198:11;25232:6;25227:3;25220:19;25272:4;25267:3;25263:14;25248:29;;25115:168;;;;:::o;25289:360::-;25375:3;25403:38;25435:5;25403:38;:::i;:::-;25457:70;25520:6;25515:3;25457:70;:::i;:::-;25450:77;;25536:52;25581:6;25576:3;25569:4;25562:5;25558:16;25536:52;:::i;:::-;25613:29;25635:6;25613:29;:::i;:::-;25608:3;25604:39;25597:46;;25379:270;25289:360;;;;:::o;25655:640::-;25850:4;25888:3;25877:9;25873:19;25865:27;;25902:71;25970:1;25959:9;25955:17;25946:6;25902:71;:::i;:::-;25983:72;26051:2;26040:9;26036:18;26027:6;25983:72;:::i;:::-;26065;26133:2;26122:9;26118:18;26109:6;26065:72;:::i;:::-;26184:9;26178:4;26174:20;26169:2;26158:9;26154:18;26147:48;26212:76;26283:4;26274:6;26212:76;:::i;:::-;26204:84;;25655:640;;;;;;;:::o;26301:141::-;26357:5;26388:6;26382:13;26373:22;;26404:32;26430:5;26404:32;:::i;:::-;26301:141;;;;:::o;26448:349::-;26517:6;26566:2;26554:9;26545:7;26541:23;26537:32;26534:119;;;26572:79;;:::i;:::-;26534:119;26692:1;26717:63;26772:7;26763:6;26752:9;26748:22;26717:63;:::i;:::-;26707:73;;26663:127;26448:349;;;;:::o;26803:233::-;26842:3;26865:24;26883:5;26865:24;:::i;:::-;26856:33;;26911:66;26904:5;26901:77;26898:103;;;26981:18;;:::i;:::-;26898:103;27028:1;27021:5;27017:13;27010:20;;26803:233;;;:::o;27042:180::-;27090:77;27087:1;27080:88;27187:4;27184:1;27177:15;27211:4;27208:1;27201:15;27228:185;27268:1;27285:20;27303:1;27285:20;:::i;:::-;27280:25;;27319:20;27337:1;27319:20;:::i;:::-;27314:25;;27358:1;27348:35;;27363:18;;:::i;:::-;27348:35;27405:1;27402;27398:9;27393:14;;27228:185;;;;:::o;27419:191::-;27459:4;27479:20;27497:1;27479:20;:::i;:::-;27474:25;;27513:20;27531:1;27513:20;:::i;:::-;27508:25;;27552:1;27549;27546:8;27543:34;;;27557:18;;:::i;:::-;27543:34;27602:1;27599;27595:9;27587:17;;27419:191;;;;:::o;27616:176::-;27648:1;27665:20;27683:1;27665:20;:::i;:::-;27660:25;;27699:20;27717:1;27699:20;:::i;:::-;27694:25;;27738:1;27728:35;;27743:18;;:::i;:::-;27728:35;27784:1;27781;27777:9;27772:14;;27616:176;;;;:::o;27798:180::-;27846:77;27843:1;27836:88;27943:4;27940:1;27933:15;27967:4;27964:1;27957:15

Swarm Source

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