ETH Price: $3,118.11 (+1.53%)
Gas: 2 Gwei

Token

Project Draca (DRACA)
 

Overview

Max Total Supply

996 DRACA

Holders

481

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DRACA
0x36187980D6e1D0190F0E69dDf0b56a4473534239
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dracas have come back to life in search of chaos and destruction. Their mission: to breed their way into a new world order. Our NFT project, “Project Draca” depicts just that.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProjectDraca

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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



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



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



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



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



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



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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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



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



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 88000000000000000;
  uint256 public maxSupply = 996;
  uint256 public maxMintAmount = 1;
  uint256 public nftPerAddressLimit = 4;
  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address public feeCollector;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;
  mapping(uint256 => uint256) public idToValue;
  mapping(uint256 => bool) public usedValues;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initNotRevealedUri,
    address _feeCollector
  ) ERC721(_name, _symbol) {
    setNotRevealedURI(_initNotRevealedUri);
    feeCollector = _feeCollector;  
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  
  // This returns a psudo random number, used in conjunction with the not revealed URI
  // it prevents all leaks and gaming of the system
  function random() public returns (uint256 _pRandom) {
    uint256 pRandom = (uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, totalSupply()))) % 997) + 1;
    for(uint256 i = 0; i <= 997; i++){
        if(!usedValues[pRandom]){
            usedValues[pRandom] = true;
            return pRandom;
        } else {
            pRandom--;
            if(pRandom == 0) {
                pRandom = 996;
            }
        }
    }
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "max total mint amount allowed exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "User is not whitelisted");
            require(addressMintedBalance[msg.sender] < 1, "Max NFT per address in whitelist period exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      idToValue[supply + i] = random();
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    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;
  }

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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  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) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function mintLegends() public onlyOwner {
    uint256 supply = totalSupply();

    for (uint256 i = 0; i <= 3; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
      maxSupply += 1;
    }
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function withdraw() public payable onlyOwner {

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"_feeCollector","type":"address"}],"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"","type":"uint256"}],"name":"idToValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"mintLegends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"random","outputs":[{"internalType":"uint256","name":"_pRandom","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedValues","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000347565b50670138a388a43c0000600e556103e4600f55600160105560046011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550348015620000cc57600080fd5b5060405162005de038038062005de08339818101604052810190620000f291906200048c565b838381600090805190602001906200010c92919062000347565b5080600190805190602001906200012592919062000347565b505050620001486200013c620001a460201b60201c565b620001ac60201b60201c565b62000159826200027260201b60201c565b80601260036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620007b0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000282620001a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a86200031d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f89062000582565b60405180910390fd5b80600d90805190602001906200031992919062000347565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000355906200067e565b90600052602060002090601f016020900481019282620003795760008555620003c5565b82601f106200039457805160ff1916838001178555620003c5565b82800160010185558215620003c5579182015b82811115620003c4578251825591602001919060010190620003a7565b5b509050620003d49190620003d8565b5090565b5b80821115620003f3576000816000905550600101620003d9565b5090565b60006200040e6200040884620005cd565b620005a4565b9050828152602081018484840111156200042d576200042c6200074d565b5b6200043a84828562000648565b509392505050565b600081519050620004538162000796565b92915050565b600082601f83011262000471576200047062000748565b5b815162000483848260208601620003f7565b91505092915050565b60008060008060808587031215620004a957620004a862000757565b5b600085015167ffffffffffffffff811115620004ca57620004c962000752565b5b620004d88782880162000459565b945050602085015167ffffffffffffffff811115620004fc57620004fb62000752565b5b6200050a8782880162000459565b935050604085015167ffffffffffffffff8111156200052e576200052d62000752565b5b6200053c8782880162000459565b92505060606200054f8782880162000442565b91505092959194509250565b60006200056a60208362000603565b915062000577826200076d565b602082019050919050565b600060208201905081810360008301526200059d816200055b565b9050919050565b6000620005b0620005c3565b9050620005be8282620006b4565b919050565b6000604051905090565b600067ffffffffffffffff821115620005eb57620005ea62000719565b5b620005f6826200075c565b9050602081019050919050565b600082825260208201905092915050565b6000620006218262000628565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620006685780820151818401526020810190506200064b565b8381111562000678576000848401525b50505050565b600060028204905060018216806200069757607f821691505b60208210811415620006ae57620006ad620006ea565b5b50919050565b620006bf826200075c565b810181811067ffffffffffffffff82111715620006e157620006e062000719565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007a18162000614565b8114620007ad57600080fd5b50565b61562080620007c06000396000f3fe6080604052600436106102c95760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d0eb26b011610095578063e985e9c51161006f578063e985e9c514610aee578063edec5f2714610b2b578063f2c4ce1e14610b54578063f2fde38b14610b7d576102c9565b8063d0eb26b014610a71578063d5abeb0114610a9a578063da3ef23f14610ac5576102c9565b8063b88d4fde1461094d578063ba4e5c4914610976578063ba7d2c76146109b3578063c415b95c146109de578063c668286214610a09578063c87b56dd14610a34576102c9565b806395d89b411161012e57806395d89b41146108845780639c70b512146108af578063a03cd6a3146108da578063a0712d68146108f1578063a22cb4651461090d578063a475b5dd14610936576102c9565b80636c0360eb146107745780636caa14691461079f57806370a08231146107dc578063715018a6146108195780637f00c7a6146108305780638da5cb5b14610859576102c9565b80633af32abf116102345780634f6ccce7116101ed57806355f804b3116101c757806355f804b3146106b85780635c975abb146106e15780635ec01e4d1461070c5780636352211e14610737576102c9565b80634f6ccce714610613578063508e6de014610650578063518302271461068d576102c9565b80633af32abf146105145780633c952764146105515780633ccfd60b1461057a57806342842e0e14610584578063438b6300146105ad57806344a0d68a146105ea576102c9565b806313faede61161028657806313faede6146103f057806318160ddd1461041b57806318cae26914610446578063239c70ae1461048357806323b872dd146104ae5780632f745c59146104d7576102c9565b806301ffc9a7146102ce57806302329a291461030b57806306fdde0314610334578063081812fc1461035f578063081c8c441461039c578063095ea7b3146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613e83565b610ba6565b60405161030291906145fb565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613e56565b610c20565b005b34801561034057600080fd5b50610349610cb9565b6040516103569190614616565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613f26565b610d4b565b6040516103939190614572565b60405180910390f35b3480156103a857600080fd5b506103b1610dd0565b6040516103be9190614616565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613dc9565b610e5e565b005b3480156103fc57600080fd5b50610405610f76565b6040516104129190614978565b60405180910390f35b34801561042757600080fd5b50610430610f7c565b60405161043d9190614978565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613c46565b610f89565b60405161047a9190614978565b60405180910390f35b34801561048f57600080fd5b50610498610fa1565b6040516104a59190614978565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613cb3565b610fa7565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613dc9565b611007565b60405161050b9190614978565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613c46565b6110ac565b60405161054891906145fb565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613e56565b61115b565b005b6105826111f4565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613cb3565b61130b565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613c46565b61132b565b6040516105e191906145d9565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613f26565b6113d9565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613f26565b61145f565b6040516106479190614978565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190613f26565b6114d0565b6040516106849190614978565b60405180910390f35b34801561069957600080fd5b506106a26114e8565b6040516106af91906145fb565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613edd565b6114fb565b005b3480156106ed57600080fd5b506106f6611591565b60405161070391906145fb565b60405180910390f35b34801561071857600080fd5b506107216115a4565b60405161072e9190614978565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613f26565b611694565b60405161076b9190614572565b60405180910390f35b34801561078057600080fd5b50610789611746565b6040516107969190614616565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613f26565b6117d4565b6040516107d391906145fb565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613c46565b6117f4565b6040516108109190614978565b60405180910390f35b34801561082557600080fd5b5061082e6118ac565b005b34801561083c57600080fd5b5061085760048036038101906108529190613f26565b611934565b005b34801561086557600080fd5b5061086e6119ba565b60405161087b9190614572565b60405180910390f35b34801561089057600080fd5b506108996119e4565b6040516108a69190614616565b60405180910390f35b3480156108bb57600080fd5b506108c4611a76565b6040516108d191906145fb565b60405180910390f35b3480156108e657600080fd5b506108ef611a89565b005b61090b60048036038101906109069190613f26565b611bb7565b005b34801561091957600080fd5b50610934600480360381019061092f9190613d89565b611fa6565b005b34801561094257600080fd5b5061094b612127565b005b34801561095957600080fd5b50610974600480360381019061096f9190613d06565b6121c0565b005b34801561098257600080fd5b5061099d60048036038101906109989190613f26565b612222565b6040516109aa9190614572565b60405180910390f35b3480156109bf57600080fd5b506109c8612261565b6040516109d59190614978565b60405180910390f35b3480156109ea57600080fd5b506109f3612267565b604051610a009190614572565b60405180910390f35b348015610a1557600080fd5b50610a1e61228d565b604051610a2b9190614616565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613f26565b61231b565b604051610a689190614616565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190613f26565b612487565b005b348015610aa657600080fd5b50610aaf61250d565b604051610abc9190614978565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae79190613edd565b612513565b005b348015610afa57600080fd5b50610b156004803603810190610b109190613c73565b6125a9565b604051610b2291906145fb565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e09565b61263d565b005b348015610b6057600080fd5b50610b7b6004803603810190610b769190613edd565b6126dd565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f9190613c46565b612773565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c195750610c188261286b565b5b9050919050565b610c2861294d565b73ffffffffffffffffffffffffffffffffffffffff16610c466119ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390614838565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610cc890614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490614cab565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612955565b610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90614818565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ddd90614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0990614cab565b8015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b505050505081565b6000610e6982611694565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906148d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ef961294d565b73ffffffffffffffffffffffffffffffffffffffff161480610f285750610f2781610f2261294d565b6125a9565b5b610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90614758565b60405180910390fd5b610f7183836129c1565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610fb8610fb261294d565b82612a7a565b610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614918565b60405180910390fd5b611002838383612b58565b505050565b6000611012836117f4565b8210611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90614638565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611150578273ffffffffffffffffffffffffffffffffffffffff16601382815481106110ec576110eb614e4e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561113d576001915050611156565b808061114890614d0e565b9150506110b4565b50600090505b919050565b61116361294d565b73ffffffffffffffffffffffffffffffffffffffff166111816119ba565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90614838565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6111fc61294d565b73ffffffffffffffffffffffffffffffffffffffff1661121a6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790614838565b60405180910390fd5b6000601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516112b890614520565b60006040518083038185875af1925050503d80600081146112f5576040519150601f19603f3d011682016040523d82523d6000602084013e6112fa565b606091505b505090508061130857600080fd5b50565b611326838383604051806020016040528060008152506121c0565b505050565b60606000611338836117f4565b905060008167ffffffffffffffff81111561135657611355614e7d565b5b6040519080825280602002602001820160405280156113845781602001602082028036833780820191505090505b50905060005b828110156113ce5761139c8582611007565b8282815181106113af576113ae614e4e565b5b60200260200101818152505080806113c690614d0e565b91505061138a565b508092505050919050565b6113e161294d565b73ffffffffffffffffffffffffffffffffffffffff166113ff6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614838565b60405180910390fd5b80600e8190555050565b6000611469610f7c565b82106114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614938565b60405180910390fd5b600882815481106114be576114bd614e4e565b5b90600052602060002001549050919050565b60156020528060005260406000206000915090505481565b601260019054906101000a900460ff1681565b61150361294d565b73ffffffffffffffffffffffffffffffffffffffff166115216119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614838565b60405180910390fd5b80600b908051906020019061158d929190613943565b5050565b601260009054906101000a900460ff1681565b60008060016103e544426115b6610f7c565b6040516020016115c893929190614535565b6040516020818303038152906040528051906020012060001c6115eb9190614d61565b6115f59190614ab6565b905060005b6103e5811161168e576016600083815260200190815260200160002060009054906101000a900460ff1661165e5760016016600084815260200190815260200160002060006101000a81548160ff0219169083151502179055508192505050611691565b818061166990614c81565b925050600082141561167b576103e491505b808061168690614d0e565b9150506115fa565b50505b90565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614798565b60405180910390fd5b80915050919050565b600b805461175390614cab565b80601f016020809104026020016040519081016040528092919081815260200182805461177f90614cab565b80156117cc5780601f106117a1576101008083540402835291602001916117cc565b820191906000526020600020905b8154815290600101906020018083116117af57829003601f168201915b505050505081565b60166020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614778565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118b461294d565b73ffffffffffffffffffffffffffffffffffffffff166118d26119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614838565b60405180910390fd5b6119326000612db4565b565b61193c61294d565b73ffffffffffffffffffffffffffffffffffffffff1661195a6119ba565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614838565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f390614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90614cab565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611a9161294d565b73ffffffffffffffffffffffffffffffffffffffff16611aaf6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614838565b60405180910390fd5b6000611b0f610f7c565b905060005b60038111611bb357601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b6c90614d0e565b9190505550611b86338284611b819190614ab6565b612e7a565b6001600f6000828254611b999190614ab6565b925050819055508080611bab90614d0e565b915050611b14565b5050565b601260009054906101000a900460ff1615611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614858565b60405180910390fd5b6000611c11610f7c565b905060008211611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614958565b60405180910390fd5b601054821115611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906147d8565b60405180910390fd5b60115482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ce99190614ab6565b1115611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906146b8565b60405180910390fd5b600f548282611d399190614ab6565b1115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906147b8565b60405180910390fd5b611d826119ba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eec5760011515601260029054906101000a900460ff1615151415611e9b57611dd9336110ac565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614738565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906148b8565b60405180910390fd5b5b81600e54611ea99190614b3d565b341015611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906148f8565b60405180910390fd5b5b6000600190505b828111611fa157601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f4a90614d0e565b9190505550611f576115a4565b601560008385611f679190614ab6565b815260200190815260200160002081905550611f8e338284611f899190614ab6565b612e7a565b8080611f9990614d0e565b915050611ef3565b505050565b611fae61294d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612013906146f8565b60405180910390fd5b806005600061202961294d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d661294d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211b91906145fb565b60405180910390a35050565b61212f61294d565b73ffffffffffffffffffffffffffffffffffffffff1661214d6119ba565b73ffffffffffffffffffffffffffffffffffffffff16146121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614838565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b6121d16121cb61294d565b83612a7a565b612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614918565b60405180910390fd5b61221c84848484612e98565b50505050565b6013818154811061223257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c805461229a90614cab565b80601f01602080910402602001604051908101604052809291908181526020018280546122c690614cab565b80156123135780601f106122e857610100808354040283529160200191612313565b820191906000526020600020905b8154815290600101906020018083116122f657829003601f168201915b505050505081565b606061232682612955565b612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614898565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561241357600d805461238e90614cab565b80601f01602080910402602001604051908101604052809291908181526020018280546123ba90614cab565b80156124075780601f106123dc57610100808354040283529160200191612407565b820191906000526020600020905b8154815290600101906020018083116123ea57829003601f168201915b50505050509050612482565b600061241d612ef4565b9050600081511161243d576040518060200160405280600081525061247e565b8061245a6015600086815260200190815260200160002054612f86565b600c60405160200161246e939291906144ef565b6040516020818303038152906040525b9150505b919050565b61248f61294d565b73ffffffffffffffffffffffffffffffffffffffff166124ad6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614838565b60405180910390fd5b8060118190555050565b600f5481565b61251b61294d565b73ffffffffffffffffffffffffffffffffffffffff166125396119ba565b73ffffffffffffffffffffffffffffffffffffffff161461258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614838565b60405180910390fd5b80600c90805190602001906125a5929190613943565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61264561294d565b73ffffffffffffffffffffffffffffffffffffffff166126636119ba565b73ffffffffffffffffffffffffffffffffffffffff16146126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b090614838565b60405180910390fd5b601360006126c791906139c9565b8181601391906126d89291906139ea565b505050565b6126e561294d565b73ffffffffffffffffffffffffffffffffffffffff166127036119ba565b73ffffffffffffffffffffffffffffffffffffffff1614612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090614838565b60405180910390fd5b80600d908051906020019061276f929190613943565b5050565b61277b61294d565b73ffffffffffffffffffffffffffffffffffffffff166127996119ba565b73ffffffffffffffffffffffffffffffffffffffff16146127ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e690614838565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285690614678565b60405180910390fd5b61286881612db4565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061293657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129465750612945826130e7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a3483611694565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a8582612955565b612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90614718565b60405180910390fd5b6000612acf83611694565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b3e57508373ffffffffffffffffffffffffffffffffffffffff16612b2684610d4b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b4f5750612b4e81856125a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b7882611694565b73ffffffffffffffffffffffffffffffffffffffff1614612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590614878565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906146d8565b60405180910390fd5b612c49838383613151565b612c546000826129c1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca49190614b97565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfb9190614ab6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e94828260405180602001604052806000815250613265565b5050565b612ea3848484612b58565b612eaf848484846132c0565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614658565b60405180910390fd5b50505050565b6060600b8054612f0390614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2f90614cab565b8015612f7c5780601f10612f5157610100808354040283529160200191612f7c565b820191906000526020600020905b815481529060010190602001808311612f5f57829003601f168201915b5050505050905090565b60606000821415612fce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130e2565b600082905060005b60008214613000578080612fe990614d0e565b915050600a82612ff99190614b0c565b9150612fd6565b60008167ffffffffffffffff81111561301c5761301b614e7d565b5b6040519080825280601f01601f19166020018201604052801561304e5781602001600182028036833780820191505090505b5090505b600085146130db576001826130679190614b97565b9150600a856130769190614d61565b60306130829190614ab6565b60f81b81838151811061309857613097614e4e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130d49190614b0c565b9450613052565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61315c838383613457565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561319f5761319a8161345c565b6131de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131dd576131dc83826134a5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132215761321c81613612565b613260565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461325f5761325e82826136e3565b5b5b505050565b61326f8383613762565b61327c60008484846132c0565b6132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614658565b60405180910390fd5b505050565b60006132e18473ffffffffffffffffffffffffffffffffffffffff16613930565b1561344a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261330a61294d565b8786866040518563ffffffff1660e01b815260040161332c949392919061458d565b602060405180830381600087803b15801561334657600080fd5b505af192505050801561337757506040513d601f19601f820116820180604052508101906133749190613eb0565b60015b6133fa573d80600081146133a7576040519150601f19603f3d011682016040523d82523d6000602084013e6133ac565b606091505b506000815114156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e990614658565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061344f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134b2846117f4565b6134bc9190614b97565b90506000600760008481526020019081526020016000205490508181146135a1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136269190614b97565b905060006009600084815260200190815260200160002054905060006008838154811061365657613655614e4e565b5b90600052602060002001549050806008838154811061367857613677614e4e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c7576136c6614e1f565b5b6001900381819060005260206000200160009055905550505050565b60006136ee836117f4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c9906147f8565b60405180910390fd5b6137db81612955565b1561381b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381290614698565b60405180910390fd5b61382760008383613151565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138779190614ab6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461394f90614cab565b90600052602060002090601f01602090048101928261397157600085556139b8565b82601f1061398a57805160ff19168380011785556139b8565b828001600101855582156139b8579182015b828111156139b757825182559160200191906001019061399c565b5b5090506139c59190613a8a565b5090565b50805460008255906000526020600020908101906139e79190613a8a565b50565b828054828255906000526020600020908101928215613a79579160200282015b82811115613a7857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a0a565b5b509050613a869190613a8a565b5090565b5b80821115613aa3576000816000905550600101613a8b565b5090565b6000613aba613ab5846149b8565b614993565b905082815260208101848484011115613ad657613ad5614ebb565b5b613ae1848285614c3f565b509392505050565b6000613afc613af7846149e9565b614993565b905082815260208101848484011115613b1857613b17614ebb565b5b613b23848285614c3f565b509392505050565b600081359050613b3a8161558e565b92915050565b60008083601f840112613b5657613b55614eb1565b5b8235905067ffffffffffffffff811115613b7357613b72614eac565b5b602083019150836020820283011115613b8f57613b8e614eb6565b5b9250929050565b600081359050613ba5816155a5565b92915050565b600081359050613bba816155bc565b92915050565b600081519050613bcf816155bc565b92915050565b600082601f830112613bea57613be9614eb1565b5b8135613bfa848260208601613aa7565b91505092915050565b600082601f830112613c1857613c17614eb1565b5b8135613c28848260208601613ae9565b91505092915050565b600081359050613c40816155d3565b92915050565b600060208284031215613c5c57613c5b614ec5565b5b6000613c6a84828501613b2b565b91505092915050565b60008060408385031215613c8a57613c89614ec5565b5b6000613c9885828601613b2b565b9250506020613ca985828601613b2b565b9150509250929050565b600080600060608486031215613ccc57613ccb614ec5565b5b6000613cda86828701613b2b565b9350506020613ceb86828701613b2b565b9250506040613cfc86828701613c31565b9150509250925092565b60008060008060808587031215613d2057613d1f614ec5565b5b6000613d2e87828801613b2b565b9450506020613d3f87828801613b2b565b9350506040613d5087828801613c31565b925050606085013567ffffffffffffffff811115613d7157613d70614ec0565b5b613d7d87828801613bd5565b91505092959194509250565b60008060408385031215613da057613d9f614ec5565b5b6000613dae85828601613b2b565b9250506020613dbf85828601613b96565b9150509250929050565b60008060408385031215613de057613ddf614ec5565b5b6000613dee85828601613b2b565b9250506020613dff85828601613c31565b9150509250929050565b60008060208385031215613e2057613e1f614ec5565b5b600083013567ffffffffffffffff811115613e3e57613e3d614ec0565b5b613e4a85828601613b40565b92509250509250929050565b600060208284031215613e6c57613e6b614ec5565b5b6000613e7a84828501613b96565b91505092915050565b600060208284031215613e9957613e98614ec5565b5b6000613ea784828501613bab565b91505092915050565b600060208284031215613ec657613ec5614ec5565b5b6000613ed484828501613bc0565b91505092915050565b600060208284031215613ef357613ef2614ec5565b5b600082013567ffffffffffffffff811115613f1157613f10614ec0565b5b613f1d84828501613c03565b91505092915050565b600060208284031215613f3c57613f3b614ec5565b5b6000613f4a84828501613c31565b91505092915050565b6000613f5f83836144ba565b60208301905092915050565b613f7481614bcb565b82525050565b6000613f8582614a3f565b613f8f8185614a6d565b9350613f9a83614a1a565b8060005b83811015613fcb578151613fb28882613f53565b9750613fbd83614a60565b925050600181019050613f9e565b5085935050505092915050565b613fe181614bdd565b82525050565b6000613ff282614a4a565b613ffc8185614a7e565b935061400c818560208601614c4e565b61401581614eca565b840191505092915050565b600061402b82614a55565b6140358185614a9a565b9350614045818560208601614c4e565b61404e81614eca565b840191505092915050565b600061406482614a55565b61406e8185614aab565b935061407e818560208601614c4e565b80840191505092915050565b6000815461409781614cab565b6140a18186614aab565b945060018216600081146140bc57600181146140cd57614100565b60ff19831686528186019350614100565b6140d685614a2a565b60005b838110156140f8578154818901526001820191506020810190506140d9565b838801955050505b50505092915050565b6000614116602b83614a9a565b915061412182614edb565b604082019050919050565b6000614139603283614a9a565b915061414482614f2a565b604082019050919050565b600061415c602683614a9a565b915061416782614f79565b604082019050919050565b600061417f601c83614a9a565b915061418a82614fc8565b602082019050919050565b60006141a2602683614a9a565b91506141ad82614ff1565b604082019050919050565b60006141c5602483614a9a565b91506141d082615040565b604082019050919050565b60006141e8601983614a9a565b91506141f38261508f565b602082019050919050565b600061420b602c83614a9a565b9150614216826150b8565b604082019050919050565b600061422e601783614a9a565b915061423982615107565b602082019050919050565b6000614251603883614a9a565b915061425c82615130565b604082019050919050565b6000614274602a83614a9a565b915061427f8261517f565b604082019050919050565b6000614297602983614a9a565b91506142a2826151ce565b604082019050919050565b60006142ba601683614a9a565b91506142c58261521d565b602082019050919050565b60006142dd602483614a9a565b91506142e882615246565b604082019050919050565b6000614300602083614a9a565b915061430b82615295565b602082019050919050565b6000614323602c83614a9a565b915061432e826152be565b604082019050919050565b6000614346602083614a9a565b91506143518261530d565b602082019050919050565b6000614369601683614a9a565b915061437482615336565b602082019050919050565b600061438c602983614a9a565b91506143978261535f565b604082019050919050565b60006143af602f83614a9a565b91506143ba826153ae565b604082019050919050565b60006143d2603083614a9a565b91506143dd826153fd565b604082019050919050565b60006143f5602183614a9a565b91506144008261544c565b604082019050919050565b6000614418600083614a8f565b91506144238261549b565b600082019050919050565b600061443b601283614a9a565b91506144468261549e565b602082019050919050565b600061445e603183614a9a565b9150614469826154c7565b604082019050919050565b6000614481602c83614a9a565b915061448c82615516565b604082019050919050565b60006144a4601b83614a9a565b91506144af82615565565b602082019050919050565b6144c381614c35565b82525050565b6144d281614c35565b82525050565b6144e96144e482614c35565b614d57565b82525050565b60006144fb8286614059565b91506145078285614059565b9150614513828461408a565b9150819050949350505050565b600061452b8261440b565b9150819050919050565b600061454182866144d8565b60208201915061455182856144d8565b60208201915061456182846144d8565b602082019150819050949350505050565b60006020820190506145876000830184613f6b565b92915050565b60006080820190506145a26000830187613f6b565b6145af6020830186613f6b565b6145bc60408301856144c9565b81810360608301526145ce8184613fe7565b905095945050505050565b600060208201905081810360008301526145f38184613f7a565b905092915050565b60006020820190506146106000830184613fd8565b92915050565b600060208201905081810360008301526146308184614020565b905092915050565b6000602082019050818103600083015261465181614109565b9050919050565b600060208201905081810360008301526146718161412c565b9050919050565b600060208201905081810360008301526146918161414f565b9050919050565b600060208201905081810360008301526146b181614172565b9050919050565b600060208201905081810360008301526146d181614195565b9050919050565b600060208201905081810360008301526146f1816141b8565b9050919050565b60006020820190508181036000830152614711816141db565b9050919050565b60006020820190508181036000830152614731816141fe565b9050919050565b6000602082019050818103600083015261475181614221565b9050919050565b6000602082019050818103600083015261477181614244565b9050919050565b6000602082019050818103600083015261479181614267565b9050919050565b600060208201905081810360008301526147b18161428a565b9050919050565b600060208201905081810360008301526147d1816142ad565b9050919050565b600060208201905081810360008301526147f1816142d0565b9050919050565b60006020820190508181036000830152614811816142f3565b9050919050565b6000602082019050818103600083015261483181614316565b9050919050565b6000602082019050818103600083015261485181614339565b9050919050565b600060208201905081810360008301526148718161435c565b9050919050565b600060208201905081810360008301526148918161437f565b9050919050565b600060208201905081810360008301526148b1816143a2565b9050919050565b600060208201905081810360008301526148d1816143c5565b9050919050565b600060208201905081810360008301526148f1816143e8565b9050919050565b600060208201905081810360008301526149118161442e565b9050919050565b6000602082019050818103600083015261493181614451565b9050919050565b6000602082019050818103600083015261495181614474565b9050919050565b6000602082019050818103600083015261497181614497565b9050919050565b600060208201905061498d60008301846144c9565b92915050565b600061499d6149ae565b90506149a98282614cdd565b919050565b6000604051905090565b600067ffffffffffffffff8211156149d3576149d2614e7d565b5b6149dc82614eca565b9050602081019050919050565b600067ffffffffffffffff821115614a0457614a03614e7d565b5b614a0d82614eca565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac182614c35565b9150614acc83614c35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b00614d92565b5b828201905092915050565b6000614b1782614c35565b9150614b2283614c35565b925082614b3257614b31614dc1565b5b828204905092915050565b6000614b4882614c35565b9150614b5383614c35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8c57614b8b614d92565b5b828202905092915050565b6000614ba282614c35565b9150614bad83614c35565b925082821015614bc057614bbf614d92565b5b828203905092915050565b6000614bd682614c15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c6c578082015181840152602081019050614c51565b83811115614c7b576000848401525b50505050565b6000614c8c82614c35565b91506000821415614ca057614c9f614d92565b5b600182039050919050565b60006002820490506001821680614cc357607f821691505b60208210811415614cd757614cd6614df0565b5b50919050565b614ce682614eca565b810181811067ffffffffffffffff82111715614d0557614d04614e7d565b5b80604052505050565b6000614d1982614c35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d4c57614d4b614d92565b5b600182019050919050565b6000819050919050565b6000614d6c82614c35565b9150614d7783614c35565b925082614d8757614d86614dc1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d617820746f74616c206d696e7420616d6f756e7420616c6c6f77656420657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420706572206164647265737320696e2077686974656c69737460008201527f20706572696f6420657863656564656400000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61559781614bcb565b81146155a257600080fd5b50565b6155ae81614bdd565b81146155b957600080fd5b50565b6155c581614be9565b81146155d057600080fd5b50565b6155dc81614c35565b81146155e757600080fd5b5056fea2646970667358221220dbdd92b563975450908a2c20135c301e6ca2721c83ad3b239c96abeae741fa1f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008725dba2498641d6fe79247505a539f9686da35c000000000000000000000000000000000000000000000000000000000000000d50726f6a65637420447261636100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544524143410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d58726b6139674c43596d4e5673724c3163483268745043656165386832375a7535785243323739756452644a0000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063d0eb26b011610095578063e985e9c51161006f578063e985e9c514610aee578063edec5f2714610b2b578063f2c4ce1e14610b54578063f2fde38b14610b7d576102c9565b8063d0eb26b014610a71578063d5abeb0114610a9a578063da3ef23f14610ac5576102c9565b8063b88d4fde1461094d578063ba4e5c4914610976578063ba7d2c76146109b3578063c415b95c146109de578063c668286214610a09578063c87b56dd14610a34576102c9565b806395d89b411161012e57806395d89b41146108845780639c70b512146108af578063a03cd6a3146108da578063a0712d68146108f1578063a22cb4651461090d578063a475b5dd14610936576102c9565b80636c0360eb146107745780636caa14691461079f57806370a08231146107dc578063715018a6146108195780637f00c7a6146108305780638da5cb5b14610859576102c9565b80633af32abf116102345780634f6ccce7116101ed57806355f804b3116101c757806355f804b3146106b85780635c975abb146106e15780635ec01e4d1461070c5780636352211e14610737576102c9565b80634f6ccce714610613578063508e6de014610650578063518302271461068d576102c9565b80633af32abf146105145780633c952764146105515780633ccfd60b1461057a57806342842e0e14610584578063438b6300146105ad57806344a0d68a146105ea576102c9565b806313faede61161028657806313faede6146103f057806318160ddd1461041b57806318cae26914610446578063239c70ae1461048357806323b872dd146104ae5780632f745c59146104d7576102c9565b806301ffc9a7146102ce57806302329a291461030b57806306fdde0314610334578063081812fc1461035f578063081c8c441461039c578063095ea7b3146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613e83565b610ba6565b60405161030291906145fb565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190613e56565b610c20565b005b34801561034057600080fd5b50610349610cb9565b6040516103569190614616565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613f26565b610d4b565b6040516103939190614572565b60405180910390f35b3480156103a857600080fd5b506103b1610dd0565b6040516103be9190614616565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613dc9565b610e5e565b005b3480156103fc57600080fd5b50610405610f76565b6040516104129190614978565b60405180910390f35b34801561042757600080fd5b50610430610f7c565b60405161043d9190614978565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613c46565b610f89565b60405161047a9190614978565b60405180910390f35b34801561048f57600080fd5b50610498610fa1565b6040516104a59190614978565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613cb3565b610fa7565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613dc9565b611007565b60405161050b9190614978565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613c46565b6110ac565b60405161054891906145fb565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613e56565b61115b565b005b6105826111f4565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613cb3565b61130b565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190613c46565b61132b565b6040516105e191906145d9565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613f26565b6113d9565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613f26565b61145f565b6040516106479190614978565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190613f26565b6114d0565b6040516106849190614978565b60405180910390f35b34801561069957600080fd5b506106a26114e8565b6040516106af91906145fb565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613edd565b6114fb565b005b3480156106ed57600080fd5b506106f6611591565b60405161070391906145fb565b60405180910390f35b34801561071857600080fd5b506107216115a4565b60405161072e9190614978565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613f26565b611694565b60405161076b9190614572565b60405180910390f35b34801561078057600080fd5b50610789611746565b6040516107969190614616565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613f26565b6117d4565b6040516107d391906145fb565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613c46565b6117f4565b6040516108109190614978565b60405180910390f35b34801561082557600080fd5b5061082e6118ac565b005b34801561083c57600080fd5b5061085760048036038101906108529190613f26565b611934565b005b34801561086557600080fd5b5061086e6119ba565b60405161087b9190614572565b60405180910390f35b34801561089057600080fd5b506108996119e4565b6040516108a69190614616565b60405180910390f35b3480156108bb57600080fd5b506108c4611a76565b6040516108d191906145fb565b60405180910390f35b3480156108e657600080fd5b506108ef611a89565b005b61090b60048036038101906109069190613f26565b611bb7565b005b34801561091957600080fd5b50610934600480360381019061092f9190613d89565b611fa6565b005b34801561094257600080fd5b5061094b612127565b005b34801561095957600080fd5b50610974600480360381019061096f9190613d06565b6121c0565b005b34801561098257600080fd5b5061099d60048036038101906109989190613f26565b612222565b6040516109aa9190614572565b60405180910390f35b3480156109bf57600080fd5b506109c8612261565b6040516109d59190614978565b60405180910390f35b3480156109ea57600080fd5b506109f3612267565b604051610a009190614572565b60405180910390f35b348015610a1557600080fd5b50610a1e61228d565b604051610a2b9190614616565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613f26565b61231b565b604051610a689190614616565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a939190613f26565b612487565b005b348015610aa657600080fd5b50610aaf61250d565b604051610abc9190614978565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae79190613edd565b612513565b005b348015610afa57600080fd5b50610b156004803603810190610b109190613c73565b6125a9565b604051610b2291906145fb565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190613e09565b61263d565b005b348015610b6057600080fd5b50610b7b6004803603810190610b769190613edd565b6126dd565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f9190613c46565b612773565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c195750610c188261286b565b5b9050919050565b610c2861294d565b73ffffffffffffffffffffffffffffffffffffffff16610c466119ba565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390614838565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610cc890614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490614cab565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612955565b610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90614818565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610ddd90614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0990614cab565b8015610e565780601f10610e2b57610100808354040283529160200191610e56565b820191906000526020600020905b815481529060010190602001808311610e3957829003601f168201915b505050505081565b6000610e6982611694565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906148d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ef961294d565b73ffffffffffffffffffffffffffffffffffffffff161480610f285750610f2781610f2261294d565b6125a9565b5b610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90614758565b60405180910390fd5b610f7183836129c1565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610fb8610fb261294d565b82612a7a565b610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90614918565b60405180910390fd5b611002838383612b58565b505050565b6000611012836117f4565b8210611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90614638565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611150578273ffffffffffffffffffffffffffffffffffffffff16601382815481106110ec576110eb614e4e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561113d576001915050611156565b808061114890614d0e565b9150506110b4565b50600090505b919050565b61116361294d565b73ffffffffffffffffffffffffffffffffffffffff166111816119ba565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90614838565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6111fc61294d565b73ffffffffffffffffffffffffffffffffffffffff1661121a6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126790614838565b60405180910390fd5b6000601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516112b890614520565b60006040518083038185875af1925050503d80600081146112f5576040519150601f19603f3d011682016040523d82523d6000602084013e6112fa565b606091505b505090508061130857600080fd5b50565b611326838383604051806020016040528060008152506121c0565b505050565b60606000611338836117f4565b905060008167ffffffffffffffff81111561135657611355614e7d565b5b6040519080825280602002602001820160405280156113845781602001602082028036833780820191505090505b50905060005b828110156113ce5761139c8582611007565b8282815181106113af576113ae614e4e565b5b60200260200101818152505080806113c690614d0e565b91505061138a565b508092505050919050565b6113e161294d565b73ffffffffffffffffffffffffffffffffffffffff166113ff6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614838565b60405180910390fd5b80600e8190555050565b6000611469610f7c565b82106114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614938565b60405180910390fd5b600882815481106114be576114bd614e4e565b5b90600052602060002001549050919050565b60156020528060005260406000206000915090505481565b601260019054906101000a900460ff1681565b61150361294d565b73ffffffffffffffffffffffffffffffffffffffff166115216119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614838565b60405180910390fd5b80600b908051906020019061158d929190613943565b5050565b601260009054906101000a900460ff1681565b60008060016103e544426115b6610f7c565b6040516020016115c893929190614535565b6040516020818303038152906040528051906020012060001c6115eb9190614d61565b6115f59190614ab6565b905060005b6103e5811161168e576016600083815260200190815260200160002060009054906101000a900460ff1661165e5760016016600084815260200190815260200160002060006101000a81548160ff0219169083151502179055508192505050611691565b818061166990614c81565b925050600082141561167b576103e491505b808061168690614d0e565b9150506115fa565b50505b90565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614798565b60405180910390fd5b80915050919050565b600b805461175390614cab565b80601f016020809104026020016040519081016040528092919081815260200182805461177f90614cab565b80156117cc5780601f106117a1576101008083540402835291602001916117cc565b820191906000526020600020905b8154815290600101906020018083116117af57829003601f168201915b505050505081565b60166020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614778565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118b461294d565b73ffffffffffffffffffffffffffffffffffffffff166118d26119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90614838565b60405180910390fd5b6119326000612db4565b565b61193c61294d565b73ffffffffffffffffffffffffffffffffffffffff1661195a6119ba565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790614838565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119f390614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90614cab565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611a9161294d565b73ffffffffffffffffffffffffffffffffffffffff16611aaf6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614838565b60405180910390fd5b6000611b0f610f7c565b905060005b60038111611bb357601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b6c90614d0e565b9190505550611b86338284611b819190614ab6565b612e7a565b6001600f6000828254611b999190614ab6565b925050819055508080611bab90614d0e565b915050611b14565b5050565b601260009054906101000a900460ff1615611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe90614858565b60405180910390fd5b6000611c11610f7c565b905060008211611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614958565b60405180910390fd5b601054821115611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906147d8565b60405180910390fd5b60115482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ce99190614ab6565b1115611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906146b8565b60405180910390fd5b600f548282611d399190614ab6565b1115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906147b8565b60405180910390fd5b611d826119ba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611eec5760011515601260029054906101000a900460ff1615151415611e9b57611dd9336110ac565b611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614738565b60405180910390fd5b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906148b8565b60405180910390fd5b5b81600e54611ea99190614b3d565b341015611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906148f8565b60405180910390fd5b5b6000600190505b828111611fa157601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f4a90614d0e565b9190505550611f576115a4565b601560008385611f679190614ab6565b815260200190815260200160002081905550611f8e338284611f899190614ab6565b612e7a565b8080611f9990614d0e565b915050611ef3565b505050565b611fae61294d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612013906146f8565b60405180910390fd5b806005600061202961294d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d661294d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211b91906145fb565b60405180910390a35050565b61212f61294d565b73ffffffffffffffffffffffffffffffffffffffff1661214d6119ba565b73ffffffffffffffffffffffffffffffffffffffff16146121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90614838565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b6121d16121cb61294d565b83612a7a565b612210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220790614918565b60405180910390fd5b61221c84848484612e98565b50505050565b6013818154811061223257600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c805461229a90614cab565b80601f01602080910402602001604051908101604052809291908181526020018280546122c690614cab565b80156123135780601f106122e857610100808354040283529160200191612313565b820191906000526020600020905b8154815290600101906020018083116122f657829003601f168201915b505050505081565b606061232682612955565b612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614898565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561241357600d805461238e90614cab565b80601f01602080910402602001604051908101604052809291908181526020018280546123ba90614cab565b80156124075780601f106123dc57610100808354040283529160200191612407565b820191906000526020600020905b8154815290600101906020018083116123ea57829003601f168201915b50505050509050612482565b600061241d612ef4565b9050600081511161243d576040518060200160405280600081525061247e565b8061245a6015600086815260200190815260200160002054612f86565b600c60405160200161246e939291906144ef565b6040516020818303038152906040525b9150505b919050565b61248f61294d565b73ffffffffffffffffffffffffffffffffffffffff166124ad6119ba565b73ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614838565b60405180910390fd5b8060118190555050565b600f5481565b61251b61294d565b73ffffffffffffffffffffffffffffffffffffffff166125396119ba565b73ffffffffffffffffffffffffffffffffffffffff161461258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614838565b60405180910390fd5b80600c90805190602001906125a5929190613943565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61264561294d565b73ffffffffffffffffffffffffffffffffffffffff166126636119ba565b73ffffffffffffffffffffffffffffffffffffffff16146126b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b090614838565b60405180910390fd5b601360006126c791906139c9565b8181601391906126d89291906139ea565b505050565b6126e561294d565b73ffffffffffffffffffffffffffffffffffffffff166127036119ba565b73ffffffffffffffffffffffffffffffffffffffff1614612759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275090614838565b60405180910390fd5b80600d908051906020019061276f929190613943565b5050565b61277b61294d565b73ffffffffffffffffffffffffffffffffffffffff166127996119ba565b73ffffffffffffffffffffffffffffffffffffffff16146127ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e690614838565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561285f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285690614678565b60405180910390fd5b61286881612db4565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061293657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129465750612945826130e7565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a3483611694565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a8582612955565b612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90614718565b60405180910390fd5b6000612acf83611694565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b3e57508373ffffffffffffffffffffffffffffffffffffffff16612b2684610d4b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b4f5750612b4e81856125a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b7882611694565b73ffffffffffffffffffffffffffffffffffffffff1614612bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc590614878565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c35906146d8565b60405180910390fd5b612c49838383613151565b612c546000826129c1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca49190614b97565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfb9190614ab6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e94828260405180602001604052806000815250613265565b5050565b612ea3848484612b58565b612eaf848484846132c0565b612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee590614658565b60405180910390fd5b50505050565b6060600b8054612f0390614cab565b80601f0160208091040260200160405190810160405280929190818152602001828054612f2f90614cab565b8015612f7c5780601f10612f5157610100808354040283529160200191612f7c565b820191906000526020600020905b815481529060010190602001808311612f5f57829003601f168201915b5050505050905090565b60606000821415612fce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130e2565b600082905060005b60008214613000578080612fe990614d0e565b915050600a82612ff99190614b0c565b9150612fd6565b60008167ffffffffffffffff81111561301c5761301b614e7d565b5b6040519080825280601f01601f19166020018201604052801561304e5781602001600182028036833780820191505090505b5090505b600085146130db576001826130679190614b97565b9150600a856130769190614d61565b60306130829190614ab6565b60f81b81838151811061309857613097614e4e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130d49190614b0c565b9450613052565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61315c838383613457565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561319f5761319a8161345c565b6131de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131dd576131dc83826134a5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132215761321c81613612565b613260565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461325f5761325e82826136e3565b5b5b505050565b61326f8383613762565b61327c60008484846132c0565b6132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290614658565b60405180910390fd5b505050565b60006132e18473ffffffffffffffffffffffffffffffffffffffff16613930565b1561344a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261330a61294d565b8786866040518563ffffffff1660e01b815260040161332c949392919061458d565b602060405180830381600087803b15801561334657600080fd5b505af192505050801561337757506040513d601f19601f820116820180604052508101906133749190613eb0565b60015b6133fa573d80600081146133a7576040519150601f19603f3d011682016040523d82523d6000602084013e6133ac565b606091505b506000815114156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e990614658565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061344f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134b2846117f4565b6134bc9190614b97565b90506000600760008481526020019081526020016000205490508181146135a1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136269190614b97565b905060006009600084815260200190815260200160002054905060006008838154811061365657613655614e4e565b5b90600052602060002001549050806008838154811061367857613677614e4e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c7576136c6614e1f565b5b6001900381819060005260206000200160009055905550505050565b60006136ee836117f4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c9906147f8565b60405180910390fd5b6137db81612955565b1561381b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381290614698565b60405180910390fd5b61382760008383613151565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138779190614ab6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461394f90614cab565b90600052602060002090601f01602090048101928261397157600085556139b8565b82601f1061398a57805160ff19168380011785556139b8565b828001600101855582156139b8579182015b828111156139b757825182559160200191906001019061399c565b5b5090506139c59190613a8a565b5090565b50805460008255906000526020600020908101906139e79190613a8a565b50565b828054828255906000526020600020908101928215613a79579160200282015b82811115613a7857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a0a565b5b509050613a869190613a8a565b5090565b5b80821115613aa3576000816000905550600101613a8b565b5090565b6000613aba613ab5846149b8565b614993565b905082815260208101848484011115613ad657613ad5614ebb565b5b613ae1848285614c3f565b509392505050565b6000613afc613af7846149e9565b614993565b905082815260208101848484011115613b1857613b17614ebb565b5b613b23848285614c3f565b509392505050565b600081359050613b3a8161558e565b92915050565b60008083601f840112613b5657613b55614eb1565b5b8235905067ffffffffffffffff811115613b7357613b72614eac565b5b602083019150836020820283011115613b8f57613b8e614eb6565b5b9250929050565b600081359050613ba5816155a5565b92915050565b600081359050613bba816155bc565b92915050565b600081519050613bcf816155bc565b92915050565b600082601f830112613bea57613be9614eb1565b5b8135613bfa848260208601613aa7565b91505092915050565b600082601f830112613c1857613c17614eb1565b5b8135613c28848260208601613ae9565b91505092915050565b600081359050613c40816155d3565b92915050565b600060208284031215613c5c57613c5b614ec5565b5b6000613c6a84828501613b2b565b91505092915050565b60008060408385031215613c8a57613c89614ec5565b5b6000613c9885828601613b2b565b9250506020613ca985828601613b2b565b9150509250929050565b600080600060608486031215613ccc57613ccb614ec5565b5b6000613cda86828701613b2b565b9350506020613ceb86828701613b2b565b9250506040613cfc86828701613c31565b9150509250925092565b60008060008060808587031215613d2057613d1f614ec5565b5b6000613d2e87828801613b2b565b9450506020613d3f87828801613b2b565b9350506040613d5087828801613c31565b925050606085013567ffffffffffffffff811115613d7157613d70614ec0565b5b613d7d87828801613bd5565b91505092959194509250565b60008060408385031215613da057613d9f614ec5565b5b6000613dae85828601613b2b565b9250506020613dbf85828601613b96565b9150509250929050565b60008060408385031215613de057613ddf614ec5565b5b6000613dee85828601613b2b565b9250506020613dff85828601613c31565b9150509250929050565b60008060208385031215613e2057613e1f614ec5565b5b600083013567ffffffffffffffff811115613e3e57613e3d614ec0565b5b613e4a85828601613b40565b92509250509250929050565b600060208284031215613e6c57613e6b614ec5565b5b6000613e7a84828501613b96565b91505092915050565b600060208284031215613e9957613e98614ec5565b5b6000613ea784828501613bab565b91505092915050565b600060208284031215613ec657613ec5614ec5565b5b6000613ed484828501613bc0565b91505092915050565b600060208284031215613ef357613ef2614ec5565b5b600082013567ffffffffffffffff811115613f1157613f10614ec0565b5b613f1d84828501613c03565b91505092915050565b600060208284031215613f3c57613f3b614ec5565b5b6000613f4a84828501613c31565b91505092915050565b6000613f5f83836144ba565b60208301905092915050565b613f7481614bcb565b82525050565b6000613f8582614a3f565b613f8f8185614a6d565b9350613f9a83614a1a565b8060005b83811015613fcb578151613fb28882613f53565b9750613fbd83614a60565b925050600181019050613f9e565b5085935050505092915050565b613fe181614bdd565b82525050565b6000613ff282614a4a565b613ffc8185614a7e565b935061400c818560208601614c4e565b61401581614eca565b840191505092915050565b600061402b82614a55565b6140358185614a9a565b9350614045818560208601614c4e565b61404e81614eca565b840191505092915050565b600061406482614a55565b61406e8185614aab565b935061407e818560208601614c4e565b80840191505092915050565b6000815461409781614cab565b6140a18186614aab565b945060018216600081146140bc57600181146140cd57614100565b60ff19831686528186019350614100565b6140d685614a2a565b60005b838110156140f8578154818901526001820191506020810190506140d9565b838801955050505b50505092915050565b6000614116602b83614a9a565b915061412182614edb565b604082019050919050565b6000614139603283614a9a565b915061414482614f2a565b604082019050919050565b600061415c602683614a9a565b915061416782614f79565b604082019050919050565b600061417f601c83614a9a565b915061418a82614fc8565b602082019050919050565b60006141a2602683614a9a565b91506141ad82614ff1565b604082019050919050565b60006141c5602483614a9a565b91506141d082615040565b604082019050919050565b60006141e8601983614a9a565b91506141f38261508f565b602082019050919050565b600061420b602c83614a9a565b9150614216826150b8565b604082019050919050565b600061422e601783614a9a565b915061423982615107565b602082019050919050565b6000614251603883614a9a565b915061425c82615130565b604082019050919050565b6000614274602a83614a9a565b915061427f8261517f565b604082019050919050565b6000614297602983614a9a565b91506142a2826151ce565b604082019050919050565b60006142ba601683614a9a565b91506142c58261521d565b602082019050919050565b60006142dd602483614a9a565b91506142e882615246565b604082019050919050565b6000614300602083614a9a565b915061430b82615295565b602082019050919050565b6000614323602c83614a9a565b915061432e826152be565b604082019050919050565b6000614346602083614a9a565b91506143518261530d565b602082019050919050565b6000614369601683614a9a565b915061437482615336565b602082019050919050565b600061438c602983614a9a565b91506143978261535f565b604082019050919050565b60006143af602f83614a9a565b91506143ba826153ae565b604082019050919050565b60006143d2603083614a9a565b91506143dd826153fd565b604082019050919050565b60006143f5602183614a9a565b91506144008261544c565b604082019050919050565b6000614418600083614a8f565b91506144238261549b565b600082019050919050565b600061443b601283614a9a565b91506144468261549e565b602082019050919050565b600061445e603183614a9a565b9150614469826154c7565b604082019050919050565b6000614481602c83614a9a565b915061448c82615516565b604082019050919050565b60006144a4601b83614a9a565b91506144af82615565565b602082019050919050565b6144c381614c35565b82525050565b6144d281614c35565b82525050565b6144e96144e482614c35565b614d57565b82525050565b60006144fb8286614059565b91506145078285614059565b9150614513828461408a565b9150819050949350505050565b600061452b8261440b565b9150819050919050565b600061454182866144d8565b60208201915061455182856144d8565b60208201915061456182846144d8565b602082019150819050949350505050565b60006020820190506145876000830184613f6b565b92915050565b60006080820190506145a26000830187613f6b565b6145af6020830186613f6b565b6145bc60408301856144c9565b81810360608301526145ce8184613fe7565b905095945050505050565b600060208201905081810360008301526145f38184613f7a565b905092915050565b60006020820190506146106000830184613fd8565b92915050565b600060208201905081810360008301526146308184614020565b905092915050565b6000602082019050818103600083015261465181614109565b9050919050565b600060208201905081810360008301526146718161412c565b9050919050565b600060208201905081810360008301526146918161414f565b9050919050565b600060208201905081810360008301526146b181614172565b9050919050565b600060208201905081810360008301526146d181614195565b9050919050565b600060208201905081810360008301526146f1816141b8565b9050919050565b60006020820190508181036000830152614711816141db565b9050919050565b60006020820190508181036000830152614731816141fe565b9050919050565b6000602082019050818103600083015261475181614221565b9050919050565b6000602082019050818103600083015261477181614244565b9050919050565b6000602082019050818103600083015261479181614267565b9050919050565b600060208201905081810360008301526147b18161428a565b9050919050565b600060208201905081810360008301526147d1816142ad565b9050919050565b600060208201905081810360008301526147f1816142d0565b9050919050565b60006020820190508181036000830152614811816142f3565b9050919050565b6000602082019050818103600083015261483181614316565b9050919050565b6000602082019050818103600083015261485181614339565b9050919050565b600060208201905081810360008301526148718161435c565b9050919050565b600060208201905081810360008301526148918161437f565b9050919050565b600060208201905081810360008301526148b1816143a2565b9050919050565b600060208201905081810360008301526148d1816143c5565b9050919050565b600060208201905081810360008301526148f1816143e8565b9050919050565b600060208201905081810360008301526149118161442e565b9050919050565b6000602082019050818103600083015261493181614451565b9050919050565b6000602082019050818103600083015261495181614474565b9050919050565b6000602082019050818103600083015261497181614497565b9050919050565b600060208201905061498d60008301846144c9565b92915050565b600061499d6149ae565b90506149a98282614cdd565b919050565b6000604051905090565b600067ffffffffffffffff8211156149d3576149d2614e7d565b5b6149dc82614eca565b9050602081019050919050565b600067ffffffffffffffff821115614a0457614a03614e7d565b5b614a0d82614eca565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac182614c35565b9150614acc83614c35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b00614d92565b5b828201905092915050565b6000614b1782614c35565b9150614b2283614c35565b925082614b3257614b31614dc1565b5b828204905092915050565b6000614b4882614c35565b9150614b5383614c35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8c57614b8b614d92565b5b828202905092915050565b6000614ba282614c35565b9150614bad83614c35565b925082821015614bc057614bbf614d92565b5b828203905092915050565b6000614bd682614c15565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c6c578082015181840152602081019050614c51565b83811115614c7b576000848401525b50505050565b6000614c8c82614c35565b91506000821415614ca057614c9f614d92565b5b600182039050919050565b60006002820490506001821680614cc357607f821691505b60208210811415614cd757614cd6614df0565b5b50919050565b614ce682614eca565b810181811067ffffffffffffffff82111715614d0557614d04614e7d565b5b80604052505050565b6000614d1982614c35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d4c57614d4b614d92565b5b600182019050919050565b6000819050919050565b6000614d6c82614c35565b9150614d7783614c35565b925082614d8757614d86614dc1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d617820746f74616c206d696e7420616d6f756e7420616c6c6f77656420657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e465420706572206164647265737320696e2077686974656c69737460008201527f20706572696f6420657863656564656400000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61559781614bcb565b81146155a257600080fd5b50565b6155ae81614bdd565b81146155b957600080fd5b50565b6155c581614be9565b81146155d057600080fd5b50565b6155dc81614c35565b81146155e757600080fd5b5056fea2646970667358221220dbdd92b563975450908a2c20135c301e6ca2721c83ad3b239c96abeae741fa1f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000008725dba2498641d6fe79247505a539f9686da35c000000000000000000000000000000000000000000000000000000000000000d50726f6a65637420447261636100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000544524143410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d58726b6139674c43596d4e5673724c3163483268745043656165386832375a7535785243323739756452644a0000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Project Draca
Arg [1] : _symbol (string): DRACA
Arg [2] : _initNotRevealedUri (string): ipfs://QmXrka9gLCYmNVsrL1cH2htPCeae8h27Zu5xRC279udRdJ
Arg [3] : _feeCollector (address): 0x8725dbA2498641d6fE79247505A539F9686da35c

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000008725dba2498641d6fe79247505a539f9686da35c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 50726f6a65637420447261636100000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4452414341000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d58726b6139674c43596d4e5673724c3163483268745043
Arg [10] : 656165386832375a7535785243323739756452644a0000000000000000000000


