ETH Price: $2,390.35 (-3.53%)

Token

Crypto Pirates (PRT)
 

Overview

Max Total Supply

48 PRT

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jciii.eth
Balance
1 PRT
0x7b3160a0219b4ce3ab78e700576920d6e7300655
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:
CryptoPirates

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-09
*/

// SPDX-License-Identifier: MIT
// File: contracts/common/ContextMixin.sol

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// 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/CryptoPirates.sol


pragma solidity ^0.8.0;




/**
 * @title CryptoPirates
 * Crypto Pirates is a new type of NFT collectible series and a game where 50% of the owners win prizes in money or NFTs. Guaranteed!
 */
contract CryptoPirates is
    ContextMixin,
    ERC721Enumerable,
    Ownable
{
    uint256 private legendaryAmount = 200;
    uint256 private _currentTokenId = legendaryAmount;
    uint256 public maxMintAmount = 30;
    uint256 public maxSupply = 10200;
    uint256 public mintingLimit = 200;
    uint256 public cost = 0.04 ether;
    uint256 public legendaryMinted = 0;
    uint256 public revealLowerLimit = 0;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedURI;

    address[] private whitelistedWallets;
    address[] private walletsWithDiscount;
    mapping(address => uint256) private discountAmount;
    mapping(address => uint256) private legendaryWallets;
    bool[] private legendaryPositions = new bool[](legendaryAmount);

    bool public onlyWhiteListed = true;
    bool public paused = false;
    bool public revealed = false;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        string memory _notRevealedUri
    )
        ERC721(_name, _symbol)
    {
        baseURI = _uri;
        notRevealedURI = _notRevealedUri;
    }

    /**
     * @dev Mints certain amount of tokens.
     * @param _mintAmount of tokens to mint
     */
    function mint(uint256 _mintAmount) external payable {
        require(!paused, "NFT minting stopped by the owner.");
        require(_mintAmount > 0, "Mint amount has to be grater than zero.");

        uint256 nftMinted = totalSupply();
        uint256 currentLegendaryPosition = legendaryWallets[msg.sender];
        bool mintLegendaryPosition = (currentLegendaryPosition > 0) && (legendaryMinted < legendaryAmount);
        uint256 nftLeft = maxSupply - nftMinted - (legendaryAmount-legendaryMinted);
        // If we have to mint a legendary we add it to the total left.
        if (mintLegendaryPosition) {
            nftLeft++;
        }

        require(_mintAmount <= nftLeft, "Max supply exceeds the mint quantity.");

        uint256 discount = discountAmount[msg.sender];

        if (msg.sender != owner()) {

            if (mintingLimit > 0) {
                require(_mintAmount+nftMinted <= mintingLimit, "NFT minting limit reached.");
            }

            if (onlyWhiteListed == true) {
                require(isWhiteListed(msg.sender), "Wallet is not whitelisted.");
            }
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount + _mintAmount <= maxMintAmount, "You reached the max mintable amount.");
            require(msg.value == (cost * _mintAmount) - discount, "Wrong transaction value.");
        }


        for (uint256 i = 0; i < _mintAmount; i++) {
            uint256 newTokenId;
            if (mintLegendaryPosition) {
                newTokenId = currentLegendaryPosition;
            } else {
                newTokenId = _currentTokenId+1;
            }
            
            _safeMint(msg.sender, newTokenId);

            if (mintLegendaryPosition) {
                legendaryPositions[currentLegendaryPosition-1] = true;
                legendaryWallets[msg.sender] = 0;
                mintLegendaryPosition = false;
                legendaryMinted++;
            } else {
                _currentTokenId++;
            }
        }
        if (discount > 0) {
            discountAmount[msg.sender] = 0;
        }
    }


    function isWhiteListed(address _wallet) public view returns (bool) {
        for (uint256 i = 0; i < whitelistedWallets.length; i++) {
            if (whitelistedWallets[i] == _wallet) {
                return true;
            }
        }
        return false;
    }

    function getDiscountAmount(address _wallet) external view returns (uint) {
        return discountAmount[_wallet];
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if ((revealed == false) && (tokenId > revealLowerLimit)) {
            return notRevealedURI;
        }

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

    function tokensOwnedBy(address _owner) external view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // -----------------------
    //   Internal Functions
    // -----------------------
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // -----------------------
    //   Private Functions
    // -----------------------

    function isWalletDiscounted(address _wallet) private view returns (bool) {
        for (uint256 i = 0; i < walletsWithDiscount.length; i++) {
            if (walletsWithDiscount[i] == _wallet) {
                return true;
            }
        }
        return false;
    }
    // -----------------------
    //   Owner Only Functions
    // -----------------------

    function addWhitelistersWallets(address[] calldata _wallets) external onlyOwner {
        delete whitelistedWallets;
        whitelistedWallets = _wallets;
    }

    function addWhitelisterWallet(address _wallet) external onlyOwner {
        require(!isWhiteListed(_wallet));
        whitelistedWallets.push(_wallet);
    }

    function getWhitelistedWallets() external onlyOwner view returns(address[] memory) {
        return whitelistedWallets;
    }

    function getLegendaryPositions () external onlyOwner view returns (bool[] memory) {
        return legendaryPositions;
    }

    function getLegendariesMinted () external onlyOwner view returns (uint256[] memory) {
        uint256[] memory tokenIds = new uint256[](legendaryMinted);
        uint256 cnt = 0;
        for (uint256 i; i < legendaryAmount; i++) {
            if (legendaryPositions[i] == true) {
                tokenIds[cnt++] = i+1;
            }
        }
        return tokenIds;
    }

    function isLegendaryPositionUsed(uint256 _nftPosition) external onlyOwner view returns (bool) {
        require(_nftPosition <= legendaryAmount, "Position is over the boundaries");
         return legendaryPositions[_nftPosition-1];
    }

    function addLegendaryWallet(address _wallet, uint256 _nftPosition) external onlyOwner {
        require(_nftPosition > 0, "Invalid position.");
        require(_nftPosition <= legendaryAmount, "Position is over the boundaries");
        require(legendaryPositions[_nftPosition-1] == false, "Legendary NFT already minted.");
        legendaryWallets[_wallet] = _nftPosition;
    }

    function getLegendaryWalletNftPosition(address _wallet) external onlyOwner view returns (uint256) {
        return legendaryWallets[_wallet];
    }

     /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to, uint256 _mintAmount) external payable onlyOwner {
        uint256 supply = totalSupply();
        require(!paused, "NFT minting stopped by the owner.");
        require(_mintAmount > 0, "Mint amount has to be grater than zero.");
        require(supply + _mintAmount <= maxSupply, "Sorry, the NFTs are sold out");
    
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_to, _currentTokenId++);
        }
    }

     /**
     * @dev Mints legendary tokens to an address.
     * @param _to address of the future owner of the token
     */
    function mintLegendaryTo(address _to, uint256 _mintAmount, uint256 _startingPosition) external payable onlyOwner {
        require(!paused, "NFT minting stopped by the owner.");
        require(_mintAmount > 0, "Mint amount has to be grater than zero.");
        require(_mintAmount + legendaryMinted <= legendaryAmount, "Not enough legendary tokens to mint.");
        require((_startingPosition > 0) && (_startingPosition <= legendaryAmount), "Starting position over bounderies.");
        
        uint256 newTokenId = _startingPosition;
        for (uint256 i = 0; i < _mintAmount; i++) {
            // Search for the next available not minted token id
            while (legendaryPositions[newTokenId-1]){
                if (newTokenId >= legendaryAmount) {
                    newTokenId = 1;
                } else {
                    newTokenId++;
                }
            }
            _safeMint(_to, newTokenId);
            legendaryPositions[newTokenId-1] = true;
            newTokenId++;
            legendaryMinted++;
        }
    }

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

    function reveal(bool _state, uint256 _lowerLimit) external onlyOwner {
        revealed = _state;
        revealLowerLimit = _lowerLimit;
    }

    function getDiscountedWallets() external onlyOwner view returns (address[] memory){
        return walletsWithDiscount;
    }

    function setDiscountAmount(address _wallet, uint256 _discount) public onlyOwner {
        discountAmount[_wallet] = _discount;
        if (!isWalletDiscounted(_wallet)) {
            walletsWithDiscount.push(_wallet);
        }
    }

    function widthdraw(uint256 _amount) external onlyOwner {
        (bool success,) =  payable(msg.sender).call{value : _amount}("");
        require(success, "Transfer failed.");
    }

    function withdrawAll() external onlyOwner {
        (bool success, ) =  payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function balance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    // Setters
    
    function setOnlyWhiteListed(bool _state) public onlyOwner {
        onlyWhiteListed = _state;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMintingLimit(uint256 _newLimit) public onlyOwner {
        mintingLimit = _newLimit;
    }

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

    function setNotRevealedUri(string memory _notRevealedUri) external onlyOwner {
        notRevealedURI = _notRevealedUri;
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"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":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_nftPosition","type":"uint256"}],"name":"addLegendaryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"addWhitelisterWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addWhitelistersWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getDiscountAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDiscountedWallets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLegendariesMinted","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLegendaryPositions","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getLegendaryWalletNftPosition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedWallets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPosition","type":"uint256"}],"name":"isLegendaryPositionUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legendaryMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_startingPosition","type":"uint256"}],"name":"mintLegendaryTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"uint256","name":"_lowerLimit","type":"uint256"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealLowerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_discount","type":"uint256"}],"name":"setDiscountAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMintingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhiteListed","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c8600b819055600c819055601e600d556127d8600e55600f55668e1bc9bf0400006010556000601181905560125560c06040526005608081905264173539b7b760d91b60a090815262000057916014919062000245565b50600b546001600160401b038111156200007557620000756200053a565b6040519080825280602002602001820160405280156200009f578160200160208202803683370190505b508051620000b691601a91602090910190620002d4565b50601b805462ffffff19166001179055348015620000d357600080fd5b506040516200434438038062004344833981016040819052620000f69162000444565b8351849084906200010f90600090602085019062000245565b5080516200012590600190602084019062000245565b505050620001426200013c6200017860201b60201c565b62000194565b81516200015790601390602085019062000245565b5080516200016d90601590602084019062000245565b505050505062000550565b60006200018f620001e660201b620028d31760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000333014156200023f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002429050565b50335b90565b8280546200025390620004fd565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d092915062000376565b5090565b82805482825590600052602060002090601f01602090048101928215620002c25791602002820160005b838211156200033d57835183826101000a81548160ff0219169083151502179055509260200192600101602081600001049283019260010302620002fe565b80156200036c5782816101000a81549060ff02191690556001016020816000010492830192600103026200033d565b5050620002d09291505b5b80821115620002d0576000815560010162000377565b600082601f8301126200039f57600080fd5b81516001600160401b0380821115620003bc57620003bc6200053a565b604051601f8301601f19908116603f01168101908282118183101715620003e757620003e76200053a565b816040528381526020925086838588010111156200040457600080fd5b600091505b8382101562000428578582018301518183018401529082019062000409565b838211156200043a5760008385830101525b9695505050505050565b600080600080608085870312156200045b57600080fd5b84516001600160401b03808211156200047357600080fd5b62000481888389016200038d565b955060208701519150808211156200049857600080fd5b620004a6888389016200038d565b94506040870151915080821115620004bd57600080fd5b620004cb888389016200038d565b93506060870151915080821115620004e257600080fd5b50620004f1878288016200038d565b91505092959194509250565b600181811c908216806200051257607f821691505b602082108114156200053457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613de480620005606000396000f3fe60806040526004361061038c5760003560e01c806373096bab116101dc578063bfccbefd11610102578063e0da260c116100a0578063e9aac1021161006f578063e9aac10214610a3d578063ea66aeb314610a53578063f2fde38b14610a73578063f5c58e7f14610a9357600080fd5b8063e0da260c14610992578063e786e0b9146109b2578063e910b3d1146109d2578063e985e9c5146109f457600080fd5b8063c87b56dd116100dc578063c87b56dd1461091c578063d5abeb011461093c578063d9c9adc314610952578063da3ef23f1461097257600080fd5b8063bfccbefd146108d1578063c17ecd12146108e7578063c66828621461090757600080fd5b8063a1de4d221161017a578063ae488b6311610149578063ae488b631461085c578063b03283781461087c578063b69ef8a81461089c578063b88d4fde146108b157600080fd5b8063a1de4d22146107ed578063a22cb4651461080d578063a47590741461082d578063ac928f661461084757600080fd5b806388b1f4aa116101b657806388b1f4aa146107875780638da5cb5b146107a757806395d89b41146107c5578063a0712d68146107da57600080fd5b806373096bab1461073057806375bef0d814610752578063853828b61461077257600080fd5b806342842e0e116102c157806355f804b31161025f5780636f9170f61161022e5780636f9170f6146106c657806370a08231146106e6578063715018a614610706578063722503801461071b57600080fd5b806355f804b3146106525780635c975abb146106725780636352211e146106915780636c0360eb146106b157600080fd5b80634529b5481161029b5780634529b548146105dc57806349072f12146105fc5780634f6ccce714610612578063518302271461063257600080fd5b806342842e0e14610589578063449a52f8146105a957806344a0d68a146105bc57600080fd5b806313faede61161032e578063239c70ae11610308578063239c70ae1461051357806323b872dd146105295780632f745c591461054957806339f3027d1461056957600080fd5b806313faede6146104c657806318160ddd146104dc5780631eedab80146104f157600080fd5b8063081812fc1161036a578063081812fc1461040a578063088a4ed014610442578063095ea7b3146104625780630f99a4f61461048257600080fd5b806301ffc9a71461039157806302329a29146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613837565b610aa6565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004613800565b610ad1565b005b3480156103f457600080fd5b506103fd610b3d565b6040516103bd9190613abf565b34801561041657600080fd5b5061042a6104253660046138ba565b610bcf565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d3660046138ba565b610c64565b34801561046e57600080fd5b506103e661047d36600461372e565b610cb2565b34801561048e57600080fd5b506104b861049d3660046135fe565b6001600160a01b031660009081526018602052604090205490565b6040519081526020016103bd565b3480156104d257600080fd5b506104b860105481565b3480156104e857600080fd5b506008546104b8565b3480156104fd57600080fd5b50610506610dda565b6040516103bd9190613a00565b34801561051f57600080fd5b506104b8600d5481565b34801561053557600080fd5b506103e661054436600461364c565b610e85565b34801561055557600080fd5b506104b861056436600461372e565b610ebd565b34801561057557600080fd5b506103e661058436600461381b565b610f53565b34801561059557600080fd5b506103e66105a436600461364c565b610fbc565b6103e66105b736600461372e565b610fd7565b3480156105c857600080fd5b506103e66105d73660046138ba565b611113565b3480156105e857600080fd5b506103e66105f736600461378b565b611161565b34801561060857600080fd5b506104b8600f5481565b34801561061e57600080fd5b506104b861062d3660046138ba565b6111c2565b34801561063e57600080fd5b50601b546103b19062010000900460ff1681565b34801561065e57600080fd5b506103e661066d366004613871565b611255565b34801561067e57600080fd5b50601b546103b190610100900460ff1681565b34801561069d57600080fd5b5061042a6106ac3660046138ba565b6112b5565b3480156106bd57600080fd5b506103fd61132c565b3480156106d257600080fd5b506103b16106e13660046135fe565b6113ba565b3480156106f257600080fd5b506104b86107013660046135fe565b611424565b34801561071257600080fd5b506103e66114ab565b34801561072757600080fd5b506103fd611500565b34801561073c57600080fd5b5061074561150d565b6040516103bd9190613a4d565b34801561075e57600080fd5b506103e661076d3660046135fe565b6115cd565b34801561077e57600080fd5b506103e661167b565b34801561079357600080fd5b506103e66107a236600461372e565b611752565b3480156107b357600080fd5b50600a546001600160a01b031661042a565b3480156107d157600080fd5b506103fd611814565b6103e66107e83660046138ba565b611823565b3480156107f957600080fd5b506103b16108083660046138ba565b611bff565b34801561081957600080fd5b506103e6610828366004613704565b611ce1565b34801561083957600080fd5b50601b546103b19060ff1681565b34801561085357600080fd5b50610506611cf3565b34801561086857600080fd5b506103e661087736600461372e565b611d9c565b34801561088857600080fd5b506103e6610897366004613800565b611f21565b3480156108a857600080fd5b506104b8611f7d565b3480156108bd57600080fd5b506103e66108cc366004613688565b611fcd565b3480156108dd57600080fd5b506104b860125481565b3480156108f357600080fd5b506103e6610902366004613871565b612006565b34801561091357600080fd5b506103fd612062565b34801561092857600080fd5b506103fd6109373660046138ba565b61206f565b34801561094857600080fd5b506104b8600e5481565b34801561095e57600080fd5b506103e661096d3660046138ba565b6121fe565b34801561097e57600080fd5b506103e661098d366004613871565b61224c565b34801561099e57600080fd5b506103e66109ad3660046138ba565b6122a8565b3480156109be57600080fd5b506104b86109cd3660046135fe565b61237c565b3480156109de57600080fd5b506109e76123e3565b6040516103bd9190613a87565b348015610a0057600080fd5b506103b1610a0f366004613619565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4957600080fd5b506104b860115481565b348015610a5f57600080fd5b506109e7610a6e3660046135fe565b612513565b348015610a7f57600080fd5b506103e6610a8e3660046135fe565b6125b5565b6103e6610aa1366004613758565b61266c565b60006001600160e01b0319821663780e9d6360e01b1480610acb5750610acb8261292f565b92915050565b610ad961297f565b6001600160a01b0316610af4600a546001600160a01b031690565b6001600160a01b031614610b235760405162461bcd60e51b8152600401610b1a90613b65565b60405180910390fd5b601b80549115156101000261ff0019909216919091179055565b606060008054610b4c90613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890613cc0565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b1a565b506000908152600460205260409020546001600160a01b031690565b610c6c61297f565b6001600160a01b0316610c87600a546001600160a01b031690565b6001600160a01b031614610cad5760405162461bcd60e51b8152600401610b1a90613b65565b600d55565b6000610cbd826112b5565b9050806001600160a01b0316836001600160a01b03161415610d2b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b1a565b806001600160a01b0316610d3d61297f565b6001600160a01b03161480610d595750610d5981610a0f61297f565b610dcb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b1a565b610dd5838361298e565b505050565b6060610de461297f565b6001600160a01b0316610dff600a546001600160a01b031690565b6001600160a01b031614610e255760405162461bcd60e51b8152600401610b1a90613b65565b6017805480602002602001604051908101604052809291908181526020018280548015610bc557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610e5d57505050505090505b90565b610e96610e9061297f565b826129fc565b610eb25760405162461bcd60e51b8152600401610b1a90613b9a565b610dd5838383612af3565b6000610ec883611424565b8210610f2a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b1a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610f5b61297f565b6001600160a01b0316610f76600a546001600160a01b031690565b6001600160a01b031614610f9c5760405162461bcd60e51b8152600401610b1a90613b65565b601b8054921515620100000262ff00001990931692909217909155601255565b610dd583838360405180602001604052806000815250611fcd565b610fdf61297f565b6001600160a01b0316610ffa600a546001600160a01b031690565b6001600160a01b0316146110205760405162461bcd60e51b8152600401610b1a90613b65565b600061102b60085490565b601b54909150610100900460ff16156110565760405162461bcd60e51b8152600401610b1a90613b24565b600082116110765760405162461bcd60e51b8152600401610b1a90613beb565b600e546110838383613c32565b11156110d15760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c20746865204e4654732061726520736f6c64206f7574000000006044820152606401610b1a565b60005b8281101561110d57600c80546110fb9186919060006110f283613cfb565b91905055612c9e565b8061110581613cfb565b9150506110d4565b50505050565b61111b61297f565b6001600160a01b0316611136600a546001600160a01b031690565b6001600160a01b03161461115c5760405162461bcd60e51b8152600401610b1a90613b65565b601055565b61116961297f565b6001600160a01b0316611184600a546001600160a01b031690565b6001600160a01b0316146111aa5760405162461bcd60e51b8152600401610b1a90613b65565b6111b660166000613457565b610dd560168383613475565b60006111cd60085490565b82106112305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b1a565b6008828154811061124357611243613d6c565b90600052602060002001549050919050565b61125d61297f565b6001600160a01b0316611278600a546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060139060208401906134d8565b5050565b6000818152600260205260408120546001600160a01b031680610acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b1a565b6013805461133990613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461136590613cc0565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b505050505081565b6000805b60165481101561141b57826001600160a01b0316601682815481106113e5576113e5613d6c565b6000918252602090912001546001600160a01b031614156114095750600192915050565b8061141381613cfb565b9150506113be565b50600092915050565b60006001600160a01b03821661148f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b1a565b506001600160a01b031660009081526003602052604090205490565b6114b361297f565b6001600160a01b03166114ce600a546001600160a01b031690565b6001600160a01b0316146114f45760405162461bcd60e51b8152600401610b1a90613b65565b6114fe6000612cb8565b565b6015805461133990613cc0565b606061151761297f565b6001600160a01b0316611532600a546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b8152600401610b1a90613b65565b601a805480602002602001604051908101604052809291908181526020018280548015610bc557602002820191906000526020600020906000905b825461010083900a900460ff1615158152602060019283018181049485019490930390920291018084116115935790505050505050905090565b6115d561297f565b6001600160a01b03166115f0600a546001600160a01b031690565b6001600160a01b0316146116165760405162461bcd60e51b8152600401610b1a90613b65565b61161f816113ba565b1561162957600080fd5b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055565b61168361297f565b6001600160a01b031661169e600a546001600160a01b031690565b6001600160a01b0316146116c45760405162461bcd60e51b8152600401610b1a90613b65565b604051600090339047908381818185875af1925050503d8060008114611706576040519150601f19603f3d011682016040523d82523d6000602084013e61170b565b606091505b505090508061174f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b1a565b50565b61175a61297f565b6001600160a01b0316611775600a546001600160a01b031690565b6001600160a01b03161461179b5760405162461bcd60e51b8152600401610b1a90613b65565b6001600160a01b03821660009081526018602052604090208190556117bf82612d0a565b6112b157601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0384166001600160a01b03199091161790555050565b606060018054610b4c90613cc0565b601b54610100900460ff161561184b5760405162461bcd60e51b8152600401610b1a90613b24565b6000811161186b5760405162461bcd60e51b8152600401610b1a90613beb565b600061187660085490565b33600090815260196020526040812054919250811580159061189b5750600b54601154105b90506000601154600b546118af9190613c7d565b84600e546118bd9190613c7d565b6118c79190613c7d565b905081156118dd57806118d981613cfb565b9150505b8085111561193b5760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206578636565647320746865206d696e74207175616e6044820152643a34ba3c9760d91b6064820152608401610b1a565b33600081815260186020526040902054600a5490916001600160a01b0390911614611b0657600f54156119c357600f546119758688613c32565b11156119c35760405162461bcd60e51b815260206004820152601a60248201527f4e4654206d696e74696e67206c696d697420726561636865642e0000000000006044820152606401610b1a565b601b5460ff16151560011415611a28576119dc336113ba565b611a285760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f742077686974656c69737465642e0000000000006044820152606401610b1a565b6000611a3333611424565b600d54909150611a438883613c32565b1115611a9d5760405162461bcd60e51b8152602060048201526024808201527f596f75207265616368656420746865206d6178206d696e7461626c6520616d6f6044820152633ab73a1760e11b6064820152608401610b1a565b8187601054611aac9190613c5e565b611ab69190613c7d565b3414611b045760405162461bcd60e51b815260206004820152601860248201527f57726f6e67207472616e73616374696f6e2076616c75652e00000000000000006044820152606401610b1a565b505b60005b86811015611bdf5760008415611b20575084611b31565b600c54611b2e906001613c32565b90505b611b3b3382612c9e565b8415611bb6576001601a611b4f8289613c7d565b81548110611b5f57611b5f613d6c565b6000918252602080832081830401805460ff601f9094166101000a9384021916941515929092029390931790553381526019909152604081208190556011805491965086611bac83613cfb565b9190505550611bcc565b600c8054906000611bc683613cfb565b91905055505b5080611bd781613cfb565b915050611b09565b508015611bf757336000908152601860205260408120555b505050505050565b6000611c0961297f565b6001600160a01b0316611c24600a546001600160a01b031690565b6001600160a01b031614611c4a5760405162461bcd60e51b8152600401610b1a90613b65565b600b54821115611c9c5760405162461bcd60e51b815260206004820152601f60248201527f506f736974696f6e206973206f7665722074686520626f756e646172696573006044820152606401610b1a565b601a611ca9600184613c7d565b81548110611cb957611cb9613d6c565b90600052602060002090602091828204019190069054906101000a900460ff1690505b919050565b6112b1611cec61297f565b8383612d6b565b6060611cfd61297f565b6001600160a01b0316611d18600a546001600160a01b031690565b6001600160a01b031614611d3e5760405162461bcd60e51b8152600401610b1a90613b65565b6016805480602002602001604051908101604052809291908181526020018280548015610bc5576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610e5d575050505050905090565b611da461297f565b6001600160a01b0316611dbf600a546001600160a01b031690565b6001600160a01b031614611de55760405162461bcd60e51b8152600401610b1a90613b65565b60008111611e295760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2103837b9b4ba34b7b71760791b6044820152606401610b1a565b600b54811115611e7b5760405162461bcd60e51b815260206004820152601f60248201527f506f736974696f6e206973206f7665722074686520626f756e646172696573006044820152606401610b1a565b601a611e88600183613c7d565b81548110611e9857611e98613d6c565b60009182526020918290209181049091015460ff601f9092166101000a90041615611f055760405162461bcd60e51b815260206004820152601d60248201527f4c6567656e64617279204e465420616c7265616479206d696e7465642e0000006044820152606401610b1a565b6001600160a01b03909116600090815260196020526040902055565b611f2961297f565b6001600160a01b0316611f44600a546001600160a01b031690565b6001600160a01b031614611f6a5760405162461bcd60e51b8152600401610b1a90613b65565b601b805460ff1916911515919091179055565b6000611f8761297f565b6001600160a01b0316611fa2600a546001600160a01b031690565b6001600160a01b031614611fc85760405162461bcd60e51b8152600401610b1a90613b65565b504790565b611fde611fd861297f565b836129fc565b611ffa5760405162461bcd60e51b8152600401610b1a90613b9a565b61110d84848484612e3a565b61200e61297f565b6001600160a01b0316612029600a546001600160a01b031690565b6001600160a01b03161461204f5760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060159060208401906134d8565b6014805461133990613cc0565b6000818152600260205260409020546060906001600160a01b03166120ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b1a565b601b5462010000900460ff16158015612108575060125482115b1561219f576015805461211a90613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461214690613cc0565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b50505050509050919050565b60006121a9612e6d565b905060008151116121c957604051806020016040528060008152506121f7565b806121d384612e7c565b60146040516020016121e7939291906138ff565b6040516020818303038152906040525b9392505050565b61220661297f565b6001600160a01b0316612221600a546001600160a01b031690565b6001600160a01b0316146122475760405162461bcd60e51b8152600401610b1a90613b65565b600f55565b61225461297f565b6001600160a01b031661226f600a546001600160a01b031690565b6001600160a01b0316146122955760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060149060208401906134d8565b6122b061297f565b6001600160a01b03166122cb600a546001600160a01b031690565b6001600160a01b0316146122f15760405162461bcd60e51b8152600401610b1a90613b65565b604051600090339083908381818185875af1925050503d8060008114612333576040519150601f19603f3d011682016040523d82523d6000602084013e612338565b606091505b50509050806112b15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b1a565b600061238661297f565b6001600160a01b03166123a1600a546001600160a01b031690565b6001600160a01b0316146123c75760405162461bcd60e51b8152600401610b1a90613b65565b506001600160a01b031660009081526019602052604090205490565b60606123ed61297f565b6001600160a01b0316612408600a546001600160a01b031690565b6001600160a01b03161461242e5760405162461bcd60e51b8152600401610b1a90613b65565b600060115467ffffffffffffffff81111561244b5761244b613d82565b604051908082528060200260200182016040528015612474578160200160208202803683370190505b5090506000805b600b5481101561250b57601a818154811061249857612498613d6c565b90600052602060002090602091828204019190069054906101000a900460ff1615156001151514156124f9576124cf816001613c32565b83836124da81613cfb565b9450815181106124ec576124ec613d6c565b6020026020010181815250505b8061250381613cfb565b91505061247b565b509091505090565b6060600061252083611424565b905060008167ffffffffffffffff81111561253d5761253d613d82565b604051908082528060200260200182016040528015612566578160200160208202803683370190505b50905060005b828110156125ad5761257e8582610ebd565b82828151811061259057612590613d6c565b6020908102919091010152806125a581613cfb565b91505061256c565b509392505050565b6125bd61297f565b6001600160a01b03166125d8600a546001600160a01b031690565b6001600160a01b0316146125fe5760405162461bcd60e51b8152600401610b1a90613b65565b6001600160a01b0381166126635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1a565b61174f81612cb8565b61267461297f565b6001600160a01b031661268f600a546001600160a01b031690565b6001600160a01b0316146126b55760405162461bcd60e51b8152600401610b1a90613b65565b601b54610100900460ff16156126dd5760405162461bcd60e51b8152600401610b1a90613b24565b600082116126fd5760405162461bcd60e51b8152600401610b1a90613beb565b600b5460115461270d9084613c32565b11156127675760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f756768206c6567656e6461727920746f6b656e7320746f206d60448201526334b73a1760e11b6064820152608401610b1a565b6000811180156127795750600b548111155b6127d05760405162461bcd60e51b815260206004820152602260248201527f5374617274696e6720706f736974696f6e206f76657220626f756e6465726965604482015261399760f11b6064820152608401610b1a565b8060005b838110156128cc575b601a6127ea600184613c7d565b815481106127fa576127fa613d6c565b90600052602060002090602091828204019190069054906101000a900460ff161561284357600b54821061283157600191506127dd565b8161283b81613cfb565b9250506127dd565b61284d8583612c9e565b6001601a61285b8285613c7d565b8154811061286b5761286b613d6c565b90600052602060002090602091828204019190066101000a81548160ff021916908315150217905550818061289f90613cfb565b6011805491945090915060006128b483613cfb565b919050555080806128c490613cfb565b9150506127d4565b5050505050565b60003330141561292a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610e829050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061296057506001600160e01b03198216635b5e139f60e01b145b80610acb57506301ffc9a760e01b6001600160e01b0319831614610acb565b60006129896128d3565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129c3826112b5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612a755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b1a565b6000612a80836112b5565b9050806001600160a01b0316846001600160a01b03161480612abb5750836001600160a01b0316612ab084610bcf565b6001600160a01b0316145b80612aeb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612b06826112b5565b6001600160a01b031614612b6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b1a565b6001600160a01b038216612bd05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b1a565b612bdb838383612f7a565b612be660008261298e565b6001600160a01b0383166000908152600360205260408120805460019290612c0f908490613c7d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c3d908490613c32565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112b1828260405180602001604052806000815250613032565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805b60175481101561141b57826001600160a01b031660178281548110612d3557612d35613d6c565b6000918252602090912001546001600160a01b03161415612d595750600192915050565b80612d6381613cfb565b915050612d0e565b816001600160a01b0316836001600160a01b03161415612dcd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b1a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e45848484612af3565b612e5184848484613065565b61110d5760405162461bcd60e51b8152600401610b1a90613ad2565b606060138054610b4c90613cc0565b606081612ea05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612eca5780612eb481613cfb565b9150612ec39050600a83613c4a565b9150612ea4565b60008167ffffffffffffffff811115612ee557612ee5613d82565b6040519080825280601f01601f191660200182016040528015612f0f576020820181803683370190505b5090505b8415612aeb57612f24600183613c7d565b9150612f31600a86613d16565b612f3c906030613c32565b60f81b818381518110612f5157612f51613d6c565b60200101906001600160f81b031916908160001a905350612f73600a86613c4a565b9450612f13565b6001600160a01b038316612fd557612fd081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ff8565b816001600160a01b0316836001600160a01b031614612ff857612ff88382613179565b6001600160a01b03821661300f57610dd581613216565b826001600160a01b0316826001600160a01b031614610dd557610dd582826132c5565b61303c8383613309565b6130496000848484613065565b610dd55760405162461bcd60e51b8152600401610b1a90613ad2565b60006001600160a01b0384163b1561316e57836001600160a01b031663150b7a0261308e61297f565b8786866040518563ffffffff1660e01b81526004016130b094939291906139c3565b602060405180830381600087803b1580156130ca57600080fd5b505af19250505080156130fa575060408051601f3d908101601f191682019092526130f791810190613854565b60015b613154573d808015613128576040519150601f19603f3d011682016040523d82523d6000602084013e61312d565b606091505b50805161314c5760405162461bcd60e51b8152600401610b1a90613ad2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612aeb565b506001949350505050565b6000600161318684611424565b6131909190613c7d565b6000838152600760205260409020549091508082146131e3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061322890600190613c7d565b6000838152600960205260408120546008805493945090928490811061325057613250613d6c565b90600052602060002001549050806008838154811061327157613271613d6c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806132a9576132a9613d56565b6001900381819060005260206000200160009055905550505050565b60006132d083611424565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661335f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b1a565b6000818152600260205260409020546001600160a01b0316156133c45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b1a565b6133d060008383612f7a565b6001600160a01b03821660009081526003602052604081208054600192906133f9908490613c32565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061174f919061354c565b8280548282559060005260206000209081019282156134c8579160200282015b828111156134c85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190613495565b506134d492915061354c565b5090565b8280546134e490613cc0565b90600052602060002090601f01602090048101928261350657600085556134c8565b82601f1061351f57805160ff19168380011785556134c8565b828001600101855582156134c8579182015b828111156134c8578251825591602001919060010190613531565b5b808211156134d4576000815560010161354d565b600067ffffffffffffffff8084111561357c5761357c613d82565b604051601f8501601f19908116603f011681019082821181831017156135a4576135a4613d82565b816040528093508581528686860111156135bd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cdc57600080fd5b80358015158114611cdc57600080fd5b60006020828403121561361057600080fd5b6121f7826135d7565b6000806040838503121561362c57600080fd5b613635836135d7565b9150613643602084016135d7565b90509250929050565b60008060006060848603121561366157600080fd5b61366a846135d7565b9250613678602085016135d7565b9150604084013590509250925092565b6000806000806080858703121561369e57600080fd5b6136a7856135d7565b93506136b5602086016135d7565b925060408501359150606085013567ffffffffffffffff8111156136d857600080fd5b8501601f810187136136e957600080fd5b6136f887823560208401613561565b91505092959194509250565b6000806040838503121561371757600080fd5b613720836135d7565b9150613643602084016135ee565b6000806040838503121561374157600080fd5b61374a836135d7565b946020939093013593505050565b60008060006060848603121561376d57600080fd5b613776846135d7565b95602085013595506040909401359392505050565b6000806020838503121561379e57600080fd5b823567ffffffffffffffff808211156137b657600080fd5b818501915085601f8301126137ca57600080fd5b8135818111156137d957600080fd5b8660208260051b85010111156137ee57600080fd5b60209290920196919550909350505050565b60006020828403121561381257600080fd5b6121f7826135ee565b6000806040838503121561382e57600080fd5b61374a836135ee565b60006020828403121561384957600080fd5b81356121f781613d98565b60006020828403121561386657600080fd5b81516121f781613d98565b60006020828403121561388357600080fd5b813567ffffffffffffffff81111561389a57600080fd5b8201601f810184136138ab57600080fd5b612aeb84823560208401613561565b6000602082840312156138cc57600080fd5b5035919050565b600081518084526138eb816020860160208601613c94565b601f01601f19169290920160200192915050565b6000845160206139128285838a01613c94565b8551918401916139258184848a01613c94565b8554920191600090600181811c908083168061394257607f831692505b85831081141561396057634e487b7160e01b85526022600452602485fd5b8080156139745760018114613985576139b2565b60ff198516885283880195506139b2565b60008b81526020902060005b858110156139aa5781548a820152908401908801613991565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139f6908301846138d3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613a415783516001600160a01b031683529284019291840191600101613a1c565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613a41578351151583529284019291840191600101613a69565b6020808252825182820181905260009190848201906040850190845b81811015613a4157835183529284019291840191600101613aa3565b6020815260006121f760208301846138d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f4e4654206d696e74696e672073746f7070656420627920746865206f776e65726040820152601760f91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f4d696e7420616d6f756e742068617320746f206265206772617465722074686160408201526637103d32b9379760c91b606082015260800190565b60008219821115613c4557613c45613d2a565b500190565b600082613c5957613c59613d40565b500490565b6000816000190483118215151615613c7857613c78613d2a565b500290565b600082821015613c8f57613c8f613d2a565b500390565b60005b83811015613caf578181015183820152602001613c97565b8381111561110d5750506000910152565b600181811c90821680613cd457607f821691505b60208210811415613cf557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d0f57613d0f613d2a565b5060010190565b600082613d2557613d25613d40565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461174f57600080fdfea2646970667358221220101b126144d97e02b723eb5668cb7df50023392ad29c724d54692f4887f875a864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f205069726174657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035052540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e636f6d2f6e66745f7072745f683635687938376a68676a752f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000004968747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e636f6d2f6e66745f7072745f683635687938376a68676a752f6e6f745f72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061038c5760003560e01c806373096bab116101dc578063bfccbefd11610102578063e0da260c116100a0578063e9aac1021161006f578063e9aac10214610a3d578063ea66aeb314610a53578063f2fde38b14610a73578063f5c58e7f14610a9357600080fd5b8063e0da260c14610992578063e786e0b9146109b2578063e910b3d1146109d2578063e985e9c5146109f457600080fd5b8063c87b56dd116100dc578063c87b56dd1461091c578063d5abeb011461093c578063d9c9adc314610952578063da3ef23f1461097257600080fd5b8063bfccbefd146108d1578063c17ecd12146108e7578063c66828621461090757600080fd5b8063a1de4d221161017a578063ae488b6311610149578063ae488b631461085c578063b03283781461087c578063b69ef8a81461089c578063b88d4fde146108b157600080fd5b8063a1de4d22146107ed578063a22cb4651461080d578063a47590741461082d578063ac928f661461084757600080fd5b806388b1f4aa116101b657806388b1f4aa146107875780638da5cb5b146107a757806395d89b41146107c5578063a0712d68146107da57600080fd5b806373096bab1461073057806375bef0d814610752578063853828b61461077257600080fd5b806342842e0e116102c157806355f804b31161025f5780636f9170f61161022e5780636f9170f6146106c657806370a08231146106e6578063715018a614610706578063722503801461071b57600080fd5b806355f804b3146106525780635c975abb146106725780636352211e146106915780636c0360eb146106b157600080fd5b80634529b5481161029b5780634529b548146105dc57806349072f12146105fc5780634f6ccce714610612578063518302271461063257600080fd5b806342842e0e14610589578063449a52f8146105a957806344a0d68a146105bc57600080fd5b806313faede61161032e578063239c70ae11610308578063239c70ae1461051357806323b872dd146105295780632f745c591461054957806339f3027d1461056957600080fd5b806313faede6146104c657806318160ddd146104dc5780631eedab80146104f157600080fd5b8063081812fc1161036a578063081812fc1461040a578063088a4ed014610442578063095ea7b3146104625780630f99a4f61461048257600080fd5b806301ffc9a71461039157806302329a29146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613837565b610aa6565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004613800565b610ad1565b005b3480156103f457600080fd5b506103fd610b3d565b6040516103bd9190613abf565b34801561041657600080fd5b5061042a6104253660046138ba565b610bcf565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d3660046138ba565b610c64565b34801561046e57600080fd5b506103e661047d36600461372e565b610cb2565b34801561048e57600080fd5b506104b861049d3660046135fe565b6001600160a01b031660009081526018602052604090205490565b6040519081526020016103bd565b3480156104d257600080fd5b506104b860105481565b3480156104e857600080fd5b506008546104b8565b3480156104fd57600080fd5b50610506610dda565b6040516103bd9190613a00565b34801561051f57600080fd5b506104b8600d5481565b34801561053557600080fd5b506103e661054436600461364c565b610e85565b34801561055557600080fd5b506104b861056436600461372e565b610ebd565b34801561057557600080fd5b506103e661058436600461381b565b610f53565b34801561059557600080fd5b506103e66105a436600461364c565b610fbc565b6103e66105b736600461372e565b610fd7565b3480156105c857600080fd5b506103e66105d73660046138ba565b611113565b3480156105e857600080fd5b506103e66105f736600461378b565b611161565b34801561060857600080fd5b506104b8600f5481565b34801561061e57600080fd5b506104b861062d3660046138ba565b6111c2565b34801561063e57600080fd5b50601b546103b19062010000900460ff1681565b34801561065e57600080fd5b506103e661066d366004613871565b611255565b34801561067e57600080fd5b50601b546103b190610100900460ff1681565b34801561069d57600080fd5b5061042a6106ac3660046138ba565b6112b5565b3480156106bd57600080fd5b506103fd61132c565b3480156106d257600080fd5b506103b16106e13660046135fe565b6113ba565b3480156106f257600080fd5b506104b86107013660046135fe565b611424565b34801561071257600080fd5b506103e66114ab565b34801561072757600080fd5b506103fd611500565b34801561073c57600080fd5b5061074561150d565b6040516103bd9190613a4d565b34801561075e57600080fd5b506103e661076d3660046135fe565b6115cd565b34801561077e57600080fd5b506103e661167b565b34801561079357600080fd5b506103e66107a236600461372e565b611752565b3480156107b357600080fd5b50600a546001600160a01b031661042a565b3480156107d157600080fd5b506103fd611814565b6103e66107e83660046138ba565b611823565b3480156107f957600080fd5b506103b16108083660046138ba565b611bff565b34801561081957600080fd5b506103e6610828366004613704565b611ce1565b34801561083957600080fd5b50601b546103b19060ff1681565b34801561085357600080fd5b50610506611cf3565b34801561086857600080fd5b506103e661087736600461372e565b611d9c565b34801561088857600080fd5b506103e6610897366004613800565b611f21565b3480156108a857600080fd5b506104b8611f7d565b3480156108bd57600080fd5b506103e66108cc366004613688565b611fcd565b3480156108dd57600080fd5b506104b860125481565b3480156108f357600080fd5b506103e6610902366004613871565b612006565b34801561091357600080fd5b506103fd612062565b34801561092857600080fd5b506103fd6109373660046138ba565b61206f565b34801561094857600080fd5b506104b8600e5481565b34801561095e57600080fd5b506103e661096d3660046138ba565b6121fe565b34801561097e57600080fd5b506103e661098d366004613871565b61224c565b34801561099e57600080fd5b506103e66109ad3660046138ba565b6122a8565b3480156109be57600080fd5b506104b86109cd3660046135fe565b61237c565b3480156109de57600080fd5b506109e76123e3565b6040516103bd9190613a87565b348015610a0057600080fd5b506103b1610a0f366004613619565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4957600080fd5b506104b860115481565b348015610a5f57600080fd5b506109e7610a6e3660046135fe565b612513565b348015610a7f57600080fd5b506103e6610a8e3660046135fe565b6125b5565b6103e6610aa1366004613758565b61266c565b60006001600160e01b0319821663780e9d6360e01b1480610acb5750610acb8261292f565b92915050565b610ad961297f565b6001600160a01b0316610af4600a546001600160a01b031690565b6001600160a01b031614610b235760405162461bcd60e51b8152600401610b1a90613b65565b60405180910390fd5b601b80549115156101000261ff0019909216919091179055565b606060008054610b4c90613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890613cc0565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b1a565b506000908152600460205260409020546001600160a01b031690565b610c6c61297f565b6001600160a01b0316610c87600a546001600160a01b031690565b6001600160a01b031614610cad5760405162461bcd60e51b8152600401610b1a90613b65565b600d55565b6000610cbd826112b5565b9050806001600160a01b0316836001600160a01b03161415610d2b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b1a565b806001600160a01b0316610d3d61297f565b6001600160a01b03161480610d595750610d5981610a0f61297f565b610dcb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b1a565b610dd5838361298e565b505050565b6060610de461297f565b6001600160a01b0316610dff600a546001600160a01b031690565b6001600160a01b031614610e255760405162461bcd60e51b8152600401610b1a90613b65565b6017805480602002602001604051908101604052809291908181526020018280548015610bc557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610e5d57505050505090505b90565b610e96610e9061297f565b826129fc565b610eb25760405162461bcd60e51b8152600401610b1a90613b9a565b610dd5838383612af3565b6000610ec883611424565b8210610f2a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b1a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610f5b61297f565b6001600160a01b0316610f76600a546001600160a01b031690565b6001600160a01b031614610f9c5760405162461bcd60e51b8152600401610b1a90613b65565b601b8054921515620100000262ff00001990931692909217909155601255565b610dd583838360405180602001604052806000815250611fcd565b610fdf61297f565b6001600160a01b0316610ffa600a546001600160a01b031690565b6001600160a01b0316146110205760405162461bcd60e51b8152600401610b1a90613b65565b600061102b60085490565b601b54909150610100900460ff16156110565760405162461bcd60e51b8152600401610b1a90613b24565b600082116110765760405162461bcd60e51b8152600401610b1a90613beb565b600e546110838383613c32565b11156110d15760405162461bcd60e51b815260206004820152601c60248201527f536f7272792c20746865204e4654732061726520736f6c64206f7574000000006044820152606401610b1a565b60005b8281101561110d57600c80546110fb9186919060006110f283613cfb565b91905055612c9e565b8061110581613cfb565b9150506110d4565b50505050565b61111b61297f565b6001600160a01b0316611136600a546001600160a01b031690565b6001600160a01b03161461115c5760405162461bcd60e51b8152600401610b1a90613b65565b601055565b61116961297f565b6001600160a01b0316611184600a546001600160a01b031690565b6001600160a01b0316146111aa5760405162461bcd60e51b8152600401610b1a90613b65565b6111b660166000613457565b610dd560168383613475565b60006111cd60085490565b82106112305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b1a565b6008828154811061124357611243613d6c565b90600052602060002001549050919050565b61125d61297f565b6001600160a01b0316611278600a546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060139060208401906134d8565b5050565b6000818152600260205260408120546001600160a01b031680610acb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b1a565b6013805461133990613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461136590613cc0565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b505050505081565b6000805b60165481101561141b57826001600160a01b0316601682815481106113e5576113e5613d6c565b6000918252602090912001546001600160a01b031614156114095750600192915050565b8061141381613cfb565b9150506113be565b50600092915050565b60006001600160a01b03821661148f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b1a565b506001600160a01b031660009081526003602052604090205490565b6114b361297f565b6001600160a01b03166114ce600a546001600160a01b031690565b6001600160a01b0316146114f45760405162461bcd60e51b8152600401610b1a90613b65565b6114fe6000612cb8565b565b6015805461133990613cc0565b606061151761297f565b6001600160a01b0316611532600a546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b8152600401610b1a90613b65565b601a805480602002602001604051908101604052809291908181526020018280548015610bc557602002820191906000526020600020906000905b825461010083900a900460ff1615158152602060019283018181049485019490930390920291018084116115935790505050505050905090565b6115d561297f565b6001600160a01b03166115f0600a546001600160a01b031690565b6001600160a01b0316146116165760405162461bcd60e51b8152600401610b1a90613b65565b61161f816113ba565b1561162957600080fd5b601680546001810182556000919091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319166001600160a01b0392909216919091179055565b61168361297f565b6001600160a01b031661169e600a546001600160a01b031690565b6001600160a01b0316146116c45760405162461bcd60e51b8152600401610b1a90613b65565b604051600090339047908381818185875af1925050503d8060008114611706576040519150601f19603f3d011682016040523d82523d6000602084013e61170b565b606091505b505090508061174f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b1a565b50565b61175a61297f565b6001600160a01b0316611775600a546001600160a01b031690565b6001600160a01b03161461179b5760405162461bcd60e51b8152600401610b1a90613b65565b6001600160a01b03821660009081526018602052604090208190556117bf82612d0a565b6112b157601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0384166001600160a01b03199091161790555050565b606060018054610b4c90613cc0565b601b54610100900460ff161561184b5760405162461bcd60e51b8152600401610b1a90613b24565b6000811161186b5760405162461bcd60e51b8152600401610b1a90613beb565b600061187660085490565b33600090815260196020526040812054919250811580159061189b5750600b54601154105b90506000601154600b546118af9190613c7d565b84600e546118bd9190613c7d565b6118c79190613c7d565b905081156118dd57806118d981613cfb565b9150505b8085111561193b5760405162461bcd60e51b815260206004820152602560248201527f4d617820737570706c79206578636565647320746865206d696e74207175616e6044820152643a34ba3c9760d91b6064820152608401610b1a565b33600081815260186020526040902054600a5490916001600160a01b0390911614611b0657600f54156119c357600f546119758688613c32565b11156119c35760405162461bcd60e51b815260206004820152601a60248201527f4e4654206d696e74696e67206c696d697420726561636865642e0000000000006044820152606401610b1a565b601b5460ff16151560011415611a28576119dc336113ba565b611a285760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f742077686974656c69737465642e0000000000006044820152606401610b1a565b6000611a3333611424565b600d54909150611a438883613c32565b1115611a9d5760405162461bcd60e51b8152602060048201526024808201527f596f75207265616368656420746865206d6178206d696e7461626c6520616d6f6044820152633ab73a1760e11b6064820152608401610b1a565b8187601054611aac9190613c5e565b611ab69190613c7d565b3414611b045760405162461bcd60e51b815260206004820152601860248201527f57726f6e67207472616e73616374696f6e2076616c75652e00000000000000006044820152606401610b1a565b505b60005b86811015611bdf5760008415611b20575084611b31565b600c54611b2e906001613c32565b90505b611b3b3382612c9e565b8415611bb6576001601a611b4f8289613c7d565b81548110611b5f57611b5f613d6c565b6000918252602080832081830401805460ff601f9094166101000a9384021916941515929092029390931790553381526019909152604081208190556011805491965086611bac83613cfb565b9190505550611bcc565b600c8054906000611bc683613cfb565b91905055505b5080611bd781613cfb565b915050611b09565b508015611bf757336000908152601860205260408120555b505050505050565b6000611c0961297f565b6001600160a01b0316611c24600a546001600160a01b031690565b6001600160a01b031614611c4a5760405162461bcd60e51b8152600401610b1a90613b65565b600b54821115611c9c5760405162461bcd60e51b815260206004820152601f60248201527f506f736974696f6e206973206f7665722074686520626f756e646172696573006044820152606401610b1a565b601a611ca9600184613c7d565b81548110611cb957611cb9613d6c565b90600052602060002090602091828204019190069054906101000a900460ff1690505b919050565b6112b1611cec61297f565b8383612d6b565b6060611cfd61297f565b6001600160a01b0316611d18600a546001600160a01b031690565b6001600160a01b031614611d3e5760405162461bcd60e51b8152600401610b1a90613b65565b6016805480602002602001604051908101604052809291908181526020018280548015610bc5576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610e5d575050505050905090565b611da461297f565b6001600160a01b0316611dbf600a546001600160a01b031690565b6001600160a01b031614611de55760405162461bcd60e51b8152600401610b1a90613b65565b60008111611e295760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2103837b9b4ba34b7b71760791b6044820152606401610b1a565b600b54811115611e7b5760405162461bcd60e51b815260206004820152601f60248201527f506f736974696f6e206973206f7665722074686520626f756e646172696573006044820152606401610b1a565b601a611e88600183613c7d565b81548110611e9857611e98613d6c565b60009182526020918290209181049091015460ff601f9092166101000a90041615611f055760405162461bcd60e51b815260206004820152601d60248201527f4c6567656e64617279204e465420616c7265616479206d696e7465642e0000006044820152606401610b1a565b6001600160a01b03909116600090815260196020526040902055565b611f2961297f565b6001600160a01b0316611f44600a546001600160a01b031690565b6001600160a01b031614611f6a5760405162461bcd60e51b8152600401610b1a90613b65565b601b805460ff1916911515919091179055565b6000611f8761297f565b6001600160a01b0316611fa2600a546001600160a01b031690565b6001600160a01b031614611fc85760405162461bcd60e51b8152600401610b1a90613b65565b504790565b611fde611fd861297f565b836129fc565b611ffa5760405162461bcd60e51b8152600401610b1a90613b9a565b61110d84848484612e3a565b61200e61297f565b6001600160a01b0316612029600a546001600160a01b031690565b6001600160a01b03161461204f5760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060159060208401906134d8565b6014805461133990613cc0565b6000818152600260205260409020546060906001600160a01b03166120ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b1a565b601b5462010000900460ff16158015612108575060125482115b1561219f576015805461211a90613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461214690613cc0565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b50505050509050919050565b60006121a9612e6d565b905060008151116121c957604051806020016040528060008152506121f7565b806121d384612e7c565b60146040516020016121e7939291906138ff565b6040516020818303038152906040525b9392505050565b61220661297f565b6001600160a01b0316612221600a546001600160a01b031690565b6001600160a01b0316146122475760405162461bcd60e51b8152600401610b1a90613b65565b600f55565b61225461297f565b6001600160a01b031661226f600a546001600160a01b031690565b6001600160a01b0316146122955760405162461bcd60e51b8152600401610b1a90613b65565b80516112b19060149060208401906134d8565b6122b061297f565b6001600160a01b03166122cb600a546001600160a01b031690565b6001600160a01b0316146122f15760405162461bcd60e51b8152600401610b1a90613b65565b604051600090339083908381818185875af1925050503d8060008114612333576040519150601f19603f3d011682016040523d82523d6000602084013e612338565b606091505b50509050806112b15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b1a565b600061238661297f565b6001600160a01b03166123a1600a546001600160a01b031690565b6001600160a01b0316146123c75760405162461bcd60e51b8152600401610b1a90613b65565b506001600160a01b031660009081526019602052604090205490565b60606123ed61297f565b6001600160a01b0316612408600a546001600160a01b031690565b6001600160a01b03161461242e5760405162461bcd60e51b8152600401610b1a90613b65565b600060115467ffffffffffffffff81111561244b5761244b613d82565b604051908082528060200260200182016040528015612474578160200160208202803683370190505b5090506000805b600b5481101561250b57601a818154811061249857612498613d6c565b90600052602060002090602091828204019190069054906101000a900460ff1615156001151514156124f9576124cf816001613c32565b83836124da81613cfb565b9450815181106124ec576124ec613d6c565b6020026020010181815250505b8061250381613cfb565b91505061247b565b509091505090565b6060600061252083611424565b905060008167ffffffffffffffff81111561253d5761253d613d82565b604051908082528060200260200182016040528015612566578160200160208202803683370190505b50905060005b828110156125ad5761257e8582610ebd565b82828151811061259057612590613d6c565b6020908102919091010152806125a581613cfb565b91505061256c565b509392505050565b6125bd61297f565b6001600160a01b03166125d8600a546001600160a01b031690565b6001600160a01b0316146125fe5760405162461bcd60e51b8152600401610b1a90613b65565b6001600160a01b0381166126635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b1a565b61174f81612cb8565b61267461297f565b6001600160a01b031661268f600a546001600160a01b031690565b6001600160a01b0316146126b55760405162461bcd60e51b8152600401610b1a90613b65565b601b54610100900460ff16156126dd5760405162461bcd60e51b8152600401610b1a90613b24565b600082116126fd5760405162461bcd60e51b8152600401610b1a90613beb565b600b5460115461270d9084613c32565b11156127675760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f756768206c6567656e6461727920746f6b656e7320746f206d60448201526334b73a1760e11b6064820152608401610b1a565b6000811180156127795750600b548111155b6127d05760405162461bcd60e51b815260206004820152602260248201527f5374617274696e6720706f736974696f6e206f76657220626f756e6465726965604482015261399760f11b6064820152608401610b1a565b8060005b838110156128cc575b601a6127ea600184613c7d565b815481106127fa576127fa613d6c565b90600052602060002090602091828204019190069054906101000a900460ff161561284357600b54821061283157600191506127dd565b8161283b81613cfb565b9250506127dd565b61284d8583612c9e565b6001601a61285b8285613c7d565b8154811061286b5761286b613d6c565b90600052602060002090602091828204019190066101000a81548160ff021916908315150217905550818061289f90613cfb565b6011805491945090915060006128b483613cfb565b919050555080806128c490613cfb565b9150506127d4565b5050505050565b60003330141561292a57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150610e829050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061296057506001600160e01b03198216635b5e139f60e01b145b80610acb57506301ffc9a760e01b6001600160e01b0319831614610acb565b60006129896128d3565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129c3826112b5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612a755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b1a565b6000612a80836112b5565b9050806001600160a01b0316846001600160a01b03161480612abb5750836001600160a01b0316612ab084610bcf565b6001600160a01b0316145b80612aeb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612b06826112b5565b6001600160a01b031614612b6e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b1a565b6001600160a01b038216612bd05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b1a565b612bdb838383612f7a565b612be660008261298e565b6001600160a01b0383166000908152600360205260408120805460019290612c0f908490613c7d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612c3d908490613c32565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112b1828260405180602001604052806000815250613032565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805b60175481101561141b57826001600160a01b031660178281548110612d3557612d35613d6c565b6000918252602090912001546001600160a01b03161415612d595750600192915050565b80612d6381613cfb565b915050612d0e565b816001600160a01b0316836001600160a01b03161415612dcd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b1a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e45848484612af3565b612e5184848484613065565b61110d5760405162461bcd60e51b8152600401610b1a90613ad2565b606060138054610b4c90613cc0565b606081612ea05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612eca5780612eb481613cfb565b9150612ec39050600a83613c4a565b9150612ea4565b60008167ffffffffffffffff811115612ee557612ee5613d82565b6040519080825280601f01601f191660200182016040528015612f0f576020820181803683370190505b5090505b8415612aeb57612f24600183613c7d565b9150612f31600a86613d16565b612f3c906030613c32565b60f81b818381518110612f5157612f51613d6c565b60200101906001600160f81b031916908160001a905350612f73600a86613c4a565b9450612f13565b6001600160a01b038316612fd557612fd081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ff8565b816001600160a01b0316836001600160a01b031614612ff857612ff88382613179565b6001600160a01b03821661300f57610dd581613216565b826001600160a01b0316826001600160a01b031614610dd557610dd582826132c5565b61303c8383613309565b6130496000848484613065565b610dd55760405162461bcd60e51b8152600401610b1a90613ad2565b60006001600160a01b0384163b1561316e57836001600160a01b031663150b7a0261308e61297f565b8786866040518563ffffffff1660e01b81526004016130b094939291906139c3565b602060405180830381600087803b1580156130ca57600080fd5b505af19250505080156130fa575060408051601f3d908101601f191682019092526130f791810190613854565b60015b613154573d808015613128576040519150601f19603f3d011682016040523d82523d6000602084013e61312d565b606091505b50805161314c5760405162461bcd60e51b8152600401610b1a90613ad2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612aeb565b506001949350505050565b6000600161318684611424565b6131909190613c7d565b6000838152600760205260409020549091508082146131e3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061322890600190613c7d565b6000838152600960205260408120546008805493945090928490811061325057613250613d6c565b90600052602060002001549050806008838154811061327157613271613d6c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806132a9576132a9613d56565b6001900381819060005260206000200160009055905550505050565b60006132d083611424565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661335f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b1a565b6000818152600260205260409020546001600160a01b0316156133c45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b1a565b6133d060008383612f7a565b6001600160a01b03821660009081526003602052604081208054600192906133f9908490613c32565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061174f919061354c565b8280548282559060005260206000209081019282156134c8579160200282015b828111156134c85781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190613495565b506134d492915061354c565b5090565b8280546134e490613cc0565b90600052602060002090601f01602090048101928261350657600085556134c8565b82601f1061351f57805160ff19168380011785556134c8565b828001600101855582156134c8579182015b828111156134c8578251825591602001919060010190613531565b5b808211156134d4576000815560010161354d565b600067ffffffffffffffff8084111561357c5761357c613d82565b604051601f8501601f19908116603f011681019082821181831017156135a4576135a4613d82565b816040528093508581528686860111156135bd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cdc57600080fd5b80358015158114611cdc57600080fd5b60006020828403121561361057600080fd5b6121f7826135d7565b6000806040838503121561362c57600080fd5b613635836135d7565b9150613643602084016135d7565b90509250929050565b60008060006060848603121561366157600080fd5b61366a846135d7565b9250613678602085016135d7565b9150604084013590509250925092565b6000806000806080858703121561369e57600080fd5b6136a7856135d7565b93506136b5602086016135d7565b925060408501359150606085013567ffffffffffffffff8111156136d857600080fd5b8501601f810187136136e957600080fd5b6136f887823560208401613561565b91505092959194509250565b6000806040838503121561371757600080fd5b613720836135d7565b9150613643602084016135ee565b6000806040838503121561374157600080fd5b61374a836135d7565b946020939093013593505050565b60008060006060848603121561376d57600080fd5b613776846135d7565b95602085013595506040909401359392505050565b6000806020838503121561379e57600080fd5b823567ffffffffffffffff808211156137b657600080fd5b818501915085601f8301126137ca57600080fd5b8135818111156137d957600080fd5b8660208260051b85010111156137ee57600080fd5b60209290920196919550909350505050565b60006020828403121561381257600080fd5b6121f7826135ee565b6000806040838503121561382e57600080fd5b61374a836135ee565b60006020828403121561384957600080fd5b81356121f781613d98565b60006020828403121561386657600080fd5b81516121f781613d98565b60006020828403121561388357600080fd5b813567ffffffffffffffff81111561389a57600080fd5b8201601f810184136138ab57600080fd5b612aeb84823560208401613561565b6000602082840312156138cc57600080fd5b5035919050565b600081518084526138eb816020860160208601613c94565b601f01601f19169290920160200192915050565b6000845160206139128285838a01613c94565b8551918401916139258184848a01613c94565b8554920191600090600181811c908083168061394257607f831692505b85831081141561396057634e487b7160e01b85526022600452602485fd5b8080156139745760018114613985576139b2565b60ff198516885283880195506139b2565b60008b81526020902060005b858110156139aa5781548a820152908401908801613991565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139f6908301846138d3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613a415783516001600160a01b031683529284019291840191600101613a1c565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613a41578351151583529284019291840191600101613a69565b6020808252825182820181905260009190848201906040850190845b81811015613a4157835183529284019291840191600101613aa3565b6020815260006121f760208301846138d3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526021908201527f4e4654206d696e74696e672073746f7070656420627920746865206f776e65726040820152601760f91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f4d696e7420616d6f756e742068617320746f206265206772617465722074686160408201526637103d32b9379760c91b606082015260800190565b60008219821115613c4557613c45613d2a565b500190565b600082613c5957613c59613d40565b500490565b6000816000190483118215151615613c7857613c78613d2a565b500290565b600082821015613c8f57613c8f613d2a565b500390565b60005b83811015613caf578181015183820152602001613c97565b8381111561110d5750506000910152565b600181811c90821680613cd457607f821691505b60208210811415613cf557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d0f57613d0f613d2a565b5060010190565b600082613d2557613d25613d40565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461174f57600080fdfea2646970667358221220101b126144d97e02b723eb5668cb7df50023392ad29c724d54692f4887f875a864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e43727970746f205069726174657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035052540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e636f6d2f6e66745f7072745f683635687938376a68676a752f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000004968747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e636f6d2f6e66745f7072745f683635687938376a68676a752f6e6f745f72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Crypto Pirates
Arg [1] : _symbol (string): PRT
Arg [2] : _uri (string): https://www.crypto-pirates-nft.com/nft_prt_h65hy87jhgju/json/
Arg [3] : _notRevealedUri (string): https://www.crypto-pirates-nft.com/nft_prt_h65hy87jhgju/not_revealed.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 43727970746f2050697261746573000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5052540000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000003d
Arg [9] : 68747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e63
Arg [10] : 6f6d2f6e66745f7072745f683635687938376a68676a752f6a736f6e2f000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000049
Arg [12] : 68747470733a2f2f7777772e63727970746f2d706972617465732d6e66742e63
Arg [13] : 6f6d2f6e66745f7072745f683635687938376a68676a752f6e6f745f72657665
Arg [14] : 616c65642e6a736f6e0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45460:11384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39067:224;;;;;;;;;;-1:-1:-1;39067:224:0;;;;;:::i;:::-;;:::i;:::-;;;10317:14:1;;10310:22;10292:41;;10280:2;10265:18;39067:224:0;;;;;;;;54609:81;;;;;;;;;;-1:-1:-1;54609:81:0;;;;;:::i;:::-;;:::i;:::-;;26561:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28120:221::-;;;;;;;;;;-1:-1:-1;28120:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7668:32:1;;;7650:51;;7638:2;7623:18;28120:221:0;7504:203:1;56071:122:0;;;;;;;;;;-1:-1:-1;56071:122:0;;;;;:::i;:::-;;:::i;27643:411::-;;;;;;;;;;-1:-1:-1;27643:411:0;;;;;:::i;:::-;;:::i;49231:122::-;;;;;;;;;;-1:-1:-1;49231:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;49322:23:0;49298:4;49322:23;;;:14;:23;;;;;;;49231:122;;;;23179:25:1;;;23167:2;23152:18;49231:122:0;23033:177:1;45768:32:0;;;;;;;;;;;;;;;;39707:113;;;;;;;;;;-1:-1:-1;39795:10:0;:17;39707:113;;54852:127;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45649:33::-;;;;;;;;;;;;;;;;28870:339;;;;;;;;;;-1:-1:-1;28870:339:0;;;;;:::i;:::-;;:::i;39375:256::-;;;;;;;;;;-1:-1:-1;39375:256:0;;;;;:::i;:::-;;:::i;54698:146::-;;;;;;;;;;-1:-1:-1;54698:146:0;;;;;:::i;:::-;;:::i;29280:185::-;;;;;;;;;;-1:-1:-1;29280:185:0;;;;;:::i;:::-;;:::i;52914:471::-;;;;;;:::i;:::-;;:::i;55865:86::-;;;;;;;;;;-1:-1:-1;55865:86:0;;;;;:::i;:::-;;:::i;50980:164::-;;;;;;;;;;-1:-1:-1;50980:164:0;;;;;:::i;:::-;;:::i;45728:33::-;;;;;;;;;;;;;;;;39897:233;;;;;;;;;;-1:-1:-1;39897:233:0;;;;;:::i;:::-;;:::i;46350:28::-;;;;;;;;;;-1:-1:-1;46350:28:0;;;;;;;;;;;56201:104;;;;;;;;;;-1:-1:-1;56201:104:0;;;;;:::i;:::-;;:::i;46317:26::-;;;;;;;;;;-1:-1:-1;46317:26:0;;;;;;;;;;;26255:239;;;;;;;;;;-1:-1:-1;26255:239:0;;;;;:::i;:::-;;:::i;45892:21::-;;;;;;;;;;;;;:::i;48949:274::-;;;;;;;;;;-1:-1:-1;48949:274:0;;;;;:::i;:::-;;:::i;25985:208::-;;;;;;;;;;-1:-1:-1;25985:208:0;;;;;:::i;:::-;;:::i;5531:103::-;;;;;;;;;;;;;:::i;45964:28::-;;;;;;;;;;;;;:::i;51455:126::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51152:160::-;;;;;;;;;;-1:-1:-1;51152:160:0;;;;;:::i;:::-;;:::i;55426:186::-;;;;;;;;;;;;;:::i;54987:238::-;;;;;;;;;;-1:-1:-1;54987:238:0;;;;;:::i;:::-;;:::i;4880:87::-;;;;;;;;;;-1:-1:-1;4953:6:0;;-1:-1:-1;;;;;4953:6:0;4880:87;;26730:104;;;;;;;;;;;;;:::i;46766:2173::-;;;;;;:::i;:::-;;:::i;51979:241::-;;;;;;;;;;-1:-1:-1;51979:241:0;;;;;:::i;:::-;;:::i;28413:155::-;;;;;;;;;;-1:-1:-1;28413:155:0;;;;;:::i;:::-;;:::i;46276:34::-;;;;;;;;;;-1:-1:-1;46276:34:0;;;;;;;;51320:127;;;;;;;;;;;;;:::i;52228:384::-;;;;;;;;;;-1:-1:-1;52228:384:0;;;;;:::i;:::-;;:::i;55756:101::-;;;;;;;;;;-1:-1:-1;55756:101:0;;;;;:::i;:::-;;:::i;55620:106::-;;;;;;;;;;;;;:::i;29536:328::-;;;;;;;;;;-1:-1:-1;29536:328:0;;;;;:::i;:::-;;:::i;45848:35::-;;;;;;;;;;;;;;;;56449:128;;;;;;;;;;-1:-1:-1;56449:128:0;;;;;:::i;:::-;;:::i;45920:37::-;;;;;;;;;;;;;:::i;49361:555::-;;;;;;;;;;-1:-1:-1;49361:555:0;;;;;:::i;:::-;;:::i;45689:32::-;;;;;;;;;;;;;;;;55959:104;;;;;;;;;;-1:-1:-1;55959:104:0;;;;;:::i;:::-;;:::i;56313:128::-;;;;;;;;;;-1:-1:-1;56313:128:0;;;;;:::i;:::-;;:::i;55233:185::-;;;;;;;;;;-1:-1:-1;55233:185:0;;;;;:::i;:::-;;:::i;52620:149::-;;;;;;;;;;-1:-1:-1;52620:149:0;;;;;:::i;:::-;;:::i;51589:382::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28639:164::-;;;;;;;;;;-1:-1:-1;28639:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28760:25:0;;;28736:4;28760:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28639:164;45807:34;;;;;;;;;;;;;;;;49924:360;;;;;;;;;;-1:-1:-1;49924:360:0;;;;;:::i;:::-;;:::i;5789:201::-;;;;;;;;;;-1:-1:-1;5789:201:0;;;;;:::i;:::-;;:::i;53523:1078::-;;;;;;:::i;:::-;;:::i;39067:224::-;39169:4;-1:-1:-1;;;;;;39193:50:0;;-1:-1:-1;;;39193:50:0;;:90;;;39247:36;39271:11;39247:23;:36::i;:::-;39186:97;39067:224;-1:-1:-1;;39067:224:0:o;54609:81::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;;;;;;;;;54667:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;54667:15:0;;::::1;::::0;;;::::1;::::0;;54609:81::o;26561:100::-;26615:13;26648:5;26641:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26561:100;:::o;28120:221::-;28196:7;31463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31463:16:0;28216:73;;;;-1:-1:-1;;;28216:73:0;;18189:2:1;28216:73:0;;;18171:21:1;18228:2;18208:18;;;18201:30;18267:34;18247:18;;;18240:62;-1:-1:-1;;;18318:18:1;;;18311:42;18370:19;;28216:73:0;17987:408:1;28216:73:0;-1:-1:-1;28309:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28309:24:0;;28120:221::o;56071:122::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;56152:13:::1;:33:::0;56071:122::o;27643:411::-;27724:13;27740:23;27755:7;27740:14;:23::i;:::-;27724:39;;27788:5;-1:-1:-1;;;;;27782:11:0;:2;-1:-1:-1;;;;;27782:11:0;;;27774:57;;;;-1:-1:-1;;;27774:57:0;;19789:2:1;27774:57:0;;;19771:21:1;19828:2;19808:18;;;19801:30;19867:34;19847:18;;;19840:62;-1:-1:-1;;;19918:18:1;;;19911:31;19959:19;;27774:57:0;19587:397:1;27774:57:0;27882:5;-1:-1:-1;;;;;27866:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27866:21:0;;:62;;;;27891:37;27908:5;27915:12;:10;:12::i;27891:37::-;27844:168;;;;-1:-1:-1;;;27844:168:0;;15057:2:1;27844:168:0;;;15039:21:1;15096:2;15076:18;;;15069:30;15135:34;15115:18;;;15108:62;15206:26;15186:18;;;15179:54;15250:19;;27844:168:0;14855:420:1;27844:168:0;28025:21;28034:2;28038:7;28025:8;:21::i;:::-;27713:341;27643:411;;:::o;54852:127::-;54917:16;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;54952:19:::1;54945:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;54945:26:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;5171:1;54852:127:::0;:::o;28870:339::-;29065:41;29084:12;:10;:12::i;:::-;29098:7;29065:18;:41::i;:::-;29057:103;;;;-1:-1:-1;;;29057:103:0;;;;;;;:::i;:::-;29173:28;29183:4;29189:2;29193:7;29173:9;:28::i;39375:256::-;39472:7;39508:23;39525:5;39508:16;:23::i;:::-;39500:5;:31;39492:87;;;;-1:-1:-1;;;39492:87:0;;11888:2:1;39492:87:0;;;11870:21:1;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;-1:-1:-1;;;12017:18:1;;;12010:41;12068:19;;39492:87:0;11686:407:1;39492:87:0;-1:-1:-1;;;;;;39597:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39375:256::o;54698:146::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;54778:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54778:17:0;;::::1;::::0;;;::::1;::::0;;;54806:16:::1;:30:::0;54698:146::o;29280:185::-;29418:39;29435:4;29441:2;29445:7;29418:39;;;;;;;;;;;;:16;:39::i;52914:471::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;53002:14:::1;53019:13;39795:10:::0;:17;;39707:113;53019:13:::1;53052:6;::::0;53002:30;;-1:-1:-1;53052:6:0::1;::::0;::::1;;;53051:7;53043:53;;;;-1:-1:-1::0;;;53043:53:0::1;;;;;;;:::i;:::-;53129:1;53115:11;:15;53107:67;;;;-1:-1:-1::0;;;53107:67:0::1;;;;;;;:::i;:::-;53217:9;::::0;53193:20:::1;53202:11:::0;53193:6;:20:::1;:::i;:::-;:33;;53185:74;;;::::0;-1:-1:-1;;;53185:74:0;;17832:2:1;53185:74:0::1;::::0;::::1;17814:21:1::0;17871:2;17851:18;;;17844:30;17910;17890:18;;;17883:58;17958:18;;53185:74:0::1;17630:352:1::0;53185:74:0::1;53281:9;53276:102;53300:11;53296:1;:15;53276:102;;;53348:15;:17:::0;;53333:33:::1;::::0;53343:3;;53348:17;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;53333:9;:33::i;:::-;53313:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53276:102;;;;52991:394;52914:471:::0;;:::o;55865:86::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;55928:4:::1;:15:::0;55865:86::o;50980:164::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;51071:25:::1;51078:18;;51071:25;:::i;:::-;51107:29;:18;51128:8:::0;;51107:29:::1;:::i;39897:233::-:0;39972:7;40008:30;39795:10;:17;;39707:113;40008:30;40000:5;:38;39992:95;;;;-1:-1:-1;;;39992:95:0;;21360:2:1;39992:95:0;;;21342:21:1;21399:2;21379:18;;;21372:30;21438:34;21418:18;;;21411:62;-1:-1:-1;;;21489:18:1;;;21482:42;21541:19;;39992:95:0;21158:408:1;39992:95:0;40105:10;40116:5;40105:17;;;;;;;;:::i;:::-;;;;;;;;;40098:24;;39897:233;;;:::o;56201:104::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;56276:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56201:104:::0;:::o;26255:239::-;26327:7;26363:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26363:16:0;26398:19;26390:73;;;;-1:-1:-1;;;26390:73:0;;16296:2:1;26390:73:0;;;16278:21:1;16335:2;16315:18;;;16308:30;16374:34;16354:18;;;16347:62;-1:-1:-1;;;16425:18:1;;;16418:39;16474:19;;26390:73:0;16094:405:1;45892:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48949:274::-;49010:4;;49027:166;49051:18;:25;49047:29;;49027:166;;;49127:7;-1:-1:-1;;;;;49102:32:0;:18;49121:1;49102:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49102:21:0;:32;49098:84;;;-1:-1:-1;49162:4:0;;48949:274;-1:-1:-1;;48949:274:0:o;49098:84::-;49078:3;;;;:::i;:::-;;;;49027:166;;;-1:-1:-1;49210:5:0;;48949:274;-1:-1:-1;;48949:274:0:o;25985:208::-;26057:7;-1:-1:-1;;;;;26085:19:0;;26077:74;;;;-1:-1:-1;;;26077:74:0;;15885:2:1;26077:74:0;;;15867:21:1;15924:2;15904:18;;;15897:30;15963:34;15943:18;;;15936:62;-1:-1:-1;;;16014:18:1;;;16007:40;16064:19;;26077:74:0;15683:406:1;26077:74:0;-1:-1:-1;;;;;;26169:16:0;;;;;:9;:16;;;;;;;25985:208::o;5531:103::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;5596:30:::1;5623:1;5596:18;:30::i;:::-;5531:103::o:0;45964:28::-;;;;;;;:::i;51455:126::-;51522:13;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;51555:18:::1;51548:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;::::1;::::0;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;;;;;;;;;;;51455:126:::0;:::o;51152:160::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;51238:22:::1;51252:7;51238:13;:22::i;:::-;51237:23;51229:32;;;::::0;::::1;;51272:18;:32:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;51272:32:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;51272:32:0::1;-1:-1:-1::0;;;;;51272:32:0;;;::::1;::::0;;;::::1;::::0;;51152:160::o;55426:186::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;55499:58:::1;::::0;55480:12:::1;::::0;55507:10:::1;::::0;55531:21:::1;::::0;55480:12;55499:58;55480:12;55499:58;55531:21;55507:10;55499:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55479:78;;;55576:7;55568:36;;;::::0;-1:-1:-1;;;55568:36:0;;20597:2:1;55568:36:0::1;::::0;::::1;20579:21:1::0;20636:2;20616:18;;;20609:30;-1:-1:-1;;;20655:18:1;;;20648:46;20711:18;;55568:36:0::1;20395:340:1::0;55568:36:0::1;55468:144;55426:186::o:0;54987:238::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55078:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:35;;;55129:27:::1;55093:7:::0;55129:18:::1;:27::i;:::-;55124:94;;55173:19;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;55173:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;55173:33:0;::::1;-1:-1:-1::0;;;;;;55173:33:0;;::::1;;::::0;;54987:238;;:::o;26730:104::-;26786:13;26819:7;26812:14;;;;;:::i;46766:2173::-;46838:6;;;;;;;46837:7;46829:53;;;;-1:-1:-1;;;46829:53:0;;;;;;;:::i;:::-;46915:1;46901:11;:15;46893:67;;;;-1:-1:-1;;;46893:67:0;;;;;;;:::i;:::-;46973:17;46993:13;39795:10;:17;;39707:113;46993:13;47069:10;47017:32;47052:28;;;:16;:28;;;;;;46973:33;;-1:-1:-1;47121:28:0;;;;;47120:69;;;47173:15;;47155;;:33;47120:69;47091:98;;47200:15;47259;;47243;;:31;;;;:::i;:::-;47230:9;47218;;:21;;;;:::i;:::-;:57;;;;:::i;:::-;47200:75;;47362:21;47358:63;;;47400:9;;;;:::i;:::-;;;;47358:63;47456:7;47441:11;:22;;47433:72;;;;-1:-1:-1;;;47433:72:0;;20191:2:1;47433:72:0;;;20173:21:1;20230:2;20210:18;;;20203:30;20269:34;20249:18;;;20242:62;-1:-1:-1;;;20320:18:1;;;20313:35;20365:19;;47433:72:0;19989:401:1;47433:72:0;47552:10;47518:16;47537:26;;;:14;:26;;;;;;4953:6;;47537:26;;-1:-1:-1;;;;;4953:6:0;;;47580:21;47576:600;;47624:12;;:16;47620:133;;47694:12;;47669:21;47681:9;47669:11;:21;:::i;:::-;:37;;47661:76;;;;-1:-1:-1;;;47661:76:0;;22534:2:1;47661:76:0;;;22516:21:1;22573:2;22553:18;;;22546:30;22612:28;22592:18;;;22585:56;22658:18;;47661:76:0;22332:350:1;47661:76:0;47773:15;;;;:23;;:15;:23;47769:128;;;47825:25;47839:10;47825:13;:25::i;:::-;47817:64;;;;-1:-1:-1;;;47817:64:0;;11533:2:1;47817:64:0;;;11515:21:1;11572:2;11552:18;;;11545:30;11611:28;11591:18;;;11584:56;11657:18;;47817:64:0;11331:350:1;47817:64:0;47911:23;47937:21;47947:10;47937:9;:21::i;:::-;48014:13;;47911:47;;-1:-1:-1;47981:29:0;47999:11;47911:47;47981:29;:::i;:::-;:46;;47973:95;;;;-1:-1:-1;;;47973:95:0;;10770:2:1;47973:95:0;;;10752:21:1;10809:2;10789:18;;;10782:30;10848:34;10828:18;;;10821:62;-1:-1:-1;;;10899:18:1;;;10892:34;10943:19;;47973:95:0;10568:400:1;47973:95:0;48127:8;48112:11;48105:4;;:18;;;;:::i;:::-;48104:31;;;;:::i;:::-;48091:9;:44;48083:81;;;;-1:-1:-1;;;48083:81:0;;21773:2:1;48083:81:0;;;21755:21:1;21812:2;21792:18;;;21785:30;21851:26;21831:18;;;21824:54;21895:18;;48083:81:0;21571:348:1;48083:81:0;47603:573;47576:600;48195:9;48190:657;48214:11;48210:1;:15;48190:657;;;48247:18;48284:21;48280:170;;;-1:-1:-1;48339:24:0;48280:170;;;48417:15;;:17;;48433:1;48417:17;:::i;:::-;48404:30;;48280:170;48478:33;48488:10;48500;48478:9;:33::i;:::-;48532:21;48528:308;;;48623:4;48574:18;48593:26;48623:4;48593:24;:26;:::i;:::-;48574:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;:53;;;:46;;;;:53;;;;;;;;;;;;;;;;;;;;48663:10;48646:28;;:16;:28;;;;;;:32;;;48745:15;:17;;48574:46;;-1:-1:-1;48574:46:0;48745:17;;;:::i;:::-;;;;;;48528:308;;;48803:15;:17;;;:15;:17;;;:::i;:::-;;;;;;48528:308;-1:-1:-1;48227:3:0;;;;:::i;:::-;;;;48190:657;;;-1:-1:-1;48861:12:0;;48857:75;;48905:10;48919:1;48890:26;;;:14;:26;;;;;:30;48857:75;46818:2121;;;;;46766:2173;:::o;51979:241::-;52067:4;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;52108:15:::1;;52092:12;:31;;52084:75;;;::::0;-1:-1:-1;;;52084:75:0;;17472:2:1;52084:75:0::1;::::0;::::1;17454:21:1::0;17511:2;17491:18;;;17484:30;17550:33;17530:18;;;17523:61;17601:18;;52084:75:0::1;17270:355:1::0;52084:75:0::1;52178:18;52197:14;52210:1;52197:12:::0;:14:::1;:::i;:::-;52178:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;52171:41;;5171:1;51979:241:::0;;;:::o;28413:155::-;28508:52;28527:12;:10;:12::i;:::-;28541:8;28551;28508:18;:52::i;51320:127::-;51385:16;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;51421:18:::1;51414:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;51414:25:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;51320:127:::0;:::o;52228:384::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;52348:1:::1;52333:12;:16;52325:46;;;::::0;-1:-1:-1;;;52325:46:0;;22889:2:1;52325:46:0::1;::::0;::::1;22871:21:1::0;22928:2;22908:18;;;22901:30;-1:-1:-1;;;22947:18:1;;;22940:47;23004:18;;52325:46:0::1;22687:341:1::0;52325:46:0::1;52406:15;;52390:12;:31;;52382:75;;;::::0;-1:-1:-1;;;52382:75:0;;17472:2:1;52382:75:0::1;::::0;::::1;17454:21:1::0;17511:2;17491:18;;;17484:30;17550:33;17530:18;;;17523:61;17601:18;;52382:75:0::1;17270:355:1::0;52382:75:0::1;52476:18;52495:14;52508:1;52495:12:::0;:14:::1;:::i;:::-;52476:34;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;::::1;;:43;52468:85;;;::::0;-1:-1:-1;;;52468:85:0;;11175:2:1;52468:85:0::1;::::0;::::1;11157:21:1::0;11214:2;11194:18;;;11187:30;11253:31;11233:18;;;11226:59;11302:18;;52468:85:0::1;10973:353:1::0;52468:85:0::1;-1:-1:-1::0;;;;;52564:25:0;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:40;52228:384::o;55756:101::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;55825:15:::1;:24:::0;;-1:-1:-1;;55825:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55756:101::o;55620:106::-;55670:7;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;-1:-1:-1;55697:21:0::1;55620:106:::0;:::o;29536:328::-;29711:41;29730:12;:10;:12::i;:::-;29744:7;29711:18;:41::i;:::-;29703:103;;;;-1:-1:-1;;;29703:103:0;;;;;;;:::i;:::-;29817:39;29831:4;29837:2;29841:7;29850:5;29817:13;:39::i;56449:128::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;56537:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;45920:37::-:0;;;;;;;:::i;49361:555::-;31439:4;31463:16;;;:7;:16;;;;;;49434:13;;-1:-1:-1;;;;;31463:16:0;49460:113;;;;-1:-1:-1;;;49460:113:0;;19373:2:1;49460:113:0;;;19355:21:1;19412:2;19392:18;;;19385:30;19451:34;19431:18;;;19424:62;-1:-1:-1;;;19502:18:1;;;19495:45;19557:19;;49460:113:0;19171:411:1;49460:113:0;49589:8;;;;;;;:17;;;49588:51;;;49622:16;;49612:7;:26;49588:51;49584:105;;;49663:14;49656:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49361:555;;;:::o;49584:105::-;49701:28;49732:10;:8;:10::i;:::-;49701:41;;49791:1;49766:14;49760:28;:32;:148;;;;;;;;;;;;;;;;;49832:14;49848:25;49865:7;49848:16;:25::i;:::-;49875:13;49815:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49760:148;49753:155;49361:555;-1:-1:-1;;;49361:555:0:o;55959:104::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;56031:12:::1;:24:::0;55959:104::o;56313:128::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;56400:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;55233:185::-:0;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;55318:45:::1;::::0;55300:12:::1;::::0;55326:10:::1;::::0;55351:7;;55300:12;55318:45;55300:12;55318:45;55351:7;55326:10;55318:45:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55299:64;;;55382:7;55374:36;;;::::0;-1:-1:-1;;;55374:36:0;;20597:2:1;55374:36:0::1;::::0;::::1;20579:21:1::0;20636:2;20616:18;;;20609:30;-1:-1:-1;;;20655:18:1;;;20648:46;20711:18;;55374:36:0::1;20395:340:1::0;52620:149:0;52709:7;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52736:25:0::1;;::::0;;;:16:::1;:25;::::0;;;;;;52620:149::o;51589:382::-;51655:16;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;51684:25:::1;51726:15;;51712:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;51712:30:0::1;;51684:58;;51753:11;51784:9:::0;51779:159:::1;51799:15;;51795:1;:19;51779:159;;;51840:18;51859:1;51840:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:29;;51865:4;51840:29;;;51836:91;;;51908:3;:1:::0;51910::::1;51908:3;:::i;:::-;51890:8:::0;51899:5;::::1;::::0;::::1;:::i;:::-;;;51890:15;;;;;;;;:::i;:::-;;;;;;:21;;;::::0;::::1;51836:91;51816:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51779:159;;;-1:-1:-1::0;51955:8:0;;-1:-1:-1;;51589:382:0;:::o;49924:360::-;49986:16;50015:23;50041:17;50051:6;50041:9;:17::i;:::-;50015:43;;50069:25;50111:15;50097:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50097:30:0;;50069:58;;50143:9;50138:113;50158:15;50154:1;:19;50138:113;;;50209:30;50229:6;50237:1;50209:19;:30::i;:::-;50195:8;50204:1;50195:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50175:3;;;;:::i;:::-;;;;50138:113;;;-1:-1:-1;50268:8:0;49924:360;-1:-1:-1;;;49924:360:0:o;5789:201::-;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5878:22:0;::::1;5870:73;;;::::0;-1:-1:-1;;;5870:73:0;;12719:2:1;5870:73:0::1;::::0;::::1;12701:21:1::0;12758:2;12738:18;;;12731:30;12797:34;12777:18;;;12770:62;-1:-1:-1;;;12848:18:1;;;12841:36;12894:19;;5870:73:0::1;12517:402:1::0;5870:73:0::1;5954:28;5973:8;5954:18;:28::i;53523:1078::-:0;5111:12;:10;:12::i;:::-;-1:-1:-1;;;;;5100:23:0;:7;4953:6;;-1:-1:-1;;;;;4953:6:0;;4880:87;5100:7;-1:-1:-1;;;;;5100:23:0;;5092:68;;;;-1:-1:-1;;;5092:68:0;;;;;;;:::i;:::-;53656:6:::1;::::0;::::1;::::0;::::1;;;53655:7;53647:53;;;;-1:-1:-1::0;;;53647:53:0::1;;;;;;;:::i;:::-;53733:1;53719:11;:15;53711:67;;;;-1:-1:-1::0;;;53711:67:0::1;;;;;;;:::i;:::-;53830:15;::::0;53811::::1;::::0;53797:29:::1;::::0;:11;:29:::1;:::i;:::-;:48;;53789:97;;;::::0;-1:-1:-1;;;53789:97:0;;16706:2:1;53789:97:0::1;::::0;::::1;16688:21:1::0;16745:2;16725:18;;;16718:30;16784:34;16764:18;;;16757:62;-1:-1:-1;;;16835:18:1;;;16828:34;16879:19;;53789:97:0::1;16504:400:1::0;53789:97:0::1;53926:1;53906:17;:21;53905:65;;;;;53954:15;;53933:17;:36;;53905:65;53897:112;;;::::0;-1:-1:-1;;;53897:112:0;;15482:2:1;53897:112:0::1;::::0;::::1;15464:21:1::0;15521:2;15501:18;;;15494:30;15560:34;15540:18;;;15533:62;-1:-1:-1;;;15611:18:1;;;15604:32;15653:19;;53897:112:0::1;15280:398:1::0;53897:112:0::1;54051:17:::0;54030:18:::1;54079:515;54103:11;54099:1;:15;54079:515;;;54202:227;54209:18;54228:12;54239:1;54228:10:::0;:12:::1;:::i;:::-;54209:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;54202:227;;;54279:15;;54265:10;:29;54261:153;;54332:1;54319:14;;54202:227;;54261:153;54382:12:::0;::::1;::::0;::::1;:::i;:::-;;;;54202:227;;;54443:26;54453:3;54458:10;54443:9;:26::i;:::-;54519:4;54484:18;54503:12;54519:4:::0;54503:10;:12:::1;:::i;:::-;54484:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;54538:12;;;;;:::i;:::-;54565:15;:17:::0;;54538:12;;-1:-1:-1;54565:17:0;;-1:-1:-1;54565:15:0::1;:17;::::0;::::1;:::i;:::-;;;;;;54116:3;;;;;:::i;:::-;;;;54079:515;;;;53636:965;53523:1078:::0;;;:::o;144:650::-;215:22;259:10;281:4;259:27;255:508;;;303:18;324:8;;303:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;363:8:0;574:17;568:24;-1:-1:-1;;;;;542:134:0;;-1:-1:-1;255:508:0;;-1:-1:-1;255:508:0;;-1:-1:-1;740:10:0;144:650;:::o;25616:305::-;25718:4;-1:-1:-1;;;;;;25755:40:0;;-1:-1:-1;;;25755:40:0;;:105;;-1:-1:-1;;;;;;;25812:48:0;;-1:-1:-1;;;25812:48:0;25755:105;:158;;;-1:-1:-1;;;;;;;;;;17421:40:0;;;25877:36;17312:157;56721:120;56775:14;56809:24;:22;:24::i;:::-;56802:31;;56721:120;:::o;35356:174::-;35431:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35431:29:0;-1:-1:-1;;;;;35431:29:0;;;;;;;;:24;;35485:23;35431:24;35485:14;:23::i;:::-;-1:-1:-1;;;;;35476:46:0;;;;;;;;;;;35356:174;;:::o;31668:348::-;31761:4;31463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31463:16:0;31778:73;;;;-1:-1:-1;;;31778:73:0;;14644:2:1;31778:73:0;;;14626:21:1;14683:2;14663:18;;;14656:30;14722:34;14702:18;;;14695:62;-1:-1:-1;;;14773:18:1;;;14766:42;14825:19;;31778:73:0;14442:408:1;31778:73:0;31862:13;31878:23;31893:7;31878:14;:23::i;:::-;31862:39;;31931:5;-1:-1:-1;;;;;31920:16:0;:7;-1:-1:-1;;;;;31920:16:0;;:51;;;;31964:7;-1:-1:-1;;;;;31940:31:0;:20;31952:7;31940:11;:20::i;:::-;-1:-1:-1;;;;;31940:31:0;;31920:51;:87;;;-1:-1:-1;;;;;;28760:25:0;;;28736:4;28760:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31975:32;31912:96;31668:348;-1:-1:-1;;;;31668:348:0:o;34660:578::-;34819:4;-1:-1:-1;;;;;34792:31:0;:23;34807:7;34792:14;:23::i;:::-;-1:-1:-1;;;;;34792:31:0;;34784:85;;;;-1:-1:-1;;;34784:85:0;;18963:2:1;34784:85:0;;;18945:21:1;19002:2;18982:18;;;18975:30;19041:34;19021:18;;;19014:62;-1:-1:-1;;;19092:18:1;;;19085:39;19141:19;;34784:85:0;18761:405:1;34784:85:0;-1:-1:-1;;;;;34888:16:0;;34880:65;;;;-1:-1:-1;;;34880:65:0;;13885:2:1;34880:65:0;;;13867:21:1;13924:2;13904:18;;;13897:30;13963:34;13943:18;;;13936:62;-1:-1:-1;;;14014:18:1;;;14007:34;14058:19;;34880:65:0;13683:400:1;34880:65:0;34958:39;34979:4;34985:2;34989:7;34958:20;:39::i;:::-;35062:29;35079:1;35083:7;35062:8;:29::i;:::-;-1:-1:-1;;;;;35104:15:0;;;;;;:9;:15;;;;;:20;;35123:1;;35104:15;:20;;35123:1;;35104:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35135:13:0;;;;;;:9;:13;;;;;:18;;35152:1;;35135:13;:18;;35152:1;;35135:18;:::i;:::-;;;;-1:-1:-1;;35164:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35164:21:0;-1:-1:-1;;;;;35164:21:0;;;;;;;;;35203:27;;35164:16;;35203:27;;;;;;;34660:578;;;:::o;32358:110::-;32434:26;32444:2;32448:7;32434:26;;;;;;;;;;;;:9;:26::i;6150:191::-;6243:6;;;-1:-1:-1;;;;;6260:17:0;;;-1:-1:-1;;;;;;6260:17:0;;;;;;;6293:40;;6243:6;;;6260:17;6243:6;;6293:40;;6224:16;;6293:40;6213:128;6150:191;:::o;50595:282::-;50662:4;;50679:168;50703:19;:26;50699:30;;50679:168;;;50781:7;-1:-1:-1;;;;;50755:33:0;:19;50775:1;50755:22;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;50755:22:0;:33;50751:85;;;-1:-1:-1;50816:4:0;;50595:282;-1:-1:-1;;50595:282:0:o;50751:85::-;50731:3;;;;:::i;:::-;;;;50679:168;;35672:315;35827:8;-1:-1:-1;;;;;35818:17:0;:5;-1:-1:-1;;;;;35818:17:0;;;35810:55;;;;-1:-1:-1;;;35810:55:0;;14290:2:1;35810:55:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:27;14348:18;;;14341:55;14413:18;;35810:55:0;14088:349:1;35810:55:0;-1:-1:-1;;;;;35876:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35876:46:0;;;;;;;;;;35938:41;;10292::1;;;35938::0;;10265:18:1;35938:41:0;;;;;;;35672:315;;;:::o;30746:::-;30903:28;30913:4;30919:2;30923:7;30903:9;:28::i;:::-;30950:48;30973:4;30979:2;30983:7;30992:5;30950:22;:48::i;:::-;30942:111;;;;-1:-1:-1;;;30942:111:0;;;;;;;:::i;50385:108::-;50445:13;50478:7;50471:14;;;;;:::i;1166:723::-;1222:13;1443:10;1439:53;;-1:-1:-1;;1470:10:0;;;;;;;;;;;;-1:-1:-1;;;1470:10:0;;;;;1166:723::o;1439:53::-;1517:5;1502:12;1558:78;1565:9;;1558:78;;1591:8;;;;:::i;:::-;;-1:-1:-1;1614:10:0;;-1:-1:-1;1622:2:0;1614:10;;:::i;:::-;;;1558:78;;;1646:19;1678:6;1668:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1668:17:0;;1646:39;;1696:154;1703:10;;1696:154;;1730:11;1740:1;1730:11;;:::i;:::-;;-1:-1:-1;1799:10:0;1807:2;1799:5;:10;:::i;:::-;1786:24;;:2;:24;:::i;:::-;1773:39;;1756:6;1763;1756:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1756:56:0;;;;;;;;-1:-1:-1;1827:11:0;1836:2;1827:11;;:::i;:::-;;;1696:154;;40743:589;-1:-1:-1;;;;;40949:18:0;;40945:187;;40984:40;41016:7;42159:10;:17;;42132:24;;;;:15;:24;;;;;:44;;;42187:24;;;;;;;;;;;;42055:164;40984:40;40945:187;;;41054:2;-1:-1:-1;;;;;41046:10:0;:4;-1:-1:-1;;;;;41046:10:0;;41042:90;;41073:47;41106:4;41112:7;41073:32;:47::i;:::-;-1:-1:-1;;;;;41146:16:0;;41142:183;;41179:45;41216:7;41179:36;:45::i;41142:183::-;41252:4;-1:-1:-1;;;;;41246:10:0;:2;-1:-1:-1;;;;;41246:10:0;;41242:83;;41273:40;41301:2;41305:7;41273:27;:40::i;32695:321::-;32825:18;32831:2;32835:7;32825:5;:18::i;:::-;32876:54;32907:1;32911:2;32915:7;32924:5;32876:22;:54::i;:::-;32854:154;;;;-1:-1:-1;;;32854:154:0;;;;;;;:::i;36552:799::-;36707:4;-1:-1:-1;;;;;36728:13:0;;7491:20;7539:8;36724:620;;36780:2;-1:-1:-1;;;;;36764:36:0;;36801:12;:10;:12::i;:::-;36815:4;36821:7;36830:5;36764:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36764:72:0;;;;;;;;-1:-1:-1;;36764:72:0;;;;;;;;;;;;:::i;:::-;;;36760:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37006:13:0;;37002:272;;37049:60;;-1:-1:-1;;;37049:60:0;;;;;;;:::i;37002:272::-;37224:6;37218:13;37209:6;37205:2;37201:15;37194:38;36760:529;-1:-1:-1;;;;;;36887:51:0;-1:-1:-1;;;36887:51:0;;-1:-1:-1;36880:58:0;;36724:620;-1:-1:-1;37328:4:0;36552:799;;;;;;:::o;42846:988::-;43112:22;43162:1;43137:22;43154:4;43137:16;:22::i;:::-;:26;;;;:::i;:::-;43174:18;43195:26;;;:17;:26;;;;;;43112:51;;-1:-1:-1;43328:28:0;;;43324:328;;-1:-1:-1;;;;;43395:18:0;;43373:19;43395:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43446:30;;;;;;:44;;;43563:30;;:17;:30;;;;;:43;;;43324:328;-1:-1:-1;43748:26:0;;;;:17;:26;;;;;;;;43741:33;;;-1:-1:-1;;;;;43792:18:0;;;;;:12;:18;;;;;:34;;;;;;;43785:41;42846:988::o;44129:1079::-;44407:10;:17;44382:22;;44407:21;;44427:1;;44407:21;:::i;:::-;44439:18;44460:24;;;:15;:24;;;;;;44833:10;:26;;44382:46;;-1:-1:-1;44460:24:0;;44382:46;;44833:26;;;;;;:::i;:::-;;;;;;;;;44811:48;;44897:11;44872:10;44883;44872:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44977:28;;;:15;:28;;;;;;;:41;;;45149:24;;;;;45142:31;45184:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44200:1008;;;44129:1079;:::o;41633:221::-;41718:14;41735:20;41752:2;41735:16;:20::i;:::-;-1:-1:-1;;;;;41766:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41811:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41633:221:0:o;33352:382::-;-1:-1:-1;;;;;33432:16:0;;33424:61;;;;-1:-1:-1;;;33424:61:0;;17111:2:1;33424:61:0;;;17093:21:1;;;17130:18;;;17123:30;17189:34;17169:18;;;17162:62;17241:18;;33424:61:0;16909:356:1;33424:61:0;31439:4;31463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31463:16:0;:30;33496:58;;;;-1:-1:-1;;;33496:58:0;;13126:2:1;33496:58:0;;;13108:21:1;13165:2;13145:18;;;13138:30;13204;13184:18;;;13177:58;13252:18;;33496:58:0;12924:352:1;33496:58:0;33567:45;33596:1;33600:2;33604:7;33567:20;:45::i;:::-;-1:-1:-1;;;;;33625:13:0;;;;;;:9;:13;;;;;:18;;33642:1;;33625:13;:18;;33642:1;;33625:18;:::i;:::-;;;;-1:-1:-1;;33654:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33654:21:0;-1:-1:-1;;;;;33654:21:0;;;;;;;;33693:33;;33654:16;;;33693:33;;33654:16;;33693:33;33352:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:322::-;3048:6;3056;3064;3117:2;3105:9;3096:7;3092:23;3088:32;3085:52;;;3133:1;3130;3123:12;3085:52;3156:29;3175:9;3156:29;:::i;:::-;3146:39;3232:2;3217:18;;3204:32;;-1:-1:-1;3283:2:1;3268:18;;;3255:32;;2971:322;-1:-1:-1;;;2971:322:1:o;3298:615::-;3384:6;3392;3445:2;3433:9;3424:7;3420:23;3416:32;3413:52;;;3461:1;3458;3451:12;3413:52;3501:9;3488:23;3530:18;3571:2;3563:6;3560:14;3557:34;;;3587:1;3584;3577:12;3557:34;3625:6;3614:9;3610:22;3600:32;;3670:7;3663:4;3659:2;3655:13;3651:27;3641:55;;3692:1;3689;3682:12;3641:55;3732:2;3719:16;3758:2;3750:6;3747:14;3744:34;;;3774:1;3771;3764:12;3744:34;3827:7;3822:2;3812:6;3809:1;3805:14;3801:2;3797:23;3793:32;3790:45;3787:65;;;3848:1;3845;3838:12;3787:65;3879:2;3871:11;;;;;3901:6;;-1:-1:-1;3298:615:1;;-1:-1:-1;;;;3298:615:1:o;3918:180::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:52;;;4043:1;4040;4033:12;3995:52;4066:26;4082:9;4066:26;:::i;4103:248::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:52;;;4245:1;4242;4235:12;4197:52;4268:26;4284:9;4268:26;:::i;4356:245::-;4414:6;4467:2;4455:9;4446:7;4442:23;4438:32;4435:52;;;4483:1;4480;4473:12;4435:52;4522:9;4509:23;4541:30;4565:5;4541:30;:::i;4606:249::-;4675:6;4728:2;4716:9;4707:7;4703:23;4699:32;4696:52;;;4744:1;4741;4734:12;4696:52;4776:9;4770:16;4795:30;4819:5;4795:30;:::i;4860:450::-;4929:6;4982:2;4970:9;4961:7;4957:23;4953:32;4950:52;;;4998:1;4995;4988:12;4950:52;5038:9;5025:23;5071:18;5063:6;5060:30;5057:50;;;5103:1;5100;5093:12;5057:50;5126:22;;5179:4;5171:13;;5167:27;-1:-1:-1;5157:55:1;;5208:1;5205;5198:12;5157:55;5231:73;5296:7;5291:2;5278:16;5273:2;5269;5265:11;5231:73;:::i;5315:180::-;5374:6;5427:2;5415:9;5406:7;5402:23;5398:32;5395:52;;;5443:1;5440;5433:12;5395:52;-1:-1:-1;5466:23:1;;5315:180;-1:-1:-1;5315:180:1:o;5500:257::-;5541:3;5579:5;5573:12;5606:6;5601:3;5594:19;5622:63;5678:6;5671:4;5666:3;5662:14;5655:4;5648:5;5644:16;5622:63;:::i;:::-;5739:2;5718:15;-1:-1:-1;;5714:29:1;5705:39;;;;5746:4;5701:50;;5500:257;-1:-1:-1;;5500:257:1:o;5762:1527::-;5986:3;6024:6;6018:13;6050:4;6063:51;6107:6;6102:3;6097:2;6089:6;6085:15;6063:51;:::i;:::-;6177:13;;6136:16;;;;6199:55;6177:13;6136:16;6221:15;;;6199:55;:::i;:::-;6343:13;;6276:20;;;6316:1;;6403;6425:18;;;;6478;;;;6505:93;;6583:4;6573:8;6569:19;6557:31;;6505:93;6646:2;6636:8;6633:16;6613:18;6610:40;6607:167;;;-1:-1:-1;;;6673:33:1;;6729:4;6726:1;6719:15;6759:4;6680:3;6747:17;6607:167;6790:18;6817:110;;;;6941:1;6936:328;;;;6783:481;;6817:110;-1:-1:-1;;6852:24:1;;6838:39;;6897:20;;;;-1:-1:-1;6817:110:1;;6936:328;23288:1;23281:14;;;23325:4;23312:18;;7031:1;7045:169;7059:8;7056:1;7053:15;7045:169;;;7141:14;;7126:13;;;7119:37;7184:16;;;;7076:10;;7045:169;;;7049:3;;7245:8;7238:5;7234:20;7227:27;;6783:481;-1:-1:-1;7280:3:1;;5762:1527;-1:-1:-1;;;;;;;;;;;5762:1527:1:o;7712:488::-;-1:-1:-1;;;;;7981:15:1;;;7963:34;;8033:15;;8028:2;8013:18;;8006:43;8080:2;8065:18;;8058:34;;;8128:3;8123:2;8108:18;;8101:31;;;7906:4;;8149:45;;8174:19;;8166:6;8149:45;:::i;:::-;8141:53;7712:488;-1:-1:-1;;;;;;7712:488:1:o;8205:658::-;8376:2;8428:21;;;8498:13;;8401:18;;;8520:22;;;8347:4;;8376:2;8599:15;;;;8573:2;8558:18;;;8347:4;8642:195;8656:6;8653:1;8650:13;8642:195;;;8721:13;;-1:-1:-1;;;;;8717:39:1;8705:52;;8812:15;;;;8777:12;;;;8753:1;8671:9;8642:195;;;-1:-1:-1;8854:3:1;;8205:658;-1:-1:-1;;;;;;8205:658:1:o;8868:642::-;9033:2;9085:21;;;9155:13;;9058:18;;;9177:22;;;9004:4;;9033:2;9256:15;;;;9230:2;9215:18;;;9004:4;9299:185;9313:6;9310:1;9307:13;9299:185;;;9388:13;;9381:21;9374:29;9362:42;;9459:15;;;;9424:12;;;;9335:1;9328:9;9299:185;;9515:632;9686:2;9738:21;;;9808:13;;9711:18;;;9830:22;;;9657:4;;9686:2;9909:15;;;;9883:2;9868:18;;;9657:4;9952:169;9966:6;9963:1;9960:13;9952:169;;;10027:13;;10015:26;;10096:15;;;;10061:12;;;;9988:1;9981:9;9952:169;;10344:219;10493:2;10482:9;10475:21;10456:4;10513:44;10553:2;10542:9;10538:18;10530:6;10513:44;:::i;12098:414::-;12300:2;12282:21;;;12339:2;12319:18;;;12312:30;12378:34;12373:2;12358:18;;12351:62;-1:-1:-1;;;12444:2:1;12429:18;;12422:48;12502:3;12487:19;;12098:414::o;13281:397::-;13483:2;13465:21;;;13522:2;13502:18;;;13495:30;13561:34;13556:2;13541:18;;13534:62;-1:-1:-1;;;13627:2:1;13612:18;;13605:31;13668:3;13653:19;;13281:397::o;18400:356::-;18602:2;18584:21;;;18621:18;;;18614:30;18680:34;18675:2;18660:18;;18653:62;18747:2;18732:18;;18400:356::o;20740:413::-;20942:2;20924:21;;;20981:2;20961:18;;;20954:30;21020:34;21015:2;21000:18;;20993:62;-1:-1:-1;;;21086:2:1;21071:18;;21064:47;21143:3;21128:19;;20740:413::o;21924:403::-;22126:2;22108:21;;;22165:2;22145:18;;;22138:30;22204:34;22199:2;22184:18;;22177:62;-1:-1:-1;;;22270:2:1;22255:18;;22248:37;22317:3;22302:19;;21924:403::o;23341:128::-;23381:3;23412:1;23408:6;23405:1;23402:13;23399:39;;;23418:18;;:::i;:::-;-1:-1:-1;23454:9:1;;23341:128::o;23474:120::-;23514:1;23540;23530:35;;23545:18;;:::i;:::-;-1:-1:-1;23579:9:1;;23474:120::o;23599:168::-;23639:7;23705:1;23701;23697:6;23693:14;23690:1;23687:21;23682:1;23675:9;23668:17;23664:45;23661:71;;;23712:18;;:::i;:::-;-1:-1:-1;23752:9:1;;23599:168::o;23772:125::-;23812:4;23840:1;23837;23834:8;23831:34;;;23845:18;;:::i;:::-;-1:-1:-1;23882:9:1;;23772:125::o;23902:258::-;23974:1;23984:113;23998:6;23995:1;23992:13;23984:113;;;24074:11;;;24068:18;24055:11;;;24048:39;24020:2;24013:10;23984:113;;;24115:6;24112:1;24109:13;24106:48;;;-1:-1:-1;;24150:1:1;24132:16;;24125:27;23902:258::o;24165:380::-;24244:1;24240:12;;;;24287;;;24308:61;;24362:4;24354:6;24350:17;24340:27;;24308:61;24415:2;24407:6;24404:14;24384:18;24381:38;24378:161;;;24461:10;24456:3;24452:20;24449:1;24442:31;24496:4;24493:1;24486:15;24524:4;24521:1;24514:15;24378:161;;24165:380;;;:::o;24550:135::-;24589:3;-1:-1:-1;;24610:17:1;;24607:43;;;24630:18;;:::i;:::-;-1:-1:-1;24677:1:1;24666:13;;24550:135::o;24690:112::-;24722:1;24748;24738:35;;24753:18;;:::i;:::-;-1:-1:-1;24787:9:1;;24690:112::o;24807:127::-;24868:10;24863:3;24859:20;24856:1;24849:31;24899:4;24896:1;24889:15;24923:4;24920:1;24913:15;24939:127;25000:10;24995:3;24991:20;24988:1;24981:31;25031:4;25028:1;25021:15;25055:4;25052:1;25045:15;25071:127;25132:10;25127:3;25123:20;25120:1;25113:31;25163:4;25160:1;25153:15;25187:4;25184:1;25177:15;25203:127;25264:10;25259:3;25255:20;25252:1;25245:31;25295:4;25292:1;25285:15;25319:4;25316:1;25309:15;25335:127;25396:10;25391:3;25387:20;25384:1;25377:31;25427:4;25424:1;25417:15;25451:4;25448:1;25441:15;25467:131;-1:-1:-1;;;;;;25541:32:1;;25531:43;;25521:71;;25588:1;25585;25578:12

Swarm Source

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