CRO Price: $0.08 (+0.22%)

Token

Baby Alien Division (BAD)

Overview

Max Total Supply

3,333 BAD

Holders

381

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BAD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-11-22
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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: @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/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: BAD.sol



pragma solidity ^0.8.7;





/* 
B.A.D Baby Alien Division 
-------------------------
Artist/Founder - Hawtchkiss (@DanielBHotchkis)
Community Lead/Founder - Legendd (@ImDarrenB1)
-------------------------
Contract Dev: Astra (@0x_astra)
*/ 

contract BAD is ERC721Enumerable, Pausable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    // Maximum tokens will be 3333 
    uint256 public  _totalSupply = 3333; 
    uint256 public  _price = 333000000000000000000; // 330 CRO 
    uint256 public _whitelistPrice = 300000000000000000000; // 300 CRO

    // Mappings 
    mapping (address => bool) private _whitelist;

    // Settings 
    bool public _presaleActive = false; 
    bool public _mintActive = false; 

    // Base URI for metadata 
    string public _prefixURI;

    // ERC 721 for trooprz whitelist 
    ERC721 public _trooprz; 

    // Events 
    event BurnToken(uint256 tokenID); 
    event SetBaseURI(string newURI); 
    event AirDrop(address[] indexed addrs); 
    event TogglePresaleActive(bool presaleActive); 
    event ToggleMintActive(bool mint1Active); 
    event AddToWhiteList(address[] indexed addrs); 
    event RemoveFromWhiteList(address[] indexed addrs); 
    event WhiteListMint(address indexed addr, uint256 amount, uint256 price); 
    event Mint(address indexed addr, uint256 amount, uint256 price); 
    event ToggleTransferPause(bool paused); 
    event UpdateTotalSupply(uint256 newMax); 
    event UpdatePrice(uint256 newPrice); 
    event UpdateWhiteListPrice(uint256 newPrice); 
    event Withdraw(uint256 amount); 

    constructor() ERC721("Baby Alien Division", "BAD") {
        _trooprz = ERC721(0x51112Bf32B9a1C64716DF2e6b82e63a04Bd384Fd);
    }
    
    function setTrooprzContract(address _trooprzContract) external onlyOwner {
        require(address(0) != _trooprzContract, "Can't use 0 address"); 
        _trooprz = ERC721(_trooprzContract); 
    }

    function burnToken(uint256 tokenId) public virtual {
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721 Burnable: caller is not owner nor approved"); 
        _burn(tokenId);
        emit BurnToken(tokenId);
    }

    // URI Functions
    function _baseURI() internal view override returns (string memory) {
        return _prefixURI;
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
        emit SetBaseURI(_uri);
    }

    function airDrop(address[] memory addrs) public onlyOwner {
        require(addrs.length > 0, "airDrop: cannot airdrop to empty array"); 
        for (uint256 i = 0; i < addrs.length; i++) {
            _mintItem(addrs[i]); 
        }
        emit AirDrop(addrs);
    }


    function togglePresaleActive() public onlyOwner {
        _presaleActive = !_presaleActive; 
        emit TogglePresaleActive(_presaleActive);
    }

    function toggleMintActive() public onlyOwner {
        _mintActive = !_mintActive; 
        emit ToggleMintActive(_mintActive); 
    }

    function addToWhitelist(address[] memory addrs) public onlyOwner {
        require(addrs.length > 0, "addToWhiteList: cannot add to whitelist from empty array"); 
        for (uint256 i = 0; i < addrs.length; i++) {
            _whitelist[addrs[i]] = true;
        }
        emit AddToWhiteList(addrs);
    }

    function removeFromWhitelist(address[] memory addrs) public onlyOwner {
        require(addrs.length > 0, "removeFromWhiteList: cannot remove from whitelist from empty array"); 
        for (uint256 i = 0; i < addrs.length; i++) {
            _whitelist[addrs[i]] = false;
        }
        emit RemoveFromWhiteList(addrs);
    }

    function isWhiteListed(address addr) public view returns (bool) {
        require(addr != address(0), "isWhiteListed: cannot check empty address"); 
        return _whitelist[addr] || _trooprz.balanceOf(addr) > 0;
    }

    function whiteListMint(uint256 amount) public payable {
        address sender = msg.sender; 
        require(amount > 0, "whiteListMint: need to mint atleast 1"); 
        require(_presaleActive, "whiteListMint: presale is not currently active"); 
        require(isWhiteListed(sender), "whiteListMint: you are not whitelisted");
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted < _totalSupply, "whiteListMint: sold out");
        require(totalMinted + amount <= _totalSupply, "whiteListMint: can't mint that many");
        require(msg.value >= amount * _whitelistPrice, "whiteListMint: value not enough");
        for (uint256 i = 0; i < amount; i++) {
            _mintItem(sender);
        }
        emit WhiteListMint(sender, amount, _price);
    }

    function mint(uint256 amount) public payable {
        address sender = msg.sender; 
        require(amount > 0, "mint: need to mint atleast 1"); 
        require(_mintActive, "mint: mint not active"); 
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted < _totalSupply, "mint: sold out");
        require(totalMinted + amount <= _totalSupply, "mint: can't mint that many"); 
        require(msg.value >= amount * _price, "mint: value not enough");
        for (uint256 i = 0; i < amount; i++) {
            _mintItem(msg.sender); 
        }
        emit Mint(sender, amount, _price);
    }

    //
    function _mintItem(address to) internal {
        _tokenIds.increment();
        uint256 id = _tokenIds.current();
        _safeMint(to, id);
    }

    // State management 
    function toggleTransferPause() public onlyOwner {
        paused() ? _unpause() : _pause();
        emit ToggleTransferPause(paused()); 
    }

    function updateWhiteListPrice(uint256 newPrice) public onlyOwner {
        require(newPrice > 0, "updatePrice: new price must be greater than 0");
        _whitelistPrice = newPrice; 
        emit UpdateWhiteListPrice(newPrice); 
    }

    function updatePrice(uint256 newPrice) public onlyOwner {
        require(newPrice > 0, "updatePrice: new price must be greater than 0");
        _price = newPrice; 
        emit UpdatePrice(newPrice); 
    }

    function updateTotalSupply(uint256 newSupply) external onlyOwner {
        require(newSupply > 0, "updateTotalSupply: new supply must be greater than 0"); 
        _totalSupply = newSupply; 
        emit UpdateTotalSupply(newSupply);
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0); 
        uint256 balance = address(this).balance; 
        payable(msg.sender).transfer(balance);
        emit Withdraw(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"AddToWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"AirDrop","type":"event"},{"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":false,"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"BurnToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"RemoveFromWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"mint1Active","type":"bool"}],"name":"ToggleMintActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"presaleActive","type":"bool"}],"name":"TogglePresaleActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"ToggleTransferPause","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"UpdatePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"UpdateTotalSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"UpdateWhiteListPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"WhiteListMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"_mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_trooprz","outputs":[{"internalType":"contract ERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trooprzContract","type":"address"}],"name":"setTrooprzContract","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":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransferPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600c5568120d4da7b0bd140000600d55681043561a8829300000600e556010805461ffff191690553480156200003c57600080fd5b50604080518082018252601381527f4261627920416c69656e204469766973696f6e0000000000000000000000000060208083019182528351808501909452600384526210905160ea1b9084015281519192916200009d9160009162000151565b508051620000b390600190602084019062000151565b5050600a805460ff1916905550620000cb33620000f7565b601280546001600160a01b0319167351112bf32b9a1c64716df2e6b82e63a04bd384fd17905562000234565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f90620001f7565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600181811c908216806200020c57607f821691505b602082108114156200022e57634e487b7160e01b600052602260045260246000fd5b50919050565b6132d780620002446000396000f3fe60806040526004361061025b5760003560e01c80636b0a1176116101445780639752a017116100b6578063b88d4fde1161007a578063b88d4fde146106b4578063c87b56dd146106d4578063d02c2bf2146106f4578063e985e9c514610709578063ee88fb0f14610752578063f2fde38b1461076857600080fd5b80639752a0171461062d5780639ef4b9aa14610642578063a0712d6814610661578063a22cb46514610674578063a61cc4b91461069457600080fd5b80637f649783116101085780637f6497831461058b57806389b0649b146105ab5780638d6cc56d146105c05780638da5cb5b146105e057806391860f781461060357806395d89b411461061857600080fd5b80636b0a1176146104fc5780636f9170f61461051657806370a0823114610536578063715018a6146105565780637b47ec1a1461056b57600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce714610444578063548db1741461046457806355f804b3146104845780635c975abb146104a45780636352211e146104bc57806366d49bab146104dc57600080fd5b806323b872dd146103b95780632f745c59146103d95780633ccfd60b146103f95780633eaaf86b1461040e57806342842e0e1461042457600080fd5b8063081812fc11610224578063081812fc14610324578063095ea7b31461034457806318160ddd14610364578063184d0e4e14610383578063235b6ea1146103a357600080fd5b8062b6849f1461026057806301ffc9a714610282578063029fa1bf146102b757806302e001ef146102ef57806306fdde0314610302575b600080fd5b34801561026c57600080fd5b5061028061027b366004612d7c565b610788565b005b34801561028e57600080fd5b506102a261029d366004612e30565b6108a3565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506012546102d7906001600160a01b031681565b6040516001600160a01b0390911681526020016102ae565b6102806102fd366004612eb3565b6108ce565b34801561030e57600080fd5b50610317610b92565b6040516102ae9190612fbc565b34801561033057600080fd5b506102d761033f366004612eb3565b610c24565b34801561035057600080fd5b5061028061035f366004612d52565b610cb9565b34801561037057600080fd5b506008545b6040519081526020016102ae565b34801561038f57600080fd5b5061028061039e366004612eb3565b610dcf565b3480156103af57600080fd5b50610375600d5481565b3480156103c557600080fd5b506102806103d4366004612c5e565b610e5b565b3480156103e557600080fd5b506103756103f4366004612d52565b610e8c565b34801561040557600080fd5b50610280610f22565b34801561041a57600080fd5b50610375600c5481565b34801561043057600080fd5b5061028061043f366004612c5e565b610fbf565b34801561045057600080fd5b5061037561045f366004612eb3565b610fda565b34801561047057600080fd5b5061028061047f366004612d7c565b61106d565b34801561049057600080fd5b5061028061049f366004612e6a565b6111c9565b3480156104b057600080fd5b50600a5460ff166102a2565b3480156104c857600080fd5b506102d76104d7366004612eb3565b61123c565b3480156104e857600080fd5b506102806104f7366004612eb3565b6112b3565b34801561050857600080fd5b506010546102a29060ff1681565b34801561052257600080fd5b506102a2610531366004612c10565b611385565b34801561054257600080fd5b50610375610551366004612c10565b611496565b34801561056257600080fd5b5061028061151d565b34801561057757600080fd5b50610280610586366004612eb3565b611559565b34801561059757600080fd5b506102806105a6366004612d7c565b611602565b3480156105b757600080fd5b50610280611753565b3480156105cc57600080fd5b506102806105db366004612eb3565b6117d1565b3480156105ec57600080fd5b50600a5461010090046001600160a01b03166102d7565b34801561060f57600080fd5b50610317611856565b34801561062457600080fd5b506103176118e4565b34801561063957600080fd5b506102806118f3565b34801561064e57600080fd5b506010546102a290610100900460ff1681565b61028061066f366004612eb3565b61197f565b34801561068057600080fd5b5061028061068f366004612d16565b611b88565b3480156106a057600080fd5b506102806106af366004612c10565b611b97565b3480156106c057600080fd5b506102806106cf366004612c9a565b611c35565b3480156106e057600080fd5b506103176106ef366004612eb3565b611c6d565b34801561070057600080fd5b50610280611d48565b34801561071557600080fd5b506102a2610724366004612c2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075e57600080fd5b50610375600e5481565b34801561077457600080fd5b50610280610783366004612c10565b611dd0565b600a546001600160a01b036101009091041633146107c15760405162461bcd60e51b81526004016107b89061306e565b60405180910390fd5b60008151116108215760405162461bcd60e51b815260206004820152602660248201527f61697244726f703a2063616e6e6f742061697264726f7020746f20656d70747960448201526520617272617960d01b60648201526084016107b8565b60005b81518110156108615761084f8282815181106108425761084261325f565b6020026020010151611e71565b80610859816131ee565b915050610824565b50806040516108709190612f11565b604051908190038120907fb9413d9dd40eadf97d2949c3c57a163bb454e537a8696520d52a74e0252011e990600090a250565b60006001600160e01b0319821663780e9d6360e01b14806108c857506108c882611e96565b92915050565b338161092a5760405162461bcd60e51b815260206004820152602560248201527f77686974654c6973744d696e743a206e65656420746f206d696e742061746c65604482015264617374203160d81b60648201526084016107b8565b60105460ff166109935760405162461bcd60e51b815260206004820152602e60248201527f77686974654c6973744d696e743a2070726573616c65206973206e6f7420637560448201526d7272656e746c792061637469766560901b60648201526084016107b8565b61099c81611385565b6109f75760405162461bcd60e51b815260206004820152602660248201527f77686974654c6973744d696e743a20796f7520617265206e6f742077686974656044820152651b1a5cdd195960d21b60648201526084016107b8565b6000610a02600b5490565b9050600c548110610a555760405162461bcd60e51b815260206004820152601760248201527f77686974654c6973744d696e743a20736f6c64206f757400000000000000000060448201526064016107b8565b600c54610a628483613125565b1115610abc5760405162461bcd60e51b815260206004820152602360248201527f77686974654c6973744d696e743a2063616e2774206d696e742074686174206d604482015262616e7960e81b60648201526084016107b8565b600e54610ac99084613151565b341015610b185760405162461bcd60e51b815260206004820152601f60248201527f77686974654c6973744d696e743a2076616c7565206e6f7420656e6f7567680060448201526064016107b8565b60005b83811015610b3e57610b2c83611e71565b80610b36816131ee565b915050610b1b565b50816001600160a01b03167f68ce841e0552d5791316c35b51f6a9bb45db01305b07591fe2d79b6bed98d37984600d54604051610b85929190918252602082015260400190565b60405180910390a2505050565b606060008054610ba1906131b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcd906131b3565b8015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b506000908152600460205260409020546001600160a01b031690565b6000610cc48261123c565b9050806001600160a01b0316836001600160a01b03161415610d325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b8565b336001600160a01b0382161480610d4e5750610d4e8133610724565b610dc05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b8565b610dca8383611ee6565b505050565b600a546001600160a01b03610100909104163314610dff5760405162461bcd60e51b81526004016107b89061306e565b60008111610e1f5760405162461bcd60e51b81526004016107b890613021565b600e8190556040518181527f9a96e6c03fb1d93b7c4e286fa7cefcca88de5bcfadeeb22c9fc8c436379711da906020015b60405180910390a150565b610e653382611f54565b610e815760405162461bcd60e51b81526004016107b8906130a3565b610dca83838361204b565b6000610e9783611496565b8210610ef95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107b8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610f525760405162461bcd60e51b81526004016107b89061306e565b60004711610f5f57600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610f8e573d6000803e3d6000fd5b506040518181527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d90602001610e50565b610dca83838360405180602001604052806000815250611c35565b6000610fe560085490565b82106110485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107b8565b6008828154811061105b5761105b61325f565b90600052602060002001549050919050565b600a546001600160a01b0361010090910416331461109d5760405162461bcd60e51b81526004016107b89061306e565b600081511161111f5760405162461bcd60e51b815260206004820152604260248201527f72656d6f766546726f6d57686974654c6973743a2063616e6e6f742072656d6f60448201527f76652066726f6d2077686974656c6973742066726f6d20656d70747920617272606482015261617960f01b608482015260a4016107b8565b60005b8151811015611187576000600f60008484815181106111435761114361325f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061117f816131ee565b915050611122565b50806040516111969190612f11565b604051908190038120907fc97aa96d77b78540fd15aa92831e41be71088d5ca526a5f522c6c3713b6fcdf590600090a250565b600a546001600160a01b036101009091041633146111f95760405162461bcd60e51b81526004016107b89061306e565b805161120c906011906020840190612b03565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610e509190612fbc565b6000818152600260205260408120546001600160a01b0316806108c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b8565b600a546001600160a01b036101009091041633146112e35760405162461bcd60e51b81526004016107b89061306e565b600081116113505760405162461bcd60e51b815260206004820152603460248201527f757064617465546f74616c537570706c793a206e657720737570706c79206d75604482015273073742062652067726561746572207468616e20360641b60648201526084016107b8565b600c8190556040518181527fee643f334779f1031decbee003f80a0bcb7ecdc24b6693539cf7447a66afba8a90602001610e50565b60006001600160a01b0382166113ef5760405162461bcd60e51b815260206004820152602960248201527f697357686974654c69737465643a2063616e6e6f7420636865636b20656d707460448201526879206164647265737360b81b60648201526084016107b8565b6001600160a01b0382166000908152600f602052604090205460ff16806108c857506012546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148f9190612ecc565b1192915050565b60006001600160a01b0382166115015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0361010090910416331461154d5760405162461bcd60e51b81526004016107b89061306e565b61155760006121f6565b565b6115633382611f54565b6115c95760405162461bcd60e51b815260206004820152603160248201527f455243373231204275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107b8565b6115d281612250565b6040518181527f066548819fc4bd1208ea1c8608597593134d5661f459c2ef75cad30918af5a3390602001610e50565b600a546001600160a01b036101009091041633146116325760405162461bcd60e51b81526004016107b89061306e565b60008151116116a95760405162461bcd60e51b815260206004820152603860248201527f616464546f57686974654c6973743a2063616e6e6f742061646420746f20776860448201527f6974656c6973742066726f6d20656d707479206172726179000000000000000060648201526084016107b8565b60005b8151811015611711576001600f60008484815181106116cd576116cd61325f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611709816131ee565b9150506116ac565b50806040516117209190612f11565b604051908190038120907f71354119b132684f658833d4561b1d5ed6e72ca782dbcb6fcd8addfb7261207e90600090a250565b600a546001600160a01b036101009091041633146117835760405162461bcd60e51b81526004016107b89061306e565b6010805460ff8082161560ff1990921682179092556040519116151581527ff2cfae4917905cf97a1191eb33dc3f528366925bdf7b7897729a180099b70c16906020015b60405180910390a1565b600a546001600160a01b036101009091041633146118015760405162461bcd60e51b81526004016107b89061306e565b600081116118215760405162461bcd60e51b81526004016107b890613021565b600d8190556040518181527f1a15ab7124a4e1ce00837351261771caf1691cd7d85ed3a0ac3157a1ee1a380590602001610e50565b60118054611863906131b3565b80601f016020809104026020016040519081016040528092919081815260200182805461188f906131b3565b80156118dc5780601f106118b1576101008083540402835291602001916118dc565b820191906000526020600020905b8154815290600101906020018083116118bf57829003601f168201915b505050505081565b606060018054610ba1906131b3565b600a546001600160a01b036101009091041633146119235760405162461bcd60e51b81526004016107b89061306e565b600a5460ff1661193a576119356122f7565b611942565b61194261238a565b7f71aa6dbdf1045ea9e6926a7848dbdd98d55270c4fee88cbc77fd816ccc8d6d2f61196f600a5460ff1690565b60405190151581526020016117c7565b33816119cd5760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a206e65656420746f206d696e742061746c6561737420310000000060448201526064016107b8565b601054610100900460ff16611a1c5760405162461bcd60e51b81526020600482015260156024820152746d696e743a206d696e74206e6f742061637469766560581b60448201526064016107b8565b6000611a27600b5490565b9050600c548110611a6b5760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d0e881cdbdb19081bdd5d60921b60448201526064016107b8565b600c54611a788483613125565b1115611ac65760405162461bcd60e51b815260206004820152601a60248201527f6d696e743a2063616e2774206d696e742074686174206d616e7900000000000060448201526064016107b8565b600d54611ad39084613151565b341015611b1b5760405162461bcd60e51b81526020600482015260166024820152750dad2dce87440ecc2d8eaca40dcdee840cadcdeeaced60531b60448201526064016107b8565b60005b83811015611b4157611b2f33611e71565b80611b39816131ee565b915050611b1e565b50816001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f84600d54604051610b85929190918252602082015260400190565b611b93338383612404565b5050565b600a546001600160a01b03610100909104163314611bc75760405162461bcd60e51b81526004016107b89061306e565b6001600160a01b038116611c135760405162461bcd60e51b815260206004820152601360248201527243616e2774207573652030206164647265737360681b60448201526064016107b8565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b611c3f3383611f54565b611c5b5760405162461bcd60e51b81526004016107b8906130a3565b611c67848484846124d3565b50505050565b6000818152600260205260409020546060906001600160a01b0316611cec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b8565b6000611cf6612506565b90506000815111611d165760405180602001604052806000815250611d41565b80611d2084612515565b604051602001611d31929190612f50565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03610100909104163314611d785760405162461bcd60e51b81526004016107b89061306e565b6010805460ff610100808304821615810261ff001990931692909217928390556040517f756643b49a6f13e0209676621cbd6d5e01c401e38a271b690fdf2a347597faa9936117c79390049091161515815260200190565b600a546001600160a01b03610100909104163314611e005760405162461bcd60e51b81526004016107b89061306e565b6001600160a01b038116611e655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b611e6e816121f6565b50565b611e7f600b80546001019055565b6000611e8a600b5490565b9050611b938282612613565b60006001600160e01b031982166380ac58cd60e01b1480611ec757506001600160e01b03198216635b5e139f60e01b145b806108c857506301ffc9a760e01b6001600160e01b03198316146108c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f1b8261123c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b6000611fd88361123c565b9050806001600160a01b0316846001600160a01b031614806120135750836001600160a01b031661200884610c24565b6001600160a01b0316145b8061204357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661205e8261123c565b6001600160a01b0316146120c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b8565b6001600160a01b0382166121285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b8565b61213383838361262d565b61213e600082611ee6565b6001600160a01b0383166000908152600360205260408120805460019290612167908490613170565b90915550506001600160a01b0382166000908152600360205260408120805460019290612195908490613125565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061225b8261123c565b90506122698160008461262d565b612274600083611ee6565b6001600160a01b038116600090815260036020526040812080546001929061229d908490613170565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff161561233d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b8565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123723390565b6040516001600160a01b0390911681526020016117c7565b600a5460ff166123d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107b8565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612372565b816001600160a01b0316836001600160a01b031614156124665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124de84848461204b565b6124ea848484846126e5565b611c675760405162461bcd60e51b81526004016107b890612fcf565b606060118054610ba1906131b3565b6060816125395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612563578061254d816131ee565b915061255c9050600a8361313d565b915061253d565b60008167ffffffffffffffff81111561257e5761257e613275565b6040519080825280601f01601f1916602001820160405280156125a8576020820181803683370190505b5090505b8415612043576125bd600183613170565b91506125ca600a86613209565b6125d5906030613125565b60f81b8183815181106125ea576125ea61325f565b60200101906001600160f81b031916908160001a90535061260c600a8661313d565b94506125ac565b611b938282604051806020016040528060008152506127f2565b6001600160a01b0383166126885761268381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126ab565b816001600160a01b0316836001600160a01b0316146126ab576126ab8382612825565b6001600160a01b0382166126c257610dca816128c2565b826001600160a01b0316826001600160a01b031614610dca57610dca8282612971565b60006001600160a01b0384163b156127e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612729903390899088908890600401612f7f565b602060405180830381600087803b15801561274357600080fd5b505af1925050508015612773575060408051601f3d908101601f1916820190925261277091810190612e4d565b60015b6127cd573d8080156127a1576040519150601f19603f3d011682016040523d82523d6000602084013e6127a6565b606091505b5080516127c55760405162461bcd60e51b81526004016107b890612fcf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612043565b506001949350505050565b6127fc83836129b5565b61280960008484846126e5565b610dca5760405162461bcd60e51b81526004016107b890612fcf565b6000600161283284611496565b61283c9190613170565b60008381526007602052604090205490915080821461288f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128d490600190613170565b600083815260096020526040812054600880549394509092849081106128fc576128fc61325f565b90600052602060002001549050806008838154811061291d5761291d61325f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061295557612955613249565b6001900381819060005260206000200160009055905550505050565b600061297c83611496565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612a0b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b8565b6000818152600260205260409020546001600160a01b031615612a705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b8565b612a7c6000838361262d565b6001600160a01b0382166000908152600360205260408120805460019290612aa5908490613125565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b0f906131b3565b90600052602060002090601f016020900481019282612b315760008555612b77565b82601f10612b4a57805160ff1916838001178555612b77565b82800160010185558215612b77579182015b82811115612b77578251825591602001919060010190612b5c565b50612b83929150612b87565b5090565b5b80821115612b835760008155600101612b88565b600067ffffffffffffffff831115612bb657612bb6613275565b612bc9601f8401601f19166020016130f4565b9050828152838383011115612bdd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c0b57600080fd5b919050565b600060208284031215612c2257600080fd5b611d4182612bf4565b60008060408385031215612c3e57600080fd5b612c4783612bf4565b9150612c5560208401612bf4565b90509250929050565b600080600060608486031215612c7357600080fd5b612c7c84612bf4565b9250612c8a60208501612bf4565b9150604084013590509250925092565b60008060008060808587031215612cb057600080fd5b612cb985612bf4565b9350612cc760208601612bf4565b925060408501359150606085013567ffffffffffffffff811115612cea57600080fd5b8501601f81018713612cfb57600080fd5b612d0a87823560208401612b9c565b91505092959194509250565b60008060408385031215612d2957600080fd5b612d3283612bf4565b915060208301358015158114612d4757600080fd5b809150509250929050565b60008060408385031215612d6557600080fd5b612d6e83612bf4565b946020939093013593505050565b60006020808385031215612d8f57600080fd5b823567ffffffffffffffff80821115612da757600080fd5b818501915085601f830112612dbb57600080fd5b813581811115612dcd57612dcd613275565b8060051b9150612dde8483016130f4565b8181528481019084860184860187018a1015612df957600080fd5b600095505b83861015612e2357612e0f81612bf4565b835260019590950194918601918601612dfe565b5098975050505050505050565b600060208284031215612e4257600080fd5b8135611d418161328b565b600060208284031215612e5f57600080fd5b8151611d418161328b565b600060208284031215612e7c57600080fd5b813567ffffffffffffffff811115612e9357600080fd5b8201601f81018413612ea457600080fd5b61204384823560208401612b9c565b600060208284031215612ec557600080fd5b5035919050565b600060208284031215612ede57600080fd5b5051919050565b60008151808452612efd816020860160208601613187565b601f01601f19169290920160200192915050565b815160009082906020808601845b83811015612f445781516001600160a01b031685529382019390820190600101612f1f565b50929695505050505050565b60008351612f62818460208801613187565b835190830190612f76818360208801613187565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fb290830184612ee5565b9695505050505050565b602081526000611d416020830184612ee5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602d908201527f75706461746550726963653a206e6577207072696365206d757374206265206760408201526c0726561746572207468616e203609c1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561311d5761311d613275565b604052919050565b600082198211156131385761313861321d565b500190565b60008261314c5761314c613233565b500490565b600081600019048311821515161561316b5761316b61321d565b500290565b6000828210156131825761318261321d565b500390565b60005b838110156131a257818101518382015260200161318a565b83811115611c675750506000910152565b600181811c908216806131c757607f821691505b602082108114156131e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132025761320261321d565b5060010190565b60008261321857613218613233565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e6e57600080fdfea264697066735822122086ee55dd7fb04918f0dee7b09c32656d9d34987de66964ad74c79891c840c8ec64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061025b5760003560e01c80636b0a1176116101445780639752a017116100b6578063b88d4fde1161007a578063b88d4fde146106b4578063c87b56dd146106d4578063d02c2bf2146106f4578063e985e9c514610709578063ee88fb0f14610752578063f2fde38b1461076857600080fd5b80639752a0171461062d5780639ef4b9aa14610642578063a0712d6814610661578063a22cb46514610674578063a61cc4b91461069457600080fd5b80637f649783116101085780637f6497831461058b57806389b0649b146105ab5780638d6cc56d146105c05780638da5cb5b146105e057806391860f781461060357806395d89b411461061857600080fd5b80636b0a1176146104fc5780636f9170f61461051657806370a0823114610536578063715018a6146105565780637b47ec1a1461056b57600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce714610444578063548db1741461046457806355f804b3146104845780635c975abb146104a45780636352211e146104bc57806366d49bab146104dc57600080fd5b806323b872dd146103b95780632f745c59146103d95780633ccfd60b146103f95780633eaaf86b1461040e57806342842e0e1461042457600080fd5b8063081812fc11610224578063081812fc14610324578063095ea7b31461034457806318160ddd14610364578063184d0e4e14610383578063235b6ea1146103a357600080fd5b8062b6849f1461026057806301ffc9a714610282578063029fa1bf146102b757806302e001ef146102ef57806306fdde0314610302575b600080fd5b34801561026c57600080fd5b5061028061027b366004612d7c565b610788565b005b34801561028e57600080fd5b506102a261029d366004612e30565b6108a3565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506012546102d7906001600160a01b031681565b6040516001600160a01b0390911681526020016102ae565b6102806102fd366004612eb3565b6108ce565b34801561030e57600080fd5b50610317610b92565b6040516102ae9190612fbc565b34801561033057600080fd5b506102d761033f366004612eb3565b610c24565b34801561035057600080fd5b5061028061035f366004612d52565b610cb9565b34801561037057600080fd5b506008545b6040519081526020016102ae565b34801561038f57600080fd5b5061028061039e366004612eb3565b610dcf565b3480156103af57600080fd5b50610375600d5481565b3480156103c557600080fd5b506102806103d4366004612c5e565b610e5b565b3480156103e557600080fd5b506103756103f4366004612d52565b610e8c565b34801561040557600080fd5b50610280610f22565b34801561041a57600080fd5b50610375600c5481565b34801561043057600080fd5b5061028061043f366004612c5e565b610fbf565b34801561045057600080fd5b5061037561045f366004612eb3565b610fda565b34801561047057600080fd5b5061028061047f366004612d7c565b61106d565b34801561049057600080fd5b5061028061049f366004612e6a565b6111c9565b3480156104b057600080fd5b50600a5460ff166102a2565b3480156104c857600080fd5b506102d76104d7366004612eb3565b61123c565b3480156104e857600080fd5b506102806104f7366004612eb3565b6112b3565b34801561050857600080fd5b506010546102a29060ff1681565b34801561052257600080fd5b506102a2610531366004612c10565b611385565b34801561054257600080fd5b50610375610551366004612c10565b611496565b34801561056257600080fd5b5061028061151d565b34801561057757600080fd5b50610280610586366004612eb3565b611559565b34801561059757600080fd5b506102806105a6366004612d7c565b611602565b3480156105b757600080fd5b50610280611753565b3480156105cc57600080fd5b506102806105db366004612eb3565b6117d1565b3480156105ec57600080fd5b50600a5461010090046001600160a01b03166102d7565b34801561060f57600080fd5b50610317611856565b34801561062457600080fd5b506103176118e4565b34801561063957600080fd5b506102806118f3565b34801561064e57600080fd5b506010546102a290610100900460ff1681565b61028061066f366004612eb3565b61197f565b34801561068057600080fd5b5061028061068f366004612d16565b611b88565b3480156106a057600080fd5b506102806106af366004612c10565b611b97565b3480156106c057600080fd5b506102806106cf366004612c9a565b611c35565b3480156106e057600080fd5b506103176106ef366004612eb3565b611c6d565b34801561070057600080fd5b50610280611d48565b34801561071557600080fd5b506102a2610724366004612c2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075e57600080fd5b50610375600e5481565b34801561077457600080fd5b50610280610783366004612c10565b611dd0565b600a546001600160a01b036101009091041633146107c15760405162461bcd60e51b81526004016107b89061306e565b60405180910390fd5b60008151116108215760405162461bcd60e51b815260206004820152602660248201527f61697244726f703a2063616e6e6f742061697264726f7020746f20656d70747960448201526520617272617960d01b60648201526084016107b8565b60005b81518110156108615761084f8282815181106108425761084261325f565b6020026020010151611e71565b80610859816131ee565b915050610824565b50806040516108709190612f11565b604051908190038120907fb9413d9dd40eadf97d2949c3c57a163bb454e537a8696520d52a74e0252011e990600090a250565b60006001600160e01b0319821663780e9d6360e01b14806108c857506108c882611e96565b92915050565b338161092a5760405162461bcd60e51b815260206004820152602560248201527f77686974654c6973744d696e743a206e65656420746f206d696e742061746c65604482015264617374203160d81b60648201526084016107b8565b60105460ff166109935760405162461bcd60e51b815260206004820152602e60248201527f77686974654c6973744d696e743a2070726573616c65206973206e6f7420637560448201526d7272656e746c792061637469766560901b60648201526084016107b8565b61099c81611385565b6109f75760405162461bcd60e51b815260206004820152602660248201527f77686974654c6973744d696e743a20796f7520617265206e6f742077686974656044820152651b1a5cdd195960d21b60648201526084016107b8565b6000610a02600b5490565b9050600c548110610a555760405162461bcd60e51b815260206004820152601760248201527f77686974654c6973744d696e743a20736f6c64206f757400000000000000000060448201526064016107b8565b600c54610a628483613125565b1115610abc5760405162461bcd60e51b815260206004820152602360248201527f77686974654c6973744d696e743a2063616e2774206d696e742074686174206d604482015262616e7960e81b60648201526084016107b8565b600e54610ac99084613151565b341015610b185760405162461bcd60e51b815260206004820152601f60248201527f77686974654c6973744d696e743a2076616c7565206e6f7420656e6f7567680060448201526064016107b8565b60005b83811015610b3e57610b2c83611e71565b80610b36816131ee565b915050610b1b565b50816001600160a01b03167f68ce841e0552d5791316c35b51f6a9bb45db01305b07591fe2d79b6bed98d37984600d54604051610b85929190918252602082015260400190565b60405180910390a2505050565b606060008054610ba1906131b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcd906131b3565b8015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b506000908152600460205260409020546001600160a01b031690565b6000610cc48261123c565b9050806001600160a01b0316836001600160a01b03161415610d325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b8565b336001600160a01b0382161480610d4e5750610d4e8133610724565b610dc05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b8565b610dca8383611ee6565b505050565b600a546001600160a01b03610100909104163314610dff5760405162461bcd60e51b81526004016107b89061306e565b60008111610e1f5760405162461bcd60e51b81526004016107b890613021565b600e8190556040518181527f9a96e6c03fb1d93b7c4e286fa7cefcca88de5bcfadeeb22c9fc8c436379711da906020015b60405180910390a150565b610e653382611f54565b610e815760405162461bcd60e51b81526004016107b8906130a3565b610dca83838361204b565b6000610e9783611496565b8210610ef95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107b8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610f525760405162461bcd60e51b81526004016107b89061306e565b60004711610f5f57600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610f8e573d6000803e3d6000fd5b506040518181527f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d90602001610e50565b610dca83838360405180602001604052806000815250611c35565b6000610fe560085490565b82106110485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107b8565b6008828154811061105b5761105b61325f565b90600052602060002001549050919050565b600a546001600160a01b0361010090910416331461109d5760405162461bcd60e51b81526004016107b89061306e565b600081511161111f5760405162461bcd60e51b815260206004820152604260248201527f72656d6f766546726f6d57686974654c6973743a2063616e6e6f742072656d6f60448201527f76652066726f6d2077686974656c6973742066726f6d20656d70747920617272606482015261617960f01b608482015260a4016107b8565b60005b8151811015611187576000600f60008484815181106111435761114361325f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061117f816131ee565b915050611122565b50806040516111969190612f11565b604051908190038120907fc97aa96d77b78540fd15aa92831e41be71088d5ca526a5f522c6c3713b6fcdf590600090a250565b600a546001600160a01b036101009091041633146111f95760405162461bcd60e51b81526004016107b89061306e565b805161120c906011906020840190612b03565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610e509190612fbc565b6000818152600260205260408120546001600160a01b0316806108c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b8565b600a546001600160a01b036101009091041633146112e35760405162461bcd60e51b81526004016107b89061306e565b600081116113505760405162461bcd60e51b815260206004820152603460248201527f757064617465546f74616c537570706c793a206e657720737570706c79206d75604482015273073742062652067726561746572207468616e20360641b60648201526084016107b8565b600c8190556040518181527fee643f334779f1031decbee003f80a0bcb7ecdc24b6693539cf7447a66afba8a90602001610e50565b60006001600160a01b0382166113ef5760405162461bcd60e51b815260206004820152602960248201527f697357686974654c69737465643a2063616e6e6f7420636865636b20656d707460448201526879206164647265737360b81b60648201526084016107b8565b6001600160a01b0382166000908152600f602052604090205460ff16806108c857506012546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561145757600080fd5b505afa15801561146b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148f9190612ecc565b1192915050565b60006001600160a01b0382166115015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0361010090910416331461154d5760405162461bcd60e51b81526004016107b89061306e565b61155760006121f6565b565b6115633382611f54565b6115c95760405162461bcd60e51b815260206004820152603160248201527f455243373231204275726e61626c653a2063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107b8565b6115d281612250565b6040518181527f066548819fc4bd1208ea1c8608597593134d5661f459c2ef75cad30918af5a3390602001610e50565b600a546001600160a01b036101009091041633146116325760405162461bcd60e51b81526004016107b89061306e565b60008151116116a95760405162461bcd60e51b815260206004820152603860248201527f616464546f57686974654c6973743a2063616e6e6f742061646420746f20776860448201527f6974656c6973742066726f6d20656d707479206172726179000000000000000060648201526084016107b8565b60005b8151811015611711576001600f60008484815181106116cd576116cd61325f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611709816131ee565b9150506116ac565b50806040516117209190612f11565b604051908190038120907f71354119b132684f658833d4561b1d5ed6e72ca782dbcb6fcd8addfb7261207e90600090a250565b600a546001600160a01b036101009091041633146117835760405162461bcd60e51b81526004016107b89061306e565b6010805460ff8082161560ff1990921682179092556040519116151581527ff2cfae4917905cf97a1191eb33dc3f528366925bdf7b7897729a180099b70c16906020015b60405180910390a1565b600a546001600160a01b036101009091041633146118015760405162461bcd60e51b81526004016107b89061306e565b600081116118215760405162461bcd60e51b81526004016107b890613021565b600d8190556040518181527f1a15ab7124a4e1ce00837351261771caf1691cd7d85ed3a0ac3157a1ee1a380590602001610e50565b60118054611863906131b3565b80601f016020809104026020016040519081016040528092919081815260200182805461188f906131b3565b80156118dc5780601f106118b1576101008083540402835291602001916118dc565b820191906000526020600020905b8154815290600101906020018083116118bf57829003601f168201915b505050505081565b606060018054610ba1906131b3565b600a546001600160a01b036101009091041633146119235760405162461bcd60e51b81526004016107b89061306e565b600a5460ff1661193a576119356122f7565b611942565b61194261238a565b7f71aa6dbdf1045ea9e6926a7848dbdd98d55270c4fee88cbc77fd816ccc8d6d2f61196f600a5460ff1690565b60405190151581526020016117c7565b33816119cd5760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a206e65656420746f206d696e742061746c6561737420310000000060448201526064016107b8565b601054610100900460ff16611a1c5760405162461bcd60e51b81526020600482015260156024820152746d696e743a206d696e74206e6f742061637469766560581b60448201526064016107b8565b6000611a27600b5490565b9050600c548110611a6b5760405162461bcd60e51b815260206004820152600e60248201526d1b5a5b9d0e881cdbdb19081bdd5d60921b60448201526064016107b8565b600c54611a788483613125565b1115611ac65760405162461bcd60e51b815260206004820152601a60248201527f6d696e743a2063616e2774206d696e742074686174206d616e7900000000000060448201526064016107b8565b600d54611ad39084613151565b341015611b1b5760405162461bcd60e51b81526020600482015260166024820152750dad2dce87440ecc2d8eaca40dcdee840cadcdeeaced60531b60448201526064016107b8565b60005b83811015611b4157611b2f33611e71565b80611b39816131ee565b915050611b1e565b50816001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f84600d54604051610b85929190918252602082015260400190565b611b93338383612404565b5050565b600a546001600160a01b03610100909104163314611bc75760405162461bcd60e51b81526004016107b89061306e565b6001600160a01b038116611c135760405162461bcd60e51b815260206004820152601360248201527243616e2774207573652030206164647265737360681b60448201526064016107b8565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b611c3f3383611f54565b611c5b5760405162461bcd60e51b81526004016107b8906130a3565b611c67848484846124d3565b50505050565b6000818152600260205260409020546060906001600160a01b0316611cec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b8565b6000611cf6612506565b90506000815111611d165760405180602001604052806000815250611d41565b80611d2084612515565b604051602001611d31929190612f50565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03610100909104163314611d785760405162461bcd60e51b81526004016107b89061306e565b6010805460ff610100808304821615810261ff001990931692909217928390556040517f756643b49a6f13e0209676621cbd6d5e01c401e38a271b690fdf2a347597faa9936117c79390049091161515815260200190565b600a546001600160a01b03610100909104163314611e005760405162461bcd60e51b81526004016107b89061306e565b6001600160a01b038116611e655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b611e6e816121f6565b50565b611e7f600b80546001019055565b6000611e8a600b5490565b9050611b938282612613565b60006001600160e01b031982166380ac58cd60e01b1480611ec757506001600160e01b03198216635b5e139f60e01b145b806108c857506301ffc9a760e01b6001600160e01b03198316146108c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f1b8261123c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b8565b6000611fd88361123c565b9050806001600160a01b0316846001600160a01b031614806120135750836001600160a01b031661200884610c24565b6001600160a01b0316145b8061204357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661205e8261123c565b6001600160a01b0316146120c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107b8565b6001600160a01b0382166121285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b8565b61213383838361262d565b61213e600082611ee6565b6001600160a01b0383166000908152600360205260408120805460019290612167908490613170565b90915550506001600160a01b0382166000908152600360205260408120805460019290612195908490613125565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061225b8261123c565b90506122698160008461262d565b612274600083611ee6565b6001600160a01b038116600090815260036020526040812080546001929061229d908490613170565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a5460ff161561233d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107b8565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123723390565b6040516001600160a01b0390911681526020016117c7565b600a5460ff166123d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107b8565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33612372565b816001600160a01b0316836001600160a01b031614156124665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124de84848461204b565b6124ea848484846126e5565b611c675760405162461bcd60e51b81526004016107b890612fcf565b606060118054610ba1906131b3565b6060816125395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612563578061254d816131ee565b915061255c9050600a8361313d565b915061253d565b60008167ffffffffffffffff81111561257e5761257e613275565b6040519080825280601f01601f1916602001820160405280156125a8576020820181803683370190505b5090505b8415612043576125bd600183613170565b91506125ca600a86613209565b6125d5906030613125565b60f81b8183815181106125ea576125ea61325f565b60200101906001600160f81b031916908160001a90535061260c600a8661313d565b94506125ac565b611b938282604051806020016040528060008152506127f2565b6001600160a01b0383166126885761268381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126ab565b816001600160a01b0316836001600160a01b0316146126ab576126ab8382612825565b6001600160a01b0382166126c257610dca816128c2565b826001600160a01b0316826001600160a01b031614610dca57610dca8282612971565b60006001600160a01b0384163b156127e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612729903390899088908890600401612f7f565b602060405180830381600087803b15801561274357600080fd5b505af1925050508015612773575060408051601f3d908101601f1916820190925261277091810190612e4d565b60015b6127cd573d8080156127a1576040519150601f19603f3d011682016040523d82523d6000602084013e6127a6565b606091505b5080516127c55760405162461bcd60e51b81526004016107b890612fcf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612043565b506001949350505050565b6127fc83836129b5565b61280960008484846126e5565b610dca5760405162461bcd60e51b81526004016107b890612fcf565b6000600161283284611496565b61283c9190613170565b60008381526007602052604090205490915080821461288f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128d490600190613170565b600083815260096020526040812054600880549394509092849081106128fc576128fc61325f565b90600052602060002001549050806008838154811061291d5761291d61325f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061295557612955613249565b6001900381819060005260206000200160009055905550505050565b600061297c83611496565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612a0b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b8565b6000818152600260205260409020546001600160a01b031615612a705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b8565b612a7c6000838361262d565b6001600160a01b0382166000908152600360205260408120805460019290612aa5908490613125565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b0f906131b3565b90600052602060002090601f016020900481019282612b315760008555612b77565b82601f10612b4a57805160ff1916838001178555612b77565b82800160010185558215612b77579182015b82811115612b77578251825591602001919060010190612b5c565b50612b83929150612b87565b5090565b5b80821115612b835760008155600101612b88565b600067ffffffffffffffff831115612bb657612bb6613275565b612bc9601f8401601f19166020016130f4565b9050828152838383011115612bdd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c0b57600080fd5b919050565b600060208284031215612c2257600080fd5b611d4182612bf4565b60008060408385031215612c3e57600080fd5b612c4783612bf4565b9150612c5560208401612bf4565b90509250929050565b600080600060608486031215612c7357600080fd5b612c7c84612bf4565b9250612c8a60208501612bf4565b9150604084013590509250925092565b60008060008060808587031215612cb057600080fd5b612cb985612bf4565b9350612cc760208601612bf4565b925060408501359150606085013567ffffffffffffffff811115612cea57600080fd5b8501601f81018713612cfb57600080fd5b612d0a87823560208401612b9c565b91505092959194509250565b60008060408385031215612d2957600080fd5b612d3283612bf4565b915060208301358015158114612d4757600080fd5b809150509250929050565b60008060408385031215612d6557600080fd5b612d6e83612bf4565b946020939093013593505050565b60006020808385031215612d8f57600080fd5b823567ffffffffffffffff80821115612da757600080fd5b818501915085601f830112612dbb57600080fd5b813581811115612dcd57612dcd613275565b8060051b9150612dde8483016130f4565b8181528481019084860184860187018a1015612df957600080fd5b600095505b83861015612e2357612e0f81612bf4565b835260019590950194918601918601612dfe565b5098975050505050505050565b600060208284031215612e4257600080fd5b8135611d418161328b565b600060208284031215612e5f57600080fd5b8151611d418161328b565b600060208284031215612e7c57600080fd5b813567ffffffffffffffff811115612e9357600080fd5b8201601f81018413612ea457600080fd5b61204384823560208401612b9c565b600060208284031215612ec557600080fd5b5035919050565b600060208284031215612ede57600080fd5b5051919050565b60008151808452612efd816020860160208601613187565b601f01601f19169290920160200192915050565b815160009082906020808601845b83811015612f445781516001600160a01b031685529382019390820190600101612f1f565b50929695505050505050565b60008351612f62818460208801613187565b835190830190612f76818360208801613187565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fb290830184612ee5565b9695505050505050565b602081526000611d416020830184612ee5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602d908201527f75706461746550726963653a206e6577207072696365206d757374206265206760408201526c0726561746572207468616e203609c1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561311d5761311d613275565b604052919050565b600082198211156131385761313861321d565b500190565b60008261314c5761314c613233565b500490565b600081600019048311821515161561316b5761316b61321d565b500290565b6000828210156131825761318261321d565b500390565b60005b838110156131a257818101518382015260200161318a565b83811115611c675750506000910152565b600181811c908216806131c757607f821691505b602082108114156131e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132025761320261321d565b5060010190565b60008261321857613218613233565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e6e57600080fdfea264697066735822122086ee55dd7fb04918f0dee7b09c32656d9d34987de66964ad74c79891c840c8ec64736f6c63430008070033

