ETH Price: $3,100.66 (-0.34%)
Gas: 2 Gwei

Token

The Blinkless: Big Bang! (BLBB)
 

Overview

Max Total Supply

1,857 BLBB

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
icehawk.eth
Balance
11 BLBB
0x32b11BC488086890554A10C6Dd08f73109930570
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:
BlinklessBigBang

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/IERC721A.sol


// ERC721A Contracts v3.3.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: contracts/ERC721A.sol


// ERC721A Contracts v3.3.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 {
    using Strings for uint256;
    // 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 public _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string public metadataPath;
    
    // 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, tokenId.toString(),'.json')) : '';
    }

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

    /**
     * @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/BigBang.sol



/*************************************************
* The Blinkless: Big Bang uses minting mechanics
* modeled after the Big Bang to mint planets in 
* the Blinkless animated universe.
*
* code by @digitalkemical
*************************************************/

pragma solidity ^0.8.4;





contract BlinklessBigBang is ERC721A,Ownable,ReentrancyGuard {

    uint256 public maxSupply = 20000; //total number of planets that can be minted
    uint256[] public airdropWaitlist; //list of token ids waiting for airdrops
    uint256 public nextAirdropIndex = 0; //the next index in airdropWaitlist to be airdropped
    uint256 public publicPrice = 0.05 ether; //price for the public to mint
    uint256 public blinklistPrice = 0.01 ether; //price for blinklisted wallets to mint
    uint256 public mintMode = 0; //mintMode - 0 for off, 1 for on
    bytes32 public root; //blinklist merkle tree root

    //constructor is run when contract is deployed
    constructor(bytes32 _root) ERC721A("The Blinkless: Big Bang!", "BLBB") {
        //mint token #0 (New Cornea) to the contract owner
        _mint(msg.sender, 1);
        //push first token to waitlist
        airdropWaitlist.push(0);
        //set merkle tree root
        root = _root;
    }

    /*
    * Ensures the caller is not a proxy contract or bot, but is an actual wallet.
    */
    modifier callerIsUser() {
        //we only want to mint to real people
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function teamMint() external onlyOwner(){
        //founder/mod mints - each mod/founder gets 5
        //digitalkemical
        _mint(address(0x1Fd910C9E85657adF824086671CF60ecDD48293B), 5);
        //elgallo
        _mint(address(0xadd0C6134f28A4E74C829540f35A3194AF4c076E), 5);
        //superbeetle
        _mint(address(0xD684728B0F8d77f4A43f01e24d7487b4dc3E195d), 5);
        //riley
        _mint(address(0x45Cb4AF10B1D8ae8bC01360BDd517C62C479B61f), 5);
        //zilvadragon
        _mint(address(0x8D95A4EC9b5703D1370799dD2C7ad444900b9299), 5);
        //gasprices2high
        _mint(address(0xfe831CF4046E8bBd5Fe462ce3b1f681C82D50d53), 5);
        //holeefook
        _mint(address(0x39053dB2570Be478594F5797224E45AC694445E7), 5);

        //add any minted tokens to the waitlist
        uint256 i = 1; 
        while(i < totalSupply()){
            //push minted token ids into airdrop waitlist
            airdropWaitlist.push(i);
            i++;
        }
    }


    /*
    * Verifies the sender is on the Blinklist using Merkle Tree Proof
    */
    function isBlinklisted(bytes32[] memory proof, bytes32 leaf) public view returns (bool){
        return MerkleProof.verify(proof,root,leaf);
    }

    /**
    * Mint a token
    */
    function mint(uint256 quantity, bytes32[] memory proof, bytes32 leaf) external payable callerIsUser{
        //make sure mint is on
        require(mintMode == 1,"Mint is not active.");
        //limit to 5 per wallet
        require(balanceOf(msg.sender) + quantity <= 5, "Only 5 planets allowed per wallet!"); 
        //make sure we're not minted out
        require(totalSupply() + quantity <= maxSupply,"Sold Out!");  
        //check if sender is blinklisted
        if(isBlinklisted(proof,leaf)){
            //check for proper funds
            require(msg.value >= quantity * blinklistPrice, "Not enough funds!");
        } else {
            //check for proper funds
            require(msg.value >= quantity * publicPrice, "Not enough funds!");
        }
        //add to airdrop if still within window
        if(totalSupply() < 10000){
            uint256 i = 0;
            while(i < quantity){
                //push minted token ids into airdrop waitlist
                //only minted tokens are eligible for FAM airdrops
                airdropWaitlist.push(_currentIndex + i);
                i++;
            }
        }
        
        //mint the tokens
        _mint(msg.sender, quantity);

       

        /***************************************************
        * FAM: Feedback Accelerated Minting
        ***************************************************/
        //calculate airdrops
        uint256 airdropQty = 0;
        uint256 tSupply = totalSupply();
      
        if(tSupply <= 1000){
            airdropQty = 5; //airdrop 5 tokens
        }
        if(tSupply > 1000 && tSupply <= 2000){
		     airdropQty = 4; //airdrop 4 tokens
        } 
        if(tSupply > 2000 && tSupply <= 3000){
             airdropQty = 3; //airdrop 3 tokens
        }
        if(tSupply > 3000 && tSupply <= 5000){
             airdropQty = 2; //airdrop 2 tokens
        }
        if(tSupply > 5000 && tSupply <= 10000){
             airdropQty = 1; //airdrop 1 tokens
        }

        //only airdrop tokens if conditions are met
        if(airdropQty > 0){
            //airdrop tokens
            _mint(address(ownerOf(airdropWaitlist[nextAirdropIndex])), airdropQty); 
            //iterate to the next person in line
            nextAirdropIndex++;
        }
        /***************************************************
        * END - FAM: Feedback Accelerated Minting
        ***************************************************/

    }

    /*
    * Fetch the total balance held in the contract in wei
    */
    function getContractBalance() public view returns(uint256 balance){
        return address(this).balance;
    }

    /*
    * Fetch current waitlist
    */
    function getWaitlist() public view returns(uint256[] memory waitlist){
        return airdropWaitlist;
    }

    /*
    * Fetch next airdrop index
    */
    function getNextAirdropIndex() public view returns(uint256 nextIndex){
        return nextAirdropIndex;
    }

    /**
    * Update the base URI for metadata
    */
    function updateBaseURI(string memory baseURI) external onlyOwner{
        //set the path to the metadata
         metadataPath = baseURI;
    }

    /**
    * Update the root
    */
    function updateRoot(bytes32 _root) external onlyOwner{
        //set the root
         root = _root;
    }

     /**
    * Update the mintMode
    */
    function updateMintMode(uint256 _mintMode) external onlyOwner{
        //set the mintMode
         mintMode = _mintMode;
    }
 
    /*
    * Withdraw by owner
    */
    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }


    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}

   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdropWaitlist","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":"blinklistPrice","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":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextAirdropIndex","outputs":[{"internalType":"uint256","name":"nextIndex","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWaitlist","outputs":[{"internalType":"uint256[]","name":"waitlist","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isBlinklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAirdropIndex","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":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintMode","type":"uint256"}],"name":"updateMintMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052614e20600b556000600d5566b1a2bc2ec50000600e55662386f26fc10000600f5560006010553480156200003757600080fd5b506040516200404e3803806200404e83398181016040528101906200005d919062000537565b6040518060400160405280601881526020017f54686520426c696e6b6c6573733a204269672042616e672100000000000000008152506040518060400160405280600481526020017f424c4242000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e192919062000470565b508060039080519060200190620000fa92919062000470565b506200010b6200018660201b60201c565b600081905550505062000133620001276200018b60201b60201c565b6200019360201b60201c565b6001600a819055506200014e3360016200025960201b60201c565b600c600090806001815401808255809150506001900390600052602060002001600090919091909150558060118190555050620005f7565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620002c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141562000303576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200031860008483856200045060201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000385600184146200045660201b60201c565b901b60a042901b6200039d856200046060201b60201c565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620003c3578160008190555050506200044b60008483856200046a60201b60201c565b505050565b50505050565b6000819050919050565b6000819050919050565b50505050565b8280546200047e9062000573565b90600052602060002090601f016020900481019282620004a25760008555620004ee565b82601f10620004bd57805160ff1916838001178555620004ee565b82800160010185558215620004ee579182015b82811115620004ed578251825591602001919060010190620004d0565b5b509050620004fd919062000501565b5090565b5b808211156200051c57600081600090555060010162000502565b5090565b6000815190506200053181620005dd565b92915050565b60006020828403121562000550576200054f620005d8565b5b6000620005608482850162000520565b91505092915050565b6000819050919050565b600060028204905060018216806200058c57607f821691505b60208210811415620005a357620005a2620005a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620005e88162000569565b8114620005f457600080fd5b50565b613a4780620006076000396000f3fe6080604052600436106102135760003560e01c80638a22095b11610118578063c83e9213116100a0578063e985e9c51161006f578063e985e9c514610776578063ebe6a72c146107b3578063ebf0c717146107dc578063f2fde38b14610807578063fb28a540146108305761021a565b8063c83e9213146106a6578063c87b56dd146106d1578063d4a346a31461070e578063d5abeb011461074b5761021a565b806395d89b41116100e757806395d89b41146105e7578063a22cb46514610612578063a945bf801461063b578063b88d4fde14610666578063ba7a86b81461068f5761021a565b80638a22095b1461053d5780638da5cb5b14610568578063931688cb146105935780639451c99a146105bc5761021a565b80633ccfd60b1161019b5780636a6befdc1161016a5780636a6befdc146104565780636f9fb98a1461049357806370a08231146104be578063715018a6146104fb578063788c5999146105125761021a565b80633ccfd60b146103bd57806342842e0e146103d45780635b885ed7146103fd5780636352211e146104195761021a565b806315a7191c116101e257806315a7191c146102ea57806318160ddd1461031557806321ff99701461034057806323b872dd1461036957806331f1bc05146103925761021a565b806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610243600480360381019061023e9190612c30565b61085b565b6040516102509190613121565b60405180910390f35b34801561026557600080fd5b5061026e6108ed565b60405161027b9190613157565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612cd3565b61097f565b6040516102b89190613098565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612b67565b6109fb565b005b3480156102f657600080fd5b506102ff610ba2565b60405161030c9190613299565b60405180910390f35b34801561032157600080fd5b5061032a610ba8565b6040516103379190613299565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612c03565b610bbf565b005b34801561037557600080fd5b50610390600480360381019061038b9190612a51565b610c45565b005b34801561039e57600080fd5b506103a7610c55565b6040516103b491906130ff565b60405180910390f35b3480156103c957600080fd5b506103d2610cad565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612a51565b610e2e565b005b61041760048036038101906104129190612d00565b610e4e565b005b34801561042557600080fd5b50610440600480360381019061043b9190612cd3565b6111bf565b60405161044d9190613098565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612ba7565b6111d1565b60405161048a9190613121565b60405180910390f35b34801561049f57600080fd5b506104a86111e8565b6040516104b59190613299565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906129e4565b6111f0565b6040516104f29190613299565b60405180910390f35b34801561050757600080fd5b506105106112a9565b005b34801561051e57600080fd5b50610527611331565b6040516105349190613299565b60405180910390f35b34801561054957600080fd5b50610552611337565b60405161055f9190613299565b60405180910390f35b34801561057457600080fd5b5061057d61133d565b60405161058a9190613098565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612c8a565b611367565b005b3480156105c857600080fd5b506105d16113fd565b6040516105de9190613299565b60405180910390f35b3480156105f357600080fd5b506105fc611403565b6040516106099190613157565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612b27565b611495565b005b34801561064757600080fd5b5061065061160d565b60405161065d9190613299565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612aa4565b611613565b005b34801561069b57600080fd5b506106a4611686565b005b3480156106b257600080fd5b506106bb611830565b6040516106c89190613299565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190612cd3565b61183a565b6040516107059190613157565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612cd3565b6118d9565b6040516107429190613299565b60405180910390f35b34801561075757600080fd5b506107606118fd565b60405161076d9190613299565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190612a11565b611903565b6040516107aa9190613121565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190612cd3565b611997565b005b3480156107e857600080fd5b506107f1611a1d565b6040516107fe919061313c565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906129e4565b611a23565b005b34801561083c57600080fd5b50610845611b1b565b6040516108529190613157565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fc906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610928906135c3565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b600061098a82611ba9565b6109c0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0682611c08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8d611cd6565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611cd6565b611903565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610bb2611cde565b6001546000540303905090565b610bc7611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610be561133d565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906131f9565b60405180910390fd5b8060118190555050565b610c50838383611ceb565b505050565b6060600c805480602002602001604051908101604052809291908181526020018280548015610ca357602002820191906000526020600020905b815481526020019060010190808311610c8f575b5050505050905090565b610cb5611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610cd361133d565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906131f9565b60405180910390fd5b6002600a541415610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613279565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d9d90613083565b60006040518083038185875af1925050503d8060008114610dda576040519150601f19603f3d011682016040523d82523d6000602084013e610ddf565b606091505b5050905080610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613259565b60405180910390fd5b506001600a81905550565b610e4983838360405180602001604052806000815250611613565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906131d9565b60405180910390fd5b600160105414610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613179565b60405180910390fd5b600583610f0d336111f0565b610f1791906133ee565b1115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613239565b60405180910390fd5b600b5483610f64610ba8565b610f6e91906133ee565b1115610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906131b9565b60405180910390fd5b610fb982826111d1565b1561101357600f5483610fcc9190613475565b34101561100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613219565b60405180910390fd5b611064565b600e54836110219190613475565b341015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613219565b60405180910390fd5b5b61271061106f610ba8565b10156110cb5760005b838110156110c957600c8160005461109091906133ee565b908060018154018082558091505060019003906000526020600020016000909190919091505580806110c190613626565b915050611078565b505b6110d53384612095565b6000806110e0610ba8565b90506103e881116110f057600591505b6103e88111801561110357506107d08111155b1561110d57600491505b6107d0811180156111205750610bb88111155b1561112a57600391505b610bb88111801561113d57506113888111155b1561114757600291505b6113888111801561115a57506127108111155b1561116457600191505b60008211156111b85761119f611199600c600d54815481106111895761118861372d565b5b90600052602060002001546111bf565b83612095565b600d60008154809291906111b290613626565b91905055505b5050505050565b60006111ca82611c08565b9050919050565b60006111e08360115484612269565b905092915050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611258576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112b1611ce3565b73ffffffffffffffffffffffffffffffffffffffff166112cf61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c906131f9565b60405180910390fd5b61132f6000612280565b565b60105481565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136f611ce3565b73ffffffffffffffffffffffffffffffffffffffff1661138d61133d565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906131f9565b60405180910390fd5b80600490805190602001906113f9929190612745565b5050565b60005481565b606060038054611412906135c3565b80601f016020809104026020016040519081016040528092919081815260200182805461143e906135c3565b801561148b5780601f106114605761010080835404028352916020019161148b565b820191906000526020600020905b81548152906001019060200180831161146e57829003601f168201915b5050505050905090565b61149d611cd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611502576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061150f611cd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115bc611cd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116019190613121565b60405180910390a35050565b600e5481565b61161e848484611ceb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116805761164984848484612346565b61167f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61168e611ce3565b73ffffffffffffffffffffffffffffffffffffffff166116ac61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906131f9565b60405180910390fd5b611721731fd910c9e85657adf824086671cf60ecdd48293b6005612095565b61174073add0c6134f28a4e74c829540f35a3194af4c076e6005612095565b61175f73d684728b0f8d77f4a43f01e24d7487b4dc3e195d6005612095565b61177e7345cb4af10b1d8ae8bc01360bdd517c62c479b61f6005612095565b61179d738d95a4ec9b5703d1370799dd2c7ad444900b92996005612095565b6117bc73fe831cf4046e8bbd5fe462ce3b1f681c82d50d536005612095565b6117db7339053db2570be478594f5797224e45ac694445e76005612095565b6000600190505b6117ea610ba8565b81101561182d57600c819080600181540180825580915050600190039060005260206000200160009091909190915055808061182590613626565b9150506117e2565b50565b6000600d54905090565b606061184582611ba9565b61187b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118856124a6565b90506000815114156118a657604051806020016040528060008152506118d1565b806118b084612538565b6040516020016118c1929190613054565b6040516020818303038152906040525b915050919050565b600c81815481106118e957600080fd5b906000526020600020016000915090505481565b600b5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199f611ce3565b73ffffffffffffffffffffffffffffffffffffffff166119bd61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906131f9565b60405180910390fd5b8060108190555050565b60115481565b611a2b611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a4961133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906131f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613199565b60405180910390fd5b611b1881612280565b50565b60048054611b28906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b54906135c3565b8015611ba15780601f10611b7657610100808354040283529160200191611ba1565b820191906000526020600020905b815481529060010190602001808311611b8457829003601f168201915b505050505081565b600081611bb4611cde565b11158015611bc3575060005482105b8015611c01575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611c17611cde565b11611c9f57600054811015611c9e5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c9c575b6000811415611c92576005600083600190039350838152602001908152602001600020549050611c67565b8092505050611cd1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b6000611cf682611c08565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d7e611cd6565b73ffffffffffffffffffffffffffffffffffffffff161480611dad5750611dac85611da7611cd6565b611903565b5b80611df25750611dbb611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611dda8461097f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e2b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e92576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9f8585856001612699565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f9c8661269f565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612026576000600184019050600060056000838152602001908152602001600020541415612024576000548114612023578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208e85858560016126a9565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612102576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561213d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214a6000848385612699565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16121af600184146126af565b901b60a042901b6121bf8561269f565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121e55781600081905550505061226460008483856126a9565b505050565b60008261227685846126b9565b1490509392505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236c611cd6565b8786866040518563ffffffff1660e01b815260040161238e94939291906130b3565b602060405180830381600087803b1580156123a857600080fd5b505af19250505080156123d957506040513d601f19601f820116820180604052508101906123d69190612c5d565b60015b612453573d8060008114612409576040519150601f19603f3d011682016040523d82523d6000602084013e61240e565b606091505b5060008151141561244b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600480546124b5906135c3565b80601f01602080910402602001604051908101604052809291908181526020018280546124e1906135c3565b801561252e5780601f106125035761010080835404028352916020019161252e565b820191906000526020600020905b81548152906001019060200180831161251157829003601f168201915b5050505050905090565b60606000821415612580576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612694565b600082905060005b600082146125b257808061259b90613626565b915050600a826125ab9190613444565b9150612588565b60008167ffffffffffffffff8111156125ce576125cd61375c565b5b6040519080825280601f01601f1916602001820160405280156126005781602001600182028036833780820191505090505b5090505b6000851461268d5760018261261991906134cf565b9150600a85612628919061366f565b603061263491906133ee565b60f81b81838151811061264a5761264961372d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126869190613444565b9450612604565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008082905060005b84518110156127235760008582815181106126e0576126df61372d565b5b60200260200101519050808311612702576126fb838261272e565b925061270f565b61270c818461272e565b92505b50808061271b90613626565b9150506126c2565b508091505092915050565b600082600052816020526040600020905092915050565b828054612751906135c3565b90600052602060002090601f01602090048101928261277357600085556127ba565b82601f1061278c57805160ff19168380011785556127ba565b828001600101855582156127ba579182015b828111156127b957825182559160200191906001019061279e565b5b5090506127c791906127cb565b5090565b5b808211156127e45760008160009055506001016127cc565b5090565b60006127fb6127f6846132d9565b6132b4565b9050808382526020820190508285602086028201111561281e5761281d613790565b5b60005b8581101561284e57816128348882612934565b845260208401935060208301925050600181019050612821565b5050509392505050565b600061286b61286684613305565b6132b4565b90508281526020810184848401111561288757612886613795565b5b612892848285613581565b509392505050565b60006128ad6128a884613336565b6132b4565b9050828152602081018484840111156128c9576128c8613795565b5b6128d4848285613581565b509392505050565b6000813590506128eb8161399e565b92915050565b600082601f8301126129065761290561378b565b5b81356129168482602086016127e8565b91505092915050565b60008135905061292e816139b5565b92915050565b600081359050612943816139cc565b92915050565b600081359050612958816139e3565b92915050565b60008151905061296d816139e3565b92915050565b600082601f8301126129885761298761378b565b5b8135612998848260208601612858565b91505092915050565b600082601f8301126129b6576129b561378b565b5b81356129c684826020860161289a565b91505092915050565b6000813590506129de816139fa565b92915050565b6000602082840312156129fa576129f961379f565b5b6000612a08848285016128dc565b91505092915050565b60008060408385031215612a2857612a2761379f565b5b6000612a36858286016128dc565b9250506020612a47858286016128dc565b9150509250929050565b600080600060608486031215612a6a57612a6961379f565b5b6000612a78868287016128dc565b9350506020612a89868287016128dc565b9250506040612a9a868287016129cf565b9150509250925092565b60008060008060808587031215612abe57612abd61379f565b5b6000612acc878288016128dc565b9450506020612add878288016128dc565b9350506040612aee878288016129cf565b925050606085013567ffffffffffffffff811115612b0f57612b0e61379a565b5b612b1b87828801612973565b91505092959194509250565b60008060408385031215612b3e57612b3d61379f565b5b6000612b4c858286016128dc565b9250506020612b5d8582860161291f565b9150509250929050565b60008060408385031215612b7e57612b7d61379f565b5b6000612b8c858286016128dc565b9250506020612b9d858286016129cf565b9150509250929050565b60008060408385031215612bbe57612bbd61379f565b5b600083013567ffffffffffffffff811115612bdc57612bdb61379a565b5b612be8858286016128f1565b9250506020612bf985828601612934565b9150509250929050565b600060208284031215612c1957612c1861379f565b5b6000612c2784828501612934565b91505092915050565b600060208284031215612c4657612c4561379f565b5b6000612c5484828501612949565b91505092915050565b600060208284031215612c7357612c7261379f565b5b6000612c818482850161295e565b91505092915050565b600060208284031215612ca057612c9f61379f565b5b600082013567ffffffffffffffff811115612cbe57612cbd61379a565b5b612cca848285016129a1565b91505092915050565b600060208284031215612ce957612ce861379f565b5b6000612cf7848285016129cf565b91505092915050565b600080600060608486031215612d1957612d1861379f565b5b6000612d27868287016129cf565b935050602084013567ffffffffffffffff811115612d4857612d4761379a565b5b612d54868287016128f1565b9250506040612d6586828701612934565b9150509250925092565b6000612d7b8383613036565b60208301905092915050565b612d9081613503565b82525050565b6000612da182613377565b612dab81856133a5565b9350612db683613367565b8060005b83811015612de7578151612dce8882612d6f565b9750612dd983613398565b925050600181019050612dba565b5085935050505092915050565b612dfd81613515565b82525050565b612e0c81613521565b82525050565b6000612e1d82613382565b612e2781856133b6565b9350612e37818560208601613590565b612e40816137a4565b840191505092915050565b6000612e568261338d565b612e6081856133d2565b9350612e70818560208601613590565b612e79816137a4565b840191505092915050565b6000612e8f8261338d565b612e9981856133e3565b9350612ea9818560208601613590565b80840191505092915050565b6000612ec26013836133d2565b9150612ecd826137b5565b602082019050919050565b6000612ee56026836133d2565b9150612ef0826137de565b604082019050919050565b6000612f086009836133d2565b9150612f138261382d565b602082019050919050565b6000612f2b601e836133d2565b9150612f3682613856565b602082019050919050565b6000612f4e6005836133e3565b9150612f598261387f565b600582019050919050565b6000612f716020836133d2565b9150612f7c826138a8565b602082019050919050565b6000612f946011836133d2565b9150612f9f826138d1565b602082019050919050565b6000612fb76022836133d2565b9150612fc2826138fa565b604082019050919050565b6000612fda6000836133c7565b9150612fe582613949565b600082019050919050565b6000612ffd6010836133d2565b91506130088261394c565b602082019050919050565b6000613020601f836133d2565b915061302b82613975565b602082019050919050565b61303f81613577565b82525050565b61304e81613577565b82525050565b60006130608285612e84565b915061306c8284612e84565b915061307782612f41565b91508190509392505050565b600061308e82612fcd565b9150819050919050565b60006020820190506130ad6000830184612d87565b92915050565b60006080820190506130c86000830187612d87565b6130d56020830186612d87565b6130e26040830185613045565b81810360608301526130f48184612e12565b905095945050505050565b600060208201905081810360008301526131198184612d96565b905092915050565b60006020820190506131366000830184612df4565b92915050565b60006020820190506131516000830184612e03565b92915050565b600060208201905081810360008301526131718184612e4b565b905092915050565b6000602082019050818103600083015261319281612eb5565b9050919050565b600060208201905081810360008301526131b281612ed8565b9050919050565b600060208201905081810360008301526131d281612efb565b9050919050565b600060208201905081810360008301526131f281612f1e565b9050919050565b6000602082019050818103600083015261321281612f64565b9050919050565b6000602082019050818103600083015261323281612f87565b9050919050565b6000602082019050818103600083015261325281612faa565b9050919050565b6000602082019050818103600083015261327281612ff0565b9050919050565b6000602082019050818103600083015261329281613013565b9050919050565b60006020820190506132ae6000830184613045565b92915050565b60006132be6132cf565b90506132ca82826135f5565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f4576132f361375c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133205761331f61375c565b5b613329826137a4565b9050602081019050919050565b600067ffffffffffffffff8211156133515761335061375c565b5b61335a826137a4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f982613577565b915061340483613577565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613439576134386136a0565b5b828201905092915050565b600061344f82613577565b915061345a83613577565b92508261346a576134696136cf565b5b828204905092915050565b600061348082613577565b915061348b83613577565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c4576134c36136a0565b5b828202905092915050565b60006134da82613577565b91506134e583613577565b9250828210156134f8576134f76136a0565b5b828203905092915050565b600061350e82613557565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135ae578082015181840152602081019050613593565b838111156135bd576000848401525b50505050565b600060028204905060018216806135db57607f821691505b602082108114156135ef576135ee6136fe565b5b50919050565b6135fe826137a4565b810181811067ffffffffffffffff8211171561361d5761361c61375c565b5b80604052505050565b600061363182613577565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613664576136636136a0565b5b600182019050919050565b600061367a82613577565b915061368583613577565b925082613695576136946136cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4f6e6c79203520706c616e65747320616c6c6f776564207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6139a781613503565b81146139b257600080fd5b50565b6139be81613515565b81146139c957600080fd5b50565b6139d581613521565b81146139e057600080fd5b50565b6139ec8161352b565b81146139f757600080fd5b50565b613a0381613577565b8114613a0e57600080fd5b5056fea2646970667358221220ed28df1a34a669420e577985283ea4462cfc549a90895832bb83e938529301de64736f6c63430008070033d15538b1651cc0c08af6802f10f3b9580c3432054bc0a46efdf2cb46a577b4f6

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638a22095b11610118578063c83e9213116100a0578063e985e9c51161006f578063e985e9c514610776578063ebe6a72c146107b3578063ebf0c717146107dc578063f2fde38b14610807578063fb28a540146108305761021a565b8063c83e9213146106a6578063c87b56dd146106d1578063d4a346a31461070e578063d5abeb011461074b5761021a565b806395d89b41116100e757806395d89b41146105e7578063a22cb46514610612578063a945bf801461063b578063b88d4fde14610666578063ba7a86b81461068f5761021a565b80638a22095b1461053d5780638da5cb5b14610568578063931688cb146105935780639451c99a146105bc5761021a565b80633ccfd60b1161019b5780636a6befdc1161016a5780636a6befdc146104565780636f9fb98a1461049357806370a08231146104be578063715018a6146104fb578063788c5999146105125761021a565b80633ccfd60b146103bd57806342842e0e146103d45780635b885ed7146103fd5780636352211e146104195761021a565b806315a7191c116101e257806315a7191c146102ea57806318160ddd1461031557806321ff99701461034057806323b872dd1461036957806331f1bc05146103925761021a565b806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610243600480360381019061023e9190612c30565b61085b565b6040516102509190613121565b60405180910390f35b34801561026557600080fd5b5061026e6108ed565b60405161027b9190613157565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612cd3565b61097f565b6040516102b89190613098565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612b67565b6109fb565b005b3480156102f657600080fd5b506102ff610ba2565b60405161030c9190613299565b60405180910390f35b34801561032157600080fd5b5061032a610ba8565b6040516103379190613299565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612c03565b610bbf565b005b34801561037557600080fd5b50610390600480360381019061038b9190612a51565b610c45565b005b34801561039e57600080fd5b506103a7610c55565b6040516103b491906130ff565b60405180910390f35b3480156103c957600080fd5b506103d2610cad565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612a51565b610e2e565b005b61041760048036038101906104129190612d00565b610e4e565b005b34801561042557600080fd5b50610440600480360381019061043b9190612cd3565b6111bf565b60405161044d9190613098565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612ba7565b6111d1565b60405161048a9190613121565b60405180910390f35b34801561049f57600080fd5b506104a86111e8565b6040516104b59190613299565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906129e4565b6111f0565b6040516104f29190613299565b60405180910390f35b34801561050757600080fd5b506105106112a9565b005b34801561051e57600080fd5b50610527611331565b6040516105349190613299565b60405180910390f35b34801561054957600080fd5b50610552611337565b60405161055f9190613299565b60405180910390f35b34801561057457600080fd5b5061057d61133d565b60405161058a9190613098565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612c8a565b611367565b005b3480156105c857600080fd5b506105d16113fd565b6040516105de9190613299565b60405180910390f35b3480156105f357600080fd5b506105fc611403565b6040516106099190613157565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612b27565b611495565b005b34801561064757600080fd5b5061065061160d565b60405161065d9190613299565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612aa4565b611613565b005b34801561069b57600080fd5b506106a4611686565b005b3480156106b257600080fd5b506106bb611830565b6040516106c89190613299565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190612cd3565b61183a565b6040516107059190613157565b60405180910390f35b34801561071a57600080fd5b5061073560048036038101906107309190612cd3565b6118d9565b6040516107429190613299565b60405180910390f35b34801561075757600080fd5b506107606118fd565b60405161076d9190613299565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190612a11565b611903565b6040516107aa9190613121565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190612cd3565b611997565b005b3480156107e857600080fd5b506107f1611a1d565b6040516107fe919061313c565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906129e4565b611a23565b005b34801561083c57600080fd5b50610845611b1b565b6040516108529190613157565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108fc906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610928906135c3565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b600061098a82611ba9565b6109c0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0682611c08565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8d611cd6565b73ffffffffffffffffffffffffffffffffffffffff1614610af057610ab981610ab4611cd6565b611903565b610aef576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b6000610bb2611cde565b6001546000540303905090565b610bc7611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610be561133d565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c32906131f9565b60405180910390fd5b8060118190555050565b610c50838383611ceb565b505050565b6060600c805480602002602001604051908101604052809291908181526020018280548015610ca357602002820191906000526020600020905b815481526020019060010190808311610c8f575b5050505050905090565b610cb5611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610cd361133d565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906131f9565b60405180910390fd5b6002600a541415610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613279565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d9d90613083565b60006040518083038185875af1925050503d8060008114610dda576040519150601f19603f3d011682016040523d82523d6000602084013e610ddf565b606091505b5050905080610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613259565b60405180910390fd5b506001600a81905550565b610e4983838360405180602001604052806000815250611613565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906131d9565b60405180910390fd5b600160105414610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613179565b60405180910390fd5b600583610f0d336111f0565b610f1791906133ee565b1115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613239565b60405180910390fd5b600b5483610f64610ba8565b610f6e91906133ee565b1115610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906131b9565b60405180910390fd5b610fb982826111d1565b1561101357600f5483610fcc9190613475565b34101561100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613219565b60405180910390fd5b611064565b600e54836110219190613475565b341015611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90613219565b60405180910390fd5b5b61271061106f610ba8565b10156110cb5760005b838110156110c957600c8160005461109091906133ee565b908060018154018082558091505060019003906000526020600020016000909190919091505580806110c190613626565b915050611078565b505b6110d53384612095565b6000806110e0610ba8565b90506103e881116110f057600591505b6103e88111801561110357506107d08111155b1561110d57600491505b6107d0811180156111205750610bb88111155b1561112a57600391505b610bb88111801561113d57506113888111155b1561114757600291505b6113888111801561115a57506127108111155b1561116457600191505b60008211156111b85761119f611199600c600d54815481106111895761118861372d565b5b90600052602060002001546111bf565b83612095565b600d60008154809291906111b290613626565b91905055505b5050505050565b60006111ca82611c08565b9050919050565b60006111e08360115484612269565b905092915050565b600047905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611258576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112b1611ce3565b73ffffffffffffffffffffffffffffffffffffffff166112cf61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c906131f9565b60405180910390fd5b61132f6000612280565b565b60105481565b600f5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136f611ce3565b73ffffffffffffffffffffffffffffffffffffffff1661138d61133d565b73ffffffffffffffffffffffffffffffffffffffff16146113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906131f9565b60405180910390fd5b80600490805190602001906113f9929190612745565b5050565b60005481565b606060038054611412906135c3565b80601f016020809104026020016040519081016040528092919081815260200182805461143e906135c3565b801561148b5780601f106114605761010080835404028352916020019161148b565b820191906000526020600020905b81548152906001019060200180831161146e57829003601f168201915b5050505050905090565b61149d611cd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611502576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061150f611cd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115bc611cd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116019190613121565b60405180910390a35050565b600e5481565b61161e848484611ceb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116805761164984848484612346565b61167f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61168e611ce3565b73ffffffffffffffffffffffffffffffffffffffff166116ac61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906131f9565b60405180910390fd5b611721731fd910c9e85657adf824086671cf60ecdd48293b6005612095565b61174073add0c6134f28a4e74c829540f35a3194af4c076e6005612095565b61175f73d684728b0f8d77f4a43f01e24d7487b4dc3e195d6005612095565b61177e7345cb4af10b1d8ae8bc01360bdd517c62c479b61f6005612095565b61179d738d95a4ec9b5703d1370799dd2c7ad444900b92996005612095565b6117bc73fe831cf4046e8bbd5fe462ce3b1f681c82d50d536005612095565b6117db7339053db2570be478594f5797224e45ac694445e76005612095565b6000600190505b6117ea610ba8565b81101561182d57600c819080600181540180825580915050600190039060005260206000200160009091909190915055808061182590613626565b9150506117e2565b50565b6000600d54905090565b606061184582611ba9565b61187b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118856124a6565b90506000815114156118a657604051806020016040528060008152506118d1565b806118b084612538565b6040516020016118c1929190613054565b6040516020818303038152906040525b915050919050565b600c81815481106118e957600080fd5b906000526020600020016000915090505481565b600b5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199f611ce3565b73ffffffffffffffffffffffffffffffffffffffff166119bd61133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906131f9565b60405180910390fd5b8060108190555050565b60115481565b611a2b611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a4961133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a96906131f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0690613199565b60405180910390fd5b611b1881612280565b50565b60048054611b28906135c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b54906135c3565b8015611ba15780601f10611b7657610100808354040283529160200191611ba1565b820191906000526020600020905b815481529060010190602001808311611b8457829003601f168201915b505050505081565b600081611bb4611cde565b11158015611bc3575060005482105b8015611c01575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611c17611cde565b11611c9f57600054811015611c9e5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c9c575b6000811415611c92576005600083600190039350838152602001908152602001600020549050611c67565b8092505050611cd1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b6000611cf682611c08565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d7e611cd6565b73ffffffffffffffffffffffffffffffffffffffff161480611dad5750611dac85611da7611cd6565b611903565b5b80611df25750611dbb611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611dda8461097f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e2b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e92576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9f8585856001612699565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611f9c8661269f565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612026576000600184019050600060056000838152602001908152602001600020541415612024576000548114612023578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208e85858560016126a9565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612102576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561213d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214a6000848385612699565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16121af600184146126af565b901b60a042901b6121bf8561269f565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121e55781600081905550505061226460008483856126a9565b505050565b60008261227685846126b9565b1490509392505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236c611cd6565b8786866040518563ffffffff1660e01b815260040161238e94939291906130b3565b602060405180830381600087803b1580156123a857600080fd5b505af19250505080156123d957506040513d601f19601f820116820180604052508101906123d69190612c5d565b60015b612453573d8060008114612409576040519150601f19603f3d011682016040523d82523d6000602084013e61240e565b606091505b5060008151141561244b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600480546124b5906135c3565b80601f01602080910402602001604051908101604052809291908181526020018280546124e1906135c3565b801561252e5780601f106125035761010080835404028352916020019161252e565b820191906000526020600020905b81548152906001019060200180831161251157829003601f168201915b5050505050905090565b60606000821415612580576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612694565b600082905060005b600082146125b257808061259b90613626565b915050600a826125ab9190613444565b9150612588565b60008167ffffffffffffffff8111156125ce576125cd61375c565b5b6040519080825280601f01601f1916602001820160405280156126005781602001600182028036833780820191505090505b5090505b6000851461268d5760018261261991906134cf565b9150600a85612628919061366f565b603061263491906133ee565b60f81b81838151811061264a5761264961372d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126869190613444565b9450612604565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008082905060005b84518110156127235760008582815181106126e0576126df61372d565b5b60200260200101519050808311612702576126fb838261272e565b925061270f565b61270c818461272e565b92505b50808061271b90613626565b9150506126c2565b508091505092915050565b600082600052816020526040600020905092915050565b828054612751906135c3565b90600052602060002090601f01602090048101928261277357600085556127ba565b82601f1061278c57805160ff19168380011785556127ba565b828001600101855582156127ba579182015b828111156127b957825182559160200191906001019061279e565b5b5090506127c791906127cb565b5090565b5b808211156127e45760008160009055506001016127cc565b5090565b60006127fb6127f6846132d9565b6132b4565b9050808382526020820190508285602086028201111561281e5761281d613790565b5b60005b8581101561284e57816128348882612934565b845260208401935060208301925050600181019050612821565b5050509392505050565b600061286b61286684613305565b6132b4565b90508281526020810184848401111561288757612886613795565b5b612892848285613581565b509392505050565b60006128ad6128a884613336565b6132b4565b9050828152602081018484840111156128c9576128c8613795565b5b6128d4848285613581565b509392505050565b6000813590506128eb8161399e565b92915050565b600082601f8301126129065761290561378b565b5b81356129168482602086016127e8565b91505092915050565b60008135905061292e816139b5565b92915050565b600081359050612943816139cc565b92915050565b600081359050612958816139e3565b92915050565b60008151905061296d816139e3565b92915050565b600082601f8301126129885761298761378b565b5b8135612998848260208601612858565b91505092915050565b600082601f8301126129b6576129b561378b565b5b81356129c684826020860161289a565b91505092915050565b6000813590506129de816139fa565b92915050565b6000602082840312156129fa576129f961379f565b5b6000612a08848285016128dc565b91505092915050565b60008060408385031215612a2857612a2761379f565b5b6000612a36858286016128dc565b9250506020612a47858286016128dc565b9150509250929050565b600080600060608486031215612a6a57612a6961379f565b5b6000612a78868287016128dc565b9350506020612a89868287016128dc565b9250506040612a9a868287016129cf565b9150509250925092565b60008060008060808587031215612abe57612abd61379f565b5b6000612acc878288016128dc565b9450506020612add878288016128dc565b9350506040612aee878288016129cf565b925050606085013567ffffffffffffffff811115612b0f57612b0e61379a565b5b612b1b87828801612973565b91505092959194509250565b60008060408385031215612b3e57612b3d61379f565b5b6000612b4c858286016128dc565b9250506020612b5d8582860161291f565b9150509250929050565b60008060408385031215612b7e57612b7d61379f565b5b6000612b8c858286016128dc565b9250506020612b9d858286016129cf565b9150509250929050565b60008060408385031215612bbe57612bbd61379f565b5b600083013567ffffffffffffffff811115612bdc57612bdb61379a565b5b612be8858286016128f1565b9250506020612bf985828601612934565b9150509250929050565b600060208284031215612c1957612c1861379f565b5b6000612c2784828501612934565b91505092915050565b600060208284031215612c4657612c4561379f565b5b6000612c5484828501612949565b91505092915050565b600060208284031215612c7357612c7261379f565b5b6000612c818482850161295e565b91505092915050565b600060208284031215612ca057612c9f61379f565b5b600082013567ffffffffffffffff811115612cbe57612cbd61379a565b5b612cca848285016129a1565b91505092915050565b600060208284031215612ce957612ce861379f565b5b6000612cf7848285016129cf565b91505092915050565b600080600060608486031215612d1957612d1861379f565b5b6000612d27868287016129cf565b935050602084013567ffffffffffffffff811115612d4857612d4761379a565b5b612d54868287016128f1565b9250506040612d6586828701612934565b9150509250925092565b6000612d7b8383613036565b60208301905092915050565b612d9081613503565b82525050565b6000612da182613377565b612dab81856133a5565b9350612db683613367565b8060005b83811015612de7578151612dce8882612d6f565b9750612dd983613398565b925050600181019050612dba565b5085935050505092915050565b612dfd81613515565b82525050565b612e0c81613521565b82525050565b6000612e1d82613382565b612e2781856133b6565b9350612e37818560208601613590565b612e40816137a4565b840191505092915050565b6000612e568261338d565b612e6081856133d2565b9350612e70818560208601613590565b612e79816137a4565b840191505092915050565b6000612e8f8261338d565b612e9981856133e3565b9350612ea9818560208601613590565b80840191505092915050565b6000612ec26013836133d2565b9150612ecd826137b5565b602082019050919050565b6000612ee56026836133d2565b9150612ef0826137de565b604082019050919050565b6000612f086009836133d2565b9150612f138261382d565b602082019050919050565b6000612f2b601e836133d2565b9150612f3682613856565b602082019050919050565b6000612f4e6005836133e3565b9150612f598261387f565b600582019050919050565b6000612f716020836133d2565b9150612f7c826138a8565b602082019050919050565b6000612f946011836133d2565b9150612f9f826138d1565b602082019050919050565b6000612fb76022836133d2565b9150612fc2826138fa565b604082019050919050565b6000612fda6000836133c7565b9150612fe582613949565b600082019050919050565b6000612ffd6010836133d2565b91506130088261394c565b602082019050919050565b6000613020601f836133d2565b915061302b82613975565b602082019050919050565b61303f81613577565b82525050565b61304e81613577565b82525050565b60006130608285612e84565b915061306c8284612e84565b915061307782612f41565b91508190509392505050565b600061308e82612fcd565b9150819050919050565b60006020820190506130ad6000830184612d87565b92915050565b60006080820190506130c86000830187612d87565b6130d56020830186612d87565b6130e26040830185613045565b81810360608301526130f48184612e12565b905095945050505050565b600060208201905081810360008301526131198184612d96565b905092915050565b60006020820190506131366000830184612df4565b92915050565b60006020820190506131516000830184612e03565b92915050565b600060208201905081810360008301526131718184612e4b565b905092915050565b6000602082019050818103600083015261319281612eb5565b9050919050565b600060208201905081810360008301526131b281612ed8565b9050919050565b600060208201905081810360008301526131d281612efb565b9050919050565b600060208201905081810360008301526131f281612f1e565b9050919050565b6000602082019050818103600083015261321281612f64565b9050919050565b6000602082019050818103600083015261323281612f87565b9050919050565b6000602082019050818103600083015261325281612faa565b9050919050565b6000602082019050818103600083015261327281612ff0565b9050919050565b6000602082019050818103600083015261329281613013565b9050919050565b60006020820190506132ae6000830184613045565b92915050565b60006132be6132cf565b90506132ca82826135f5565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f4576132f361375c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133205761331f61375c565b5b613329826137a4565b9050602081019050919050565b600067ffffffffffffffff8211156133515761335061375c565b5b61335a826137a4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f982613577565b915061340483613577565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613439576134386136a0565b5b828201905092915050565b600061344f82613577565b915061345a83613577565b92508261346a576134696136cf565b5b828204905092915050565b600061348082613577565b915061348b83613577565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c4576134c36136a0565b5b828202905092915050565b60006134da82613577565b91506134e583613577565b9250828210156134f8576134f76136a0565b5b828203905092915050565b600061350e82613557565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135ae578082015181840152602081019050613593565b838111156135bd576000848401525b50505050565b600060028204905060018216806135db57607f821691505b602082108114156135ef576135ee6136fe565b5b50919050565b6135fe826137a4565b810181811067ffffffffffffffff8211171561361d5761361c61375c565b5b80604052505050565b600061363182613577565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613664576136636136a0565b5b600182019050919050565b600061367a82613577565b915061368583613577565b925082613695576136946136cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4f6e6c79203520706c616e65747320616c6c6f776564207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6139a781613503565b81146139b257600080fd5b50565b6139be81613515565b81146139c957600080fd5b50565b6139d581613521565b81146139e057600080fd5b50565b6139ec8161352b565b81146139f757600080fd5b50565b613a0381613577565b8114613a0e57600080fd5b5056fea2646970667358221220ed28df1a34a669420e577985283ea4462cfc549a90895832bb83e938529301de64736f6c63430008070033

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

d15538b1651cc0c08af6802f10f3b9580c3432054bc0a46efdf2cb46a577b4f6

-----Decoded View---------------
Arg [0] : _root (bytes32): 0xd15538b1651cc0c08af6802f10f3b9580c3432054bc0a46efdf2cb46a577b4f6

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : d15538b1651cc0c08af6802f10f3b9580c3432054bc0a46efdf2cb46a577b4f6


Deployed Bytecode Sourcemap

49751:6552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24116:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29129:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31215:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30675:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49985:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23170:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55607:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32101:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55071:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55948:186;;;;;;;;;;;;;:::i;:::-;;32342:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52293:2528;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28918:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52100:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54904:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24795:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8050:103;;;;;;;;;;;;;:::i;:::-;;50246:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50157:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7399:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55413:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21217:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29298:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31491:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50080:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32598:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51004:999;;;;;;;;;;;;;:::i;:::-;;55237:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29473:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49905:32;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49821;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31870:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55769:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50313:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8308:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21428:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24116:615;24201:4;24516:10;24501:25;;:11;:25;;;;:102;;;;24593:10;24578:25;;:11;:25;;;;24501:102;:179;;;;24670:10;24655:25;;:11;:25;;;;24501:179;24481:199;;24116:615;;;:::o;29129:100::-;29183:13;29216:5;29209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29129:100;:::o;31215:204::-;31283:7;31308:16;31316:7;31308;:16::i;:::-;31303:64;;31333:34;;;;;;;;;;;;;;31303:64;31387:15;:24;31403:7;31387:24;;;;;;;;;;;;;;;;;;;;;31380:31;;31215:204;;;:::o;30675:474::-;30748:13;30780:27;30799:7;30780:18;:27::i;:::-;30748:61;;30830:5;30824:11;;:2;:11;;;30820:48;;;30844:24;;;;;;;;;;;;;;30820:48;30908:5;30885:28;;:19;:17;:19::i;:::-;:28;;;30881:175;;30933:44;30950:5;30957:19;:17;:19::i;:::-;30933:16;:44::i;:::-;30928:128;;31005:35;;;;;;;;;;;;;;30928:128;30881:175;31095:2;31068:15;:24;31084:7;31068:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31133:7;31129:2;31113:28;;31122:5;31113:28;;;;;;;;;;;;30737:412;30675:474;;:::o;49985:35::-;;;;:::o;23170:315::-;23223:7;23451:15;:13;:15::i;:::-;23436:12;;23420:13;;:28;:46;23413:53;;23170:315;:::o;55607:109::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55703:5:::1;55696:4;:12;;;;55607:109:::0;:::o;32101:170::-;32235:28;32245:4;32251:2;32255:7;32235:9;:28::i;:::-;32101:170;;;:::o;55071:110::-;55114:25;55158:15;55151:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55071:110;:::o;55948:186::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4497:1:::1;5095:7;;:19;;5087:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4497:1;5228:7;:18;;;;56012:12:::2;56030:10;:15;;56053:21;56030:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56011:68;;;56098:7;56090:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;56000:134;4453:1:::1;5407:7;:22;;;;55948:186::o:0;32342:185::-;32480:39;32497:4;32503:2;32507:7;32480:39;;;;;;;;;;;;:16;:39::i;:::-;32342:185;;;:::o;52293:2528::-;50931:10;50918:23;;:9;:23;;;50910:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52455:1:::1;52443:8;;:13;52435:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;52567:1;52555:8;52531:21;52541:10;52531:9;:21::i;:::-;:32;;;;:::i;:::-;:37;;52523:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;52697:9;;52685:8;52669:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;52661:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52777:25;52791:5;52797:4;52777:13;:25::i;:::-;52774:298;;;52888:14;;52877:8;:25;;;;:::i;:::-;52864:9;:38;;52856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52774:298;;;53027:11;;53016:8;:22;;;;:::i;:::-;53003:9;:35;;52995:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52774:298;53150:5;53134:13;:11;:13::i;:::-;:21;53131:325;;;53171:9;53199:246;53209:8;53205:1;:12;53199:246;;;53368:15;53405:1;53389:13;;:17;;;;:::i;:::-;53368:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53426:3;;;;;:::i;:::-;;;;53199:246;;;53156:300;53131:325;53503:27;53509:10;53521:8;53503:5;:27::i;:::-;53753:18;53786:15:::0;53804:13:::1;:11;:13::i;:::-;53786:31;;53850:4;53839:7;:15;53836:79;;53883:1;53870:14;;53836:79;53938:4;53928:7;:14;:33;;;;;53957:4;53946:7;:15;;53928:33;53925:92;;;53985:1;53972:14;;53925:92;54041:4;54031:7;:14;:33;;;;;54060:4;54049:7;:15;;54031:33;54028:98;;;54094:1;54081:14;;54028:98;54149:4;54139:7;:14;:33;;;;;54168:4;54157:7;:15;;54139:33;54136:98;;;54202:1;54189:14;;54136:98;54257:4;54247:7;:14;:34;;;;;54276:5;54265:7;:16;;54247:34;54244:99;;;54311:1;54298:14;;54244:99;54424:1;54411:10;:14;54408:229;;;54471:70;54485:42;54493:15;54509:16;;54493:33;;;;;;;;:::i;:::-;;;;;;;;;;54485:7;:42::i;:::-;54530:10;54471:5;:70::i;:::-;54607:16;;:18;;;;;;;;;:::i;:::-;;;;;;54408:229;52392:2429;;52293:2528:::0;;;:::o;28918:144::-;28982:7;29025:27;29044:7;29025:18;:27::i;:::-;29002:52;;28918:144;;;:::o;52100:148::-;52182:4;52205:35;52224:5;52230:4;;52235;52205:18;:35::i;:::-;52198:42;;52100:148;;;;:::o;54904:113::-;54954:15;54988:21;54981:28;;54904:113;:::o;24795:224::-;24859:7;24900:1;24883:19;;:5;:19;;;24879:60;;;24911:28;;;;;;;;;;;;;;24879:60;20096:13;24957:18;:25;24976:5;24957:25;;;;;;;;;;;;;;;;:54;24950:61;;24795:224;;;:::o;8050:103::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8115:30:::1;8142:1;8115:18;:30::i;:::-;8050:103::o:0;50246:27::-;;;;:::o;50157:42::-;;;;:::o;7399:87::-;7445:7;7472:6;;;;;;;;;;;7465:13;;7399:87;:::o;55413:146::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55544:7:::1;55529:12;:22;;;;;;;;;;;;:::i;:::-;;55413:146:::0;:::o;21217:28::-;;;;:::o;29298:104::-;29354:13;29387:7;29380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29298:104;:::o;31491:308::-;31602:19;:17;:19::i;:::-;31590:31;;:8;:31;;;31586:61;;;31630:17;;;;;;;;;;;;;;31586:61;31712:8;31660:18;:39;31679:19;:17;:19::i;:::-;31660:39;;;;;;;;;;;;;;;:49;31700:8;31660:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31772:8;31736:55;;31751:19;:17;:19::i;:::-;31736:55;;;31782:8;31736:55;;;;;;:::i;:::-;;;;;;;;31491:308;;:::o;50080:39::-;;;;:::o;32598:396::-;32765:28;32775:4;32781:2;32785:7;32765:9;:28::i;:::-;32826:1;32808:2;:14;;;:19;32804:183;;32847:56;32878:4;32884:2;32888:7;32897:5;32847:30;:56::i;:::-;32842:145;;32931:40;;;;;;;;;;;;;;32842:145;32804:183;32598:396;;;;:::o;51004:999::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51136:61:::1;51150:42;51195:1;51136:5;:61::i;:::-;51227;51241:42;51286:1;51227:5;:61::i;:::-;51322;51336:42;51381:1;51322:5;:61::i;:::-;51411;51425:42;51470:1;51411:5;:61::i;:::-;51506;51520:42;51565:1;51506:5;:61::i;:::-;51604;51618:42;51663:1;51604:5;:61::i;:::-;51697;51711:42;51756:1;51697:5;:61::i;:::-;51820:9;51832:1;51820:13;;51845:151;51855:13;:11;:13::i;:::-;51851:1;:17;51845:151;;;51943:15;51964:1;51943:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51981:3;;;;;:::i;:::-;;;;51845:151;;;51044:959;51004:999::o:0;55237:111::-;55288:17;55324:16;;55317:23;;55237:111;:::o;29473:326::-;29546:13;29577:16;29585:7;29577;:16::i;:::-;29572:59;;29602:29;;;;;;;;;;;;;;29572:59;29644:21;29668:10;:8;:10::i;:::-;29644:34;;29721:1;29702:7;29696:21;:26;;:95;;;;;;;;;;;;;;;;;29749:7;29758:18;:7;:16;:18::i;:::-;29732:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29696:95;29689:102;;;29473:326;;;:::o;49905:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49821:::-;;;;:::o;31870:164::-;31967:4;31991:18;:25;32010:5;31991:25;;;;;;;;;;;;;;;:35;32017:8;31991:35;;;;;;;;;;;;;;;;;;;;;;;;;31984:42;;31870:164;;;;:::o;55769:129::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55881:9:::1;55870:8;:20;;;;55769:129:::0;:::o;50313:19::-;;;;:::o;8308:201::-;7630:12;:10;:12::i;:::-;7619:23;;:7;:5;:7::i;:::-;:23;;;7611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8417:1:::1;8397:22;;:8;:22;;;;8389:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8473:28;8492:8;8473:18;:28::i;:::-;8308:201:::0;:::o;21428:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33249:273::-;33306:4;33362:7;33343:15;:13;:15::i;:::-;:26;;:66;;;;;33396:13;;33386:7;:23;33343:66;:152;;;;;33494:1;20866:8;33447:17;:26;33465:7;33447:26;;;;;;;;;;;;:43;:48;33343:152;33323:172;;33249:273;;;:::o;26433:1129::-;26500:7;26520:12;26535:7;26520:22;;26603:4;26584:15;:13;:15::i;:::-;:23;26580:915;;26637:13;;26630:4;:20;26626:869;;;26675:14;26692:17;:23;26710:4;26692:23;;;;;;;;;;;;26675:40;;26808:1;20866:8;26781:6;:23;:28;26777:699;;;27300:113;27317:1;27307:6;:11;27300:113;;;27360:17;:25;27378:6;;;;;;;27360:25;;;;;;;;;;;;27351:34;;27300:113;;;27446:6;27439:13;;;;;;26777:699;26652:843;26626:869;26580:915;27523:31;;;;;;;;;;;;;;26433:1129;;;;:::o;47231:105::-;47291:7;47318:10;47311:17;;47231:105;:::o;22693:92::-;22749:7;22693:92;:::o;6123:98::-;6176:7;6203:10;6196:17;;6123:98;:::o;38488:2515::-;38603:27;38633;38652:7;38633:18;:27::i;:::-;38603:57;;38718:4;38677:45;;38693:19;38677:45;;;38673:86;;38731:28;;;;;;;;;;;;;;38673:86;38772:22;38821:4;38798:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;38842:43;38859:4;38865:19;:17;:19::i;:::-;38842:16;:43::i;:::-;38798:87;:147;;;;38926:19;:17;:19::i;:::-;38902:43;;:20;38914:7;38902:11;:20::i;:::-;:43;;;38798:147;38772:174;;38964:17;38959:66;;38990:35;;;;;;;;;;;;;;38959:66;39054:1;39040:16;;:2;:16;;;39036:52;;;39065:23;;;;;;;;;;;;;;39036:52;39101:43;39123:4;39129:2;39133:7;39142:1;39101:21;:43::i;:::-;39217:15;:24;39233:7;39217:24;;;;;;;;;;;;39210:31;;;;;;;;;;;39609:18;:24;39628:4;39609:24;;;;;;;;;;;;;;;;39607:26;;;;;;;;;;;;39678:18;:22;39697:2;39678:22;;;;;;;;;;;;;;;;39676:24;;;;;;;;;;;21148:8;20750:3;40059:15;:41;;40017:21;40035:2;40017:17;:21::i;:::-;:84;:128;39971:17;:26;39989:7;39971:26;;;;;;;;;;;:174;;;;40315:1;21148:8;40265:19;:46;:51;40261:626;;;40337:19;40369:1;40359:7;:11;40337:33;;40526:1;40492:17;:30;40510:11;40492:30;;;;;;;;;;;;:35;40488:384;;;40630:13;;40615:11;:28;40611:242;;40810:19;40777:17;:30;40795:11;40777:30;;;;;;;;;;;:52;;;;40611:242;40488:384;40318:569;40261:626;40934:7;40930:2;40915:27;;40924:4;40915:27;;;;;;;;;;;;40953:42;40974:4;40980:2;40984:7;40993:1;40953:20;:42::i;:::-;38592:2411;;38488:2515;;;:::o;36578:1656::-;36643:20;36666:13;;36643:36;;36708:1;36694:16;;:2;:16;;;36690:48;;;36719:19;;;;;;;;;;;;;;36690:48;36765:1;36753:8;:13;36749:44;;;36775:18;;;;;;;;;;;;;;36749:44;36806:61;36836:1;36840:2;36844:12;36858:8;36806:21;:61::i;:::-;37410:1;20233:2;37381:1;:25;;37380:31;37368:8;:44;37342:18;:22;37361:2;37342:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;21013:3;37811:29;37838:1;37826:8;:13;37811:14;:29::i;:::-;:56;;20750:3;37748:15;:41;;37706:21;37724:2;37706:17;:21::i;:::-;:84;:162;37655:17;:31;37673:12;37655:31;;;;;;;;;;;:213;;;;37885:20;37908:12;37885:35;;37935:11;37964:8;37949:12;:23;37935:37;;37989:111;38041:14;;;;;;38037:2;38016:40;;38033:1;38016:40;;;;;;;;;;;;38095:3;38080:12;:18;37989:111;;38132:12;38116:13;:28;;;;37119:1037;;38166:60;38195:1;38199:2;38203:12;38217:8;38166:20;:60::i;:::-;36632:1602;36578:1656;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;1362:40;;1220:190;;;;;:::o;8669:191::-;8743:16;8762:6;;;;;;;;;;;8743:25;;8788:8;8779:6;;:17;;;;;;;;;;;;;;;;;;8843:8;8812:40;;8833:8;8812:40;;;;;;;;;;;;8732:128;8669:191;:::o;44700:716::-;44863:4;44909:2;44884:45;;;44930:19;:17;:19::i;:::-;44951:4;44957:7;44966:5;44884:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44880:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45184:1;45167:6;:13;:18;45163:235;;;45213:40;;;;;;;;;;;;;;45163:235;45356:6;45350:13;45341:6;45337:2;45333:15;45326:38;44880:529;45053:54;;;45043:64;;;:6;:64;;;;45036:71;;;44700:716;;;;;;:::o;30047:104::-;30098:13;30131:12;30124:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30047:104;:::o;9232:723::-;9288:13;9518:1;9509:5;:10;9505:53;;;9536:10;;;;;;;;;;;;;;;;;;;;;9505:53;9568:12;9583:5;9568:20;;9599:14;9624:78;9639:1;9631:4;:9;9624:78;;9657:8;;;;;:::i;:::-;;;;9688:2;9680:10;;;;;:::i;:::-;;;9624:78;;;9712:19;9744:6;9734:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712:39;;9762:154;9778:1;9769:5;:10;9762:154;;9806:1;9796:11;;;;;:::i;:::-;;;9873:2;9865:5;:10;;;;:::i;:::-;9852:2;:24;;;;:::i;:::-;9839:39;;9822:6;9829;9822:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9902:2;9893:11;;;;;:::i;:::-;;;9762:154;;;9940:6;9926:21;;;;;9232:723;;;;:::o;46064:159::-;;;;;:::o;30236:148::-;30300:14;30361:5;30351:15;;30236:148;;;:::o;46882:158::-;;;;;:::o;30471:142::-;30529:14;30590:5;30580:15;;30471:142;;;:::o;1771:675::-;1854:7;1874:20;1897:4;1874:27;;1917:9;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2163:42;2178:12;2192;2163:14;:42::i;:::-;2148:57;;2016:382;;;2340:42;2355:12;2369;2340:14;:42::i;:::-;2325:57;;2016:382;1955:454;1950:3;;;;;:::i;:::-;;;;1912:497;;;;2426:12;2419:19;;;1771:675;;;;:::o;2454:224::-;2522:13;2585:1;2579:4;2572:15;2614:1;2608:4;2601:15;2655:4;2649;2639:21;2630:30;;2454:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:329::-;7652:6;7701:2;7689:9;7680:7;7676:23;7672:32;7669:119;;;7707:79;;:::i;:::-;7669:119;7827:1;7852:53;7897:7;7888:6;7877:9;7873:22;7852:53;:::i;:::-;7842:63;;7798:117;7593:329;;;;:::o;7928:327::-;7986:6;8035:2;8023:9;8014:7;8010:23;8006:32;8003:119;;;8041:79;;:::i;:::-;8003:119;8161:1;8186:52;8230:7;8221:6;8210:9;8206:22;8186:52;:::i;:::-;8176:62;;8132:116;7928:327;;;;:::o;8261:349::-;8330:6;8379:2;8367:9;8358:7;8354:23;8350:32;8347:119;;;8385:79;;:::i;:::-;8347:119;8505:1;8530:63;8585:7;8576:6;8565:9;8561:22;8530:63;:::i;:::-;8520:73;;8476:127;8261:349;;;;:::o;8616:509::-;8685:6;8734:2;8722:9;8713:7;8709:23;8705:32;8702:119;;;8740:79;;:::i;:::-;8702:119;8888:1;8877:9;8873:17;8860:31;8918:18;8910:6;8907:30;8904:117;;;8940:79;;:::i;:::-;8904:117;9045:63;9100:7;9091:6;9080:9;9076:22;9045:63;:::i;:::-;9035:73;;8831:287;8616:509;;;;:::o;9131:329::-;9190:6;9239:2;9227:9;9218:7;9214:23;9210:32;9207:119;;;9245:79;;:::i;:::-;9207:119;9365:1;9390:53;9435:7;9426:6;9415:9;9411:22;9390:53;:::i;:::-;9380:63;;9336:117;9131:329;;;;:::o;9466:829::-;9568:6;9576;9584;9633:2;9621:9;9612:7;9608:23;9604:32;9601:119;;;9639:79;;:::i;:::-;9601:119;9759:1;9784:53;9829:7;9820:6;9809:9;9805:22;9784:53;:::i;:::-;9774:63;;9730:117;9914:2;9903:9;9899:18;9886:32;9945:18;9937:6;9934:30;9931:117;;;9967:79;;:::i;:::-;9931:117;10072:78;10142:7;10133:6;10122:9;10118:22;10072:78;:::i;:::-;10062:88;;9857:303;10199:2;10225:53;10270:7;10261:6;10250:9;10246:22;10225:53;:::i;:::-;10215:63;;10170:118;9466:829;;;;;:::o;10301:179::-;10370:10;10391:46;10433:3;10425:6;10391:46;:::i;:::-;10469:4;10464:3;10460:14;10446:28;;10301:179;;;;:::o;10486:118::-;10573:24;10591:5;10573:24;:::i;:::-;10568:3;10561:37;10486:118;;:::o;10640:732::-;10759:3;10788:54;10836:5;10788:54;:::i;:::-;10858:86;10937:6;10932:3;10858:86;:::i;:::-;10851:93;;10968:56;11018:5;10968:56;:::i;:::-;11047:7;11078:1;11063:284;11088:6;11085:1;11082:13;11063:284;;;11164:6;11158:13;11191:63;11250:3;11235:13;11191:63;:::i;:::-;11184:70;;11277:60;11330:6;11277:60;:::i;:::-;11267:70;;11123:224;11110:1;11107;11103:9;11098:14;;11063:284;;;11067:14;11363:3;11356:10;;10764:608;;;10640:732;;;;:::o;11378:109::-;11459:21;11474:5;11459:21;:::i;:::-;11454:3;11447:34;11378:109;;:::o;11493:118::-;11580:24;11598:5;11580:24;:::i;:::-;11575:3;11568:37;11493:118;;:::o;11617:360::-;11703:3;11731:38;11763:5;11731:38;:::i;:::-;11785:70;11848:6;11843:3;11785:70;:::i;:::-;11778:77;;11864:52;11909:6;11904:3;11897:4;11890:5;11886:16;11864:52;:::i;:::-;11941:29;11963:6;11941:29;:::i;:::-;11936:3;11932:39;11925:46;;11707:270;11617:360;;;;:::o;11983:364::-;12071:3;12099:39;12132:5;12099:39;:::i;:::-;12154:71;12218:6;12213:3;12154:71;:::i;:::-;12147:78;;12234:52;12279:6;12274:3;12267:4;12260:5;12256:16;12234:52;:::i;:::-;12311:29;12333:6;12311:29;:::i;:::-;12306:3;12302:39;12295:46;;12075:272;11983:364;;;;:::o;12353:377::-;12459:3;12487:39;12520:5;12487:39;:::i;:::-;12542:89;12624:6;12619:3;12542:89;:::i;:::-;12535:96;;12640:52;12685:6;12680:3;12673:4;12666:5;12662:16;12640:52;:::i;:::-;12717:6;12712:3;12708:16;12701:23;;12463:267;12353:377;;;;:::o;12736:366::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:::-;13250:3;13271:67;13335:2;13330:3;13271:67;:::i;:::-;13264:74;;13347:93;13436:3;13347:93;:::i;:::-;13465:2;13460:3;13456:12;13449:19;;13108:366;;;:::o;13480:365::-;13622:3;13643:66;13707:1;13702:3;13643:66;:::i;:::-;13636:73;;13718:93;13807:3;13718:93;:::i;:::-;13836:2;13831:3;13827:12;13820:19;;13480:365;;;:::o;13851:366::-;13993:3;14014:67;14078:2;14073:3;14014:67;:::i;:::-;14007:74;;14090:93;14179:3;14090:93;:::i;:::-;14208:2;14203:3;14199:12;14192:19;;13851:366;;;:::o;14223:400::-;14383:3;14404:84;14486:1;14481:3;14404:84;:::i;:::-;14397:91;;14497:93;14586:3;14497:93;:::i;:::-;14615:1;14610:3;14606:11;14599:18;;14223:400;;;:::o;14629:366::-;14771:3;14792:67;14856:2;14851:3;14792:67;:::i;:::-;14785:74;;14868:93;14957:3;14868:93;:::i;:::-;14986:2;14981:3;14977:12;14970:19;;14629:366;;;:::o;15001:::-;15143:3;15164:67;15228:2;15223:3;15164:67;:::i;:::-;15157:74;;15240:93;15329:3;15240:93;:::i;:::-;15358:2;15353:3;15349:12;15342:19;;15001:366;;;:::o;15373:::-;15515:3;15536:67;15600:2;15595:3;15536:67;:::i;:::-;15529:74;;15612:93;15701:3;15612:93;:::i;:::-;15730:2;15725:3;15721:12;15714:19;;15373:366;;;:::o;15745:398::-;15904:3;15925:83;16006:1;16001:3;15925:83;:::i;:::-;15918:90;;16017:93;16106:3;16017:93;:::i;:::-;16135:1;16130:3;16126:11;16119:18;;15745:398;;;:::o;16149:366::-;16291:3;16312:67;16376:2;16371:3;16312:67;:::i;:::-;16305:74;;16388:93;16477:3;16388:93;:::i;:::-;16506:2;16501:3;16497:12;16490:19;;16149:366;;;:::o;16521:::-;16663:3;16684:67;16748:2;16743:3;16684:67;:::i;:::-;16677:74;;16760:93;16849:3;16760:93;:::i;:::-;16878:2;16873:3;16869:12;16862:19;;16521:366;;;:::o;16893:108::-;16970:24;16988:5;16970:24;:::i;:::-;16965:3;16958:37;16893:108;;:::o;17007:118::-;17094:24;17112:5;17094:24;:::i;:::-;17089:3;17082:37;17007:118;;:::o;17131:701::-;17412:3;17434:95;17525:3;17516:6;17434:95;:::i;:::-;17427:102;;17546:95;17637:3;17628:6;17546:95;:::i;:::-;17539:102;;17658:148;17802:3;17658:148;:::i;:::-;17651:155;;17823:3;17816:10;;17131:701;;;;;:::o;17838:379::-;18022:3;18044:147;18187:3;18044:147;:::i;:::-;18037:154;;18208:3;18201:10;;17838:379;;;:::o;18223:222::-;18316:4;18354:2;18343:9;18339:18;18331:26;;18367:71;18435:1;18424:9;18420:17;18411:6;18367:71;:::i;:::-;18223:222;;;;:::o;18451:640::-;18646:4;18684:3;18673:9;18669:19;18661:27;;18698:71;18766:1;18755:9;18751:17;18742:6;18698:71;:::i;:::-;18779:72;18847:2;18836:9;18832:18;18823:6;18779:72;:::i;:::-;18861;18929:2;18918:9;18914:18;18905:6;18861:72;:::i;:::-;18980:9;18974:4;18970:20;18965:2;18954:9;18950:18;18943:48;19008:76;19079:4;19070:6;19008:76;:::i;:::-;19000:84;;18451:640;;;;;;;:::o;19097:373::-;19240:4;19278:2;19267:9;19263:18;19255:26;;19327:9;19321:4;19317:20;19313:1;19302:9;19298:17;19291:47;19355:108;19458:4;19449:6;19355:108;:::i;:::-;19347:116;;19097:373;;;;:::o;19476:210::-;19563:4;19601:2;19590:9;19586:18;19578:26;;19614:65;19676:1;19665:9;19661:17;19652:6;19614:65;:::i;:::-;19476:210;;;;:::o;19692:222::-;19785:4;19823:2;19812:9;19808:18;19800:26;;19836:71;19904:1;19893:9;19889:17;19880:6;19836:71;:::i;:::-;19692:222;;;;:::o;19920:313::-;20033:4;20071:2;20060:9;20056:18;20048:26;;20120:9;20114:4;20110:20;20106:1;20095:9;20091:17;20084:47;20148:78;20221:4;20212:6;20148:78;:::i;:::-;20140:86;;19920:313;;;;:::o;20239:419::-;20405:4;20443:2;20432:9;20428:18;20420:26;;20492:9;20486:4;20482:20;20478:1;20467:9;20463:17;20456:47;20520:131;20646:4;20520:131;:::i;:::-;20512:139;;20239:419;;;:::o;20664:::-;20830:4;20868:2;20857:9;20853:18;20845:26;;20917:9;20911:4;20907:20;20903:1;20892:9;20888:17;20881:47;20945:131;21071:4;20945:131;:::i;:::-;20937:139;;20664:419;;;:::o;21089:::-;21255:4;21293:2;21282:9;21278:18;21270:26;;21342:9;21336:4;21332:20;21328:1;21317:9;21313:17;21306:47;21370:131;21496:4;21370:131;:::i;:::-;21362:139;;21089:419;;;:::o;21514:::-;21680:4;21718:2;21707:9;21703:18;21695:26;;21767:9;21761:4;21757:20;21753:1;21742:9;21738:17;21731:47;21795:131;21921:4;21795:131;:::i;:::-;21787:139;;21514:419;;;:::o;21939:::-;22105:4;22143:2;22132:9;22128:18;22120:26;;22192:9;22186:4;22182:20;22178:1;22167:9;22163:17;22156:47;22220:131;22346:4;22220:131;:::i;:::-;22212:139;;21939:419;;;:::o;22364:::-;22530:4;22568:2;22557:9;22553:18;22545:26;;22617:9;22611:4;22607:20;22603:1;22592:9;22588:17;22581:47;22645:131;22771:4;22645:131;:::i;:::-;22637:139;;22364:419;;;:::o;22789:::-;22955:4;22993:2;22982:9;22978:18;22970:26;;23042:9;23036:4;23032:20;23028:1;23017:9;23013:17;23006:47;23070:131;23196:4;23070:131;:::i;:::-;23062:139;;22789:419;;;:::o;23214:::-;23380:4;23418:2;23407:9;23403:18;23395:26;;23467:9;23461:4;23457:20;23453:1;23442:9;23438:17;23431:47;23495:131;23621:4;23495:131;:::i;:::-;23487:139;;23214:419;;;:::o;23639:::-;23805:4;23843:2;23832:9;23828:18;23820:26;;23892:9;23886:4;23882:20;23878:1;23867:9;23863:17;23856:47;23920:131;24046:4;23920:131;:::i;:::-;23912:139;;23639:419;;;:::o;24064:222::-;24157:4;24195:2;24184:9;24180:18;24172:26;;24208:71;24276:1;24265:9;24261:17;24252:6;24208:71;:::i;:::-;24064:222;;;;:::o;24292:129::-;24326:6;24353:20;;:::i;:::-;24343:30;;24382:33;24410:4;24402:6;24382:33;:::i;:::-;24292:129;;;:::o;24427:75::-;24460:6;24493:2;24487:9;24477:19;;24427:75;:::o;24508:311::-;24585:4;24675:18;24667:6;24664:30;24661:56;;;24697:18;;:::i;:::-;24661:56;24747:4;24739:6;24735:17;24727:25;;24807:4;24801;24797:15;24789:23;;24508:311;;;:::o;24825:307::-;24886:4;24976:18;24968:6;24965:30;24962:56;;;24998:18;;:::i;:::-;24962:56;25036:29;25058:6;25036:29;:::i;:::-;25028:37;;25120:4;25114;25110:15;25102:23;;24825:307;;;:::o;25138:308::-;25200:4;25290:18;25282:6;25279:30;25276:56;;;25312:18;;:::i;:::-;25276:56;25350:29;25372:6;25350:29;:::i;:::-;25342:37;;25434:4;25428;25424:15;25416:23;;25138:308;;;:::o;25452:132::-;25519:4;25542:3;25534:11;;25572:4;25567:3;25563:14;25555:22;;25452:132;;;:::o;25590:114::-;25657:6;25691:5;25685:12;25675:22;;25590:114;;;:::o;25710:98::-;25761:6;25795:5;25789:12;25779:22;;25710:98;;;:::o;25814:99::-;25866:6;25900:5;25894:12;25884:22;;25814:99;;;:::o;25919:113::-;25989:4;26021;26016:3;26012:14;26004:22;;25919:113;;;:::o;26038:184::-;26137:11;26171:6;26166:3;26159:19;26211:4;26206:3;26202:14;26187:29;;26038:184;;;;:::o;26228:168::-;26311:11;26345:6;26340:3;26333:19;26385:4;26380:3;26376:14;26361:29;;26228:168;;;;:::o;26402:147::-;26503:11;26540:3;26525:18;;26402:147;;;;:::o;26555:169::-;26639:11;26673:6;26668:3;26661:19;26713:4;26708:3;26704:14;26689:29;;26555:169;;;;:::o;26730:148::-;26832:11;26869:3;26854:18;;26730:148;;;;:::o;26884:305::-;26924:3;26943:20;26961:1;26943:20;:::i;:::-;26938:25;;26977:20;26995:1;26977:20;:::i;:::-;26972:25;;27131:1;27063:66;27059:74;27056:1;27053:81;27050:107;;;27137:18;;:::i;:::-;27050:107;27181:1;27178;27174:9;27167:16;;26884:305;;;;:::o;27195:185::-;27235:1;27252:20;27270:1;27252:20;:::i;:::-;27247:25;;27286:20;27304:1;27286:20;:::i;:::-;27281:25;;27325:1;27315:35;;27330:18;;:::i;:::-;27315:35;27372:1;27369;27365:9;27360:14;;27195:185;;;;:::o;27386:348::-;27426:7;27449:20;27467:1;27449:20;:::i;:::-;27444:25;;27483:20;27501:1;27483:20;:::i;:::-;27478:25;;27671:1;27603:66;27599:74;27596:1;27593:81;27588:1;27581:9;27574:17;27570:105;27567:131;;;27678:18;;:::i;:::-;27567:131;27726:1;27723;27719:9;27708:20;;27386:348;;;;:::o;27740:191::-;27780:4;27800:20;27818:1;27800:20;:::i;:::-;27795:25;;27834:20;27852:1;27834:20;:::i;:::-;27829:25;;27873:1;27870;27867:8;27864:34;;;27878:18;;:::i;:::-;27864:34;27923:1;27920;27916:9;27908:17;;27740:191;;;;:::o;27937:96::-;27974:7;28003:24;28021:5;28003:24;:::i;:::-;27992:35;;27937:96;;;:::o;28039:90::-;28073:7;28116:5;28109:13;28102:21;28091:32;;28039:90;;;:::o;28135:77::-;28172:7;28201:5;28190:16;;28135:77;;;:::o;28218:149::-;28254:7;28294:66;28287:5;28283:78;28272:89;;28218:149;;;:::o;28373:126::-;28410:7;28450:42;28443:5;28439:54;28428:65;;28373:126;;;:::o;28505:77::-;28542:7;28571:5;28560:16;;28505:77;;;:::o;28588:154::-;28672:6;28667:3;28662;28649:30;28734:1;28725:6;28720:3;28716:16;28709:27;28588:154;;;:::o;28748:307::-;28816:1;28826:113;28840:6;28837:1;28834:13;28826:113;;;28925:1;28920:3;28916:11;28910:18;28906:1;28901:3;28897:11;28890:39;28862:2;28859:1;28855:10;28850:15;;28826:113;;;28957:6;28954:1;28951:13;28948:101;;;29037:1;29028:6;29023:3;29019:16;29012:27;28948:101;28797:258;28748:307;;;:::o;29061:320::-;29105:6;29142:1;29136:4;29132:12;29122:22;;29189:1;29183:4;29179:12;29210:18;29200:81;;29266:4;29258:6;29254:17;29244:27;;29200:81;29328:2;29320:6;29317:14;29297:18;29294:38;29291:84;;;29347:18;;:::i;:::-;29291:84;29112:269;29061:320;;;:::o;29387:281::-;29470:27;29492:4;29470:27;:::i;:::-;29462:6;29458:40;29600:6;29588:10;29585:22;29564:18;29552:10;29549:34;29546:62;29543:88;;;29611:18;;:::i;:::-;29543:88;29651:10;29647:2;29640:22;29430:238;29387:281;;:::o;29674:233::-;29713:3;29736:24;29754:5;29736:24;:::i;:::-;29727:33;;29782:66;29775:5;29772:77;29769:103;;;29852:18;;:::i;:::-;29769:103;29899:1;29892:5;29888:13;29881:20;;29674:233;;;:::o;29913:176::-;29945:1;29962:20;29980:1;29962:20;:::i;:::-;29957:25;;29996:20;30014:1;29996:20;:::i;:::-;29991:25;;30035:1;30025:35;;30040:18;;:::i;:::-;30025:35;30081:1;30078;30074:9;30069:14;;29913:176;;;;:::o;30095:180::-;30143:77;30140:1;30133:88;30240:4;30237:1;30230:15;30264:4;30261:1;30254:15;30281:180;30329:77;30326:1;30319:88;30426:4;30423:1;30416:15;30450:4;30447:1;30440:15;30467:180;30515:77;30512:1;30505:88;30612:4;30609:1;30602:15;30636:4;30633:1;30626:15;30653:180;30701:77;30698:1;30691:88;30798:4;30795:1;30788:15;30822:4;30819:1;30812:15;30839:180;30887:77;30884:1;30877:88;30984:4;30981:1;30974:15;31008:4;31005:1;30998:15;31025:117;31134:1;31131;31124:12;31148:117;31257:1;31254;31247:12;31271:117;31380:1;31377;31370:12;31394:117;31503:1;31500;31493:12;31517:117;31626:1;31623;31616:12;31640:102;31681:6;31732:2;31728:7;31723:2;31716:5;31712:14;31708:28;31698:38;;31640:102;;;:::o;31748:169::-;31888:21;31884:1;31876:6;31872:14;31865:45;31748:169;:::o;31923:225::-;32063:34;32059:1;32051:6;32047:14;32040:58;32132:8;32127:2;32119:6;32115:15;32108:33;31923:225;:::o;32154:159::-;32294:11;32290:1;32282:6;32278:14;32271:35;32154:159;:::o;32319:180::-;32459:32;32455:1;32447:6;32443:14;32436:56;32319:180;:::o;32505:155::-;32645:7;32641:1;32633:6;32629:14;32622:31;32505:155;:::o;32666:182::-;32806:34;32802:1;32794:6;32790:14;32783:58;32666:182;:::o;32854:167::-;32994:19;32990:1;32982:6;32978:14;32971:43;32854:167;:::o;33027:221::-;33167:34;33163:1;33155:6;33151:14;33144:58;33236:4;33231:2;33223:6;33219:15;33212:29;33027:221;:::o;33254:114::-;;:::o;33374:166::-;33514:18;33510:1;33502:6;33498:14;33491:42;33374:166;:::o;33546:181::-;33686:33;33682:1;33674:6;33670:14;33663:57;33546:181;:::o;33733:122::-;33806:24;33824:5;33806:24;:::i;:::-;33799:5;33796:35;33786:63;;33845:1;33842;33835:12;33786:63;33733:122;:::o;33861:116::-;33931:21;33946:5;33931:21;:::i;:::-;33924:5;33921:32;33911:60;;33967:1;33964;33957:12;33911:60;33861:116;:::o;33983:122::-;34056:24;34074:5;34056:24;:::i;:::-;34049:5;34046:35;34036:63;;34095:1;34092;34085:12;34036:63;33983:122;:::o;34111:120::-;34183:23;34200:5;34183:23;:::i;:::-;34176:5;34173:34;34163:62;;34221:1;34218;34211:12;34163:62;34111:120;:::o;34237:122::-;34310:24;34328:5;34310:24;:::i;:::-;34303:5;34300:35;34290:63;;34349:1;34346;34339:12;34290:63;34237:122;:::o

Swarm Source

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