ETH Price: $2,585.16 (-1.18%)

Token

CyberDucksEvolution (CDE)
 

Overview

Max Total Supply

7,777 CDE

Holders

924

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CDE
0x18580564edc3501dd13b57df9f17981e0e9ac54a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CyberDucksEvolution

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-24
*/

// SPDX-License-Identifier: MIT

// 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/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: contracts/cyberducks.sol



pragma solidity ^0.8.0;

interface Opensea {
    function balanceOf(address tokenOwner, uint tokenId) external view returns (bool);

    function safeTransferFrom(address _from, address _to, uint _id, uint _value, bytes memory _data) external;
}




pragma solidity ^0.8.0;
library MerkleProof {
    function verify(bytes32 root, bytes32 leaf, bytes32[] memory proof) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}









pragma solidity ^0.8.11;

contract CyberDucksEvolution is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_DUCKS = 7777;
    uint256 public constant RESERVES = 27;
    bool public paused = false;
    bool public revealed = false;
    string public baseExtension = ".json";
    string public notRevealedUri;
    string public baseTokenURI;
    bytes32 public merkleRoot;
    uint256 private _maxPerTx = 10;
    uint256 private _price = 40000000000000000; // .04 ETH
    uint256 private _price_wl = 30000000000000000; // .03 ETH
    uint256 private _saleTime = 1640736000; // 29/12/2021 @ 00:00:00 (GMT)
    address private OPENSEA_STORE = 0x495f947276749Ce646f68AC8c248420045cb7b5e;

    mapping(uint256 => bool) ducksUsedForFree;
    mapping(address => uint256) addressToWLDucksMinted;

    uint256[150] private genesisDucks = [
    33545808174778596038611434130458611713285808338920316774188539806835659505665,
    33545808174778596038611434130458611713285808338920316774188539807935171133441,
    33545808174778596038611434130458611713285808338920316774188539809034682761217,
    33545808174778596038611434130458611713285808338920316774188539810134194388993,
    33545808174778596038611434130458611713285808338920316774188539811233706016769,
    33545808174778596038611434130458611713285808338920316774188539812333217644545,
    33545808174778596038611434130458611713285808338920316774188539813432729272321,
    33545808174778596038611434130458611713285808338920316774188539814532240900097,
    33545808174778596038611434130458611713285808338920316774188539815631752527873,
    33545808174778596038611434130458611713285808338920316774188539816731264155649,
    33545808174778596038611434130458611713285808338920316774188539817830775783425,
    33545808174778596038611434130458611713285808338920316774188539818930287411201,
    33545808174778596038611434130458611713285808338920316774188539820029799038977,
    33545808174778596038611434130458611713285808338920316774188539821129310666753,
    33545808174778596038611434130458611713285808338920316774188539822228822294529,
    33545808174778596038611434130458611713285808338920316774188539823328333922305,
    33545808174778596038611434130458611713285808338920316774188539824427845550081,
    33545808174778596038611434130458611713285808338920316774188539825527357177857,
    33545808174778596038611434130458611713285808338920316774188539826626868805633,
    33545808174778596038611434130458611713285808338920316774188539827726380433409,
    33545808174778596038611434130458611713285808338920316774188539829925403688961,
    33545808174778596038611434130458611713285808338920316774188539831024915316737,
    33545808174778596038611434130458611713285808338920316774188539832124426944513,
    33545808174778596038611434130458611713285808338920316774188539833223938572289,
    33545808174778596038611434130458611713285808338920316774188539834323450200065,
    33545808174778596038611434130458611713285808338920316774188539835422961827841,
    33545808174778596038611434130458611713285808338920316774188539836522473455617,
    33545808174778596038611434130458611713285808338920316774188539837621985083393,
    33545808174778596038611434130458611713285808338920316774188539838721496711169,
    33545808174778596038611434130458611713285808338920316774188539839821008338945,
    33545808174778596038611434130458611713285808338920316774188539840920519966721,
    33545808174778596038611434130458611713285808338920316774188539842020031594497,
    33545808174778596038611434130458611713285808338920316774188539843119543222273,
    33545808174778596038611434130458611713285808338920316774188539844219054850049,
    33545808174778596038611434130458611713285808338920316774188539845318566477825,
    33545808174778596038611434130458611713285808338920316774188539846418078105601,
    33545808174778596038611434130458611713285808338920316774188539847517589733377,
    33545808174778596038611434130458611713285808338920316774188539848617101361153,
    33545808174778596038611434130458611713285808338920316774188539849716612988929,
    33545808174778596038611434130458611713285808338920316774188539850816124616705,
    33545808174778596038611434130458611713285808338920316774188539851915636244481,
    33545808174778596038611434130458611713285808338920316774188539853015147872257,
    33545808174778596038611434130458611713285808338920316774188539854114659500033,
    33545808174778596038611434130458611713285808338920316774188539855214171127809,
    33545808174778596038611434130458611713285808338920316774188539856313682755585,
    33545808174778596038611434130458611713285808338920316774188539857413194383361,
    33545808174778596038611434130458611713285808338920316774188539858512706011137,
    33545808174778596038611434130458611713285808338920316774188539859612217638913,
    33545808174778596038611434130458611713285808338920316774188539860711729266689,
    33545808174778596038611434130458611713285808338920316774188539861811240894465,
    33545808174778596038611434130458611713285808338920316774188539862910752522241,
    33545808174778596038611434130458611713285808338920316774188539864010264150017,
    33545808174778596038611434130458611713285808338920316774188539865109775777793,
    33545808174778596038611434130458611713285808338920316774188539866209287405569,
    33545808174778596038611434130458611713285808338920316774188539867308799033345,
    33545808174778596038611434130458611713285808338920316774188539868408310661121,
    33545808174778596038611434130458611713285808338920316774188539869507822288897,
    33545808174778596038611434130458611713285808338920316774188539870607333916673,
    33545808174778596038611434130458611713285808338920316774188539871706845544449,
    33545808174778596038611434130458611713285808338920316774188539872806357172225,
    33545808174778596038611434130458611713285808338920316774188539873905868800001,
    33545808174778596038611434130458611713285808338920316774188539875005380427777,
    33545808174778596038611434130458611713285808338920316774188539876104892055553,
    33545808174778596038611434130458611713285808338920316774188539877204403683329,
    33545808174778596038611434130458611713285808338920316774188539878303915311105,
    33545808174778596038611434130458611713285808338920316774188539879403426938881,
    33545808174778596038611434130458611713285808338920316774188539880502938566657,
    33545808174778596038611434130458611713285808338920316774188539881602450194433,
    33545808174778596038611434130458611713285808338920316774188539882701961822209,
    33545808174778596038611434130458611713285808338920316774188539883801473449985,
    33545808174778596038611434130458611713285808338920316774188539884900985077761,
    33545808174778596038611434130458611713285808338920316774188539886000496705537,
    33545808174778596038611434130458611713285808338920316774188539887100008333313,
    33545808174778596038611434130458611713285808338920316774188539888199519961089,
    33545808174778596038611434130458611713285808338920316774188539889299031588865,
    33545808174778596038611434130458611713285808338920316774188539890398543216641,
    33545808174778596038611434130458611713285808338920316774188539891498054844417,
    33545808174778596038611434130458611713285808338920316774188539892597566472193,
    33545808174778596038611434130458611713285808338920316774188539893697078099969,
    33545808174778596038611434130458611713285808338920316774188539894796589727745,
    33545808174778596038611434130458611713285808338920316774188539895896101355521,
    33545808174778596038611434130458611713285808338920316774188539896995612983297,
    33545808174778596038611434130458611713285808338920316774188539898095124611073,
    33545808174778596038611434130458611713285808338920316774188539899194636238849,
    33545808174778596038611434130458611713285808338920316774188539900294147866625,
    33545808174778596038611434130458611713285808338920316774188539901393659494401,
    33545808174778596038611434130458611713285808338920316774188539902493171122177,
    33545808174778596038611434130458611713285808338920316774188539903592682749953,
    33545808174778596038611434130458611713285808338920316774188539904692194377729,
    33545808174778596038611434130458611713285808338920316774188539905791706005505,
    33545808174778596038611434130458611713285808338920316774188539906891217633281,
    33545808174778596038611434130458611713285808338920316774188539907990729261057,
    33545808174778596038611434130458611713285808338920316774188539909090240888833,
    33545808174778596038611434130458611713285808338920316774188539910189752516609,
    33545808174778596038611434130458611713285808338920316774188539911289264144385,
    33545808174778596038611434130458611713285808338920316774188539912388775772161,
    33545808174778596038611434130458611713285808338920316774188539913488287399937,
    33545808174778596038611434130458611713285808338920316774188539914587799027713,
    33545808174778596038611434130458611713285808338920316774188539915687310655489,
    33545808174778596038611434130458611713285808338920316774188539916786822283265,
    33545808174778596038611434130458611713285808338920316774188539917886333911041,
    33545808174778596038611434130458611713285808338920316774188539918985845538817,
    33545808174778596038611434130458611713285808338920316774188539920085357166593,
    33545808174778596038611434130458611713285808338920316774188539921184868794369,
    33545808174778596038611434130458611713285808338920316774188539922284380422145,
    33545808174778596038611434130458611713285808338920316774188539923383892049921,
    33545808174778596038611434130458611713285808338920316774188539924483403677697,
    33545808174778596038611434130458611713285808338920316774188539925582915305473,
    33545808174778596038611434130458611713285808338920316774188539926682426933249,
    33545808174778596038611434130458611713285808338920316774188539927781938561025,
    33545808174778596038611434130458611713285808338920316774188539928881450188801,
    33545808174778596038611434130458611713285808338920316774188539929980961816577,
    33545808174778596038611434130458611713285808338920316774188539931080473444353,
    33545808174778596038611434130458611713285808338920316774188539932179985072129,
    33545808174778596038611434130458611713285808338920316774188539933279496699905,
    33545808174778596038611434130458611713285808338920316774188539934379008327681,
    33545808174778596038611434130458611713285808338920316774188539935478519955457,
    33545808174778596038611434130458611713285808338920316774188539936578031583233,
    33545808174778596038611434130458611713285808338920316774188539937677543211009,
    33545808174778596038611434130458611713285808338920316774188539938777054838785,
    33545808174778596038611434130458611713285808338920316774188539939876566466561,
    33545808174778596038611434130458611713285808338920316774188539940976078094337,
    33545808174778596038611434130458611713285808338920316774188539942075589722113,
    33545808174778596038611434130458611713285808338920316774188539943175101349889,
    33545808174778596038611434130458611713285808338920316774188539944274612977665,
    33545808174778596038611434130458611713285808338920316774188539945374124605441,
    33545808174778596038611434130458611713285808338920316774188539946473636233217,
    33545808174778596038611434130458611713285808338920316774188539947573147860993,
    33545808174778596038611434130458611713285808338920316774188539948672659488769,
    33545808174778596038611434130458611713285808338920316774188539949772171116545,
    33545808174778596038611434130458611713285808338920316774188539950871682744321,
    33545808174778596038611434130458611713285808338920316774188539951971194372097,
    33545808174778596038611434130458611713285808338920316774188539953070705999873,
    33545808174778596038611434130458611713285808338920316774188539954170217627649,
    33545808174778596038611434130458611713285808338920316774188539955269729255425,
    33545808174778596038611434130458611713285808338920316774188539956369240883201,
    33545808174778596038611434130458611713285808338920316774188539957468752510977,
    33545808174778596038611434130458611713285808338920316774188539958568264138753,
    33545808174778596038611434130458611713285808338920316774188539959667775766529,
    33545808174778596038611434130458611713285808338920316774188539960767287394305,
    33545808174778596038611434130458611713285808338920316774188539961866799022081,
    33545808174778596038611434130458611713285808338920316774188539962966310649857,
    33545808174778596038611434130458611713285808338920316774188539964065822277633,
    33545808174778596038611434130458611713285808338920316774188539965165333905409,
    33545808174778596038611434130458611713285808338920316774188539966264845533185,
    33545808174778596038611434130458611713285808338920316774188539967364357160961,
    33545808174778596038611434130458611713285808338920316774188539968463868788737,
    33545808174778596038611434130458611713285808338920316774188539969563380416513,
    33545808174778596038611434130458611713285808338920316774188539970662892044289,
    33545808174778596038611434130458611713285808338920316774188539971762403672065
    ];

    constructor(string memory baseURI, string memory initNotRevealedUri,bytes32 _merkleRoot)
    ERC721("CyberDucksEvolution", "CDE")
    {
        setBaseURI(baseURI);
        setNotRevealedURI(initNotRevealedUri);
        setMerkleRoot(_merkleRoot);
    }

    modifier preSaleIsOpen() {
        require(
            block.timestamp >= _saleTime - 172800, //2g
            "The presale has not yet started"
        );
        require(
            block.timestamp < _saleTime,
            "The public sale has already started"
        );
        _;
    }

    modifier saleIsOpen() {
        require(block.timestamp >= _saleTime, "Sale is not yet open");
        _;
    }

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

    function setPrice(uint256 _newWEIPrice) public onlyOwner {
        _price = _newWEIPrice;
    }

    function getSaleTime() public view returns (uint256) {
        return _saleTime;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function getWLDucksMinted(address _address) internal view returns (uint256) {
        return addressToWLDucksMinted[_address];
    }

    function getWLDucksAmount() internal view returns (uint256) {
        uint256 ducksOwned = 0;

        for (uint i = 0; i < genesisDucks.length; i ++) {
            if(Opensea(OPENSEA_STORE).balanceOf(msg.sender,genesisDucks[i])){
                ducksOwned += 1;
            }
        }

        if(ducksOwned == 0)
            ducksOwned = 1;

        return ducksOwned * 5;
    }

    function getGenesisDucks() internal returns (uint256) {
        uint256 ducksOwned = 0;

        for (uint i = 0; i < genesisDucks.length; i ++) {
            if(!ducksUsedForFree[genesisDucks[i]]){//Exclude genesis already used
                if(Opensea(OPENSEA_STORE).balanceOf(msg.sender,genesisDucks[i])){
                    ducksOwned += 1;
                    ducksUsedForFree[genesisDucks[i]] = true;
                }
            }
        }

        return ducksOwned;
    }

    function publicCheckFreeDucks() public view returns(uint256) {
        uint256 ducksOwned = 0;

        for (uint i = 0; i < genesisDucks.length; i ++) {
            if(!ducksUsedForFree[genesisDucks[i]]){//Exclude genesis already used
                if(Opensea(OPENSEA_STORE).balanceOf(msg.sender,genesisDucks[i])){
                    ducksOwned += 1;
                }
            }
        }

        return ducksOwned;
    }

    function getMintedDucks() public view returns(uint256){
        return totalSupply();
    }

    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) public pure returns (bool) {
        return MerkleProof.verify(root, leaf, proof);
    }

    function whiteListMint(uint256 _count,bytes32[] calldata _merkleProof) public payable preSaleIsOpen{
        uint256 totalSupply = totalSupply();

        require(
            !paused,
            "The contract is paused"
        );

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(
            verify(_merkleProof, merkleRoot, leaf),
            "You are not in whitelist"
        );

        uint256 wlDucksAmount = getWLDucksAmount();

        if(addressToWLDucksMinted[msg.sender] + _count >= wlDucksAmount){
            _count = wlDucksAmount - addressToWLDucksMinted[msg.sender];
        }

        require(
            wlDucksAmount > 0,
            "No more Ducks to be minted"
        );

        require(
            _count <= _maxPerTx,
            "You can mint up to 10 Ducks per time"
        );

        require(
            _price_wl * _count <= msg.value,
            "Transaction value too low");

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        addressToWLDucksMinted[msg.sender] += _count;
    }

    function freeMint() public payable {
        uint256 totalSupply = totalSupply();

        require(
            !paused,
            "The contract is paused"
        );

        uint256 _genesisDucks = getGenesisDucks();

        require(
            _genesisDucks > 0,
            "You cannot claim any other Ducks for free"
        );

        for (uint256 i; i < _genesisDucks; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mint(uint256 _count) public payable saleIsOpen{
        uint256 totalSupply = totalSupply();

        require(
            !paused,
            "The contract is paused"
        );

        require(
            _count > 0,
            "Mint at least 1 Duck"
        );

        require(
            _count <= _maxPerTx,
            "You can mint up to 10 Ducks per time"
        );

        require(
            totalSupply < MAX_DUCKS,
            "All Duck are already minted");

        require(
            totalSupply + _count <= MAX_DUCKS,
            "This amount of Ducks will exceed max supply"
        );

        require(
            _price * _count <= msg.value,
            "Transaction value too low");

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function walletOfOwner(address _address) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_address);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_address, i);
        }
        return tokensId;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if(revealed == false) {
            return notRevealedUri;
        }

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

    /*only owner*/
    function reveal(bool _reveal) public onlyOwner() {
        revealed = _reveal;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setSaleTime(uint256 _time) public onlyOwner {
        _saleTime = _time;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function withdrawAll() public payable onlyOwner {

        (bool hs, ) = payable(0xA8AC6BFc4D6B1339A37574705B951475771f9a9D).call{value: address(this).balance * 15 / 100}("");
        require(hs);

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function reserveDUCKS(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_DUCKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedDucks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCheckFreeDucks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveDUCKS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

600a805461ffff60a01b1916905560c06040526005608081905264173539b7b760d91b60a09081526200003691600b9190620019c8565b50600a600f55668e1bc9bf040000601055666a94d74f4300006011556361cba500601255601380546001600160a01b03191673495f947276749ce646f68ac8c248420045cb7b5e179055604080516112c0810182527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000a000000000181527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000b000000000160208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000c0000000001918101919091527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000d000000000160608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000e000000000160808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000000f000000000160a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f700000000000010000000000160c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f700000000000011000000000160e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001200000000016101008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001300000000016101208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001400000000016101408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001500000000016101608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001600000000016101808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001700000000016101a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001800000000016101c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001900000000016101e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001a00000000016102008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001b00000000016102208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001c00000000016102408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001d00000000016102608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000001f00000000016102808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002000000000016102a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002100000000016102c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002200000000016102e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002300000000016103008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002400000000016103208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002500000000016103408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002600000000016103608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002700000000016103808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002800000000016103a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002900000000016103c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002a00000000016103e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002b00000000016104008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002c00000000016104208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002d00000000016104408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002e00000000016104608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000002f00000000016104808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003000000000016104a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003100000000016104c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003200000000016104e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003300000000016105008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003400000000016105208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003500000000016105408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003600000000016105608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003700000000016105808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003800000000016105a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003900000000016105c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003a00000000016105e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003b00000000016106008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003c00000000016106208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003d00000000016106408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003e00000000016106608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000003f00000000016106808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004000000000016106a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004100000000016106c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004200000000016106e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004300000000016107008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004400000000016107208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004500000000016107408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004600000000016107608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004700000000016107808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004800000000016107a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004900000000016107c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004a00000000016107e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004b00000000016108008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004c00000000016108208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004d00000000016108408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004e00000000016108608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000004f00000000016108808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005000000000016108a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005100000000016108c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005200000000016108e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005300000000016109008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005400000000016109208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005500000000016109408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005600000000016109608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005700000000016109808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005800000000016109a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005900000000016109c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005a00000000016109e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005b0000000001610a008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005c0000000001610a208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005d0000000001610a408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005e0000000001610a608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000005f0000000001610a808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000600000000001610aa08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000610000000001610ac08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000620000000001610ae08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000630000000001610b008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000640000000001610b208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000650000000001610b408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000660000000001610b608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000670000000001610b808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000680000000001610ba08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000690000000001610bc08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006a0000000001610be08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006b0000000001610c008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006c0000000001610c208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006d0000000001610c408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006e0000000001610c608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000006f0000000001610c808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000700000000001610ca08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000710000000001610cc08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000720000000001610ce08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000730000000001610d008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000740000000001610d208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000750000000001610d408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000760000000001610d608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000770000000001610d808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000780000000001610da08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000790000000001610dc08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007a0000000001610de08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007b0000000001610e008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007c0000000001610e208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007d0000000001610e408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007e0000000001610e608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000007f0000000001610e808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000800000000001610ea08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000810000000001610ec08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000820000000001610ee08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000830000000001610f008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000840000000001610f208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000850000000001610f408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000860000000001610f608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000870000000001610f808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000880000000001610fa08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000890000000001610fc08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008a0000000001610fe08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008b00000000016110008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008c00000000016110208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008d00000000016110408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008e00000000016110608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000008f00000000016110808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009000000000016110a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009100000000016110c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009200000000016110e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009300000000016111008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009400000000016111208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009500000000016111408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009600000000016111608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009700000000016111808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009800000000016111a08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009900000000016111c08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009a00000000016111e08201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009b00000000016112008201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009c00000000016112208201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009d00000000016112408201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009e00000000016112608201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f70000000000009f00000000016112808201527f4a2a412c1ddf7e6041d7b17bd77ca95e76e4f0f7000000000000a000000000016112a08201526200176c90601690609662001a57565b503480156200177a57600080fd5b5060405162004e4f38038062004e4f8339810160408190526200179d9162001b6b565b604080518082018252601381527f43796265724475636b7345766f6c7574696f6e0000000000000000000000000060208083019182528351808501909452600384526243444560e81b908401528151919291620017fd91600091620019c8565b50805162001813906001906020840190620019c8565b505050620018306200182a6200185a60201b60201c565b6200185e565b6200183b83620018b0565b620018468262001918565b620018518162001978565b50505062001c1b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620018ff5760405162461bcd60e51b8152602060048201819052602482015260008051602062004e2f83398151915260448201526064015b60405180910390fd5b80516200191490600d906020840190620019c8565b5050565b600a546001600160a01b03163314620019635760405162461bcd60e51b8152602060048201819052602482015260008051602062004e2f8339815191526044820152606401620018f6565b80516200191490600c906020840190620019c8565b600a546001600160a01b03163314620019c35760405162461bcd60e51b8152602060048201819052602482015260008051602062004e2f8339815191526044820152606401620018f6565b600e55565b828054620019d69062001bde565b90600052602060002090601f016020900481019282620019fa576000855562001a45565b82601f1062001a1557805160ff191683800117855562001a45565b8280016001018555821562001a45579182015b8281111562001a4557825182559160200191906001019062001a28565b5062001a5392915062001a87565b5090565b826096810192821562001a45579160200282018281111562001a4557825182559160200191906001019062001a28565b5b8082111562001a53576000815560010162001a88565b634e487b7160e01b600052604160045260246000fd5b600082601f83011262001ac657600080fd5b81516001600160401b038082111562001ae35762001ae362001a9e565b604051601f8301601f19908116603f0116810190828211818310171562001b0e5762001b0e62001a9e565b8160405283815260209250868385880101111562001b2b57600080fd5b600091505b8382101562001b4f578582018301518183018401529082019062001b30565b8382111562001b615760008385830101525b9695505050505050565b60008060006060848603121562001b8157600080fd5b83516001600160401b038082111562001b9957600080fd5b62001ba78783880162001ab4565b9450602086015191508082111562001bbe57600080fd5b5062001bcd8682870162001ab4565b925050604084015190509250925092565b600181811c9082168062001bf357607f821691505b6020821081141562001c1557634e487b7160e01b600052602260045260246000fd5b50919050565b6132048062001c2b6000396000f3fe60806040526004361061027d5760003560e01c80635c975abb1161014f578063a0712d68116100c1578063cbf21fe41161007a578063cbf21fe41461070d578063d547cfb714610722578063da3ef23f14610737578063e985e9c514610757578063f2c4ce1e146107a0578063f2fde38b146107c057600080fd5b8063a0712d681461066f578063a22cb46514610682578063b88d4fde146106a2578063bd8db2ea146106c2578063c6682862146106d8578063c87b56dd146106ed57600080fd5b8063853828b611610113578063853828b6146105df5780638da5cb5b146105e757806391b7f5ed14610605578063940cd05b1461062557806395d89b411461064557806398d5fdca1461065a57600080fd5b80635c975abb146105495780636352211e1461056a57806370a082311461058a578063715018a6146105aa5780637cb64759146105bf57600080fd5b806323b872dd116101f3578063438b6300116101ac578063438b6300146104935780634f6ccce7146104c057806351830227146104e057806355f804b3146105015780635a9a49c7146105215780635b70ea9f1461054157600080fd5b806323b872dd146103e85780632eb4a7ab146104085780632f745c591461041e57806338927e161461043e5780633bd2b67d1461045357806342842e0e1461047357600080fd5b8063081c8c4411610245578063081c8c44146103565780630922f9c51461036b578063095ea7b31461038057806311876875146103a057806318160ddd146103b35780631a6ef53d146103c857600080fd5b806301ffc9a71461028257806302329a29146102b7578063060e05a6146102d957806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028e57600080fd5b506102a261029d366004612979565b6107e0565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046129a4565b61080b565b005b3480156102e557600080fd5b506102ee61085c565b6040519081526020016102ae565b34801561030857600080fd5b50610311610959565b6040516102ae9190612a19565b34801561032a57600080fd5b5061033e610339366004612a2c565b6109eb565b6040516001600160a01b0390911681526020016102ae565b34801561036257600080fd5b50610311610a80565b34801561037757600080fd5b506102ee601b81565b34801561038c57600080fd5b506102d761039b366004612a61565b610b0e565b6102d76103ae366004612a8b565b610c24565b3480156103bf57600080fd5b506008546102ee565b3480156103d457600080fd5b506102d76103e3366004612a2c565b610f53565b3480156103f457600080fd5b506102d7610403366004612b0a565b610fb5565b34801561041457600080fd5b506102ee600e5481565b34801561042a57600080fd5b506102ee610439366004612a61565b610fe6565b34801561044a57600080fd5b506102ee61107c565b34801561045f57600080fd5b506102d761046e366004612a2c565b61108c565b34801561047f57600080fd5b506102d761048e366004612b0a565b6110bb565b34801561049f57600080fd5b506104b36104ae366004612b46565b6110d6565b6040516102ae9190612b61565b3480156104cc57600080fd5b506102ee6104db366004612a2c565b61118f565b3480156104ec57600080fd5b50600a546102a290600160a81b900460ff1681565b34801561050d57600080fd5b506102d761051c366004612c44565b611222565b34801561052d57600080fd5b506102a261053c366004612c8d565b611263565b6102d7611278565b34801561055557600080fd5b50600a546102a290600160a01b900460ff1681565b34801561057657600080fd5b5061033e610585366004612a2c565b611349565b34801561059657600080fd5b506102ee6105a5366004612b46565b6113c0565b3480156105b657600080fd5b506102d7611447565b3480156105cb57600080fd5b506102d76105da366004612a2c565b61147d565b6102d76114ac565b3480156105f357600080fd5b50600a546001600160a01b031661033e565b34801561061157600080fd5b506102d7610620366004612a2c565b6115c4565b34801561063157600080fd5b506102d76106403660046129a4565b6115f3565b34801561065157600080fd5b5061031161163b565b34801561066657600080fd5b506010546102ee565b6102d761067d366004612a2c565b61164a565b34801561068e57600080fd5b506102d761069d366004612d43565b611878565b3480156106ae57600080fd5b506102d76106bd366004612d7a565b611883565b3480156106ce57600080fd5b506102ee611e6181565b3480156106e457600080fd5b506103116118bb565b3480156106f957600080fd5b50610311610708366004612a2c565b6118c8565b34801561071957600080fd5b506012546102ee565b34801561072e57600080fd5b50610311611a49565b34801561074357600080fd5b506102d7610752366004612c44565b611a56565b34801561076357600080fd5b506102a2610772366004612df6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ac57600080fd5b506102d76107bb366004612c44565b611a93565b3480156107cc57600080fd5b506102d76107db366004612b46565b611ad0565b60006001600160e01b0319821663780e9d6360e01b1480610805575061080582611b6b565b92915050565b600a546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590612e29565b60405180910390fd5b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600080805b609681101561095357601460006016836096811061088157610881612e5e565b0154815260208101919091526040016000205460ff16610941576013546001600160a01b031662fdd58e33601684609681106108bf576108bf612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190612e74565b156109415761093e600183612ea7565b91505b8061094b81612ebf565b915050610861565b50919050565b60606000805461096890612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461099490612eda565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610835565b506000908152600460205260409020546001600160a01b031690565b600c8054610a8d90612eda565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab990612eda565b8015610b065780601f10610adb57610100808354040283529160200191610b06565b820191906000526020600020905b815481529060010190602001808311610ae957829003601f168201915b505050505081565b6000610b1982611349565b9050806001600160a01b0316836001600160a01b03161415610b875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610835565b336001600160a01b0382161480610ba35750610ba38133610772565b610c155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610835565b610c1f8383611bbb565b505050565b6202a300601254610c359190612f0f565b421015610c845760405162461bcd60e51b815260206004820152601f60248201527f5468652070726573616c6520686173206e6f74207965742073746172746564006044820152606401610835565b6012544210610ce15760405162461bcd60e51b815260206004820152602360248201527f546865207075626c69632073616c652068617320616c726561647920737461726044820152621d195960ea1b6064820152608401610835565b6000610cec60085490565b600a54909150600160a01b900460ff1615610d195760405162461bcd60e51b815260040161083590612f26565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d9384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611263565b610ddf5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420696e2077686974656c69737400000000000000006044820152606401610835565b6000610de9611c29565b336000908152601560205260409020549091508190610e09908890612ea7565b10610e2b5733600090815260156020526040902054610e289082612f0f565b95505b60008111610e7b5760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265204475636b7320746f206265206d696e7465640000000000006044820152606401610835565b600f54861115610e9d5760405162461bcd60e51b815260040161083590612f56565b3486601154610eac9190612f9a565b1115610ef65760405162461bcd60e51b81526020600482015260196024820152785472616e73616374696f6e2076616c756520746f6f206c6f7760381b6044820152606401610835565b60005b86811015610f2657610f1433610f0f8387612ea7565b611d0a565b80610f1e81612ebf565b915050610ef9565b503360009081526015602052604081208054889290610f46908490612ea7565b9091555050505050505050565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161083590612e29565b6000610f8860085490565b905060005b82811015610c1f57610fa333610f0f8385612ea7565b80610fad81612ebf565b915050610f8d565b610fbf3382611d24565b610fdb5760405162461bcd60e51b815260040161083590612fb9565b610c1f838383611e17565b6000610ff1836113c0565b82106110535760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610835565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061108760085490565b905090565b600a546001600160a01b031633146110b65760405162461bcd60e51b815260040161083590612e29565b601255565b610c1f83838360405180602001604052806000815250611883565b606060006110e3836113c0565b9050806111045760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561111f5761111f612ba5565b604051908082528060200260200182016040528015611148578160200160208202803683370190505b50905060005b828110156110fc576111608582610fe6565b82828151811061117257611172612e5e565b60209081029190910101528061118781612ebf565b91505061114e565b600061119a60085490565b82106111fd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610835565b6008828154811061121057611210612e5e565b90600052602060002001549050919050565b600a546001600160a01b0316331461124c5760405162461bcd60e51b815260040161083590612e29565b805161125f90600d9060208401906128ca565b5050565b6000611270838386611fc2565b949350505050565b600061128360085490565b600a54909150600160a01b900460ff16156112b05760405162461bcd60e51b815260040161083590612f26565b60006112ba612071565b90506000811161131e5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420636c61696d20616e79206f74686572204475636b7360448201526820666f72206672656560b81b6064820152608401610835565b60005b81811015610c1f5761133733610f0f8386612ea7565b8061134181612ebf565b915050611321565b6000818152600260205260408120546001600160a01b0316806108055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610835565b60006001600160a01b03821661142b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610835565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114715760405162461bcd60e51b815260040161083590612e29565b61147b60006121a2565b565b600a546001600160a01b031633146114a75760405162461bcd60e51b815260040161083590612e29565b600e55565b600a546001600160a01b031633146114d65760405162461bcd60e51b815260040161083590612e29565b600073a8ac6bfc4d6b1339a37574705b951475771f9a9d60646114fa47600f612f9a565b6115049190613020565b604051600081818185875af1925050503d8060008114611540576040519150601f19603f3d011682016040523d82523d6000602084013e611545565b606091505b505090508061155357600080fd5b6000611567600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146115b1576040519150601f19603f3d011682016040523d82523d6000602084013e6115b6565b606091505b505090508061125f57600080fd5b600a546001600160a01b031633146115ee5760405162461bcd60e51b815260040161083590612e29565b601055565b600a546001600160a01b0316331461161d5760405162461bcd60e51b815260040161083590612e29565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b60606001805461096890612eda565b6012544210156116935760405162461bcd60e51b815260206004820152601460248201527329b0b6329034b9903737ba103cb2ba1037b832b760611b6044820152606401610835565b600061169e60085490565b600a54909150600160a01b900460ff16156116cb5760405162461bcd60e51b815260040161083590612f26565b600082116117125760405162461bcd60e51b81526020600482015260146024820152734d696e74206174206c656173742031204475636b60601b6044820152606401610835565b600f548211156117345760405162461bcd60e51b815260040161083590612f56565b611e6181106117855760405162461bcd60e51b815260206004820152601b60248201527f416c6c204475636b2061726520616c7265616479206d696e74656400000000006044820152606401610835565b611e616117928383612ea7565b11156117f45760405162461bcd60e51b815260206004820152602b60248201527f5468697320616d6f756e74206f66204475636b732077696c6c2065786365656460448201526a206d617820737570706c7960a81b6064820152608401610835565b34826010546118039190612f9a565b111561184d5760405162461bcd60e51b81526020600482015260196024820152785472616e73616374696f6e2076616c756520746f6f206c6f7760381b6044820152606401610835565b60005b82811015610c1f5761186633610f0f8385612ea7565b8061187081612ebf565b915050611850565b61125f3383836121f4565b61188d3383611d24565b6118a95760405162461bcd60e51b815260040161083590612fb9565b6118b5848484846122c3565b50505050565b600b8054610a8d90612eda565b6000818152600260205260409020546060906001600160a01b03166119475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b600a54600160a81b900460ff166119ea57600c805461196590612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461199190612eda565b80156119de5780601f106119b3576101008083540402835291602001916119de565b820191906000526020600020905b8154815290600101906020018083116119c157829003601f168201915b50505050509050919050565b60006119f46122f6565b90506000815111611a145760405180602001604052806000815250611a42565b80611a1e84612305565b600b604051602001611a3293929190613034565b6040516020818303038152906040525b9392505050565b600d8054610a8d90612eda565b600a546001600160a01b03163314611a805760405162461bcd60e51b815260040161083590612e29565b805161125f90600b9060208401906128ca565b600a546001600160a01b03163314611abd5760405162461bcd60e51b815260040161083590612e29565b805161125f90600c9060208401906128ca565b600a546001600160a01b03163314611afa5760405162461bcd60e51b815260040161083590612e29565b6001600160a01b038116611b5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b611b68816121a2565b50565b60006001600160e01b031982166380ac58cd60e01b1480611b9c57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b0319831614610805565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bf082611349565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080805b6096811015611cef576013546001600160a01b031662fdd58e3360168460968110611c5b57611c5b612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa158015611ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cca9190612e74565b15611cdd57611cda600183612ea7565b91505b80611ce781612ebf565b915050611c2e565b5080611cf9575060015b611d04816005612f9a565b91505090565b61125f828260405180602001604052806000815250612403565b6000818152600260205260408120546001600160a01b0316611d9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610835565b6000611da883611349565b9050806001600160a01b0316846001600160a01b03161480611de35750836001600160a01b0316611dd8846109eb565b6001600160a01b0316145b8061127057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611270565b826001600160a01b0316611e2a82611349565b6001600160a01b031614611e925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610835565b6001600160a01b038216611ef45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610835565b611eff838383612436565b611f0a600082611bbb565b6001600160a01b0383166000908152600360205260408120805460019290611f33908490612f0f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f61908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815b8351811015612066576000848281518110611fe457611fe4612e5e565b60200260200101519050808311612026576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612053565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061205e81612ebf565b915050611fc7565b509093149392505050565b600080805b609681101561095357601460006016836096811061209657612096612e5e565b0154815260208101919091526040016000205460ff16612190576013546001600160a01b031662fdd58e33601684609681106120d4576120d4612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561211f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121439190612e74565b1561219057612153600183612ea7565b91506001601460006016846096811061216e5761216e612e5e565b015481526020810191909152604001600020805460ff19169115159190911790555b8061219a81612ebf565b915050612076565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610835565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122ce848484611e17565b6122da848484846124ee565b6118b55760405162461bcd60e51b8152600401610835906130f8565b6060600d805461096890612eda565b6060816123295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612353578061233d81612ebf565b915061234c9050600a83613020565b915061232d565b60008167ffffffffffffffff81111561236e5761236e612ba5565b6040519080825280601f01601f191660200182016040528015612398576020820181803683370190505b5090505b8415611270576123ad600183612f0f565b91506123ba600a8661314a565b6123c5906030612ea7565b60f81b8183815181106123da576123da612e5e565b60200101906001600160f81b031916908160001a9053506123fc600a86613020565b945061239c565b61240d83836125ec565b61241a60008484846124ee565b610c1f5760405162461bcd60e51b8152600401610835906130f8565b6001600160a01b0383166124915761248c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b4565b816001600160a01b0316836001600160a01b0316146124b4576124b4838261273a565b6001600160a01b0382166124cb57610c1f816127d7565b826001600160a01b0316826001600160a01b031614610c1f57610c1f8282612886565b60006001600160a01b0384163b156125e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253290339089908890889060040161315e565b6020604051808303816000875af192505050801561256d575060408051601f3d908101601f1916820190925261256a9181019061319b565b60015b6125c7573d80801561259b576040519150601f19603f3d011682016040523d82523d6000602084013e6125a0565b606091505b5080516125bf5760405162461bcd60e51b8152600401610835906130f8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611270565b506001949350505050565b6001600160a01b0382166126425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610835565b6000818152600260205260409020546001600160a01b0316156126a75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610835565b6126b360008383612436565b6001600160a01b03821660009081526003602052604081208054600192906126dc908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612747846113c0565b6127519190612f0f565b6000838152600760205260409020549091508082146127a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127e990600190612f0f565b6000838152600960205260408120546008805493945090928490811061281157612811612e5e565b90600052602060002001549050806008838154811061283257612832612e5e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061286a5761286a6131b8565b6001900381819060005260206000200160009055905550505050565b6000612891836113c0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546128d690612eda565b90600052602060002090601f0160209004810192826128f8576000855561293e565b82601f1061291157805160ff191683800117855561293e565b8280016001018555821561293e579182015b8281111561293e578251825591602001919060010190612923565b5061294a92915061294e565b5090565b5b8082111561294a576000815560010161294f565b6001600160e01b031981168114611b6857600080fd5b60006020828403121561298b57600080fd5b8135611a4281612963565b8015158114611b6857600080fd5b6000602082840312156129b657600080fd5b8135611a4281612996565b60005b838110156129dc5781810151838201526020016129c4565b838111156118b55750506000910152565b60008151808452612a058160208601602086016129c1565b601f01601f19169290920160200192915050565b602081526000611a4260208301846129ed565b600060208284031215612a3e57600080fd5b5035919050565b80356001600160a01b0381168114612a5c57600080fd5b919050565b60008060408385031215612a7457600080fd5b612a7d83612a45565b946020939093013593505050565b600080600060408486031215612aa057600080fd5b83359250602084013567ffffffffffffffff80821115612abf57600080fd5b818601915086601f830112612ad357600080fd5b813581811115612ae257600080fd5b8760208260051b8501011115612af757600080fd5b6020830194508093505050509250925092565b600080600060608486031215612b1f57600080fd5b612b2884612a45565b9250612b3660208501612a45565b9150604084013590509250925092565b600060208284031215612b5857600080fd5b611a4282612a45565b6020808252825182820181905260009190848201906040850190845b81811015612b9957835183529284019291840191600101612b7d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612be457612be4612ba5565b604052919050565b600067ffffffffffffffff831115612c0657612c06612ba5565b612c19601f8401601f1916602001612bbb565b9050828152838383011115612c2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c5657600080fd5b813567ffffffffffffffff811115612c6d57600080fd5b8201601f81018413612c7e57600080fd5b61127084823560208401612bec565b600080600060608486031215612ca257600080fd5b833567ffffffffffffffff80821115612cba57600080fd5b818601915086601f830112612cce57600080fd5b8135602082821115612ce257612ce2612ba5565b8160051b9250612cf3818401612bbb565b828152928401810192818101908a851115612d0d57600080fd5b948201945b84861015612d2b57853582529482019490820190612d12565b9a918901359950506040909701359695505050505050565b60008060408385031215612d5657600080fd5b612d5f83612a45565b91506020830135612d6f81612996565b809150509250929050565b60008060008060808587031215612d9057600080fd5b612d9985612a45565b9350612da760208601612a45565b925060408501359150606085013567ffffffffffffffff811115612dca57600080fd5b8501601f81018713612ddb57600080fd5b612dea87823560208401612bec565b91505092959194509250565b60008060408385031215612e0957600080fd5b612e1283612a45565b9150612e2060208401612a45565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e8657600080fd5b8151611a4281612996565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eba57612eba612e91565b500190565b6000600019821415612ed357612ed3612e91565b5060010190565b600181811c90821680612eee57607f821691505b6020821081141561095357634e487b7160e01b600052602260045260246000fd5b600082821015612f2157612f21612e91565b500390565b602080825260169082015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526024908201527f596f752063616e206d696e7420757020746f203130204475636b73207065722060408201526374696d6560e01b606082015260800190565b6000816000190483118215151615612fb457612fb4612e91565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261302f5761302f61300a565b500490565b6000845160206130478285838a016129c1565b85519184019161305a8184848a016129c1565b8554920191600090600181811c908083168061307757607f831692505b85831081141561309557634e487b7160e01b85526022600452602485fd5b8080156130a957600181146130ba576130e7565b60ff198516885283880195506130e7565b60008b81526020902060005b858110156130df5781548a8201529084019088016130c6565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826131595761315961300a565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613191908301846129ed565b9695505050505050565b6000602082840312156131ad57600080fd5b8151611a4281612963565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200354046b1bccee829f062fb6e7e2085b16efc121a835cf5a4bd2a0d1f6e7034664736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0e90f2e0b26d65cbc4aa5441cd396bf5b5fa0c9a4d51635c25f3224a5489c64380000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5633314453743259635158767737415a646b47434e6f366d5639536f614b6b655350355469626239656559702f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5633314453743259635158767737415a646b47434e6f366d5639536f614b6b655350355469626239656559702f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80635c975abb1161014f578063a0712d68116100c1578063cbf21fe41161007a578063cbf21fe41461070d578063d547cfb714610722578063da3ef23f14610737578063e985e9c514610757578063f2c4ce1e146107a0578063f2fde38b146107c057600080fd5b8063a0712d681461066f578063a22cb46514610682578063b88d4fde146106a2578063bd8db2ea146106c2578063c6682862146106d8578063c87b56dd146106ed57600080fd5b8063853828b611610113578063853828b6146105df5780638da5cb5b146105e757806391b7f5ed14610605578063940cd05b1461062557806395d89b411461064557806398d5fdca1461065a57600080fd5b80635c975abb146105495780636352211e1461056a57806370a082311461058a578063715018a6146105aa5780637cb64759146105bf57600080fd5b806323b872dd116101f3578063438b6300116101ac578063438b6300146104935780634f6ccce7146104c057806351830227146104e057806355f804b3146105015780635a9a49c7146105215780635b70ea9f1461054157600080fd5b806323b872dd146103e85780632eb4a7ab146104085780632f745c591461041e57806338927e161461043e5780633bd2b67d1461045357806342842e0e1461047357600080fd5b8063081c8c4411610245578063081c8c44146103565780630922f9c51461036b578063095ea7b31461038057806311876875146103a057806318160ddd146103b35780631a6ef53d146103c857600080fd5b806301ffc9a71461028257806302329a29146102b7578063060e05a6146102d957806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028e57600080fd5b506102a261029d366004612979565b6107e0565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046129a4565b61080b565b005b3480156102e557600080fd5b506102ee61085c565b6040519081526020016102ae565b34801561030857600080fd5b50610311610959565b6040516102ae9190612a19565b34801561032a57600080fd5b5061033e610339366004612a2c565b6109eb565b6040516001600160a01b0390911681526020016102ae565b34801561036257600080fd5b50610311610a80565b34801561037757600080fd5b506102ee601b81565b34801561038c57600080fd5b506102d761039b366004612a61565b610b0e565b6102d76103ae366004612a8b565b610c24565b3480156103bf57600080fd5b506008546102ee565b3480156103d457600080fd5b506102d76103e3366004612a2c565b610f53565b3480156103f457600080fd5b506102d7610403366004612b0a565b610fb5565b34801561041457600080fd5b506102ee600e5481565b34801561042a57600080fd5b506102ee610439366004612a61565b610fe6565b34801561044a57600080fd5b506102ee61107c565b34801561045f57600080fd5b506102d761046e366004612a2c565b61108c565b34801561047f57600080fd5b506102d761048e366004612b0a565b6110bb565b34801561049f57600080fd5b506104b36104ae366004612b46565b6110d6565b6040516102ae9190612b61565b3480156104cc57600080fd5b506102ee6104db366004612a2c565b61118f565b3480156104ec57600080fd5b50600a546102a290600160a81b900460ff1681565b34801561050d57600080fd5b506102d761051c366004612c44565b611222565b34801561052d57600080fd5b506102a261053c366004612c8d565b611263565b6102d7611278565b34801561055557600080fd5b50600a546102a290600160a01b900460ff1681565b34801561057657600080fd5b5061033e610585366004612a2c565b611349565b34801561059657600080fd5b506102ee6105a5366004612b46565b6113c0565b3480156105b657600080fd5b506102d7611447565b3480156105cb57600080fd5b506102d76105da366004612a2c565b61147d565b6102d76114ac565b3480156105f357600080fd5b50600a546001600160a01b031661033e565b34801561061157600080fd5b506102d7610620366004612a2c565b6115c4565b34801561063157600080fd5b506102d76106403660046129a4565b6115f3565b34801561065157600080fd5b5061031161163b565b34801561066657600080fd5b506010546102ee565b6102d761067d366004612a2c565b61164a565b34801561068e57600080fd5b506102d761069d366004612d43565b611878565b3480156106ae57600080fd5b506102d76106bd366004612d7a565b611883565b3480156106ce57600080fd5b506102ee611e6181565b3480156106e457600080fd5b506103116118bb565b3480156106f957600080fd5b50610311610708366004612a2c565b6118c8565b34801561071957600080fd5b506012546102ee565b34801561072e57600080fd5b50610311611a49565b34801561074357600080fd5b506102d7610752366004612c44565b611a56565b34801561076357600080fd5b506102a2610772366004612df6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ac57600080fd5b506102d76107bb366004612c44565b611a93565b3480156107cc57600080fd5b506102d76107db366004612b46565b611ad0565b60006001600160e01b0319821663780e9d6360e01b1480610805575061080582611b6b565b92915050565b600a546001600160a01b0316331461083e5760405162461bcd60e51b815260040161083590612e29565b60405180910390fd5b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600080805b609681101561095357601460006016836096811061088157610881612e5e565b0154815260208101919091526040016000205460ff16610941576013546001600160a01b031662fdd58e33601684609681106108bf576108bf612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e9190612e74565b156109415761093e600183612ea7565b91505b8061094b81612ebf565b915050610861565b50919050565b60606000805461096890612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461099490612eda565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610835565b506000908152600460205260409020546001600160a01b031690565b600c8054610a8d90612eda565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab990612eda565b8015610b065780601f10610adb57610100808354040283529160200191610b06565b820191906000526020600020905b815481529060010190602001808311610ae957829003601f168201915b505050505081565b6000610b1982611349565b9050806001600160a01b0316836001600160a01b03161415610b875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610835565b336001600160a01b0382161480610ba35750610ba38133610772565b610c155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610835565b610c1f8383611bbb565b505050565b6202a300601254610c359190612f0f565b421015610c845760405162461bcd60e51b815260206004820152601f60248201527f5468652070726573616c6520686173206e6f74207965742073746172746564006044820152606401610835565b6012544210610ce15760405162461bcd60e51b815260206004820152602360248201527f546865207075626c69632073616c652068617320616c726561647920737461726044820152621d195960ea1b6064820152608401610835565b6000610cec60085490565b600a54909150600160a01b900460ff1615610d195760405162461bcd60e51b815260040161083590612f26565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d9384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611263565b610ddf5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f7420696e2077686974656c69737400000000000000006044820152606401610835565b6000610de9611c29565b336000908152601560205260409020549091508190610e09908890612ea7565b10610e2b5733600090815260156020526040902054610e289082612f0f565b95505b60008111610e7b5760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265204475636b7320746f206265206d696e7465640000000000006044820152606401610835565b600f54861115610e9d5760405162461bcd60e51b815260040161083590612f56565b3486601154610eac9190612f9a565b1115610ef65760405162461bcd60e51b81526020600482015260196024820152785472616e73616374696f6e2076616c756520746f6f206c6f7760381b6044820152606401610835565b60005b86811015610f2657610f1433610f0f8387612ea7565b611d0a565b80610f1e81612ebf565b915050610ef9565b503360009081526015602052604081208054889290610f46908490612ea7565b9091555050505050505050565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161083590612e29565b6000610f8860085490565b905060005b82811015610c1f57610fa333610f0f8385612ea7565b80610fad81612ebf565b915050610f8d565b610fbf3382611d24565b610fdb5760405162461bcd60e51b815260040161083590612fb9565b610c1f838383611e17565b6000610ff1836113c0565b82106110535760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610835565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061108760085490565b905090565b600a546001600160a01b031633146110b65760405162461bcd60e51b815260040161083590612e29565b601255565b610c1f83838360405180602001604052806000815250611883565b606060006110e3836113c0565b9050806111045760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561111f5761111f612ba5565b604051908082528060200260200182016040528015611148578160200160208202803683370190505b50905060005b828110156110fc576111608582610fe6565b82828151811061117257611172612e5e565b60209081029190910101528061118781612ebf565b91505061114e565b600061119a60085490565b82106111fd5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610835565b6008828154811061121057611210612e5e565b90600052602060002001549050919050565b600a546001600160a01b0316331461124c5760405162461bcd60e51b815260040161083590612e29565b805161125f90600d9060208401906128ca565b5050565b6000611270838386611fc2565b949350505050565b600061128360085490565b600a54909150600160a01b900460ff16156112b05760405162461bcd60e51b815260040161083590612f26565b60006112ba612071565b90506000811161131e5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e6e6f7420636c61696d20616e79206f74686572204475636b7360448201526820666f72206672656560b81b6064820152608401610835565b60005b81811015610c1f5761133733610f0f8386612ea7565b8061134181612ebf565b915050611321565b6000818152600260205260408120546001600160a01b0316806108055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610835565b60006001600160a01b03821661142b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610835565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114715760405162461bcd60e51b815260040161083590612e29565b61147b60006121a2565b565b600a546001600160a01b031633146114a75760405162461bcd60e51b815260040161083590612e29565b600e55565b600a546001600160a01b031633146114d65760405162461bcd60e51b815260040161083590612e29565b600073a8ac6bfc4d6b1339a37574705b951475771f9a9d60646114fa47600f612f9a565b6115049190613020565b604051600081818185875af1925050503d8060008114611540576040519150601f19603f3d011682016040523d82523d6000602084013e611545565b606091505b505090508061155357600080fd5b6000611567600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146115b1576040519150601f19603f3d011682016040523d82523d6000602084013e6115b6565b606091505b505090508061125f57600080fd5b600a546001600160a01b031633146115ee5760405162461bcd60e51b815260040161083590612e29565b601055565b600a546001600160a01b0316331461161d5760405162461bcd60e51b815260040161083590612e29565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b60606001805461096890612eda565b6012544210156116935760405162461bcd60e51b815260206004820152601460248201527329b0b6329034b9903737ba103cb2ba1037b832b760611b6044820152606401610835565b600061169e60085490565b600a54909150600160a01b900460ff16156116cb5760405162461bcd60e51b815260040161083590612f26565b600082116117125760405162461bcd60e51b81526020600482015260146024820152734d696e74206174206c656173742031204475636b60601b6044820152606401610835565b600f548211156117345760405162461bcd60e51b815260040161083590612f56565b611e6181106117855760405162461bcd60e51b815260206004820152601b60248201527f416c6c204475636b2061726520616c7265616479206d696e74656400000000006044820152606401610835565b611e616117928383612ea7565b11156117f45760405162461bcd60e51b815260206004820152602b60248201527f5468697320616d6f756e74206f66204475636b732077696c6c2065786365656460448201526a206d617820737570706c7960a81b6064820152608401610835565b34826010546118039190612f9a565b111561184d5760405162461bcd60e51b81526020600482015260196024820152785472616e73616374696f6e2076616c756520746f6f206c6f7760381b6044820152606401610835565b60005b82811015610c1f5761186633610f0f8385612ea7565b8061187081612ebf565b915050611850565b61125f3383836121f4565b61188d3383611d24565b6118a95760405162461bcd60e51b815260040161083590612fb9565b6118b5848484846122c3565b50505050565b600b8054610a8d90612eda565b6000818152600260205260409020546060906001600160a01b03166119475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b600a54600160a81b900460ff166119ea57600c805461196590612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461199190612eda565b80156119de5780601f106119b3576101008083540402835291602001916119de565b820191906000526020600020905b8154815290600101906020018083116119c157829003601f168201915b50505050509050919050565b60006119f46122f6565b90506000815111611a145760405180602001604052806000815250611a42565b80611a1e84612305565b600b604051602001611a3293929190613034565b6040516020818303038152906040525b9392505050565b600d8054610a8d90612eda565b600a546001600160a01b03163314611a805760405162461bcd60e51b815260040161083590612e29565b805161125f90600b9060208401906128ca565b600a546001600160a01b03163314611abd5760405162461bcd60e51b815260040161083590612e29565b805161125f90600c9060208401906128ca565b600a546001600160a01b03163314611afa5760405162461bcd60e51b815260040161083590612e29565b6001600160a01b038116611b5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b611b68816121a2565b50565b60006001600160e01b031982166380ac58cd60e01b1480611b9c57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b0319831614610805565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bf082611349565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080805b6096811015611cef576013546001600160a01b031662fdd58e3360168460968110611c5b57611c5b612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa158015611ca6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cca9190612e74565b15611cdd57611cda600183612ea7565b91505b80611ce781612ebf565b915050611c2e565b5080611cf9575060015b611d04816005612f9a565b91505090565b61125f828260405180602001604052806000815250612403565b6000818152600260205260408120546001600160a01b0316611d9d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610835565b6000611da883611349565b9050806001600160a01b0316846001600160a01b03161480611de35750836001600160a01b0316611dd8846109eb565b6001600160a01b0316145b8061127057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611270565b826001600160a01b0316611e2a82611349565b6001600160a01b031614611e925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610835565b6001600160a01b038216611ef45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610835565b611eff838383612436565b611f0a600082611bbb565b6001600160a01b0383166000908152600360205260408120805460019290611f33908490612f0f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f61908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815b8351811015612066576000848281518110611fe457611fe4612e5e565b60200260200101519050808311612026576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612053565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061205e81612ebf565b915050611fc7565b509093149392505050565b600080805b609681101561095357601460006016836096811061209657612096612e5e565b0154815260208101919091526040016000205460ff16612190576013546001600160a01b031662fdd58e33601684609681106120d4576120d4612e5e565b01546040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381865afa15801561211f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121439190612e74565b1561219057612153600183612ea7565b91506001601460006016846096811061216e5761216e612e5e565b015481526020810191909152604001600020805460ff19169115159190911790555b8061219a81612ebf565b915050612076565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610835565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122ce848484611e17565b6122da848484846124ee565b6118b55760405162461bcd60e51b8152600401610835906130f8565b6060600d805461096890612eda565b6060816123295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612353578061233d81612ebf565b915061234c9050600a83613020565b915061232d565b60008167ffffffffffffffff81111561236e5761236e612ba5565b6040519080825280601f01601f191660200182016040528015612398576020820181803683370190505b5090505b8415611270576123ad600183612f0f565b91506123ba600a8661314a565b6123c5906030612ea7565b60f81b8183815181106123da576123da612e5e565b60200101906001600160f81b031916908160001a9053506123fc600a86613020565b945061239c565b61240d83836125ec565b61241a60008484846124ee565b610c1f5760405162461bcd60e51b8152600401610835906130f8565b6001600160a01b0383166124915761248c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b4565b816001600160a01b0316836001600160a01b0316146124b4576124b4838261273a565b6001600160a01b0382166124cb57610c1f816127d7565b826001600160a01b0316826001600160a01b031614610c1f57610c1f8282612886565b60006001600160a01b0384163b156125e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253290339089908890889060040161315e565b6020604051808303816000875af192505050801561256d575060408051601f3d908101601f1916820190925261256a9181019061319b565b60015b6125c7573d80801561259b576040519150601f19603f3d011682016040523d82523d6000602084013e6125a0565b606091505b5080516125bf5760405162461bcd60e51b8152600401610835906130f8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611270565b506001949350505050565b6001600160a01b0382166126425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610835565b6000818152600260205260409020546001600160a01b0316156126a75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610835565b6126b360008383612436565b6001600160a01b03821660009081526003602052604081208054600192906126dc908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612747846113c0565b6127519190612f0f565b6000838152600760205260409020549091508082146127a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127e990600190612f0f565b6000838152600960205260408120546008805493945090928490811061281157612811612e5e565b90600052602060002001549050806008838154811061283257612832612e5e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061286a5761286a6131b8565b6001900381819060005260206000200160009055905550505050565b6000612891836113c0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546128d690612eda565b90600052602060002090601f0160209004810192826128f8576000855561293e565b82601f1061291157805160ff191683800117855561293e565b8280016001018555821561293e579182015b8281111561293e578251825591602001919060010190612923565b5061294a92915061294e565b5090565b5b8082111561294a576000815560010161294f565b6001600160e01b031981168114611b6857600080fd5b60006020828403121561298b57600080fd5b8135611a4281612963565b8015158114611b6857600080fd5b6000602082840312156129b657600080fd5b8135611a4281612996565b60005b838110156129dc5781810151838201526020016129c4565b838111156118b55750506000910152565b60008151808452612a058160208601602086016129c1565b601f01601f19169290920160200192915050565b602081526000611a4260208301846129ed565b600060208284031215612a3e57600080fd5b5035919050565b80356001600160a01b0381168114612a5c57600080fd5b919050565b60008060408385031215612a7457600080fd5b612a7d83612a45565b946020939093013593505050565b600080600060408486031215612aa057600080fd5b83359250602084013567ffffffffffffffff80821115612abf57600080fd5b818601915086601f830112612ad357600080fd5b813581811115612ae257600080fd5b8760208260051b8501011115612af757600080fd5b6020830194508093505050509250925092565b600080600060608486031215612b1f57600080fd5b612b2884612a45565b9250612b3660208501612a45565b9150604084013590509250925092565b600060208284031215612b5857600080fd5b611a4282612a45565b6020808252825182820181905260009190848201906040850190845b81811015612b9957835183529284019291840191600101612b7d565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612be457612be4612ba5565b604052919050565b600067ffffffffffffffff831115612c0657612c06612ba5565b612c19601f8401601f1916602001612bbb565b9050828152838383011115612c2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c5657600080fd5b813567ffffffffffffffff811115612c6d57600080fd5b8201601f81018413612c7e57600080fd5b61127084823560208401612bec565b600080600060608486031215612ca257600080fd5b833567ffffffffffffffff80821115612cba57600080fd5b818601915086601f830112612cce57600080fd5b8135602082821115612ce257612ce2612ba5565b8160051b9250612cf3818401612bbb565b828152928401810192818101908a851115612d0d57600080fd5b948201945b84861015612d2b57853582529482019490820190612d12565b9a918901359950506040909701359695505050505050565b60008060408385031215612d5657600080fd5b612d5f83612a45565b91506020830135612d6f81612996565b809150509250929050565b60008060008060808587031215612d9057600080fd5b612d9985612a45565b9350612da760208601612a45565b925060408501359150606085013567ffffffffffffffff811115612dca57600080fd5b8501601f81018713612ddb57600080fd5b612dea87823560208401612bec565b91505092959194509250565b60008060408385031215612e0957600080fd5b612e1283612a45565b9150612e2060208401612a45565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e8657600080fd5b8151611a4281612996565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eba57612eba612e91565b500190565b6000600019821415612ed357612ed3612e91565b5060010190565b600181811c90821680612eee57607f821691505b6020821081141561095357634e487b7160e01b600052602260045260246000fd5b600082821015612f2157612f21612e91565b500390565b602080825260169082015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526024908201527f596f752063616e206d696e7420757020746f203130204475636b73207065722060408201526374696d6560e01b606082015260800190565b6000816000190483118215151615612fb457612fb4612e91565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261302f5761302f61300a565b500490565b6000845160206130478285838a016129c1565b85519184019161305a8184848a016129c1565b8554920191600090600181811c908083168061307757607f831692505b85831081141561309557634e487b7160e01b85526022600452602485fd5b8080156130a957600181146130ba576130e7565b60ff198516885283880195506130e7565b60008b81526020902060005b858110156130df5781548a8201529084019088016130c6565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826131595761315961300a565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613191908301846129ed565b9695505050505050565b6000602082840312156131ad57600080fd5b8151611a4281612963565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200354046b1bccee829f062fb6e7e2085b16efc121a835cf5a4bd2a0d1f6e7034664736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0e90f2e0b26d65cbc4aa5441cd396bf5b5fa0c9a4d51635c25f3224a5489c64380000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5633314453743259635158767737415a646b47434e6f366d5639536f614b6b655350355469626239656559702f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5633314453743259635158767737415a646b47434e6f366d5639536f614b6b655350355469626239656559702f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmV31DSt2YcQXvw7AZdkGCNo6mV9SoaKkeSP5Tibb9eeYp/
Arg [1] : initNotRevealedUri (string): ipfs://QmV31DSt2YcQXvw7AZdkGCNo6mV9SoaKkeSP5Tibb9eeYp/hidden.json
Arg [2] : _merkleRoot (bytes32): 0xe90f2e0b26d65cbc4aa5441cd396bf5b5fa0c9a4d51635c25f3224a5489c6438

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : e90f2e0b26d65cbc4aa5441cd396bf5b5fa0c9a4d51635c25f3224a5489c6438
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5633314453743259635158767737415a646b47434e6f36
Arg [5] : 6d5639536f614b6b655350355469626239656559702f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d5633314453743259635158767737415a646b47434e6f36
Arg [8] : 6d5639536f614b6b655350355469626239656559702f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45650:21164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38301:224;;;;;;;;;;-1:-1:-1;38301:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38301:224:0;;;;;;;;65599:79;;;;;;;;;;-1:-1:-1;65599:79:0;;;;;:::i;:::-;;:::i;:::-;;61292:442;;;;;;;;;;;;;:::i;:::-;;;1107:25:1;;;1095:2;1080:18;61292:442:0;961:177:1;25795:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27354:221::-;;;;;;;;;;-1:-1:-1;27354:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2243:32:1;;;2225:51;;2213:2;2198:18;27354:221:0;2079:203:1;45952:28:0;;;;;;;;;;;;;:::i;45796:37::-;;;;;;;;;;;;45831:2;45796:37;;26877:411;;;;;;;;;;-1:-1:-1;26877:411:0;;;;;:::i;:::-;;:::i;62009:1154::-;;;;;;:::i;:::-;;:::i;38941:113::-;;;;;;;;;;-1:-1:-1;39029:10:0;:17;38941:113;;66592:219;;;;;;;;;;-1:-1:-1;66592:219:0;;;;;:::i;:::-;;:::i;28104:339::-;;;;;;;;;;-1:-1:-1;28104:339:0;;;;;:::i;:::-;;:::i;46020:25::-;;;;;;;;;;;;;;;;38609:256;;;;;;;;;;-1:-1:-1;38609:256:0;;;;;:::i;:::-;;:::i;61742:93::-;;;;;;;;;;;;;:::i;65686:89::-;;;;;;;;;;-1:-1:-1;65686:89:0;;;;;:::i;:::-;;:::i;28514:185::-;;;;;;;;;;-1:-1:-1;28514:185:0;;;;;:::i;:::-;;:::i;64530:432::-;;;;;;;;;;-1:-1:-1;64530:432:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39131:233::-;;;;;;;;;;-1:-1:-1;39131:233:0;;;;;:::i;:::-;;:::i;45873:28::-;;;;;;;;;;-1:-1:-1;45873:28:0;;;;-1:-1:-1;;;45873:28:0;;;;;;65783:101;;;;;;;;;;-1:-1:-1;65783:101:0;;;;;:::i;:::-;;:::i;61843:158::-;;;;;;;;;;-1:-1:-1;61843:158:0;;;;;:::i;:::-;;:::i;63171:473::-;;;:::i;45840:26::-;;;;;;;;;;-1:-1:-1;45840:26:0;;;;-1:-1:-1;;;45840:26:0;;;;;;25489:239;;;;;;;;;;-1:-1:-1;25489:239:0;;;;;:::i;:::-;;:::i;25219:208::-;;;;;;;;;;-1:-1:-1;25219:208:0;;;;;:::i;:::-;;:::i;4765:103::-;;;;;;;;;;;;;:::i;65892:104::-;;;;;;;;;;-1:-1:-1;65892:104:0;;;;;:::i;:::-;;:::i;66274:310::-;;;:::i;4114:87::-;;;;;;;;;;-1:-1:-1;4187:6:0;;-1:-1:-1;;;;;4187:6:0;4114:87;;59950:97;;;;;;;;;;-1:-1:-1;59950:97:0;;;;;:::i;:::-;;:::i;65505:86::-;;;;;;;;;;-1:-1:-1;65505:86:0;;;;;:::i;:::-;;:::i;25964:104::-;;;;;;;;;;;;;:::i;60151:82::-;;;;;;;;;;-1:-1:-1;60219:6:0;;60151:82;;63652:870;;;;;;:::i;:::-;;:::i;27647:155::-;;;;;;;;;;-1:-1:-1;27647:155:0;;;;;:::i;:::-;;:::i;28770:328::-;;;;;;;;;;-1:-1:-1;28770:328:0;;;;;:::i;:::-;;:::i;45749:40::-;;;;;;;;;;;;45785:4;45749:40;;45908:37;;;;;;;;;;;;;:::i;64970:507::-;;;;;;;;;;-1:-1:-1;64970:507:0;;;;;:::i;:::-;;:::i;60055:88::-;;;;;;;;;;-1:-1:-1;60126:9:0;;60055:88;;45987:26;;;;;;;;;;;;;:::i;66004:128::-;;;;;;;;;;-1:-1:-1;66004:128:0;;;;;:::i;:::-;;:::i;27873:164::-;;;;;;;;;;-1:-1:-1;27873:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27994:25:0;;;27970:4;27994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27873:164;66140:126;;;;;;;;;;-1:-1:-1;66140:126:0;;;;;:::i;:::-;;:::i;5023:201::-;;;;;;;;;;-1:-1:-1;5023:201:0;;;;;:::i;:::-;;:::i;38301:224::-;38403:4;-1:-1:-1;;;;;;38427:50:0;;-1:-1:-1;;;38427:50:0;;:90;;;38481:36;38505:11;38481:23;:36::i;:::-;38420:97;38301:224;-1:-1:-1;;38301:224:0:o;65599:79::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;;;;;;;;;65655:6:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;65655:15:0::1;-1:-1:-1::0;;;;65655:15:0;;::::1;::::0;;;::::1;::::0;;65599:79::o;61292:442::-;61344:7;;;61399:298;61420:19;61416:1;:23;61399:298;;;61466:16;:33;61483:12;61496:1;61483:15;;;;;;;:::i;:::-;;;61466:33;;;;;;;;;;;-1:-1:-1;61466:33:0;;;;61462:224;;61560:13;;-1:-1:-1;;;;;61560:13:0;61552:32;61585:10;61596:12;61609:1;61596:15;;;;;;;:::i;:::-;;;61552:60;;-1:-1:-1;;;;;;61552:60:0;;;;;;;-1:-1:-1;;;;;9251:32:1;;;61552:60:0;;;9233:51:1;9300:18;;;9293:34;9206:18;;61552:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61549:122;;;61636:15;61650:1;61636:15;;:::i;:::-;;;61549:122;61441:4;;;;:::i;:::-;;;;61399:298;;;-1:-1:-1;61716:10:0;61292:442;-1:-1:-1;61292:442:0:o;25795:100::-;25849:13;25882:5;25875:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25795:100;:::o;27354:221::-;27430:7;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;27450:73;;;;-1:-1:-1;;;27450:73:0;;10580:2:1;27450:73:0;;;10562:21:1;10619:2;10599:18;;;10592:30;10658:34;10638:18;;;10631:62;-1:-1:-1;;;10709:18:1;;;10702:42;10761:19;;27450:73:0;10378:408:1;27450:73:0;-1:-1:-1;27543:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27543:24:0;;27354:221::o;45952:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26877:411::-;26958:13;26974:23;26989:7;26974:14;:23::i;:::-;26958:39;;27022:5;-1:-1:-1;;;;;27016:11:0;:2;-1:-1:-1;;;;;27016:11:0;;;27008:57;;;;-1:-1:-1;;;27008:57:0;;10993:2:1;27008:57:0;;;10975:21:1;11032:2;11012:18;;;11005:30;11071:34;11051:18;;;11044:62;-1:-1:-1;;;11122:18:1;;;11115:31;11163:19;;27008:57:0;10791:397:1;27008:57:0;2918:10;-1:-1:-1;;;;;27100:21:0;;;;:62;;-1:-1:-1;27125:37:0;27142:5;2918:10;27873:164;:::i;27125:37::-;27078:168;;;;-1:-1:-1;;;27078:168:0;;11395:2:1;27078:168:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:34;11453:18;;;11446:62;11544:26;11524:18;;;11517:54;11588:19;;27078:168:0;11193:420:1;27078:168:0;27259:21;27268:2;27272:7;27259:8;:21::i;:::-;26947:341;26877:411;;:::o;62009:1154::-;59486:6;59474:9;;:18;;;;:::i;:::-;59455:15;:37;;59433:123;;;;-1:-1:-1;;;59433:123:0;;11950:2:1;59433:123:0;;;11932:21:1;11989:2;11969:18;;;11962:30;12028:33;12008:18;;;12001:61;12079:18;;59433:123:0;11748:355:1;59433:123:0;59607:9;;59589:15;:27;59567:112;;;;-1:-1:-1;;;59567:112:0;;12310:2:1;59567:112:0;;;12292:21:1;12349:2;12329:18;;;12322:30;12388:34;12368:18;;;12361:62;-1:-1:-1;;;12439:18:1;;;12432:33;12482:19;;59567:112:0;12108:399:1;59567:112:0;62119:19:::1;62141:13;39029:10:::0;:17;;38941:113;62141:13:::1;62190:6;::::0;62119:35;;-1:-1:-1;;;;62190:6:0;::::1;;;62189:7;62167:79;;;;-1:-1:-1::0;;;62167:79:0::1;;;;;;;:::i;:::-;62284:28;::::0;-1:-1:-1;;62301:10:0::1;13012:2:1::0;13008:15;13004:53;62284:28:0::1;::::0;::::1;12992:66:1::0;62259:12:0::1;::::0;13074::1;;62284:28:0::1;;;;;;;;;;;;62274:39;;;;;;62259:54;;62348:38;62355:12;;62348:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;62369:10:0::1;::::0;;-1:-1:-1;62381:4:0;;-1:-1:-1;62348:6:0::1;:38::i;:::-;62326:112;;;::::0;-1:-1:-1;;;62326:112:0;;13299:2:1;62326:112:0::1;::::0;::::1;13281:21:1::0;13338:2;13318:18;;;13311:30;13377:26;13357:18;;;13350:54;13421:18;;62326:112:0::1;13097:348:1::0;62326:112:0::1;62451:21;62475:18;:16;:18::i;:::-;62532:10;62509:34;::::0;;;:22:::1;:34;::::0;;;;;62451:42;;-1:-1:-1;62451:42:0;;62509:43:::1;::::0;62546:6;;62509:43:::1;:::i;:::-;:60;62506:150;;62633:10;62610:34;::::0;;;:22:::1;:34;::::0;;;;;62594:50:::1;::::0;:13;:50:::1;:::i;:::-;62585:59;;62506:150;62706:1;62690:13;:17;62668:93;;;::::0;-1:-1:-1;;;62668:93:0;;13652:2:1;62668:93:0::1;::::0;::::1;13634:21:1::0;13691:2;13671:18;;;13664:30;13730:28;13710:18;;;13703:56;13776:18;;62668:93:0::1;13450:350:1::0;62668:93:0::1;62806:9;;62796:6;:19;;62774:105;;;;-1:-1:-1::0;;;62774:105:0::1;;;;;;;:::i;:::-;62936:9;62926:6;62914:9;;:18;;;;:::i;:::-;:31;;62892:96;;;::::0;-1:-1:-1;;;62892:96:0;;14585:2:1;62892:96:0::1;::::0;::::1;14567:21:1::0;14624:2;14604:18;;;14597:30;-1:-1:-1;;;14643:18:1;;;14636:55;14708:18;;62892:96:0::1;14383:349:1::0;62892:96:0::1;63006:9;63001:98;63021:6;63017:1;:10;63001:98;;;63049:38;63059:10;63071:15;63085:1:::0;63071:11;:15:::1;:::i;:::-;63049:9;:38::i;:::-;63029:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63001:98;;;-1:-1:-1::0;63134:10:0::1;63111:34;::::0;;;:22:::1;:34;::::0;;;;:44;;63149:6;;63111:34;:44:::1;::::0;63149:6;;63111:44:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;62009:1154:0:o;66592:219::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;66658:19:::1;66680:13;39029:10:::0;:17;;38941:113;66680:13:::1;66658:35;;66711:9;66706:98;66726:6;66722:1;:10;66706:98;;;66754:38;66764:10;66776:15;66790:1:::0;66776:11;:15:::1;:::i;66754:38::-;66734:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66706:98;;28104:339:::0;28299:41;2918:10;28332:7;28299:18;:41::i;:::-;28291:103;;;;-1:-1:-1;;;28291:103:0;;;;;;;:::i;:::-;28407:28;28417:4;28423:2;28427:7;28407:9;:28::i;38609:256::-;38706:7;38742:23;38759:5;38742:16;:23::i;:::-;38734:5;:31;38726:87;;;;-1:-1:-1;;;38726:87:0;;15357:2:1;38726:87:0;;;15339:21:1;15396:2;15376:18;;;15369:30;15435:34;15415:18;;;15408:62;-1:-1:-1;;;15486:18:1;;;15479:41;15537:19;;38726:87:0;15155:407:1;38726:87:0;-1:-1:-1;;;;;;38831:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38609:256::o;61742:93::-;61788:7;61814:13;39029:10;:17;;38941:113;61814:13;61807:20;;61742:93;:::o;65686:89::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;65750:9:::1;:17:::0;65686:89::o;28514:185::-;28652:39;28669:4;28675:2;28679:7;28652:39;;;;;;;;;;;;:16;:39::i;64530:432::-;64592:16;64621:18;64642:19;64652:8;64642:9;:19::i;:::-;64621:40;-1:-1:-1;64676:15:0;64672:71;;64715:16;;;64729:1;64715:16;;;;;;;;;;;-1:-1:-1;64708:23:0;64530:432;-1:-1:-1;;;64530:432:0:o;64672:71::-;64755:25;64797:10;64783:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64783:25:0;;64755:53;;64824:9;64819:110;64839:10;64835:1;:14;64819:110;;;64885:32;64905:8;64915:1;64885:19;:32::i;:::-;64871:8;64880:1;64871:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;64851:3;;;;:::i;:::-;;;;64819:110;;39131:233;39206:7;39242:30;39029:10;:17;;38941:113;39242:30;39234:5;:38;39226:95;;;;-1:-1:-1;;;39226:95:0;;15769:2:1;39226:95:0;;;15751:21:1;15808:2;15788:18;;;15781:30;15847:34;15827:18;;;15820:62;-1:-1:-1;;;15898:18:1;;;15891:42;15950:19;;39226:95:0;15567:408:1;39226:95:0;39339:10;39350:5;39339:17;;;;;;;;:::i;:::-;;;;;;;;;39332:24;;39131:233;;;:::o;65783:101::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;65854:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65783:101:::0;:::o;61843:158::-;61932:4;61956:37;61975:4;61981;61987:5;61956:18;:37::i;:::-;61949:44;61843:158;-1:-1:-1;;;;61843:158:0:o;63171:473::-;63217:19;63239:13;39029:10;:17;;38941:113;63239:13;63288:6;;63217:35;;-1:-1:-1;;;;63288:6:0;;;;63287:7;63265:79;;;;-1:-1:-1;;;63265:79:0;;;;;;;:::i;:::-;63357:21;63381:17;:15;:17::i;:::-;63357:41;;63449:1;63433:13;:17;63411:108;;;;-1:-1:-1;;;63411:108:0;;16182:2:1;63411:108:0;;;16164:21:1;16221:2;16201:18;;;16194:30;16260:34;16240:18;;;16233:62;-1:-1:-1;;;16311:18:1;;;16304:39;16360:19;;63411:108:0;15980:405:1;63411:108:0;63537:9;63532:105;63552:13;63548:1;:17;63532:105;;;63587:38;63597:10;63609:15;63623:1;63609:11;:15;:::i;63587:38::-;63567:3;;;;:::i;:::-;;;;63532:105;;25489:239;25561:7;25597:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25597:16:0;25632:19;25624:73;;;;-1:-1:-1;;;25624:73:0;;16592:2:1;25624:73:0;;;16574:21:1;16631:2;16611:18;;;16604:30;16670:34;16650:18;;;16643:62;-1:-1:-1;;;16721:18:1;;;16714:39;16770:19;;25624:73:0;16390:405:1;25219:208:0;25291:7;-1:-1:-1;;;;;25319:19:0;;25311:74;;;;-1:-1:-1;;;25311:74:0;;17002:2:1;25311:74:0;;;16984:21:1;17041:2;17021:18;;;17014:30;17080:34;17060:18;;;17053:62;-1:-1:-1;;;17131:18:1;;;17124:40;17181:19;;25311:74:0;16800:406:1;25311:74:0;-1:-1:-1;;;;;;25403:16:0;;;;;:9;:16;;;;;;;25219:208::o;4765:103::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;65892:104::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;65964:10:::1;:24:::0;65892:104::o;66274:310::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;66336:7:::1;66357:42;66442:3;66413:26;:21;66437:2;66413:26;:::i;:::-;:32;;;;:::i;:::-;66349:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66335:115;;;66469:2;66461:11;;;::::0;::::1;;66486:7;66507;4187:6:::0;;-1:-1:-1;;;;;4187:6:0;;4114:87;66507:7:::1;-1:-1:-1::0;;;;;66499:21:0::1;66528;66499:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66485:69;;;66573:2;66565:11;;;::::0;::::1;59950:97:::0;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;60018:6:::1;:21:::0;59950:97::o;65505:86::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;65565:8:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;65565:18:0::1;-1:-1:-1::0;;;;65565:18:0;;::::1;::::0;;;::::1;::::0;;65505:86::o;25964:104::-;26020:13;26053:7;26046:14;;;;;:::i;63652:870::-;59767:9;;59748:15;:28;;59740:61;;;;-1:-1:-1;;;59740:61:0;;17880:2:1;59740:61:0;;;17862:21:1;17919:2;17899:18;;;17892:30;-1:-1:-1;;;17938:18:1;;;17931:50;17998:18;;59740:61:0;17678:344:1;59740:61:0;63718:19:::1;63740:13;39029:10:::0;:17;;38941:113;63740:13:::1;63789:6;::::0;63718:35;;-1:-1:-1;;;;63789:6:0;::::1;;;63788:7;63766:79;;;;-1:-1:-1::0;;;63766:79:0::1;;;;;;;:::i;:::-;63889:1;63880:6;:10;63858:80;;;::::0;-1:-1:-1;;;63858:80:0;;18229:2:1;63858:80:0::1;::::0;::::1;18211:21:1::0;18268:2;18248:18;;;18241:30;-1:-1:-1;;;18287:18:1;;;18280:50;18347:18;;63858:80:0::1;18027:344:1::0;63858:80:0::1;63983:9;;63973:6;:19;;63951:105;;;;-1:-1:-1::0;;;63951:105:0::1;;;;;;;:::i;:::-;45785:4;64091:11;:23;64069:90;;;::::0;-1:-1:-1;;;64069:90:0;;18578:2:1;64069:90:0::1;::::0;::::1;18560:21:1::0;18617:2;18597:18;;;18590:30;18656:29;18636:18;;;18629:57;18703:18;;64069:90:0::1;18376:351:1::0;64069:90:0::1;45785:4;64194:20;64208:6:::0;64194:11;:20:::1;:::i;:::-;:33;;64172:126;;;::::0;-1:-1:-1;;;64172:126:0;;18934:2:1;64172:126:0::1;::::0;::::1;18916:21:1::0;18973:2;18953:18;;;18946:30;19012:34;18992:18;;;18985:62;-1:-1:-1;;;19063:18:1;;;19056:41;19114:19;;64172:126:0::1;18732:407:1::0;64172:126:0::1;64352:9;64342:6;64333;;:15;;;;:::i;:::-;:28;;64311:93;;;::::0;-1:-1:-1;;;64311:93:0;;14585:2:1;64311:93:0::1;::::0;::::1;14567:21:1::0;14624:2;14604:18;;;14597:30;-1:-1:-1;;;14643:18:1;;;14636:55;14708:18;;64311:93:0::1;14383:349:1::0;64311:93:0::1;64422:9;64417:98;64437:6;64433:1;:10;64417:98;;;64465:38;64475:10;64487:15;64501:1:::0;64487:11;:15:::1;:::i;64465:38::-;64445:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64417:98;;27647:155:::0;27742:52;2918:10;27775:8;27785;27742:18;:52::i;28770:328::-;28945:41;2918:10;28978:7;28945:18;:41::i;:::-;28937:103;;;;-1:-1:-1;;;28937:103:0;;;;;;;:::i;:::-;29051:39;29065:4;29071:2;29075:7;29084:5;29051:13;:39::i;:::-;28770:328;;;;:::o;45908:37::-;;;;;;;:::i;64970:507::-;30673:4;30697:16;;;:7;:16;;;;;;65043:13;;-1:-1:-1;;;;;30697:16:0;65069:113;;;;-1:-1:-1;;;65069:113:0;;19346:2:1;65069:113:0;;;19328:21:1;19385:2;19365:18;;;19358:30;19424:34;19404:18;;;19397:62;-1:-1:-1;;;19475:18:1;;;19468:45;19530:19;;65069:113:0;19144:411:1;65069:113:0;65198:8;;-1:-1:-1;;;65198:8:0;;;;65195:70;;65239:14;65232:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64970:507;;;:::o;65195:70::-;65277:28;65308:10;:8;:10::i;:::-;65277:41;;65367:1;65342:14;65336:28;:32;:133;;;;;;;;;;;;;;;;;65404:14;65420:18;:7;:16;:18::i;:::-;65440:13;65387:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65336:133;65329:140;64970:507;-1:-1:-1;;;64970:507:0:o;45987:26::-;;;;;;;:::i;66004:128::-;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;66091:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;66140:126::-:0;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;66226:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5023:201::-:0;4187:6;;-1:-1:-1;;;;;4187:6:0;2918:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5112:22:0;::::1;5104:73;;;::::0;-1:-1:-1;;;5104:73:0;;21420:2:1;5104:73:0::1;::::0;::::1;21402:21:1::0;21459:2;21439:18;;;21432:30;21498:34;21478:18;;;21471:62;-1:-1:-1;;;21549:18:1;;;21542:36;21595:19;;5104:73:0::1;21218:402:1::0;5104:73:0::1;5188:28;5207:8;5188:18;:28::i;:::-;5023:201:::0;:::o;24850:305::-;24952:4;-1:-1:-1;;;;;;24989:40:0;;-1:-1:-1;;;24989:40:0;;:105;;-1:-1:-1;;;;;;;25046:48:0;;-1:-1:-1;;;25046:48:0;24989:105;:158;;;-1:-1:-1;;;;;;;;;;16655:40:0;;;25111:36;16546:157;34590:174;34665:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34665:29:0;-1:-1:-1;;;;;34665:29:0;;;;;;;;:24;;34719:23;34665:24;34719:14;:23::i;:::-;-1:-1:-1;;;;;34710:46:0;;;;;;;;;;;34590:174;;:::o;60383:395::-;60434:7;;;60489:188;60510:19;60506:1;:23;60489:188;;;60563:13;;-1:-1:-1;;;;;60563:13:0;60555:32;60588:10;60599:12;60612:1;60599:15;;;;;;;:::i;:::-;;;60555:60;;-1:-1:-1;;;;;;60555:60:0;;;;;;;-1:-1:-1;;;;;9251:32:1;;;60555:60:0;;;9233:51:1;9300:18;;;9293:34;9206:18;;60555:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60552:114;;;60635:15;60649:1;60635:15;;:::i;:::-;;;60552:114;60531:4;;;;:::i;:::-;;;;60489:188;;;-1:-1:-1;60692:15:0;60689:47;;-1:-1:-1;60735:1:0;60689:47;60756:14;:10;60769:1;60756:14;:::i;:::-;60749:21;;;60383:395;:::o;31592:110::-;31668:26;31678:2;31682:7;31668:26;;;;;;;;;;;;:9;:26::i;30902:348::-;30995:4;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;31012:73;;;;-1:-1:-1;;;31012:73:0;;21827:2:1;31012:73:0;;;21809:21:1;21866:2;21846:18;;;21839:30;21905:34;21885:18;;;21878:62;-1:-1:-1;;;21956:18:1;;;21949:42;22008:19;;31012:73:0;21625:408:1;31012:73:0;31096:13;31112:23;31127:7;31112:14;:23::i;:::-;31096:39;;31165:5;-1:-1:-1;;;;;31154:16:0;:7;-1:-1:-1;;;;;31154:16:0;;:51;;;;31198:7;-1:-1:-1;;;;;31174:31:0;:20;31186:7;31174:11;:20::i;:::-;-1:-1:-1;;;;;31174:31:0;;31154:51;:87;;;-1:-1:-1;;;;;;27994:25:0;;;27970:4;27994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31209:32;27873:164;33894:578;34053:4;-1:-1:-1;;;;;34026:31:0;:23;34041:7;34026:14;:23::i;:::-;-1:-1:-1;;;;;34026:31:0;;34018:85;;;;-1:-1:-1;;;34018:85:0;;22240:2:1;34018:85:0;;;22222:21:1;22279:2;22259:18;;;22252:30;22318:34;22298:18;;;22291:62;-1:-1:-1;;;22369:18:1;;;22362:39;22418:19;;34018:85:0;22038:405:1;34018:85:0;-1:-1:-1;;;;;34122:16:0;;34114:65;;;;-1:-1:-1;;;34114:65:0;;22650:2:1;34114:65:0;;;22632:21:1;22689:2;22669:18;;;22662:30;22728:34;22708:18;;;22701:62;-1:-1:-1;;;22779:18:1;;;22772:34;22823:19;;34114:65:0;22448:400:1;34114:65:0;34192:39;34213:4;34219:2;34223:7;34192:20;:39::i;:::-;34296:29;34313:1;34317:7;34296:8;:29::i;:::-;-1:-1:-1;;;;;34338:15:0;;;;;;:9;:15;;;;;:20;;34357:1;;34338:15;:20;;34357:1;;34338:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34369:13:0;;;;;;:9;:13;;;;;:18;;34386:1;;34369:13;:18;;34386:1;;34369:18;:::i;:::-;;;;-1:-1:-1;;34398:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34398:21:0;-1:-1:-1;;;;;34398:21:0;;;;;;;;;34437:27;;34398:16;;34437:27;;;;;;;33894:578;;;:::o;44803:796::-;44894:4;44934;44894;44951:525;44975:5;:12;44971:1;:16;44951:525;;;45009:20;45032:5;45038:1;45032:8;;;;;;;;:::i;:::-;;;;;;;45009:31;;45077:12;45061;:28;45057:408;;45214:44;;;;;;23010:19:1;;;23045:12;;;23038:28;;;23082:12;;45214:44:0;;;;;;;;;;;;45204:55;;;;;;45189:70;;45057:408;;;45404:44;;;;;;23010:19:1;;;23045:12;;;23038:28;;;23082:12;;45404:44:0;;;;;;;;;;;;45394:55;;;;;;45379:70;;45057:408;-1:-1:-1;44989:3:0;;;;:::i;:::-;;;;44951:525;;;-1:-1:-1;45571:20:0;;;;44803:796;-1:-1:-1;;;44803:796:0:o;60786:498::-;60831:7;;;60886:361;60907:19;60903:1;:23;60886:361;;;60953:16;:33;60970:12;60983:1;60970:15;;;;;;;:::i;:::-;;;60953:33;;;;;;;;;;;-1:-1:-1;60953:33:0;;;;60949:287;;61047:13;;-1:-1:-1;;;;;61047:13:0;61039:32;61072:10;61083:12;61096:1;61083:15;;;;;;;:::i;:::-;;;61039:60;;-1:-1:-1;;;;;;61039:60:0;;;;;;;-1:-1:-1;;;;;9251:32:1;;;61039:60:0;;;9233:51:1;9300:18;;;9293:34;9206:18;;61039:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61036:185;;;61123:15;61137:1;61123:15;;:::i;:::-;;;61197:4;61161:16;:33;61178:12;61191:1;61178:15;;;;;;;:::i;:::-;;;61161:33;;;;;;;;;;;-1:-1:-1;61161:33:0;:40;;-1:-1:-1;;61161:40:0;;;;;;;;;;61036:185;60928:4;;;;:::i;:::-;;;;60886:361;;5384:191;5477:6;;;-1:-1:-1;;;;;5494:17:0;;;-1:-1:-1;;;;;;5494:17:0;;;;;;;5527:40;;5477:6;;;5494:17;5477:6;;5527:40;;5458:16;;5527:40;5447:128;5384:191;:::o;34906:315::-;35061:8;-1:-1:-1;;;;;35052:17:0;:5;-1:-1:-1;;;;;35052:17:0;;;35044:55;;;;-1:-1:-1;;;35044:55:0;;23307:2:1;35044:55:0;;;23289:21:1;23346:2;23326:18;;;23319:30;23385:27;23365:18;;;23358:55;23430:18;;35044:55:0;23105:349:1;35044:55:0;-1:-1:-1;;;;;35110:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35110:46:0;;;;;;;;;;35172:41;;540::1;;;35172::0;;513:18:1;35172:41:0;;;;;;;34906:315;;;:::o;29980:::-;30137:28;30147:4;30153:2;30157:7;30137:9;:28::i;:::-;30184:48;30207:4;30213:2;30217:7;30226:5;30184:22;:48::i;:::-;30176:111;;;;-1:-1:-1;;;30176:111:0;;;;;;;:::i;59829:113::-;59889:13;59922:12;59915:19;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;31929:321;32059:18;32065:2;32069:7;32059:5;:18::i;:::-;32110:54;32141:1;32145:2;32149:7;32158:5;32110:22;:54::i;:::-;32088:154;;;;-1:-1:-1;;;32088:154:0;;;;;;;:::i;39977:589::-;-1:-1:-1;;;;;40183:18:0;;40179:187;;40218:40;40250:7;41393:10;:17;;41366:24;;;;:15;:24;;;;;:44;;;41421:24;;;;;;;;;;;;41289:164;40218:40;40179:187;;;40288:2;-1:-1:-1;;;;;40280:10:0;:4;-1:-1:-1;;;;;40280:10:0;;40276:90;;40307:47;40340:4;40346:7;40307:32;:47::i;:::-;-1:-1:-1;;;;;40380:16:0;;40376:183;;40413:45;40450:7;40413:36;:45::i;40376:183::-;40486:4;-1:-1:-1;;;;;40480:10:0;:2;-1:-1:-1;;;;;40480:10:0;;40476:83;;40507:40;40535:2;40539:7;40507:27;:40::i;35786:799::-;35941:4;-1:-1:-1;;;;;35962:13:0;;6725:20;6773:8;35958:620;;35998:72;;-1:-1:-1;;;35998:72:0;;-1:-1:-1;;;;;35998:36:0;;;;;:72;;2918:10;;36049:4;;36055:7;;36064:5;;35998:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35998:72:0;;;;;;;;-1:-1:-1;;35998:72:0;;;;;;;;;;;;:::i;:::-;;;35994:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36240:13:0;;36236:272;;36283:60;;-1:-1:-1;;;36283:60:0;;;;;;;:::i;36236:272::-;36458:6;36452:13;36443:6;36439:2;36435:15;36428:38;35994:529;-1:-1:-1;;;;;;36121:51:0;-1:-1:-1;;;36121:51:0;;-1:-1:-1;36114:58:0;;35958:620;-1:-1:-1;36562:4:0;35786:799;;;;;;:::o;32586:382::-;-1:-1:-1;;;;;32666:16:0;;32658:61;;;;-1:-1:-1;;;32658:61:0;;24945:2:1;32658:61:0;;;24927:21:1;;;24964:18;;;24957:30;25023:34;25003:18;;;24996:62;25075:18;;32658:61:0;24743:356:1;32658:61:0;30673:4;30697:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30697:16:0;:30;32730:58;;;;-1:-1:-1;;;32730:58:0;;25306:2:1;32730:58:0;;;25288:21:1;25345:2;25325:18;;;25318:30;25384;25364:18;;;25357:58;25432:18;;32730:58:0;25104:352:1;32730:58:0;32801:45;32830:1;32834:2;32838:7;32801:20;:45::i;:::-;-1:-1:-1;;;;;32859:13:0;;;;;;:9;:13;;;;;:18;;32876:1;;32859:13;:18;;32876:1;;32859:18;:::i;:::-;;;;-1:-1:-1;;32888:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32888:21:0;-1:-1:-1;;;;;32888:21:0;;;;;;;;32927:33;;32888:16;;;32927:33;;32888:16;;32927:33;32586:382;;:::o;42080:988::-;42346:22;42396:1;42371:22;42388:4;42371:16;:22::i;:::-;:26;;;;:::i;:::-;42408:18;42429:26;;;:17;:26;;;;;;42346:51;;-1:-1:-1;42562:28:0;;;42558:328;;-1:-1:-1;;;;;42629:18:0;;42607:19;42629:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42680:30;;;;;;:44;;;42797:30;;:17;:30;;;;;:43;;;42558:328;-1:-1:-1;42982:26:0;;;;:17;:26;;;;;;;;42975:33;;;-1:-1:-1;;;;;43026:18:0;;;;;:12;:18;;;;;:34;;;;;;;43019:41;42080:988::o;43363:1079::-;43641:10;:17;43616:22;;43641:21;;43661:1;;43641:21;:::i;:::-;43673:18;43694:24;;;:15;:24;;;;;;44067:10;:26;;43616:46;;-1:-1:-1;43694:24:0;;43616:46;;44067:26;;;;;;:::i;:::-;;;;;;;;;44045:48;;44131:11;44106:10;44117;44106:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44211:28;;;:15;:28;;;;;;;:41;;;44383:24;;;;;44376:31;44418:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43434:1008;;;43363:1079;:::o;40867:221::-;40952:14;40969:20;40986:2;40969:16;:20::i;:::-;-1:-1:-1;;;;;41000:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41045:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40867:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;1143:258::-;1215:1;1225:113;1239:6;1236:1;1233:13;1225:113;;;1315:11;;;1309:18;1296:11;;;1289:39;1261:2;1254:10;1225:113;;;1356:6;1353:1;1350:13;1347:48;;;-1:-1:-1;;1391:1:1;1373:16;;1366:27;1143:258::o;1406:::-;1448:3;1486:5;1480:12;1513:6;1508:3;1501:19;1529:63;1585:6;1578:4;1573:3;1569:14;1562:4;1555:5;1551:16;1529:63;:::i;:::-;1646:2;1625:15;-1:-1:-1;;1621:29:1;1612:39;;;;1653:4;1608:50;;1406:258;-1:-1:-1;;1406:258:1:o;1669:220::-;1818:2;1807:9;1800:21;1781:4;1838:45;1879:2;1868:9;1864:18;1856:6;1838:45;:::i;1894:180::-;1953:6;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;-1:-1:-1;2045:23:1;;1894:180;-1:-1:-1;1894:180:1:o;2287:173::-;2355:20;;-1:-1:-1;;;;;2404:31:1;;2394:42;;2384:70;;2450:1;2447;2440:12;2384:70;2287:173;;;:::o;2465:254::-;2533:6;2541;2594:2;2582:9;2573:7;2569:23;2565:32;2562:52;;;2610:1;2607;2600:12;2562:52;2633:29;2652:9;2633:29;:::i;:::-;2623:39;2709:2;2694:18;;;;2681:32;;-1:-1:-1;;;2465:254:1:o;2724:683::-;2819:6;2827;2835;2888:2;2876:9;2867:7;2863:23;2859:32;2856:52;;;2904:1;2901;2894:12;2856:52;2940:9;2927:23;2917:33;;3001:2;2990:9;2986:18;2973:32;3024:18;3065:2;3057:6;3054:14;3051:34;;;3081:1;3078;3071:12;3051:34;3119:6;3108:9;3104:22;3094:32;;3164:7;3157:4;3153:2;3149:13;3145:27;3135:55;;3186:1;3183;3176:12;3135:55;3226:2;3213:16;3252:2;3244:6;3241:14;3238:34;;;3268:1;3265;3258:12;3238:34;3321:7;3316:2;3306:6;3303:1;3299:14;3295:2;3291:23;3287:32;3284:45;3281:65;;;3342:1;3339;3332:12;3281:65;3373:2;3369;3365:11;3355:21;;3395:6;3385:16;;;;;2724:683;;;;;:::o;3412:328::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;3597:29;3616:9;3597:29;:::i;:::-;3587:39;;3645:38;3679:2;3668:9;3664:18;3645:38;:::i;:::-;3635:48;;3730:2;3719:9;3715:18;3702:32;3692:42;;3412:328;;;;;:::o;3927:186::-;3986:6;4039:2;4027:9;4018:7;4014:23;4010:32;4007:52;;;4055:1;4052;4045:12;4007:52;4078:29;4097:9;4078:29;:::i;4118:632::-;4289:2;4341:21;;;4411:13;;4314:18;;;4433:22;;;4260:4;;4289:2;4512:15;;;;4486:2;4471:18;;;4260:4;4555:169;4569:6;4566:1;4563:13;4555:169;;;4630:13;;4618:26;;4699:15;;;;4664:12;;;;4591:1;4584:9;4555:169;;;-1:-1:-1;4741:3:1;;4118:632;-1:-1:-1;;;;;;4118:632:1:o;4755:127::-;4816:10;4811:3;4807:20;4804:1;4797:31;4847:4;4844:1;4837:15;4871:4;4868:1;4861:15;4887:275;4958:2;4952:9;5023:2;5004:13;;-1:-1:-1;;5000:27:1;4988:40;;5058:18;5043:34;;5079:22;;;5040:62;5037:88;;;5105:18;;:::i;:::-;5141:2;5134:22;4887:275;;-1:-1:-1;4887:275:1:o;5167:407::-;5232:5;5266:18;5258:6;5255:30;5252:56;;;5288:18;;:::i;:::-;5326:57;5371:2;5350:15;;-1:-1:-1;;5346:29:1;5377:4;5342:40;5326:57;:::i;:::-;5317:66;;5406:6;5399:5;5392:21;5446:3;5437:6;5432:3;5428:16;5425:25;5422:45;;;5463:1;5460;5453:12;5422:45;5512:6;5507:3;5500:4;5493:5;5489:16;5476:43;5566:1;5559:4;5550:6;5543:5;5539:18;5535:29;5528:40;5167:407;;;;;:::o;5579:451::-;5648:6;5701:2;5689:9;5680:7;5676:23;5672:32;5669:52;;;5717:1;5714;5707:12;5669:52;5757:9;5744:23;5790:18;5782:6;5779:30;5776:50;;;5822:1;5819;5812:12;5776:50;5845:22;;5898:4;5890:13;;5886:27;-1:-1:-1;5876:55:1;;5927:1;5924;5917:12;5876:55;5950:74;6016:7;6011:2;5998:16;5993:2;5989;5985:11;5950:74;:::i;6035:1084::-;6137:6;6145;6153;6206:2;6194:9;6185:7;6181:23;6177:32;6174:52;;;6222:1;6219;6212:12;6174:52;6262:9;6249:23;6291:18;6332:2;6324:6;6321:14;6318:34;;;6348:1;6345;6338:12;6318:34;6386:6;6375:9;6371:22;6361:32;;6431:7;6424:4;6420:2;6416:13;6412:27;6402:55;;6453:1;6450;6443:12;6402:55;6489:2;6476:16;6511:4;6534:2;6530;6527:10;6524:36;;;6540:18;;:::i;:::-;6586:2;6583:1;6579:10;6569:20;;6609:28;6633:2;6629;6625:11;6609:28;:::i;:::-;6671:15;;;6741:11;;;6737:20;;;6702:12;;;;6769:19;;;6766:39;;;6801:1;6798;6791:12;6766:39;6825:11;;;;6845:142;6861:6;6856:3;6853:15;6845:142;;;6927:17;;6915:30;;6878:12;;;;6965;;;;6845:142;;;7006:5;7043:18;;;7030:32;;-1:-1:-1;;7109:2:1;7094:18;;;7081:32;;6035:1084;-1:-1:-1;;;;;;6035:1084:1:o;7309:315::-;7374:6;7382;7435:2;7423:9;7414:7;7410:23;7406:32;7403:52;;;7451:1;7448;7441:12;7403:52;7474:29;7493:9;7474:29;:::i;:::-;7464:39;;7553:2;7542:9;7538:18;7525:32;7566:28;7588:5;7566:28;:::i;:::-;7613:5;7603:15;;;7309:315;;;;;:::o;7629:667::-;7724:6;7732;7740;7748;7801:3;7789:9;7780:7;7776:23;7772:33;7769:53;;;7818:1;7815;7808:12;7769:53;7841:29;7860:9;7841:29;:::i;:::-;7831:39;;7889:38;7923:2;7912:9;7908:18;7889:38;:::i;:::-;7879:48;;7974:2;7963:9;7959:18;7946:32;7936:42;;8029:2;8018:9;8014:18;8001:32;8056:18;8048:6;8045:30;8042:50;;;8088:1;8085;8078:12;8042:50;8111:22;;8164:4;8156:13;;8152:27;-1:-1:-1;8142:55:1;;8193:1;8190;8183:12;8142:55;8216:74;8282:7;8277:2;8264:16;8259:2;8255;8251:11;8216:74;:::i;:::-;8206:84;;;7629:667;;;;;;;:::o;8301:260::-;8369:6;8377;8430:2;8418:9;8409:7;8405:23;8401:32;8398:52;;;8446:1;8443;8436:12;8398:52;8469:29;8488:9;8469:29;:::i;:::-;8459:39;;8517:38;8551:2;8540:9;8536:18;8517:38;:::i;:::-;8507:48;;8301:260;;;;;:::o;8566:356::-;8768:2;8750:21;;;8787:18;;;8780:30;8846:34;8841:2;8826:18;;8819:62;8913:2;8898:18;;8566:356::o;8927:127::-;8988:10;8983:3;8979:20;8976:1;8969:31;9019:4;9016:1;9009:15;9043:4;9040:1;9033:15;9338:245;9405:6;9458:2;9446:9;9437:7;9433:23;9429:32;9426:52;;;9474:1;9471;9464:12;9426:52;9506:9;9500:16;9525:28;9547:5;9525:28;:::i;9588:127::-;9649:10;9644:3;9640:20;9637:1;9630:31;9680:4;9677:1;9670:15;9704:4;9701:1;9694:15;9720:128;9760:3;9791:1;9787:6;9784:1;9781:13;9778:39;;;9797:18;;:::i;:::-;-1:-1:-1;9833:9:1;;9720:128::o;9853:135::-;9892:3;-1:-1:-1;;9913:17:1;;9910:43;;;9933:18;;:::i;:::-;-1:-1:-1;9980:1:1;9969:13;;9853:135::o;9993:380::-;10072:1;10068:12;;;;10115;;;10136:61;;10190:4;10182:6;10178:17;10168:27;;10136:61;10243:2;10235:6;10232:14;10212:18;10209:38;10206:161;;;10289:10;10284:3;10280:20;10277:1;10270:31;10324:4;10321:1;10314:15;10352:4;10349:1;10342:15;11618:125;11658:4;11686:1;11683;11680:8;11677:34;;;11691:18;;:::i;:::-;-1:-1:-1;11728:9:1;;11618:125::o;12512:346::-;12714:2;12696:21;;;12753:2;12733:18;;;12726:30;-1:-1:-1;;;12787:2:1;12772:18;;12765:52;12849:2;12834:18;;12512:346::o;13805:400::-;14007:2;13989:21;;;14046:2;14026:18;;;14019:30;14085:34;14080:2;14065:18;;14058:62;-1:-1:-1;;;14151:2:1;14136:18;;14129:34;14195:3;14180:19;;13805:400::o;14210:168::-;14250:7;14316:1;14312;14308:6;14304:14;14301:1;14298:21;14293:1;14286:9;14279:17;14275:45;14272:71;;;14323:18;;:::i;:::-;-1:-1:-1;14363:9:1;;14210:168::o;14737:413::-;14939:2;14921:21;;;14978:2;14958:18;;;14951:30;15017:34;15012:2;14997:18;;14990:62;-1:-1:-1;;;15083:2:1;15068:18;;15061:47;15140:3;15125:19;;14737:413::o;17211:127::-;17272:10;17267:3;17263:20;17260:1;17253:31;17303:4;17300:1;17293:15;17327:4;17324:1;17317:15;17343:120;17383:1;17409;17399:35;;17414:18;;:::i;:::-;-1:-1:-1;17448:9:1;;17343:120::o;19686:1527::-;19910:3;19948:6;19942:13;19974:4;19987:51;20031:6;20026:3;20021:2;20013:6;20009:15;19987:51;:::i;:::-;20101:13;;20060:16;;;;20123:55;20101:13;20060:16;20145:15;;;20123:55;:::i;:::-;20267:13;;20200:20;;;20240:1;;20327;20349:18;;;;20402;;;;20429:93;;20507:4;20497:8;20493:19;20481:31;;20429:93;20570:2;20560:8;20557:16;20537:18;20534:40;20531:167;;;-1:-1:-1;;;20597:33:1;;20653:4;20650:1;20643:15;20683:4;20604:3;20671:17;20531:167;20714:18;20741:110;;;;20865:1;20860:328;;;;20707:481;;20741:110;-1:-1:-1;;20776:24:1;;20762:39;;20821:20;;;;-1:-1:-1;20741:110:1;;20860:328;19633:1;19626:14;;;19670:4;19657:18;;20955:1;20969:169;20983:8;20980:1;20977:15;20969:169;;;21065:14;;21050:13;;;21043:37;21108:16;;;;21000:10;;20969:169;;;20973:3;;21169:8;21162:5;21158:20;21151:27;;20707:481;-1:-1:-1;21204:3:1;;19686:1527;-1:-1:-1;;;;;;;;;;;19686:1527:1:o;23459:414::-;23661:2;23643:21;;;23700:2;23680:18;;;23673:30;23739:34;23734:2;23719:18;;23712:62;-1:-1:-1;;;23805:2:1;23790:18;;23783:48;23863:3;23848:19;;23459:414::o;23878:112::-;23910:1;23936;23926:35;;23941:18;;:::i;:::-;-1:-1:-1;23975:9:1;;23878:112::o;23995:489::-;-1:-1:-1;;;;;24264:15:1;;;24246:34;;24316:15;;24311:2;24296:18;;24289:43;24363:2;24348:18;;24341:34;;;24411:3;24406:2;24391:18;;24384:31;;;24189:4;;24432:46;;24458:19;;24450:6;24432:46;:::i;:::-;24424:54;23995:489;-1:-1:-1;;;;;;23995:489:1:o;24489:249::-;24558:6;24611:2;24599:9;24590:7;24586:23;24582:32;24579:52;;;24627:1;24624;24617:12;24579:52;24659:9;24653:16;24678:30;24702:5;24678:30;:::i;25461:127::-;25522:10;25517:3;25513:20;25510:1;25503:31;25553:4;25550:1;25543:15;25577:4;25574:1;25567:15

Swarm Source

ipfs://0354046b1bccee829f062fb6e7e2085b16efc121a835cf5a4bd2a0d1f6e70346
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.