Deployed Bytecode Sourcemap

48479:6478:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50739:275;;;;;;;;;;-1:-1:-1;50739:275:0;;;;;:::i;:::-;;:::i;:::-;;42049:224;;;;;;;;;;-1:-1:-1;42049:224:0;;;;;:::i;:::-;;:::i;:::-;;;7152:14:1;;7145:22;7127:41;;7115:2;7100:18;42049:224:0;;;;;;;;49117:22;;;;;;;;;;-1:-1:-1;49117:22:0;;;;-1:-1:-1;;;;;49117:22:0;;;;;;-1:-1:-1;;;;;6450:32:1;;;6432:51;;6420:2;6405:18;49117:22:0;6286:203:1;52223:797:0;;;;;;:::i;:::-;;:::i;29543:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31102:221::-;;;;;;;;;;-1:-1:-1;31102:221:0;;;;;:::i;:::-;;:::i;30625:411::-;;;;;;;;;;-1:-1:-1;30625:411:0;;;;;:::i;:::-;;:::i;42689:113::-;;;;;;;;;;-1:-1:-1;42777:10:0;:17;42689:113;;;23091:25:1;;;23079:2;23064:18;42689:113:0;22945:177:1;54011:239:0;;;;;;;;;;-1:-1:-1;54011:239:0;;;;;:::i;:::-;;:::i;48703:46::-;;;;;;;;;;;;;;;;31852:339;;;;;;;;;;-1:-1:-1;31852:339:0;;;;;:::i;:::-;;:::i;42357:256::-;;;;;;;;;;-1:-1:-1;42357:256:0;;;;;:::i;:::-;;:::i;54729:225::-;;;;;;;;;;;;;:::i;48660:35::-;;;;;;;;;;;;;;;;32262:185;;;;;;;;;;-1:-1:-1;32262:185:0;;;;;:::i;:::-;;:::i;42879:233::-;;;;;;;;;;-1:-1:-1;42879:233:0;;;;;:::i;:::-;;:::i;51650:335::-;;;;;;;;;;-1:-1:-1;51650:335:0;;;;;:::i;:::-;;:::i;50606:125::-;;;;;;;;;;-1:-1:-1;50606:125:0;;;;;:::i;:::-;;:::i;8144:86::-;;;;;;;;;;-1:-1:-1;8215:7:0;;;;8144:86;;29237:239;;;;;;;;;;-1:-1:-1;29237:239:0;;;;;:::i;:::-;;:::i;54478:243::-;;;;;;;;;;-1:-1:-1;54478:243:0;;;;;:::i;:::-;;:::i;48931:34::-;;;;;;;;;;-1:-1:-1;48931:34:0;;;;;;;;51993:222;;;;;;;;;;-1:-1:-1;51993:222:0;;;;;:::i;:::-;;:::i;28967:208::-;;;;;;;;;;-1:-1:-1;28967:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;50234:231::-;;;;;;;;;;-1:-1:-1;50234:231:0;;;;;:::i;:::-;;:::i;51328:314::-;;;;;;;;;;-1:-1:-1;51328:314:0;;;;;:::i;:::-;;:::i;51024:151::-;;;;;;;;;;;;;:::i;54258:212::-;;;;;;;;;;-1:-1:-1;54258:212:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;;;;-1:-1:-1;;;;;5617:6:0;5544:87;;49045:24;;;;;;;;;;;;;:::i;29712:104::-;;;;;;;;;;;;;:::i;53858:145::-;;;;;;;;;;;;;:::i;48973:31::-;;;;;;;;;;-1:-1:-1;48973:31:0;;;;;;;;;;;53028:629;;;;;;:::i;:::-;;:::i;31395:155::-;;;;;;;;;;-1:-1:-1;31395:155:0;;;;;:::i;:::-;;:::i;50024:202::-;;;;;;;;;;-1:-1:-1;50024:202:0;;;;;:::i;:::-;;:::i;32518:328::-;;;;;;;;;;-1:-1:-1;32518:328:0;;;;;:::i;:::-;;:::i;29887:334::-;;;;;;;;;;-1:-1:-1;29887:334:0;;;;;:::i;:::-;;:::i;51183:137::-;;;;;;;;;;;;;:::i;31621:164::-;;;;;;;;;;-1:-1:-1;31621:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31742:25:0;;;31718:4;31742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31621:164;48768:54;;;;;;;;;;;;;;;;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;50739:275::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;50831:1:::1;50816:5;:12;:16;50808:67;;;::::0;-1:-1:-1;;;50808:67:0;;22330:2:1;50808:67:0::1;::::0;::::1;22312:21:1::0;22369:2;22349:18;;;22342:30;22408:34;22388:18;;;22381:62;-1:-1:-1;;;22459:18:1;;;22452:36;22505:19;;50808:67:0::1;22128:402:1::0;50808:67:0::1;50892:9;50887:90;50911:5;:12;50907:1;:16;50887:90;;;50945:19;50955:5;50961:1;50955:8;;;;;;;;:::i;:::-;;;;;;;50945:9;:19::i;:::-;50925:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50887:90;;;;51000:5;50992:14;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;50739:275:::0;:::o;42049:224::-;42151:4;-1:-1:-1;;;;;;42175:50:0;;-1:-1:-1;;;42175:50:0;;:90;;;42229:36;42253:11;42229:23;:36::i;:::-;42168:97;42049:224;-1:-1:-1;;42049:224:0:o;52223:797::-;52305:10;52335;52327:60;;;;-1:-1:-1;;;52327:60:0;;13717:2:1;52327:60:0;;;13699:21:1;13756:2;13736:18;;;13729:30;13795:34;13775:18;;;13768:62;-1:-1:-1;;;13846:18:1;;;13839:35;13891:19;;52327:60:0;13515:401:1;52327:60:0;52407:14;;;;52399:73;;;;-1:-1:-1;;;52399:73:0;;11008:2:1;52399:73:0;;;10990:21:1;11047:2;11027:18;;;11020:30;11086:34;11066:18;;;11059:62;-1:-1:-1;;;11137:18:1;;;11130:44;11191:19;;52399:73:0;10806:410:1;52399:73:0;52492:21;52506:6;52492:13;:21::i;:::-;52484:72;;;;-1:-1:-1;;;52484:72:0;;14536:2:1;52484:72:0;;;14518:21:1;14575:2;14555:18;;;14548:30;14614:34;14594:18;;;14587:62;-1:-1:-1;;;14665:18:1;;;14658:36;14711:19;;52484:72:0;14334:402:1;52484:72:0;52567:19;52589;:9;964:14;;872:114;52589:19;52567:41;;52641:12;;52627:11;:26;52619:62;;;;-1:-1:-1;;;52619:62:0;;18434:2:1;52619:62:0;;;18416:21:1;18473:2;18453:18;;;18446:30;18512:25;18492:18;;;18485:53;18555:18;;52619:62:0;18232:347:1;52619:62:0;52724:12;;52700:20;52714:6;52700:11;:20;:::i;:::-;:36;;52692:84;;;;-1:-1:-1;;;52692:84:0;;7828:2:1;52692:84:0;;;7810:21:1;7867:2;7847:18;;;7840:30;7906:34;7886:18;;;7879:62;-1:-1:-1;;;7957:18:1;;;7950:33;8000:19;;52692:84:0;7626:399:1;52692:84:0;52817:15;;52808:24;;:6;:24;:::i;:::-;52795:9;:37;;52787:81;;;;-1:-1:-1;;;52787:81:0;;19560:2:1;52787:81:0;;;19542:21:1;19599:2;19579:18;;;19572:30;19638:33;19618:18;;;19611:61;19689:18;;52787:81:0;19358:355:1;52787:81:0;52884:9;52879:81;52903:6;52899:1;:10;52879:81;;;52931:17;52941:6;52931:9;:17::i;:::-;52911:3;;;;:::i;:::-;;;;52879:81;;;;52989:6;-1:-1:-1;;;;;52975:37:0;;52997:6;53005;;52975:37;;;;;;23301:25:1;;;23357:2;23342:18;;23335:34;23289:2;23274:18;;23127:248;52975:37:0;;;;;;;;52277:743;;52223:797;:::o;29543:100::-;29597:13;29630:5;29623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29543:100;:::o;31102:221::-;31178:7;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;31198:73;;;;-1:-1:-1;;;31198:73:0;;18786:2:1;31198:73:0;;;18768:21:1;18825:2;18805:18;;;18798:30;18864:34;18844:18;;;18837:62;-1:-1:-1;;;18915:18:1;;;18908:42;18967:19;;31198:73:0;18584:408:1;31198:73:0;-1:-1:-1;31291:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31291:24:0;;31102:221::o;30625:411::-;30706:13;30722:23;30737:7;30722:14;:23::i;:::-;30706:39;;30770:5;-1:-1:-1;;;;;30764:11:0;:2;-1:-1:-1;;;;;30764:11:0;;;30756:57;;;;-1:-1:-1;;;30756:57:0;;20746:2:1;30756:57:0;;;20728:21:1;20785:2;20765:18;;;20758:30;20824:34;20804:18;;;20797:62;-1:-1:-1;;;20875:18:1;;;20868:31;20916:19;;30756:57:0;20544:397:1;30756:57:0;4348:10;-1:-1:-1;;;;;30848:21:0;;;;:62;;-1:-1:-1;30873:37:0;30890:5;4348:10;31621:164;:::i;30873:37::-;30826:168;;;;-1:-1:-1;;;30826:168:0;;16120:2:1;30826:168:0;;;16102:21:1;16159:2;16139:18;;;16132:30;16198:34;16178:18;;;16171:62;16269:26;16249:18;;;16242:54;16313:19;;30826:168:0;15918:420:1;30826:168:0;31007:21;31016:2;31020:7;31007:8;:21::i;:::-;30695:341;30625:411;;:::o;54011:239::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54106:1:::1;54095:8;:12;54087:70;;;;-1:-1:-1::0;;;54087:70:0::1;;;;;;;:::i;:::-;54168:15;:26:::0;;;54211:30:::1;::::0;23091:25:1;;;54211:30:0::1;::::0;23079:2:1;23064:18;54211:30:0::1;;;;;;;;54011:239:::0;:::o;31852:339::-;32047:41;4348:10;32080:7;32047:18;:41::i;:::-;32039:103;;;;-1:-1:-1;;;32039:103:0;;;;;;;:::i;:::-;32155:28;32165:4;32171:2;32175:7;32155:9;:28::i;42357:256::-;42454:7;42490:23;42507:5;42490:16;:23::i;:::-;42482:5;:31;42474:87;;;;-1:-1:-1;;;42474:87:0;;9770:2:1;42474:87:0;;;9752:21:1;9809:2;9789:18;;;9782:30;9848:34;9828:18;;;9821:62;-1:-1:-1;;;9899:18:1;;;9892:41;9950:19;;42474:87:0;9568:407:1;42474:87:0;-1:-1:-1;;;;;;42579:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42357:256::o;54729:225::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54811:1:::1;54787:21;:25;54779:34;;;::::0;::::1;;54876:37;::::0;54843:21:::1;::::0;54884:10:::1;::::0;54876:37;::::1;;;::::0;54843:21;;54825:15:::1;54876:37:::0;54825:15;54876:37;54843:21;54884:10;54876:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;54929:17:0::1;::::0;23091:25:1;;;54929:17:0::1;::::0;23079:2:1;23064:18;54929:17:0::1;22945:177:1::0;32262:185:0;32400:39;32417:4;32423:2;32427:7;32400:39;;;;;;;;;;;;:16;:39::i;42879:233::-;42954:7;42990:30;42777:10;:17;;42689:113;42990:30;42982:5;:38;42974:95;;;;-1:-1:-1;;;42974:95:0;;21917:2:1;42974:95:0;;;21899:21:1;21956:2;21936:18;;;21929:30;21995:34;21975:18;;;21968:62;-1:-1:-1;;;22046:18:1;;;22039:42;22098:19;;42974:95:0;21715:408:1;42974:95:0;43087:10;43098:5;43087:17;;;;;;;;:::i;:::-;;;;;;;;;43080:24;;42879:233;;;:::o;51650:335::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51754:1:::1;51739:5;:12;:16;51731:95;;;::::0;-1:-1:-1;;;51731:95:0;;11423:2:1;51731:95:0::1;::::0;::::1;11405:21:1::0;11462:2;11442:18;;;11435:30;11501:34;11481:18;;;11474:62;11572:34;11552:18;;;11545:62;-1:-1:-1;;;11623:19:1;;;11616:33;11666:19;;51731:95:0::1;11221:470:1::0;51731:95:0::1;51843:9;51838:98;51862:5;:12;51858:1;:16;51838:98;;;51919:5;51896:10;:20;51907:5;51913:1;51907:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51896:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51896:20:0;:28;;-1:-1:-1;;51896:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51876:3;::::1;::::0;::::1;:::i;:::-;;;;51838:98;;;;51971:5;51951:26;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;51650:335:::0;:::o;50606:125::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;50674:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50707:16;50718:4;50707:16;;;;;;:::i;29237:239::-:0;29309:7;29345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29345:16:0;29380:19;29372:73;;;;-1:-1:-1;;;29372:73:0;;16956:2:1;29372:73:0;;;16938:21:1;16995:2;16975:18;;;16968:30;17034:34;17014:18;;;17007:62;-1:-1:-1;;;17085:18:1;;;17078:39;17134:19;;29372:73:0;16754:405:1;54478:243:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54574:1:::1;54562:9;:13;54554:78;;;::::0;-1:-1:-1;;;54554:78:0;;9349:2:1;54554:78:0::1;::::0;::::1;9331:21:1::0;9388:2;9368:18;;;9361:30;9427:34;9407:18;;;9400:62;-1:-1:-1;;;9478:18:1;;;9471:50;9538:19;;54554:78:0::1;9147:416:1::0;54554:78:0::1;54644:12;:24:::0;;;54685:28:::1;::::0;23091:25:1;;;54685:28:0::1;::::0;23079:2:1;23064:18;54685:28:0::1;22945:177:1::0;51993:222:0;52051:4;-1:-1:-1;;;;;52076:18:0;;52068:72;;;;-1:-1:-1;;;52068:72:0;;22737:2:1;52068:72:0;;;22719:21:1;22776:2;22756:18;;;22749:30;22815:34;22795:18;;;22788:62;-1:-1:-1;;;22866:18:1;;;22859:39;22915:19;;52068:72:0;22535:405:1;52068:72:0;-1:-1:-1;;;;;52159:16:0;;;;;;:10;:16;;;;;;;;;:48;;-1:-1:-1;52179:8:0;;:24;;-1:-1:-1;;;52179:24:0;;-1:-1:-1;;;;;6450:32:1;;;52179:24:0;;;6432:51:1;52206:1:0;;52179:8;;:18;;6405::1;;52179:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;52152:55;51993:222;-1:-1:-1;;51993:222:0:o;28967:208::-;29039:7;-1:-1:-1;;;;;29067:19:0;;29059:74;;;;-1:-1:-1;;;29059:74:0;;16545:2:1;29059:74:0;;;16527:21:1;16584:2;16564:18;;;16557:30;16623:34;16603:18;;;16596:62;-1:-1:-1;;;16674:18:1;;;16667:40;16724:19;;29059:74:0;16343:406:1;29059:74:0;-1:-1:-1;;;;;;29151:16:0;;;;;:9;:16;;;;;;;28967:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;50234:231::-;50304:39;50323:10;50335:7;50304:18;:39::i;:::-;50296:101;;;;-1:-1:-1;;;50296:101:0;;14943:2:1;50296:101:0;;;14925:21:1;14982:2;14962:18;;;14955:30;15021:34;15001:18;;;14994:62;-1:-1:-1;;;15072:18:1;;;15065:47;15129:19;;50296:101:0;14741:413:1;50296:101:0;50409:14;50415:7;50409:5;:14::i;:::-;50439:18;;23091:25:1;;;50439:18:0;;23079:2:1;23064:18;50439::0;22945:177:1;51328:314:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51427:1:::1;51412:5;:12;:16;51404:85;;;::::0;-1:-1:-1;;;51404:85:0;;8581:2:1;51404:85:0::1;::::0;::::1;8563:21:1::0;8620:2;8600:18;;;8593:30;8659:34;8639:18;;;8632:62;8730:26;8710:18;;;8703:54;8774:19;;51404:85:0::1;8379:420:1::0;51404:85:0::1;51506:9;51501:97;51525:5;:12;51521:1;:16;51501:97;;;51582:4;51559:10;:20;51570:5;51576:1;51570:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51559:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51559:20:0;:27;;-1:-1:-1;;51559:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51539:3;::::1;::::0;::::1;:::i;:::-;;;;51501:97;;;;51628:5;51613:21;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;51328:314:::0;:::o;51024:151::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51101:14:::1;::::0;;::::1;::::0;;::::1;51100:15;-1:-1:-1::0;;51083:32:0;;::::1;::::0;::::1;::::0;;;51132:35:::1;::::0;51152:14;;7152::1;7145:22;7127:41;;51132:35:0::1;::::0;7115:2:1;7100:18;51132:35:0::1;;;;;;;;51024:151::o:0;54258:212::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;54344:1:::1;54333:8;:12;54325:70;;;;-1:-1:-1::0;;;54325:70:0::1;;;;;;;:::i;:::-;54406:6;:17:::0;;;54440:21:::1;::::0;23091:25:1;;;54440:21:0::1;::::0;23079:2:1;23064:18;54440:21:0::1;22945:177:1::0;49045:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29712:104::-;29768:13;29801:7;29794:14;;;;;:::i;53858:145::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;8215:7;;;;53917:32:::1;;53941:8;:6;:8::i;:::-;53917:32;;;53928:10;:8;:10::i;:::-;53965:29;53985:8;8215:7:::0;;;;;8144:86;53985:8:::1;53965:29;::::0;7152:14:1;;7145:22;7127:41;;7115:2;7100:18;53965:29:0::1;6987:187:1::0;53028:629:0;53101:10;53131;53123:51;;;;-1:-1:-1;;;53123:51:0;;17366:2:1;53123:51:0;;;17348:21:1;17405:2;17385:18;;;17378:30;17444;17424:18;;;17417:58;17492:18;;53123:51:0;17164:352:1;53123:51:0;53194:11;;;;;;;53186:45;;;;-1:-1:-1;;;53186:45:0;;18084:2:1;53186:45:0;;;18066:21:1;18123:2;18103:18;;;18096:30;-1:-1:-1;;;18142:18:1;;;18135:51;18203:18;;53186:45:0;17882:345:1;53186:45:0;53243:19;53265;:9;964:14;;872:114;53265:19;53243:41;;53317:12;;53303:11;:26;53295:53;;;;-1:-1:-1;;;53295:53:0;;9006:2:1;53295:53:0;;;8988:21:1;9045:2;9025:18;;;9018:30;-1:-1:-1;;;9064:18:1;;;9057:44;9118:18;;53295:53:0;8804:338:1;53295:53:0;53391:12;;53367:20;53381:6;53367:11;:20;:::i;:::-;:36;;53359:75;;;;-1:-1:-1;;;53359:75:0;;12255:2:1;53359:75:0;;;12237:21:1;12294:2;12274:18;;;12267:30;12333:28;12313:18;;;12306:56;12379:18;;53359:75:0;12053:350:1;53359:75:0;53476:6;;53467:15;;:6;:15;:::i;:::-;53454:9;:28;;53446:63;;;;-1:-1:-1;;;53446:63:0;;21148:2:1;53446:63:0;;;21130:21:1;21187:2;21167:18;;;21160:30;-1:-1:-1;;;21206:18:1;;;21199:52;21268:18;;53446:63:0;20946:346:1;53446:63:0;53525:9;53520:86;53544:6;53540:1;:10;53520:86;;;53572:21;53582:10;53572:9;:21::i;:::-;53552:3;;;;:::i;:::-;;;;53520:86;;;;53626:6;-1:-1:-1;;;;;53621:28:0;;53634:6;53642;;53621:28;;;;;;23301:25:1;;;23357:2;23342:18;;23335:34;23289:2;23274:18;;23127:248;31395:155:0;31490:52;4348:10;31523:8;31533;31490:18;:52::i;:::-;31395:155;;:::o;50024:202::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50116:30:0;::::1;50108:62;;;::::0;-1:-1:-1;;;50108:62:0;;13369:2:1;50108:62:0::1;::::0;::::1;13351:21:1::0;13408:2;13388:18;;;13381:30;-1:-1:-1;;;13427:18:1;;;13420:49;13486:18;;50108:62:0::1;13167:343:1::0;50108:62:0::1;50182:8;:35:::0;;-1:-1:-1;;;;;;50182:35:0::1;-1:-1:-1::0;;;;;50182:35:0;;;::::1;::::0;;;::::1;::::0;;50024:202::o;32518:328::-;32693:41;4348:10;32726:7;32693:18;:41::i;:::-;32685:103;;;;-1:-1:-1;;;32685:103:0;;;;;;;:::i;:::-;32799:39;32813:4;32819:2;32823:7;32832:5;32799:13;:39::i;:::-;32518:328;;;;:::o;29887:334::-;34421:4;34445:16;;;:7;:16;;;;;;29960:13;;-1:-1:-1;;;;;34445:16:0;29986:76;;;;-1:-1:-1;;;29986:76:0;;20330:2:1;29986:76:0;;;20312:21:1;20369:2;20349:18;;;20342:30;20408:34;20388:18;;;20381:62;-1:-1:-1;;;20459:18:1;;;20452:45;20514:19;;29986:76:0;20128:411:1;29986:76:0;30075:21;30099:10;:8;:10::i;:::-;30075:34;;30151:1;30133:7;30127:21;:25;:86;;;;;;;;;;;;;;;;;30179:7;30188:18;:7;:16;:18::i;:::-;30162:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30127:86;30120:93;29887:334;-1:-1:-1;;;29887:334:0:o;51183:137::-;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;51254:11:::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;51253:12;51239:26:::0;::::1;-1:-1:-1::0;;51239:26:0;;::::1;::::0;;;::::1;::::0;;;;51282:29:::1;::::0;::::1;::::0;::::1;::::0;51299:11;::::1;::::0;;::::1;7152:14:1::0;7145:22;7127:41;;7115:2;7100:18;;6987:187;6453:201:0;5617:6;;-1:-1:-1;;;;;5617:6:0;;;;;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;10601:2:1;6534:73:0::1;::::0;::::1;10583:21:1::0;10640:2;10620:18;;;10613:30;10679:34;10659:18;;;10652:62;-1:-1:-1;;;10730:18:1;;;10723:36;10776:19;;6534:73:0::1;10399:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;53673:151::-;53724:21;:9;1083:19;;1101:1;1083:19;;;994:127;53724:21;53756:10;53769:19;:9;964:14;;872:114;53769:19;53756:32;;53799:17;53809:2;53813;53799:9;:17::i;28598:305::-;28700:4;-1:-1:-1;;;;;;28737:40:0;;-1:-1:-1;;;28737:40:0;;:105;;-1:-1:-1;;;;;;;28794:48:0;;-1:-1:-1;;;28794:48:0;28737:105;:158;;;-1:-1:-1;;;;;;;;;;20403:40:0;;;28859:36;20294:157;38338:174;38413:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38413:29:0;-1:-1:-1;;;;;38413:29:0;;;;;;;;:24;;38467:23;38413:24;38467:14;:23::i;:::-;-1:-1:-1;;;;;38458:46:0;;;;;;;;;;;38338:174;;:::o;34650:348::-;34743:4;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;34760:73;;;;-1:-1:-1;;;34760:73:0;;14123:2:1;34760:73:0;;;14105:21:1;14162:2;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;-1:-1:-1;;;14252:18:1;;;14245:42;14304:19;;34760:73:0;13921:408:1;34760:73:0;34844:13;34860:23;34875:7;34860:14;:23::i;:::-;34844:39;;34913:5;-1:-1:-1;;;;;34902:16:0;:7;-1:-1:-1;;;;;34902:16:0;;:51;;;;34946:7;-1:-1:-1;;;;;34922:31:0;:20;34934:7;34922:11;:20::i;:::-;-1:-1:-1;;;;;34922:31:0;;34902:51;:87;;;-1:-1:-1;;;;;;31742:25:0;;;31718:4;31742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34957:32;34894:96;34650:348;-1:-1:-1;;;;34650:348:0:o;37642:578::-;37801:4;-1:-1:-1;;;;;37774:31:0;:23;37789:7;37774:14;:23::i;:::-;-1:-1:-1;;;;;37774:31:0;;37766:85;;;;-1:-1:-1;;;37766:85:0;;19920:2:1;37766:85:0;;;19902:21:1;19959:2;19939:18;;;19932:30;19998:34;19978:18;;;19971:62;-1:-1:-1;;;20049:18:1;;;20042:39;20098:19;;37766:85:0;19718:405:1;37766:85:0;-1:-1:-1;;;;;37870:16:0;;37862:65;;;;-1:-1:-1;;;37862:65:0;;12610:2:1;37862:65:0;;;12592:21:1;12649:2;12629:18;;;12622:30;12688:34;12668:18;;;12661:62;-1:-1:-1;;;12739:18:1;;;12732:34;12783:19;;37862:65:0;12408:400:1;37862:65:0;37940:39;37961:4;37967:2;37971:7;37940:20;:39::i;:::-;38044:29;38061:1;38065:7;38044:8;:29::i;:::-;-1:-1:-1;;;;;38086:15:0;;;;;;:9;:15;;;;;:20;;38105:1;;38086:15;:20;;38105:1;;38086:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38117:13:0;;;;;;:9;:13;;;;;:18;;38134:1;;38117:13;:18;;38134:1;;38117:18;:::i;:::-;;;;-1:-1:-1;;38146:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38146:21:0;-1:-1:-1;;;;;38146:21:0;;;;;;;;;38185:27;;38146:16;;38185:27;;;;;;;37642:578;;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;6907:6;6924:17;;;-1:-1:-1;;;;;;6924:17:0;;;;;;6957:40;;6907:6;;;;;;;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36945:360::-;37005:13;37021:23;37036:7;37021:14;:23::i;:::-;37005:39;;37057:48;37078:5;37093:1;37097:7;37057:20;:48::i;:::-;37146:29;37163:1;37167:7;37146:8;:29::i;:::-;-1:-1:-1;;;;;37188:16:0;;;;;;:9;:16;;;;;:21;;37208:1;;37188:16;:21;;37208:1;;37188:21;:::i;:::-;;;;-1:-1:-1;;37227:16:0;;;;:7;:16;;;;;;37220:23;;-1:-1:-1;;;;;;37220:23:0;;;37261:36;37235:7;;37227:16;-1:-1:-1;;;;;37261:36:0;;;;;37227:16;;37261:36;36994:311;36945:360;:::o;8944:118::-;8215:7;;;;8469:9;8461:38;;;;-1:-1:-1;;;8461:38:0;;15361:2:1;8461:38:0;;;15343:21:1;15400:2;15380:18;;;15373:30;-1:-1:-1;;;15419:18:1;;;15412:46;15475:18;;8461:38:0;15159:340:1;8461:38:0;9004:7:::1;:14:::0;;-1:-1:-1;;9004:14:0::1;9014:4;9004:14;::::0;;9034:20:::1;9041:12;4348:10:::0;;4268:98;9041:12:::1;9034:20;::::0;-1:-1:-1;;;;;6450:32:1;;;6432:51;;6420:2;6405:18;9034:20:0::1;6286:203:1::0;9203:120:0;8215:7;;;;8739:41;;;;-1:-1:-1;;;8739:41:0;;8232:2:1;8739:41:0;;;8214:21:1;8271:2;8251:18;;;8244:30;-1:-1:-1;;;8290:18:1;;;8283:50;8350:18;;8739:41:0;8030:344:1;8739:41:0;9262:7:::1;:15:::0;;-1:-1:-1;;9262:15:0::1;::::0;;9293:22:::1;4348:10:::0;9302:12:::1;4268:98:::0;38654:315;38809:8;-1:-1:-1;;;;;38800:17:0;:5;-1:-1:-1;;;;;38800:17:0;;;38792:55;;;;-1:-1:-1;;;38792:55:0;;13015:2:1;38792:55:0;;;12997:21:1;13054:2;13034:18;;;13027:30;13093:27;13073:18;;;13066:55;13138:18;;38792:55:0;12813:349:1;38792:55:0;-1:-1:-1;;;;;38858:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38858:46:0;;;;;;;;;;38920:41;;7127::1;;;38920::0;;7100:18:1;38920:41:0;;;;;;;38654:315;;;:::o;33728:::-;33885:28;33895:4;33901:2;33905:7;33885:9;:28::i;:::-;33932:48;33955:4;33961:2;33965:7;33974:5;33932:22;:48::i;:::-;33924:111;;;;-1:-1:-1;;;33924:111:0;;;;;;;:::i;50495:103::-;50547:13;50580:10;50573:17;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;35340:110;35416:26;35426:2;35430:7;35416:26;;;;;;;;;;;;:9;:26::i;43725:589::-;-1:-1:-1;;;;;43931:18:0;;43927:187;;43966:40;43998:7;45141:10;:17;;45114:24;;;;:15;:24;;;;;:44;;;45169:24;;;;;;;;;;;;45037:164;43966:40;43927:187;;;44036:2;-1:-1:-1;;;;;44028:10:0;:4;-1:-1:-1;;;;;44028:10:0;;44024:90;;44055:47;44088:4;44094:7;44055:32;:47::i;:::-;-1:-1:-1;;;;;44128:16:0;;44124:183;;44161:45;44198:7;44161:36;:45::i;44124:183::-;44234:4;-1:-1:-1;;;;;44228:10:0;:2;-1:-1:-1;;;;;44228:10:0;;44224:83;;44255:40;44283:2;44287:7;44255:27;:40::i;39534:799::-;39689:4;-1:-1:-1;;;;;39710:13:0;;10473:20;10521:8;39706:620;;39746:72;;-1:-1:-1;;;39746:72:0;;-1:-1:-1;;;;;39746:36:0;;;;;:72;;4348:10;;39797:4;;39803:7;;39812:5;;39746:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39746:72:0;;;;;;;;-1:-1:-1;;39746:72:0;;;;;;;;;;;;:::i;:::-;;;39742:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39988:13:0;;39984:272;;40031:60;;-1:-1:-1;;;40031:60:0;;;;;;;:::i;39984:272::-;40206:6;40200:13;40191:6;40187:2;40183:15;40176:38;39742:529;-1:-1:-1;;;;;;39869:51:0;-1:-1:-1;;;39869:51:0;;-1:-1:-1;39862:58:0;;39706:620;-1:-1:-1;40310:4:0;39534:799;;;;;;:::o;35677:321::-;35807:18;35813:2;35817:7;35807:5;:18::i;:::-;35858:54;35889:1;35893:2;35897:7;35906:5;35858:22;:54::i;:::-;35836:154;;;;-1:-1:-1;;;35836:154:0;;;;;;;:::i;45828:988::-;46094:22;46144:1;46119:22;46136:4;46119:16;:22::i;:::-;:26;;;;:::i;:::-;46156:18;46177:26;;;:17;:26;;;;;;46094:51;;-1:-1:-1;46310:28:0;;;46306:328;;-1:-1:-1;;;;;46377:18:0;;46355:19;46377:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46428:30;;;;;;:44;;;46545:30;;:17;:30;;;;;:43;;;46306:328;-1:-1:-1;46730:26:0;;;;:17;:26;;;;;;;;46723:33;;;-1:-1:-1;;;;;46774:18:0;;;;;:12;:18;;;;;:34;;;;;;;46767:41;45828:988::o;47111:1079::-;47389:10;:17;47364:22;;47389:21;;47409:1;;47389:21;:::i;:::-;47421:18;47442:24;;;:15;:24;;;;;;47815:10;:26;;47364:46;;-1:-1:-1;47442:24:0;;47364:46;;47815:26;;;;;;:::i;:::-;;;;;;;;;47793:48;;47879:11;47854:10;47865;47854:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47959:28;;;:15;:28;;;;;;;:41;;;48131:24;;;;;48124:31;48166:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47182:1008;;;47111:1079;:::o;44615:221::-;44700:14;44717:20;44734:2;44717:16;:20::i;:::-;-1:-1:-1;;;;;44748:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44793:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44615:221:0:o;36334:382::-;-1:-1:-1;;;;;36414:16:0;;36406:61;;;;-1:-1:-1;;;36406:61:0;;17723:2:1;36406:61:0;;;17705:21:1;;;17742:18;;;17735:30;17801:34;17781:18;;;17774:62;17853:18;;36406:61:0;17521:356:1;36406:61:0;34421:4;34445:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34445:16:0;:30;36478:58;;;;-1:-1:-1;;;36478:58:0;;11898:2:1;36478:58:0;;;11880:21:1;11937:2;11917:18;;;11910:30;11976;11956:18;;;11949:58;12024:18;;36478:58:0;11696:352:1;36478:58:0;36549:45;36578:1;36582:2;36586:7;36549:20;:45::i;:::-;-1:-1:-1;;;;;36607:13:0;;;;;;:9;:13;;;;;:18;;36624:1;;36607:13;:18;;36624:1;;36607:18;:::i;:::-;;;;-1:-1:-1;;36636:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36636:21:0;-1:-1:-1;;;;;36636:21:0;;;;;;;;36675:33;;36636:16;;;36675:33;;36636:16;;36675:33;36334:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:184::-;4856:6;4909:2;4897:9;4888:7;4884:23;4880:32;4877:52;;;4925:1;4922;4915:12;4877:52;-1:-1:-1;4948:16:1;;4786:184;-1:-1:-1;4786:184:1:o;4975:257::-;5016:3;5054:5;5048:12;5081:6;5076:3;5069:19;5097:63;5153:6;5146:4;5141:3;5137:14;5130:4;5123:5;5119:16;5097:63;:::i;:::-;5214:2;5193:15;-1:-1:-1;;5189:29:1;5180:39;;;;5221:4;5176:50;;4975:257;-1:-1:-1;;4975:257:1:o;5237:569::-;5455:13;;5398:3;;5429;;5508:4;5535:15;;;5398:3;5578:201;5592:6;5589:1;5586:13;5578:201;;;5659:13;;-1:-1:-1;;;;;5655:39:1;5641:54;;5717:14;;;;5754:15;;;;5691:1;5607:9;5578:201;;;-1:-1:-1;5795:5:1;;5237:569;-1:-1:-1;;;;;;5237:569:1:o;5811:470::-;5990:3;6028:6;6022:13;6044:53;6090:6;6085:3;6078:4;6070:6;6066:17;6044:53;:::i;:::-;6160:13;;6119:16;;;;6182:57;6160:13;6119:16;6216:4;6204:17;;6182:57;:::i;:::-;6255:20;;5811:470;-1:-1:-1;;;;5811:470:1:o;6494:488::-;-1:-1:-1;;;;;6763:15:1;;;6745:34;;6815:15;;6810:2;6795:18;;6788:43;6862:2;6847:18;;6840:34;;;6910:3;6905:2;6890:18;;6883:31;;;6688:4;;6931:45;;6956:19;;6948:6;6931:45;:::i;:::-;6923:53;6494:488;-1:-1:-1;;;;;;6494:488:1:o;7402:219::-;7551:2;7540:9;7533:21;7514:4;7571:44;7611:2;7600:9;7596:18;7588:6;7571:44;:::i;9980:414::-;10182:2;10164:21;;;10221:2;10201:18;;;10194:30;10260:34;10255:2;10240:18;;10233:62;-1:-1:-1;;;10326:2:1;10311:18;;10304:48;10384:3;10369:19;;9980:414::o;15504:409::-;15706:2;15688:21;;;15745:2;15725:18;;;15718:30;15784:34;15779:2;15764:18;;15757:62;-1:-1:-1;;;15850:2:1;15835:18;;15828:43;15903:3;15888:19;;15504:409::o;18997:356::-;19199:2;19181:21;;;19218:18;;;19211:30;19277:34;19272:2;19257:18;;19250:62;19344:2;19329:18;;18997:356::o;21297:413::-;21499:2;21481:21;;;21538:2;21518:18;;;21511:30;21577:34;21572:2;21557:18;;21550:62;-1:-1:-1;;;21643:2:1;21628:18;;21621:47;21700:3;21685:19;;21297:413::o;23380:275::-;23451:2;23445:9;23516:2;23497:13;;-1:-1:-1;;23493:27:1;23481:40;;23551:18;23536:34;;23572:22;;;23533:62;23530:88;;;23598:18;;:::i;:::-;23634:2;23627:22;23380:275;;-1:-1:-1;23380:275:1:o;23660:128::-;23700:3;23731:1;23727:6;23724:1;23721:13;23718:39;;;23737:18;;:::i;:::-;-1:-1:-1;23773:9:1;;23660:128::o;23793:120::-;23833:1;23859;23849:35;;23864:18;;:::i;:::-;-1:-1:-1;23898:9:1;;23793:120::o;23918:168::-;23958:7;24024:1;24020;24016:6;24012:14;24009:1;24006:21;24001:1;23994:9;23987:17;23983:45;23980:71;;;24031:18;;:::i;:::-;-1:-1:-1;24071:9:1;;23918:168::o;24091:125::-;24131:4;24159:1;24156;24153:8;24150:34;;;24164:18;;:::i;:::-;-1:-1:-1;24201:9:1;;24091:125::o;24221:258::-;24293:1;24303:113;24317:6;24314:1;24311:13;24303:113;;;24393:11;;;24387:18;24374:11;;;24367:39;24339:2;24332:10;24303:113;;;24434:6;24431:1;24428:13;24425:48;;;-1:-1:-1;;24469:1:1;24451:16;;24444:27;24221:258::o;24484:380::-;24563:1;24559:12;;;;24606;;;24627:61;;24681:4;24673:6;24669:17;24659:27;;24627:61;24734:2;24726:6;24723:14;24703:18;24700:38;24697:161;;;24780:10;24775:3;24771:20;24768:1;24761:31;24815:4;24812:1;24805:15;24843:4;24840:1;24833:15;24697:161;;24484:380;;;:::o;24869:135::-;24908:3;-1:-1:-1;;24929:17:1;;24926:43;;;24949:18;;:::i;:::-;-1:-1:-1;24996:1:1;24985:13;;24869:135::o;25009:112::-;25041:1;25067;25057:35;;25072:18;;:::i;:::-;-1:-1:-1;25106:9:1;;25009:112::o;25126:127::-;25187:10;25182:3;25178:20;25175:1;25168:31;25218:4;25215:1;25208:15;25242:4;25239:1;25232:15;25258:127;25319:10;25314:3;25310:20;25307:1;25300:31;25350:4;25347:1;25340:15;25374:4;25371:1;25364:15;25390:127;25451:10;25446:3;25442:20;25439:1;25432:31;25482:4;25479:1;25472:15;25506:4;25503:1;25496:15;25522:127;25583:10;25578:3;25574:20;25571:1;25564:31;25614:4;25611:1;25604:15;25638:4;25635:1;25628:15;25654:127;25715:10;25710:3;25706:20;25703:1;25696:31;25746:4;25743:1;25736:15;25770:4;25767:1;25760:15;25786:131;-1:-1:-1;;;;;;25860:32:1;;25850:43;;25840:71;;25907:1;25904;25897:12

Swarm Source

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