Deployed Bytecode Sourcemap

43230:5344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37000:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47837:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24892:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26451:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43386:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25974:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43419:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37640:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43753:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43498:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27341:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37308:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45955:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48166:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48419:152;;;:::i;:::-;;27751:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46200:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47269:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37830:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43813:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43607:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47477:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43577:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44435:465;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24586:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43318:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43862:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24316:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;47355:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25061:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43640:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47918:240;;;;;;;;;;;;;:::i;:::-;;44919:1028;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26744:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47084:65;;;;;;;;;;;;;:::i;:::-;;28007:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43711:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43535;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43679:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43344:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46554:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47157:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43463:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47581:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27110:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48269:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47711:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37000:224;37102:4;37141:35;37126:50;;;:11;:50;;;;:90;;;;37180:36;37204:11;37180:23;:36::i;:::-;37126:90;37119:97;;37000:224;;;:::o;47837:73::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47898:6:::1;47889;;:15;;;;;;;;;;;;;;;;;;47837:73:::0;:::o;24892:100::-;24946:13;24979:5;24972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24892:100;:::o;26451:221::-;26527:7;26555:16;26563:7;26555;:16::i;:::-;26547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26640:15;:24;26656:7;26640:24;;;;;;;;;;;;;;;;;;;;;26633:31;;26451:221;;;:::o;43386:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25974:411::-;26055:13;26071:23;26086:7;26071:14;:23::i;:::-;26055:39;;26119:5;26113:11;;:2;:11;;;;26105:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26213:5;26197:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26222:37;26239:5;26246:12;:10;:12::i;:::-;26222:16;:37::i;:::-;26197:62;26175:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26356:21;26365:2;26369:7;26356:8;:21::i;:::-;26044:341;25974:411;;:::o;43419:39::-;;;;:::o;37640:113::-;37701:7;37728:10;:17;;;;37721:24;;37640:113;:::o;43753:55::-;;;;;;;;;;;;;;;;;:::o;43498:32::-;;;;:::o;27341:339::-;27536:41;27555:12;:10;:12::i;:::-;27569:7;27536:18;:41::i;:::-;27528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27644:28;27654:4;27660:2;27664:7;27644:9;:28::i;:::-;27341:339;;;:::o;37308:256::-;37405:7;37441:23;37458:5;37441:16;:23::i;:::-;37433:5;:31;37425:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37530:12;:19;37543:5;37530:19;;;;;;;;;;;;;;;:26;37550:5;37530:26;;;;;;;;;;;;37523:33;;37308:256;;;;:::o;45955:239::-;46014:4;46032:6;46041:1;46032:10;;46027:143;46048:20;:27;;;;46044:1;:31;46027:143;;;46122:5;46095:32;;:20;46116:1;46095:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;46091:72;;;46149:4;46142:11;;;;;46091:72;46077:3;;;;;:::i;:::-;;;;46027:143;;;;46183:5;46176:12;;45955:239;;;;:::o;48166:95::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48249:6:::1;48231:15;;:24;;;;;;;;;;;;;;;;;;48166:95:::0;:::o;48419:152::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48474:7:::1;48495:12;;;;;;;;;;;48487:26;;48521:21;48487:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48473:74;;;48562:2;48554:11;;;::::0;::::1;;48464:107;48419:152::o:0;27751:185::-;27889:39;27906:4;27912:2;27916:7;27889:39;;;;;;;;;;;;:16;:39::i;:::-;27751:185;;;:::o;46200:348::-;46275:16;46303:23;46329:17;46339:6;46329:9;:17::i;:::-;46303:43;;46353:25;46395:15;46381:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46353:58;;46423:9;46418:103;46438:15;46434:1;:19;46418:103;;;46483:30;46503:6;46511:1;46483:19;:30::i;:::-;46469:8;46478:1;46469:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46455:3;;;;;:::i;:::-;;;;46418:103;;;;46534:8;46527:15;;;;46200:348;;;:::o;47269:80::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47335:8:::1;47328:4;:15;;;;47269:80:::0;:::o;37830:233::-;37905:7;37941:30;:28;:30::i;:::-;37933:5;:38;37925:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38038:10;38049:5;38038:17;;;;;;;;:::i;:::-;;;;;;;;;;38031:24;;37830:233;;;:::o;43813:44::-;;;;;;;;;;;;;;;;;:::o;43607:28::-;;;;;;;;;;;;;:::o;47477:98::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47558:11:::1;47548:7;:21;;;;;;;;;;;;:::i;:::-;;47477:98:::0;:::o;43577:25::-;;;;;;;;;;;;;:::o;44435:465::-;44469:16;44494:15;44609:1;44602:3;44548:16;44566:15;44583:13;:11;:13::i;:::-;44531:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44521:77;;;;;;44513:86;;:92;;;;:::i;:::-;44512:98;;;;:::i;:::-;44494:116;;44621:9;44617:278;44641:3;44636:1;:8;44617:278;;44665:10;:19;44676:7;44665:19;;;;;;;;;;;;;;;;;;;;;44661:227;;44722:4;44700:10;:19;44711:7;44700:19;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;44748:7;44741:14;;;;;;44661:227;44788:9;;;;;:::i;:::-;;;;44826:1;44815:7;:12;44812:65;;;44858:3;44848:13;;44812:65;44646:3;;;;;:::i;:::-;;;;44617:278;;;;44487:413;44435:465;;:::o;24586:239::-;24658:7;24678:13;24694:7;:16;24702:7;24694:16;;;;;;;;;;;;;;;;;;;;;24678:32;;24746:1;24729:19;;:5;:19;;;;24721:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24812:5;24805:12;;;24586:239;;;:::o;43318:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43862:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;24316:208::-;24388:7;24433:1;24416:19;;:5;:19;;;;24408:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24500:9;:16;24510:5;24500:16;;;;;;;;;;;;;;;;24493:23;;24316:208;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;47355:116::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47448:17:::1;47432:13;:33;;;;47355:116:::0;:::o;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;25061:104::-;25117:13;25150:7;25143:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:104;:::o;43640:34::-;;;;;;;;;;;;;:::o;47918:240::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47965:14:::1;47982:13;:11;:13::i;:::-;47965:30;;48009:9;48004:149;48029:1;48024;:6;48004:149;;48046:20;:32;48067:10;48046:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;48089:33;48099:10;48120:1;48111:6;:10;;;;:::i;:::-;48089:9;:33::i;:::-;48144:1;48131:9;;:14;;;;;;;:::i;:::-;;;;;;;;48032:3;;;;;:::i;:::-;;;;48004:149;;;;47958:200;47918:240::o:0;44919:1028::-;44985:6;;;;;;;;;;;44984:7;44976:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;45025:14;45042:13;:11;:13::i;:::-;45025:30;;45084:1;45070:11;:15;45062:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45147:13;;45132:11;:28;;45124:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45266:18;;45251:11;45216:20;:32;45237:10;45216:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;45208:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;45366:9;;45351:11;45342:6;:20;;;;:::i;:::-;:33;;45334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45429:7;:5;:7::i;:::-;45415:21;;:10;:21;;;45411:346;;45471:4;45452:23;;:15;;;;;;;;;;;:23;;;45449:228;;;45500:25;45514:10;45500:13;:25::i;:::-;45492:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45611:1;45576:20;:32;45597:10;45576:32;;;;;;;;;;;;;;;;:36;45568:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45449:228;45715:11;45708:4;;:18;;;;:::i;:::-;45695:9;:31;;45687:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45411:346;45770:9;45782:1;45770:13;;45765:177;45790:11;45785:1;:16;45765:177;;45817:20;:32;45838:10;45817:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;45884:8;:6;:8::i;:::-;45860:9;:21;45879:1;45870:6;:10;;;;:::i;:::-;45860:21;;;;;;;;;;;:32;;;;45901:33;45911:10;45932:1;45923:6;:10;;;;:::i;:::-;45901:9;:33::i;:::-;45803:3;;;;;:::i;:::-;;;;45765:177;;;;44969:978;44919:1028;:::o;26744:295::-;26859:12;:10;:12::i;:::-;26847:24;;:8;:24;;;;26839:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26959:8;26914:18;:32;26933:12;:10;:12::i;:::-;26914:32;;;;;;;;;;;;;;;:42;26947:8;26914:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27012:8;26983:48;;26998:12;:10;:12::i;:::-;26983:48;;;27022:8;26983:48;;;;;;:::i;:::-;;;;;;;;26744:295;;:::o;47084:65::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47139:4:::1;47128:8;;:15;;;;;;;;;;;;;;;;;;47084:65::o:0;28007:328::-;28182:41;28201:12;:10;:12::i;:::-;28215:7;28182:18;:41::i;:::-;28174:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28288:39;28302:4;28308:2;28312:7;28321:5;28288:13;:39::i;:::-;28007:328;;;;:::o;43711:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43535:::-;;;;:::o;43679:27::-;;;;;;;;;;;;;:::o;43344:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46554:508::-;46652:13;46693:16;46701:7;46693;:16::i;:::-;46677:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46802:5;46790:17;;:8;;;;;;;;;;;:17;;;46787:62;;;46827:14;46820:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46787:62;46857:28;46888:10;:8;:10::i;:::-;46857:41;;46943:1;46918:14;46912:28;:32;:144;;;;;;;;;;;;;;;;;46980:14;46996:29;:9;:18;47006:7;46996:18;;;;;;;;;;;;:27;:29::i;:::-;47027:13;46963:78;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46912:144;46905:151;;;46554:508;;;;:::o;47157:104::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47249:6:::1;47228:18;:27;;;;47157:104:::0;:::o;43463:30::-;;;;:::o;47581:122::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47680:17:::1;47664:13;:33;;;;;;;;;;;;:::i;:::-;;47581:122:::0;:::o;27110:164::-;27207:4;27231:18;:25;27250:5;27231:25;;;;;;;;;;;;;;;:35;27257:8;27231:35;;;;;;;;;;;;;;;;;;;;;;;;;27224:42;;27110:164;;;;:::o;48269:144::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48351:20:::1;;48344:27;;;;:::i;:::-;48401:6;;48378:20;:29;;;;;;;:::i;:::-;;48269:144:::0;;:::o;47711:120::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47810:15:::1;47793:14;:32;;;;;;;;;;;;:::i;:::-;;47711:120:::0;:::o;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;23947:305::-;24049:4;24101:25;24086:40;;;:11;:40;;;;:105;;;;24158:33;24143:48;;;:11;:48;;;;24086:105;:158;;;;24208:36;24232:11;24208:23;:36::i;:::-;24086:158;24066:178;;23947:305;;;:::o;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;29845:127::-;29910:4;29962:1;29934:30;;:7;:16;29942:7;29934:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29927:37;;29845:127;;;:::o;33827:174::-;33929:2;33902:15;:24;33918:7;33902:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33985:7;33981:2;33947:46;;33956:23;33971:7;33956:14;:23::i;:::-;33947:46;;;;;;;;;;;;33827:174;;:::o;30139:348::-;30232:4;30257:16;30265:7;30257;:16::i;:::-;30249:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30333:13;30349:23;30364:7;30349:14;:23::i;:::-;30333:39;;30402:5;30391:16;;:7;:16;;;:51;;;;30435:7;30411:31;;:20;30423:7;30411:11;:20::i;:::-;:31;;;30391:51;:87;;;;30446:32;30463:5;30470:7;30446:16;:32::i;:::-;30391:87;30383:96;;;30139:348;;;;:::o;33131:578::-;33290:4;33263:31;;:23;33278:7;33263:14;:23::i;:::-;:31;;;33255:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33373:1;33359:16;;:2;:16;;;;33351:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33429:39;33450:4;33456:2;33460:7;33429:20;:39::i;:::-;33533:29;33550:1;33554:7;33533:8;:29::i;:::-;33594:1;33575:9;:15;33585:4;33575:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33623:1;33606:9;:13;33616:2;33606:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33654:2;33635:7;:16;33643:7;33635:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33693:7;33689:2;33674:27;;33683:4;33674:27;;;;;;;;;;;;33131:578;;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5085:128;5040:173;:::o;30829:110::-;30905:26;30915:2;30919:7;30905:26;;;;;;;;;;;;:9;:26::i;:::-;30829:110;;:::o;29217:315::-;29374:28;29384:4;29390:2;29394:7;29374:9;:28::i;:::-;29421:48;29444:4;29450:2;29454:7;29463:5;29421:22;:48::i;:::-;29413:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29217:315;;;;:::o;44184:102::-;44244:13;44273:7;44266:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44184:102;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;15926:157::-;16011:4;16050:25;16035:40;;;:11;:40;;;;16028:47;;15926:157;;;:::o;38676:589::-;38820:45;38847:4;38853:2;38857:7;38820:26;:45::i;:::-;38898:1;38882:18;;:4;:18;;;38878:187;;;38917:40;38949:7;38917:31;:40::i;:::-;38878:187;;;38987:2;38979:10;;:4;:10;;;38975:90;;39006:47;39039:4;39045:7;39006:32;:47::i;:::-;38975:90;38878:187;39093:1;39079:16;;:2;:16;;;39075:183;;;39112:45;39149:7;39112:36;:45::i;:::-;39075:183;;;39185:4;39179:10;;:2;:10;;;39175:83;;39206:40;39234:2;39238:7;39206:27;:40::i;:::-;39175:83;39075:183;38676:589;;;:::o;31166:321::-;31296:18;31302:2;31306:7;31296:5;:18::i;:::-;31347:54;31378:1;31382:2;31386:7;31395:5;31347:22;:54::i;:::-;31325:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31166:321;;;:::o;34566:799::-;34721:4;34742:15;:2;:13;;;:15::i;:::-;34738:620;;;34794:2;34778:36;;;34815:12;:10;:12::i;:::-;34829:4;34835:7;34844:5;34778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34774:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35037:1;35020:6;:13;:18;35016:272;;;35063:60;;;;;;;;;;:::i;:::-;;;;;;;;35016:272;35238:6;35232:13;35223:6;35219:2;35215:15;35208:38;34774:529;34911:41;;;34901:51;;;:6;:51;;;;34894:58;;;;;34738:620;35342:4;35335:11;;34566:799;;;;;;;:::o;35937:126::-;;;;:::o;39988:164::-;40092:10;:17;;;;40065:15;:24;40081:7;40065:24;;;;;;;;;;;:44;;;;40120:10;40136:7;40120:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39988:164;:::o;40779:988::-;41045:22;41095:1;41070:22;41087:4;41070:16;:22::i;:::-;:26;;;;:::i;:::-;41045:51;;41107:18;41128:17;:26;41146:7;41128:26;;;;;;;;;;;;41107:47;;41275:14;41261:10;:28;41257:328;;41306:19;41328:12;:18;41341:4;41328:18;;;;;;;;;;;;;;;:34;41347:14;41328:34;;;;;;;;;;;;41306:56;;41412:11;41379:12;:18;41392:4;41379:18;;;;;;;;;;;;;;;:30;41398:10;41379:30;;;;;;;;;;;:44;;;;41529:10;41496:17;:30;41514:11;41496:30;;;;;;;;;;;:43;;;;41291:294;41257:328;41681:17;:26;41699:7;41681:26;;;;;;;;;;;41674:33;;;41725:12;:18;41738:4;41725:18;;;;;;;;;;;;;;;:34;41744:14;41725:34;;;;;;;;;;;41718:41;;;40860:907;;40779:988;;:::o;42062:1079::-;42315:22;42360:1;42340:10;:17;;;;:21;;;;:::i;:::-;42315:46;;42372:18;42393:15;:24;42409:7;42393:24;;;;;;;;;;;;42372:45;;42744:19;42766:10;42777:14;42766:26;;;;;;;;:::i;:::-;;;;;;;;;;42744:48;;42830:11;42805:10;42816;42805:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42941:10;42910:15;:28;42926:11;42910:28;;;;;;;;;;;:41;;;;43082:15;:24;43098:7;43082:24;;;;;;;;;;;43075:31;;;43117:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42133:1008;;;42062:1079;:::o;39566:221::-;39651:14;39668:20;39685:2;39668:16;:20::i;:::-;39651:37;;39726:7;39699:12;:16;39712:2;39699:16;;;;;;;;;;;;;;;:24;39716:6;39699:24;;;;;;;;;;;:34;;;;39773:6;39744:17;:26;39762:7;39744:26;;;;;;;;;;;:35;;;;39640:147;39566:221;;:::o;31823:382::-;31917:1;31903:16;;:2;:16;;;;31895:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31976:16;31984:7;31976;:16::i;:::-;31975:17;31967:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32038:45;32067:1;32071:2;32075:7;32038:20;:45::i;:::-;32113:1;32096:9;:13;32106:2;32096:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32144:2;32125:7;:16;32133:7;32125:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32189:7;32185:2;32164:33;;32181:1;32164:33;;;;;;;;;;;;31823:382;;:::o;5986:387::-;6046:4;6254:12;6321:7;6309:20;6301:28;;6364:1;6357:4;:8;6350:15;;;5986:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:::-;19411:3;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19508:93;19597:3;19508:93;:::i;:::-;19626:2;19621:3;19617:12;19610:19;;19269:366;;;:::o;19641:::-;19783:3;19804:67;19868:2;19863:3;19804:67;:::i;:::-;19797:74;;19880:93;19969:3;19880:93;:::i;:::-;19998:2;19993:3;19989:12;19982:19;;19641:366;;;:::o;20013:398::-;20172:3;20193:83;20274:1;20269:3;20193:83;:::i;:::-;20186:90;;20285:93;20374:3;20285:93;:::i;:::-;20403:1;20398:3;20394:11;20387:18;;20013:398;;;:::o;20417:366::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:::-;21675:3;21696:67;21760:2;21755:3;21696:67;:::i;:::-;21689:74;;21772:93;21861:3;21772:93;:::i;:::-;21890:2;21885:3;21881:12;21874:19;;21533:366;;;:::o;21905:108::-;21982:24;22000:5;21982:24;:::i;:::-;21977:3;21970:37;21905:108;;:::o;22019:118::-;22106:24;22124:5;22106:24;:::i;:::-;22101:3;22094:37;22019:118;;:::o;22143:157::-;22248:45;22268:24;22286:5;22268:24;:::i;:::-;22248:45;:::i;:::-;22243:3;22236:58;22143:157;;:::o;22306:589::-;22531:3;22553:95;22644:3;22635:6;22553:95;:::i;:::-;22546:102;;22665:95;22756:3;22747:6;22665:95;:::i;:::-;22658:102;;22777:92;22865:3;22856:6;22777:92;:::i;:::-;22770:99;;22886:3;22879:10;;22306:589;;;;;;:::o;22901:379::-;23085:3;23107:147;23250:3;23107:147;:::i;:::-;23100:154;;23271:3;23264:10;;22901:379;;;:::o;23286:538::-;23454:3;23469:75;23540:3;23531:6;23469:75;:::i;:::-;23569:2;23564:3;23560:12;23553:19;;23582:75;23653:3;23644:6;23582:75;:::i;:::-;23682:2;23677:3;23673:12;23666:19;;23695:75;23766:3;23757:6;23695:75;:::i;:::-;23795:2;23790:3;23786:12;23779:19;;23815:3;23808:10;;23286:538;;;;;;:::o;23830:222::-;23923:4;23961:2;23950:9;23946:18;23938:26;;23974:71;24042:1;24031:9;24027:17;24018:6;23974:71;:::i;:::-;23830:222;;;;:::o;24058:640::-;24253:4;24291:3;24280:9;24276:19;24268:27;;24305:71;24373:1;24362:9;24358:17;24349:6;24305:71;:::i;:::-;24386:72;24454:2;24443:9;24439:18;24430:6;24386:72;:::i;:::-;24468;24536:2;24525:9;24521:18;24512:6;24468:72;:::i;:::-;24587:9;24581:4;24577:20;24572:2;24561:9;24557:18;24550:48;24615:76;24686:4;24677:6;24615:76;:::i;:::-;24607:84;;24058:640;;;;;;;:::o;24704:373::-;24847:4;24885:2;24874:9;24870:18;24862:26;;24934:9;24928:4;24924:20;24920:1;24909:9;24905:17;24898:47;24962:108;25065:4;25056:6;24962:108;:::i;:::-;24954:116;;24704:373;;;;:::o;25083:210::-;25170:4;25208:2;25197:9;25193:18;25185:26;;25221:65;25283:1;25272:9;25268:17;25259:6;25221:65;:::i;:::-;25083:210;;;;:::o;25299:313::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:78;25600:4;25591:6;25527:78;:::i;:::-;25519:86;;25299:313;;;;:::o;25618:419::-;25784:4;25822:2;25811:9;25807:18;25799:26;;25871:9;25865:4;25861:20;25857:1;25846:9;25842:17;25835:47;25899:131;26025:4;25899:131;:::i;:::-;25891:139;;25618:419;;;:::o;26043:::-;26209:4;26247:2;26236:9;26232:18;26224:26;;26296:9;26290:4;26286:20;26282:1;26271:9;26267:17;26260:47;26324:131;26450:4;26324:131;:::i;:::-;26316:139;;26043:419;;;:::o;26468:::-;26634:4;26672:2;26661:9;26657:18;26649:26;;26721:9;26715:4;26711:20;26707:1;26696:9;26692:17;26685:47;26749:131;26875:4;26749:131;:::i;:::-;26741:139;;26468:419;;;:::o;26893:::-;27059:4;27097:2;27086:9;27082:18;27074:26;;27146:9;27140:4;27136:20;27132:1;27121:9;27117:17;27110:47;27174:131;27300:4;27174:131;:::i;:::-;27166:139;;26893:419;;;:::o;27318:::-;27484:4;27522:2;27511:9;27507:18;27499:26;;27571:9;27565:4;27561:20;27557:1;27546:9;27542:17;27535:47;27599:131;27725:4;27599:131;:::i;:::-;27591:139;;27318:419;;;:::o;27743:::-;27909:4;27947:2;27936:9;27932:18;27924:26;;27996:9;27990:4;27986:20;27982:1;27971:9;27967:17;27960:47;28024:131;28150:4;28024:131;:::i;:::-;28016:139;;27743:419;;;:::o;28168:::-;28334:4;28372:2;28361:9;28357:18;28349:26;;28421:9;28415:4;28411:20;28407:1;28396:9;28392:17;28385:47;28449:131;28575:4;28449:131;:::i;:::-;28441:139;;28168:419;;;:::o;28593:::-;28759:4;28797:2;28786:9;28782:18;28774:26;;28846:9;28840:4;28836:20;28832:1;28821:9;28817:17;28810:47;28874:131;29000:4;28874:131;:::i;:::-;28866:139;;28593:419;;;:::o;29018:::-;29184:4;29222:2;29211:9;29207:18;29199:26;;29271:9;29265:4;29261:20;29257:1;29246:9;29242:17;29235:47;29299:131;29425:4;29299:131;:::i;:::-;29291:139;;29018:419;;;:::o;29443:::-;29609:4;29647:2;29636:9;29632:18;29624:26;;29696:9;29690:4;29686:20;29682:1;29671:9;29667:17;29660:47;29724:131;29850:4;29724:131;:::i;:::-;29716:139;;29443:419;;;:::o;29868:::-;30034:4;30072:2;30061:9;30057:18;30049:26;;30121:9;30115:4;30111:20;30107:1;30096:9;30092:17;30085:47;30149:131;30275:4;30149:131;:::i;:::-;30141:139;;29868:419;;;:::o;30293:::-;30459:4;30497:2;30486:9;30482:18;30474:26;;30546:9;30540:4;30536:20;30532:1;30521:9;30517:17;30510:47;30574:131;30700:4;30574:131;:::i;:::-;30566:139;;30293:419;;;:::o;30718:::-;30884:4;30922:2;30911:9;30907:18;30899:26;;30971:9;30965:4;30961:20;30957:1;30946:9;30942:17;30935:47;30999:131;31125:4;30999:131;:::i;:::-;30991:139;;30718:419;;;:::o;31143:::-;31309:4;31347:2;31336:9;31332:18;31324:26;;31396:9;31390:4;31386:20;31382:1;31371:9;31367:17;31360:47;31424:131;31550:4;31424:131;:::i;:::-;31416:139;;31143:419;;;:::o;31568:::-;31734:4;31772:2;31761:9;31757:18;31749:26;;31821:9;31815:4;31811:20;31807:1;31796:9;31792:17;31785:47;31849:131;31975:4;31849:131;:::i;:::-;31841:139;;31568:419;;;:::o;31993:::-;32159:4;32197:2;32186:9;32182:18;32174:26;;32246:9;32240:4;32236:20;32232:1;32221:9;32217:17;32210:47;32274:131;32400:4;32274:131;:::i;:::-;32266:139;;31993:419;;;:::o;32418:::-;32584:4;32622:2;32611:9;32607:18;32599:26;;32671:9;32665:4;32661:20;32657:1;32646:9;32642:17;32635:47;32699:131;32825:4;32699:131;:::i;:::-;32691:139;;32418:419;;;:::o;32843:::-;33009:4;33047:2;33036:9;33032:18;33024:26;;33096:9;33090:4;33086:20;33082:1;33071:9;33067:17;33060:47;33124:131;33250:4;33124:131;:::i;:::-;33116:139;;32843:419;;;:::o;33268:::-;33434:4;33472:2;33461:9;33457:18;33449:26;;33521:9;33515:4;33511:20;33507:1;33496:9;33492:17;33485:47;33549:131;33675:4;33549:131;:::i;:::-;33541:139;;33268:419;;;:::o;33693:::-;33859:4;33897:2;33886:9;33882:18;33874:26;;33946:9;33940:4;33936:20;33932:1;33921:9;33917:17;33910:47;33974:131;34100:4;33974:131;:::i;:::-;33966:139;;33693:419;;;:::o;34118:::-;34284:4;34322:2;34311:9;34307:18;34299:26;;34371:9;34365:4;34361:20;34357:1;34346:9;34342:17;34335:47;34399:131;34525:4;34399:131;:::i;:::-;34391:139;;34118:419;;;:::o;34543:::-;34709:4;34747:2;34736:9;34732:18;34724:26;;34796:9;34790:4;34786:20;34782:1;34771:9;34767:17;34760:47;34824:131;34950:4;34824:131;:::i;:::-;34816:139;;34543:419;;;:::o;34968:::-;35134:4;35172:2;35161:9;35157:18;35149:26;;35221:9;35215:4;35211:20;35207:1;35196:9;35192:17;35185:47;35249:131;35375:4;35249:131;:::i;:::-;35241:139;;34968:419;;;:::o;35393:::-;35559:4;35597:2;35586:9;35582:18;35574:26;;35646:9;35640:4;35636:20;35632:1;35621:9;35617:17;35610:47;35674:131;35800:4;35674:131;:::i;:::-;35666:139;;35393:419;;;:::o;35818:::-;35984:4;36022:2;36011:9;36007:18;35999:26;;36071:9;36065:4;36061:20;36057:1;36046:9;36042:17;36035:47;36099:131;36225:4;36099:131;:::i;:::-;36091:139;;35818:419;;;:::o;36243:::-;36409:4;36447:2;36436:9;36432:18;36424:26;;36496:9;36490:4;36486:20;36482:1;36471:9;36467:17;36460:47;36524:131;36650:4;36524:131;:::i;:::-;36516:139;;36243:419;;;:::o;36668:222::-;36761:4;36799:2;36788:9;36784:18;36776:26;;36812:71;36880:1;36869:9;36865:17;36856:6;36812:71;:::i;:::-;36668:222;;;;:::o;36896:129::-;36930:6;36957:20;;:::i;:::-;36947:30;;36986:33;37014:4;37006:6;36986:33;:::i;:::-;36896:129;;;:::o;37031:75::-;37064:6;37097:2;37091:9;37081:19;;37031:75;:::o;37112:307::-;37173:4;37263:18;37255:6;37252:30;37249:56;;;37285:18;;:::i;:::-;37249:56;37323:29;37345:6;37323:29;:::i;:::-;37315:37;;37407:4;37401;37397:15;37389:23;;37112:307;;;:::o;37425:308::-;37487:4;37577:18;37569:6;37566:30;37563:56;;;37599:18;;:::i;:::-;37563:56;37637:29;37659:6;37637:29;:::i;:::-;37629:37;;37721:4;37715;37711:15;37703:23;;37425:308;;;:::o;37739:132::-;37806:4;37829:3;37821:11;;37859:4;37854:3;37850:14;37842:22;;37739:132;;;:::o;37877:141::-;37926:4;37949:3;37941:11;;37972:3;37969:1;37962:14;38006:4;38003:1;37993:18;37985:26;;37877:141;;;:::o;38024:114::-;38091:6;38125:5;38119:12;38109:22;;38024:114;;;:::o;38144:98::-;38195:6;38229:5;38223:12;38213:22;;38144:98;;;:::o;38248:99::-;38300:6;38334:5;38328:12;38318:22;;38248:99;;;:::o;38353:113::-;38423:4;38455;38450:3;38446:14;38438:22;;38353:113;;;:::o;38472:184::-;38571:11;38605:6;38600:3;38593:19;38645:4;38640:3;38636:14;38621:29;;38472:184;;;;:::o;38662:168::-;38745:11;38779:6;38774:3;38767:19;38819:4;38814:3;38810:14;38795:29;;38662:168;;;;:::o;38836:147::-;38937:11;38974:3;38959:18;;38836:147;;;;:::o;38989:169::-;39073:11;39107:6;39102:3;39095:19;39147:4;39142:3;39138:14;39123:29;;38989:169;;;;:::o;39164:148::-;39266:11;39303:3;39288:18;;39164:148;;;;:::o;39318:305::-;39358:3;39377:20;39395:1;39377:20;:::i;:::-;39372:25;;39411:20;39429:1;39411:20;:::i;:::-;39406:25;;39565:1;39497:66;39493:74;39490:1;39487:81;39484:107;;;39571:18;;:::i;:::-;39484:107;39615:1;39612;39608:9;39601:16;;39318:305;;;;:::o;39629:185::-;39669:1;39686:20;39704:1;39686:20;:::i;:::-;39681:25;;39720:20;39738:1;39720:20;:::i;:::-;39715:25;;39759:1;39749:35;;39764:18;;:::i;:::-;39749:35;39806:1;39803;39799:9;39794:14;;39629:185;;;;:::o;39820:348::-;39860:7;39883:20;39901:1;39883:20;:::i;:::-;39878:25;;39917:20;39935:1;39917:20;:::i;:::-;39912:25;;40105:1;40037:66;40033:74;40030:1;40027:81;40022:1;40015:9;40008:17;40004:105;40001:131;;;40112:18;;:::i;:::-;40001:131;40160:1;40157;40153:9;40142:20;;39820:348;;;;:::o;40174:191::-;40214:4;40234:20;40252:1;40234:20;:::i;:::-;40229:25;;40268:20;40286:1;40268:20;:::i;:::-;40263:25;;40307:1;40304;40301:8;40298:34;;;40312:18;;:::i;:::-;40298:34;40357:1;40354;40350:9;40342:17;;40174:191;;;;:::o;40371:96::-;40408:7;40437:24;40455:5;40437:24;:::i;:::-;40426:35;;40371:96;;;:::o;40473:90::-;40507:7;40550:5;40543:13;40536:21;40525:32;;40473:90;;;:::o;40569:149::-;40605:7;40645:66;40638:5;40634:78;40623:89;;40569:149;;;:::o;40724:126::-;40761:7;40801:42;40794:5;40790:54;40779:65;;40724:126;;;:::o;40856:77::-;40893:7;40922:5;40911:16;;40856:77;;;:::o;40939:154::-;41023:6;41018:3;41013;41000:30;41085:1;41076:6;41071:3;41067:16;41060:27;40939:154;;;:::o;41099:307::-;41167:1;41177:113;41191:6;41188:1;41185:13;41177:113;;;41276:1;41271:3;41267:11;41261:18;41257:1;41252:3;41248:11;41241:39;41213:2;41210:1;41206:10;41201:15;;41177:113;;;41308:6;41305:1;41302:13;41299:101;;;41388:1;41379:6;41374:3;41370:16;41363:27;41299:101;41148:258;41099:307;;;:::o;41412:171::-;41451:3;41474:24;41492:5;41474:24;:::i;:::-;41465:33;;41520:4;41513:5;41510:15;41507:41;;;41528:18;;:::i;:::-;41507:41;41575:1;41568:5;41564:13;41557:20;;41412:171;;;:::o;41589:320::-;41633:6;41670:1;41664:4;41660:12;41650:22;;41717:1;41711:4;41707:12;41738:18;41728:81;;41794:4;41786:6;41782:17;41772:27;;41728:81;41856:2;41848:6;41845:14;41825:18;41822:38;41819:84;;;41875:18;;:::i;:::-;41819:84;41640:269;41589:320;;;:::o;41915:281::-;41998:27;42020:4;41998:27;:::i;:::-;41990:6;41986:40;42128:6;42116:10;42113:22;42092:18;42080:10;42077:34;42074:62;42071:88;;;42139:18;;:::i;:::-;42071:88;42179:10;42175:2;42168:22;41958:238;41915:281;;:::o;42202:233::-;42241:3;42264:24;42282:5;42264:24;:::i;:::-;42255:33;;42310:66;42303:5;42300:77;42297:103;;;42380:18;;:::i;:::-;42297:103;42427:1;42420:5;42416:13;42409:20;;42202:233;;;:::o;42441:79::-;42480:7;42509:5;42498:16;;42441:79;;;:::o;42526:176::-;42558:1;42575:20;42593:1;42575:20;:::i;:::-;42570:25;;42609:20;42627:1;42609:20;:::i;:::-;42604:25;;42648:1;42638:35;;42653:18;;:::i;:::-;42638:35;42694:1;42691;42687:9;42682:14;;42526:176;;;;:::o;42708:180::-;42756:77;42753:1;42746:88;42853:4;42850:1;42843:15;42877:4;42874:1;42867:15;42894:180;42942:77;42939:1;42932:88;43039:4;43036:1;43029:15;43063:4;43060:1;43053:15;43080:180;43128:77;43125:1;43118:88;43225:4;43222:1;43215:15;43249:4;43246:1;43239:15;43266:180;43314:77;43311:1;43304:88;43411:4;43408:1;43401:15;43435:4;43432:1;43425:15;43452:180;43500:77;43497:1;43490:88;43597:4;43594:1;43587:15;43621:4;43618:1;43611:15;43638:180;43686:77;43683:1;43676:88;43783:4;43780:1;43773:15;43807:4;43804:1;43797:15;43824:117;43933:1;43930;43923:12;43947:117;44056:1;44053;44046:12;44070:117;44179:1;44176;44169:12;44193:117;44302:1;44299;44292:12;44316:117;44425:1;44422;44415:12;44439:117;44548:1;44545;44538:12;44562:102;44603:6;44654:2;44650:7;44645:2;44638:5;44634:14;44630:28;44620:38;;44562:102;;;:::o;44670:230::-;44810:34;44806:1;44798:6;44794:14;44787:58;44879:13;44874:2;44866:6;44862:15;44855:38;44670:230;:::o;44906:237::-;45046:34;45042:1;45034:6;45030:14;45023:58;45115:20;45110:2;45102:6;45098:15;45091:45;44906:237;:::o;45149:225::-;45289:34;45285:1;45277:6;45273:14;45266:58;45358:8;45353:2;45345:6;45341:15;45334:33;45149:225;:::o;45380:178::-;45520:30;45516:1;45508:6;45504:14;45497:54;45380:178;:::o;45564:225::-;45704:34;45700:1;45692:6;45688:14;45681:58;45773:8;45768:2;45760:6;45756:15;45749:33;45564:225;:::o;45795:223::-;45935:34;45931:1;45923:6;45919:14;45912:58;46004:6;45999:2;45991:6;45987:15;45980:31;45795:223;:::o;46024:175::-;46164:27;46160:1;46152:6;46148:14;46141:51;46024:175;:::o;46205:231::-;46345:34;46341:1;46333:6;46329:14;46322:58;46414:14;46409:2;46401:6;46397:15;46390:39;46205:231;:::o;46442:173::-;46582:25;46578:1;46570:6;46566:14;46559:49;46442:173;:::o;46621:243::-;46761:34;46757:1;46749:6;46745:14;46738:58;46830:26;46825:2;46817:6;46813:15;46806:51;46621:243;:::o;46870:229::-;47010:34;47006:1;46998:6;46994:14;46987:58;47079:12;47074:2;47066:6;47062:15;47055:37;46870:229;:::o;47105:228::-;47245:34;47241:1;47233:6;47229:14;47222:58;47314:11;47309:2;47301:6;47297:15;47290:36;47105:228;:::o;47339:172::-;47479:24;47475:1;47467:6;47463:14;47456:48;47339:172;:::o;47517:223::-;47657:34;47653:1;47645:6;47641:14;47634:58;47726:6;47721:2;47713:6;47709:15;47702:31;47517:223;:::o;47746:182::-;47886:34;47882:1;47874:6;47870:14;47863:58;47746:182;:::o;47934:231::-;48074:34;48070:1;48062:6;48058:14;48051:58;48143:14;48138:2;48130:6;48126:15;48119:39;47934:231;:::o;48171:182::-;48311:34;48307:1;48299:6;48295:14;48288:58;48171:182;:::o;48359:172::-;48499:24;48495:1;48487:6;48483:14;48476:48;48359:172;:::o;48537:228::-;48677:34;48673:1;48665:6;48661:14;48654:58;48746:11;48741:2;48733:6;48729:15;48722:36;48537:228;:::o;48771:234::-;48911:34;48907:1;48899:6;48895:14;48888:58;48980:17;48975:2;48967:6;48963:15;48956:42;48771:234;:::o;49011:235::-;49151:34;49147:1;49139:6;49135:14;49128:58;49220:18;49215:2;49207:6;49203:15;49196:43;49011:235;:::o;49252:220::-;49392:34;49388:1;49380:6;49376:14;49369:58;49461:3;49456:2;49448:6;49444:15;49437:28;49252:220;:::o;49478:114::-;;:::o;49598:168::-;49738:20;49734:1;49726:6;49722:14;49715:44;49598:168;:::o;49772:236::-;49912:34;49908:1;49900:6;49896:14;49889:58;49981:19;49976:2;49968:6;49964:15;49957:44;49772:236;:::o;50014:231::-;50154:34;50150:1;50142:6;50138:14;50131:58;50223:14;50218:2;50210:6;50206:15;50199:39;50014:231;:::o;50251:177::-;50391:29;50387:1;50379:6;50375:14;50368:53;50251:177;:::o;50434:122::-;50507:24;50525:5;50507:24;:::i;:::-;50500:5;50497:35;50487:63;;50546:1;50543;50536:12;50487:63;50434:122;:::o;50562:116::-;50632:21;50647:5;50632:21;:::i;:::-;50625:5;50622:32;50612:60;;50668:1;50665;50658:12;50612:60;50562:116;:::o;50684:120::-;50756:23;50773:5;50756:23;:::i;:::-;50749:5;50746:34;50736:62;;50794:1;50791;50784:12;50736:62;50684:120;:::o;50810:122::-;50883:24;50901:5;50883:24;:::i;:::-;50876:5;50873:35;50863:63;;50922:1;50919;50912:12;50863:63;50810:122;:::o

Swarm Source

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