ETH Price: $2,343.73 (-1.92%)

Token

Disco Dogs (DDG)
 

Overview

Max Total Supply

203 DDG

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DDG
0x5caa27a1cd3351d5b9f86558a56a566dec2f7658
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Discodogs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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\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: @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);
    }
}




pragma solidity ^0.8.0;

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

    uint256 public constant NFT_MAX = 8000; // Other Token will be minted at time of swapping
    uint256 public constant PURCHASE_LIMIT = 10;
    uint256 public PRICE = 0.06 ether;

    mapping(address => uint256) private walletPurchase;

    string private _tokenBaseURI = "";
    string private _tokenRevealedBaseURI = "";

    
    string private revealedBaseURI;
    uint256 private _tokenID;
    address private withdrawalWallet;

    bool public isLockRevealedBaseURI = false;
    bool public isLive = false;

    /****************
        MODIFIERS
    ******************/



    modifier canPurchase(uint256 tokens) {
        require(
            walletPurchase[msg.sender] + tokens <= PURCHASE_LIMIT,
            "Can not exceed max NFT count."
        );
        _;
    }
    modifier IsLive() {
        require(isLive,"Sale is not live yet");
        _;
    }

    /******************
        CONSTRUCTOR
     ******************/

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        address wallet
    ) ERC721(name, symbol) {
        withdrawalWallet = wallet;
        _tokenBaseURI = baseURI;
    }

    function lockRevealedBaseURI()  public onlyOwner {
        isLockRevealedBaseURI = true;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        PRICE = newPrice;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function setRevealedBaseURI(string calldata _revealedBaseURI) external onlyOwner{
        require(isLockRevealedBaseURI == false,"Locked: Can't Change");
        _tokenRevealedBaseURI = _revealedBaseURI;
    }

    function toggleLive() external onlyOwner{
        isLive = !isLive;
    }

    function totalSupply() public view override returns (uint256){
       return super.totalSupply();
    }

    /**
     * Reserve dogs for the team
     */
    function reserveDogs() public onlyOwner {   
        uint supply = totalSupply();

        require(supply + 100 < NFT_MAX,"Reached NFT mint limit");

        for (uint256 i = 1; i <= 100; i++) {
            _safeMint(withdrawalWallet, supply + i);
        }
    }

    function purchase(uint256 numberOfTokens)
        external
        payable
        canPurchase(numberOfTokens)
        IsLive
    {
        require(NFT_MAX > totalSupply(), "All NFTs have been minted");

        require(
            NFT_MAX >= totalSupply() + numberOfTokens,
            "Can not exceed max NFT count."
        );

        require(
            PRICE * numberOfTokens == msg.value,
            "Incorrect ETH amount"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
                _tokenID = totalSupply() + 1;

                walletPurchase[msg.sender] += 1;
                _safeMint(msg.sender, _tokenID);
        }
    }

    function withdraw() external {
        require(
            msg.sender == withdrawalWallet,
            "Only withdrawal wallet can access"
        );
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist");

        /// @dev Convert string to bytes so we can check if it's empty or not.
        return
            bytes(_tokenRevealedBaseURI).length > 0
                ? string(
                    abi.encodePacked(_tokenRevealedBaseURI, _tokenId.toString())
                )
                : _tokenBaseURI;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"wallet","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":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLockRevealedBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveDogs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600b5560405180602001604052806000815250600d90805190602001906200003692919062000250565b5060405180602001604052806000815250600e90805190602001906200005e92919062000250565b506000601160146101000a81548160ff0219169083151502179055506000601160156101000a81548160ff021916908315150217905550348015620000a257600080fd5b506040516200483c3803806200483c8339818101604052810190620000c8919062000389565b83838160009080519060200190620000e292919062000250565b508060019080519060200190620000fb92919062000250565b5050506200011e620001126200018260201b60201c565b6200018a60201b60201c565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d90805190602001906200017792919062000250565b5050505050620005bf565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025e9062000511565b90600052602060002090601f016020900481019282620002825760008555620002ce565b82601f106200029d57805160ff1916838001178555620002ce565b82800160010185558215620002ce579182015b82811115620002cd578251825591602001919060010190620002b0565b5b509050620002dd9190620002e1565b5090565b5b80821115620002fc576000816000905550600101620002e2565b5090565b600062000317620003118462000474565b62000440565b9050828152602081018484840111156200033057600080fd5b6200033d848285620004db565b509392505050565b6000815190506200035681620005a5565b92915050565b600082601f8301126200036e57600080fd5b81516200038084826020860162000300565b91505092915050565b60008060008060808587031215620003a057600080fd5b600085015167ffffffffffffffff811115620003bb57600080fd5b620003c9878288016200035c565b945050602085015167ffffffffffffffff811115620003e757600080fd5b620003f5878288016200035c565b935050604085015167ffffffffffffffff8111156200041357600080fd5b62000421878288016200035c565b9250506060620004348782880162000345565b91505092959194509250565b6000604051905081810181811067ffffffffffffffff821117156200046a576200046962000576565b5b8060405250919050565b600067ffffffffffffffff82111562000492576200049162000576565b5b601f19601f8301169050602081019050919050565b6000620004b482620004bb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004fb578082015181840152602081019050620004de565b838111156200050b576000848401525b50505050565b600060028204905060018216806200052a57607f821691505b6020821081141562000541576200054062000547565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005b081620004a7565b8114620005bc57600080fd5b50565b61426d80620005cf6000396000f3fe6080604052600436106101e35760003560e01c80637b01bfc411610102578063b8f7a66511610095578063e985e9c511610064578063e985e9c5146106ba578063ec0d7557146106f7578063efef39a11461070e578063f2fde38b1461072a576101e3565b8063b8f7a665146105fc578063c30e768414610627578063c87b56dd14610652578063d75e61101461068f576101e3565b806395d89b41116100d157806395d89b4114610568578063a22cb46514610593578063ae5b022a146105bc578063b88d4fde146105d3576101e3565b80637b01bfc4146104d25780638d859f3e146104e95780638da5cb5b1461051457806391b7f5ed1461053f576101e3565b806342842e0e1161017a5780636e83843a116101495780636e83843a1461042a57806370a0823114610453578063715018a61461049057806371ec672c146104a7576101e3565b806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45780636352211e146103ed576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a5780633ccfd60b14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f78565b610753565b60405161021c9190613a66565b60405180910390f35b34801561023157600080fd5b5061023a6107cd565b6040516102479190613a81565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061300f565b61085f565b60405161028491906139ff565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f3c565b6108e4565b005b3480156102c257600080fd5b506102cb6109fc565b6040516102d89190613dc3565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612e36565b610a0b565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f3c565b610a6b565b60405161033e9190613dc3565b60405180910390f35b34801561035357600080fd5b5061035c610b10565b005b34801561036a57600080fd5b5061038560048036038101906103809190612e36565b610bef565b005b34801561039357600080fd5b506103ae60048036038101906103a9919061300f565b610c0f565b6040516103bb9190613dc3565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612fca565b610ca6565b005b3480156103f957600080fd5b50610414600480360381019061040f919061300f565b610d38565b60405161042191906139ff565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612fca565b610dea565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612dd1565b610ed2565b6040516104879190613dc3565b60405180910390f35b34801561049c57600080fd5b506104a5610f8a565b005b3480156104b357600080fd5b506104bc611012565b6040516104c99190613a66565b60405180910390f35b3480156104de57600080fd5b506104e7611025565b005b3480156104f557600080fd5b506104fe6110be565b60405161050b9190613dc3565b60405180910390f35b34801561052057600080fd5b506105296110c4565b60405161053691906139ff565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061300f565b6110ee565b005b34801561057457600080fd5b5061057d611174565b60405161058a9190613a81565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612f00565b611206565b005b3480156105c857600080fd5b506105d1611387565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612e85565b6114bc565b005b34801561060857600080fd5b5061061161151e565b60405161061e9190613a66565b60405180910390f35b34801561063357600080fd5b5061063c611531565b6040516106499190613dc3565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061300f565b611537565b6040516106869190613a81565b60405180910390f35b34801561069b57600080fd5b506106a461165a565b6040516106b19190613dc3565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612dfa565b61165f565b6040516106ee9190613a66565b60405180910390f35b34801561070357600080fd5b5061070c6116f3565b005b6107286004803603810190610723919061300f565b61179b565b005b34801561073657600080fd5b50610751600480360381019061074c9190612dd1565b611a0a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506107c582611b02565b5b9050919050565b6060600080546107dc90614062565b80601f016020809104026020016040519081016040528092919081815260200182805461080890614062565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611be4565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613ca3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d38565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613d03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611c50565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611c50565b61165f565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613be3565b60405180910390fd5b6109f78383611c58565b505050565b6000610a06611d11565b905090565b610a1c610a16611c50565b82611d1e565b610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290613d43565b60405180910390fd5b610a66838383611dfc565b505050565b6000610a7683610ed2565b8210610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613aa3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613d23565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610beb573d6000803e3d6000fd5b5050565b610c0a838383604051806020016040528060008152506114bc565b505050565b6000610c19611d11565b8210610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613d83565b60405180910390fd5b60088281548110610c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cae611c50565b73ffffffffffffffffffffffffffffffffffffffff16610ccc6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613cc3565b60405180910390fd5b8181600d9190610d33929190612c13565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890613c23565b60405180910390fd5b80915050919050565b610df2611c50565b73ffffffffffffffffffffffffffffffffffffffff16610e106110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613cc3565b60405180910390fd5b60001515601160149054906101000a900460ff16151514610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613b23565b60405180910390fd5b8181600e9190610ecd929190612c13565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613c03565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f92611c50565b73ffffffffffffffffffffffffffffffffffffffff16610fb06110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613cc3565b60405180910390fd5b6110106000612058565b565b601160149054906101000a900460ff1681565b61102d611c50565b73ffffffffffffffffffffffffffffffffffffffff1661104b6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613cc3565b60405180910390fd5b6001601160146101000a81548160ff021916908315150217905550565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110f6611c50565b73ffffffffffffffffffffffffffffffffffffffff166111146110c4565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613cc3565b60405180910390fd5b80600b8190555050565b60606001805461118390614062565b80601f01602080910402602001604051908101604052809291908181526020018280546111af90614062565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b61120e611c50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613b63565b60405180910390fd5b8060056000611289611c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611336611c50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137b9190613a66565b60405180910390a35050565b61138f611c50565b73ffffffffffffffffffffffffffffffffffffffff166113ad6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613cc3565b60405180910390fd5b600061140d6109fc565b9050611f4060648261141f9190613e97565b1061145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690613ba3565b60405180910390fd5b6000600190505b606481116114b8576114a5601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682846114a09190613e97565b61211e565b80806114b090614094565b915050611466565b5050565b6114cd6114c7611c50565b83611d1e565b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613d43565b60405180910390fd5b6115188484848461213c565b50505050565b601160159054906101000a900460ff1681565b611f4081565b606061154282611be4565b611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613b83565b60405180910390fd5b6000600e805461159090614062565b90501161162757600d80546115a490614062565b80601f01602080910402602001604051908101604052809291908181526020018280546115d090614062565b801561161d5780601f106115f25761010080835404028352916020019161161d565b820191906000526020600020905b81548152906001019060200180831161160057829003601f168201915b5050505050611653565b600e61163283612198565b6040516020016116439291906139db565b6040516020818303038152906040525b9050919050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116fb611c50565b73ffffffffffffffffffffffffffffffffffffffff166117196110c4565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613cc3565b60405180910390fd5b601160159054906101000a900460ff1615601160156101000a81548160ff021916908315150217905550565b80600a81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e99190613e97565b111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613da3565b60405180910390fd5b601160159054906101000a900460ff16611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613d63565b60405180910390fd5b6118816109fc565b611f40116118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90613c83565b60405180910390fd5b816118cd6109fc565b6118d79190613e97565b611f40101561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613da3565b60405180910390fd5b3482600b5461192a9190613f1e565b1461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c43565b60405180910390fd5b60005b82811015611a0557600161197f6109fc565b6119899190613e97565b6010819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119df9190613e97565b925050819055506119f23360105461211e565b80806119fd90614094565b91505061196d565b505050565b611a12611c50565b73ffffffffffffffffffffffffffffffffffffffff16611a306110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613ae3565b60405180910390fd5b611aff81612058565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bcd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bdd5750611bdc82612345565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ccb83610d38565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600880549050905090565b6000611d2982611be4565b611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613bc3565b60405180910390fd5b6000611d7383610d38565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de257508373ffffffffffffffffffffffffffffffffffffffff16611dca8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df35750611df2818561165f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1c82610d38565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b43565b60405180910390fd5b611eed8383836123af565b611ef8600082611c58565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f489190613f78565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9f9190613e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121388282604051806020016040528060008152506124c3565b5050565b612147848484611dfc565b6121538484848461251e565b612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990613ac3565b60405180910390fd5b50505050565b606060008214156121e0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612340565b600082905060005b600082146122125780806121fb90614094565b915050600a8261220b9190613eed565b91506121e8565b60008167ffffffffffffffff811115612254577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122865781602001600182028036833780820191505090505b5090505b600085146123395760018261229f9190613f78565b9150600a856122ae91906140dd565b60306122ba9190613e97565b60f81b8183815181106122f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123329190613eed565b945061228a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123ba8383836126b5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123fd576123f8816126ba565b61243c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461243b5761243a8382612703565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561247f5761247a81612870565b6124be565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124bd576124bc82826129b3565b5b5b505050565b6124cd8383612a32565b6124da600084848461251e565b612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090613ac3565b60405180910390fd5b505050565b600061253f8473ffffffffffffffffffffffffffffffffffffffff16612c00565b156126a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612568611c50565b8786866040518563ffffffff1660e01b815260040161258a9493929190613a1a565b602060405180830381600087803b1580156125a457600080fd5b505af19250505080156125d557506040513d601f19601f820116820180604052508101906125d29190612fa1565b60015b612658573d8060008114612605576040519150601f19603f3d011682016040523d82523d6000602084013e61260a565b606091505b50600081511415612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790613ac3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ad565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161271084610ed2565b61271a9190613f78565b90506000600760008481526020019081526020016000205490508181146127ff576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128849190613f78565b90506000600960008481526020019081526020016000205490506000600883815481106128da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612997577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129be83610ed2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990613c63565b60405180910390fd5b612aab81611be4565b15612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613b03565b60405180910390fd5b612af7600083836123af565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b479190613e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1f90614062565b90600052602060002090601f016020900481019282612c415760008555612c88565b82601f10612c5a57803560ff1916838001178555612c88565b82800160010185558215612c88579182015b82811115612c87578235825591602001919060010190612c6c565b5b509050612c959190612c99565b5090565b5b80821115612cb2576000816000905550600101612c9a565b5090565b6000612cc9612cc484613e0f565b613dde565b905082815260208101848484011115612ce157600080fd5b612cec848285614020565b509392505050565b600081359050612d03816141db565b92915050565b600081359050612d18816141f2565b92915050565b600081359050612d2d81614209565b92915050565b600081519050612d4281614209565b92915050565b600082601f830112612d5957600080fd5b8135612d69848260208601612cb6565b91505092915050565b60008083601f840112612d8457600080fd5b8235905067ffffffffffffffff811115612d9d57600080fd5b602083019150836001820283011115612db557600080fd5b9250929050565b600081359050612dcb81614220565b92915050565b600060208284031215612de357600080fd5b6000612df184828501612cf4565b91505092915050565b60008060408385031215612e0d57600080fd5b6000612e1b85828601612cf4565b9250506020612e2c85828601612cf4565b9150509250929050565b600080600060608486031215612e4b57600080fd5b6000612e5986828701612cf4565b9350506020612e6a86828701612cf4565b9250506040612e7b86828701612dbc565b9150509250925092565b60008060008060808587031215612e9b57600080fd5b6000612ea987828801612cf4565b9450506020612eba87828801612cf4565b9350506040612ecb87828801612dbc565b925050606085013567ffffffffffffffff811115612ee857600080fd5b612ef487828801612d48565b91505092959194509250565b60008060408385031215612f1357600080fd5b6000612f2185828601612cf4565b9250506020612f3285828601612d09565b9150509250929050565b60008060408385031215612f4f57600080fd5b6000612f5d85828601612cf4565b9250506020612f6e85828601612dbc565b9150509250929050565b600060208284031215612f8a57600080fd5b6000612f9884828501612d1e565b91505092915050565b600060208284031215612fb357600080fd5b6000612fc184828501612d33565b91505092915050565b60008060208385031215612fdd57600080fd5b600083013567ffffffffffffffff811115612ff757600080fd5b61300385828601612d72565b92509250509250929050565b60006020828403121561302157600080fd5b600061302f84828501612dbc565b91505092915050565b61304181613fac565b82525050565b61305081613fbe565b82525050565b600061306182613e54565b61306b8185613e6a565b935061307b81856020860161402f565b613084816141ca565b840191505092915050565b600061309a82613e5f565b6130a48185613e7b565b93506130b481856020860161402f565b6130bd816141ca565b840191505092915050565b60006130d382613e5f565b6130dd8185613e8c565b93506130ed81856020860161402f565b80840191505092915050565b6000815461310681614062565b6131108186613e8c565b9450600182166000811461312b576001811461313c5761316f565b60ff1983168652818601935061316f565b61314585613e3f565b60005b8381101561316757815481890152600182019150602081019050613148565b838801955050505b50505092915050565b6000613185602b83613e7b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131eb603283613e7b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613251602683613e7b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132b7601c83613e7b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132f7601483613e7b565b91507f4c6f636b65643a2043616e2774204368616e67650000000000000000000000006000830152602082019050919050565b6000613337602483613e7b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339d601983613e7b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133dd601483613e7b565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b600061341d601683613e7b565b91507f52656163686564204e4654206d696e74206c696d6974000000000000000000006000830152602082019050919050565b600061345d602c83613e7b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134c3603883613e7b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613529602a83613e7b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061358f602983613e7b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f5601483613e7b565b91507f496e636f72726563742045544820616d6f756e740000000000000000000000006000830152602082019050919050565b6000613635602083613e7b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613675601983613e7b565b91507f416c6c204e4654732068617665206265656e206d696e746564000000000000006000830152602082019050919050565b60006136b5602c83613e7b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061371b602083613e7b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061375b602983613e7b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c1602183613e7b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613827602183613e7b565b91507f4f6e6c79207769746864726177616c2077616c6c65742063616e20616363657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061388d603183613e7b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138f3601483613e7b565b91507f53616c65206973206e6f74206c697665207965740000000000000000000000006000830152602082019050919050565b6000613933602c83613e7b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613999601d83613e7b565b91507f43616e206e6f7420657863656564206d6178204e465420636f756e742e0000006000830152602082019050919050565b6139d581614016565b82525050565b60006139e782856130f9565b91506139f382846130c8565b91508190509392505050565b6000602082019050613a146000830184613038565b92915050565b6000608082019050613a2f6000830187613038565b613a3c6020830186613038565b613a4960408301856139cc565b8181036060830152613a5b8184613056565b905095945050505050565b6000602082019050613a7b6000830184613047565b92915050565b60006020820190508181036000830152613a9b818461308f565b905092915050565b60006020820190508181036000830152613abc81613178565b9050919050565b60006020820190508181036000830152613adc816131de565b9050919050565b60006020820190508181036000830152613afc81613244565b9050919050565b60006020820190508181036000830152613b1c816132aa565b9050919050565b60006020820190508181036000830152613b3c816132ea565b9050919050565b60006020820190508181036000830152613b5c8161332a565b9050919050565b60006020820190508181036000830152613b7c81613390565b9050919050565b60006020820190508181036000830152613b9c816133d0565b9050919050565b60006020820190508181036000830152613bbc81613410565b9050919050565b60006020820190508181036000830152613bdc81613450565b9050919050565b60006020820190508181036000830152613bfc816134b6565b9050919050565b60006020820190508181036000830152613c1c8161351c565b9050919050565b60006020820190508181036000830152613c3c81613582565b9050919050565b60006020820190508181036000830152613c5c816135e8565b9050919050565b60006020820190508181036000830152613c7c81613628565b9050919050565b60006020820190508181036000830152613c9c81613668565b9050919050565b60006020820190508181036000830152613cbc816136a8565b9050919050565b60006020820190508181036000830152613cdc8161370e565b9050919050565b60006020820190508181036000830152613cfc8161374e565b9050919050565b60006020820190508181036000830152613d1c816137b4565b9050919050565b60006020820190508181036000830152613d3c8161381a565b9050919050565b60006020820190508181036000830152613d5c81613880565b9050919050565b60006020820190508181036000830152613d7c816138e6565b9050919050565b60006020820190508181036000830152613d9c81613926565b9050919050565b60006020820190508181036000830152613dbc8161398c565b9050919050565b6000602082019050613dd860008301846139cc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e0557613e0461419b565b5b8060405250919050565b600067ffffffffffffffff821115613e2a57613e2961419b565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea282614016565b9150613ead83614016565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee257613ee161410e565b5b828201905092915050565b6000613ef882614016565b9150613f0383614016565b925082613f1357613f1261413d565b5b828204905092915050565b6000613f2982614016565b9150613f3483614016565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6d57613f6c61410e565b5b828202905092915050565b6000613f8382614016565b9150613f8e83614016565b925082821015613fa157613fa061410e565b5b828203905092915050565b6000613fb782613ff6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561404d578082015181840152602081019050614032565b8381111561405c576000848401525b50505050565b6000600282049050600182168061407a57607f821691505b6020821081141561408e5761408d61416c565b5b50919050565b600061409f82614016565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d2576140d161410e565b5b600182019050919050565b60006140e882614016565b91506140f383614016565b9250826141035761410261413d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141e481613fac565b81146141ef57600080fd5b50565b6141fb81613fbe565b811461420657600080fd5b50565b61421281613fca565b811461421d57600080fd5b50565b61422981614016565b811461423457600080fd5b5056fea2646970667358221220916ecdcbb47bf1a0193582fb587565233f972a2e73cf4da434522a7ccb497f4664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000d6c60dad11e945deecc95b0bda7ab3312724cd000000000000000000000000000000000000000000000000000000000000000a446973636f20446f677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d514759793376383366416e3976587961354b424d725538744c56746e484461664a634c756566346d6d5465630000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637b01bfc411610102578063b8f7a66511610095578063e985e9c511610064578063e985e9c5146106ba578063ec0d7557146106f7578063efef39a11461070e578063f2fde38b1461072a576101e3565b8063b8f7a665146105fc578063c30e768414610627578063c87b56dd14610652578063d75e61101461068f576101e3565b806395d89b41116100d157806395d89b4114610568578063a22cb46514610593578063ae5b022a146105bc578063b88d4fde146105d3576101e3565b80637b01bfc4146104d25780638d859f3e146104e95780638da5cb5b1461051457806391b7f5ed1461053f576101e3565b806342842e0e1161017a5780636e83843a116101495780636e83843a1461042a57806370a0823114610453578063715018a61461049057806371ec672c146104a7576101e3565b806342842e0e1461035e5780634f6ccce71461038757806355f804b3146103c45780636352211e146103ed576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a5780633ccfd60b14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f78565b610753565b60405161021c9190613a66565b60405180910390f35b34801561023157600080fd5b5061023a6107cd565b6040516102479190613a81565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061300f565b61085f565b60405161028491906139ff565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f3c565b6108e4565b005b3480156102c257600080fd5b506102cb6109fc565b6040516102d89190613dc3565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612e36565b610a0b565b005b34801561031657600080fd5b50610331600480360381019061032c9190612f3c565b610a6b565b60405161033e9190613dc3565b60405180910390f35b34801561035357600080fd5b5061035c610b10565b005b34801561036a57600080fd5b5061038560048036038101906103809190612e36565b610bef565b005b34801561039357600080fd5b506103ae60048036038101906103a9919061300f565b610c0f565b6040516103bb9190613dc3565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190612fca565b610ca6565b005b3480156103f957600080fd5b50610414600480360381019061040f919061300f565b610d38565b60405161042191906139ff565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612fca565b610dea565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612dd1565b610ed2565b6040516104879190613dc3565b60405180910390f35b34801561049c57600080fd5b506104a5610f8a565b005b3480156104b357600080fd5b506104bc611012565b6040516104c99190613a66565b60405180910390f35b3480156104de57600080fd5b506104e7611025565b005b3480156104f557600080fd5b506104fe6110be565b60405161050b9190613dc3565b60405180910390f35b34801561052057600080fd5b506105296110c4565b60405161053691906139ff565b60405180910390f35b34801561054b57600080fd5b506105666004803603810190610561919061300f565b6110ee565b005b34801561057457600080fd5b5061057d611174565b60405161058a9190613a81565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190612f00565b611206565b005b3480156105c857600080fd5b506105d1611387565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612e85565b6114bc565b005b34801561060857600080fd5b5061061161151e565b60405161061e9190613a66565b60405180910390f35b34801561063357600080fd5b5061063c611531565b6040516106499190613dc3565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061300f565b611537565b6040516106869190613a81565b60405180910390f35b34801561069b57600080fd5b506106a461165a565b6040516106b19190613dc3565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612dfa565b61165f565b6040516106ee9190613a66565b60405180910390f35b34801561070357600080fd5b5061070c6116f3565b005b6107286004803603810190610723919061300f565b61179b565b005b34801561073657600080fd5b50610751600480360381019061074c9190612dd1565b611a0a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506107c582611b02565b5b9050919050565b6060600080546107dc90614062565b80601f016020809104026020016040519081016040528092919081815260200182805461080890614062565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611be4565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613ca3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d38565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613d03565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611c50565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611c50565b61165f565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613be3565b60405180910390fd5b6109f78383611c58565b505050565b6000610a06611d11565b905090565b610a1c610a16611c50565b82611d1e565b610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290613d43565b60405180910390fd5b610a66838383611dfc565b505050565b6000610a7683610ed2565b8210610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613aa3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613d23565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610beb573d6000803e3d6000fd5b5050565b610c0a838383604051806020016040528060008152506114bc565b505050565b6000610c19611d11565b8210610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613d83565b60405180910390fd5b60088281548110610c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cae611c50565b73ffffffffffffffffffffffffffffffffffffffff16610ccc6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990613cc3565b60405180910390fd5b8181600d9190610d33929190612c13565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890613c23565b60405180910390fd5b80915050919050565b610df2611c50565b73ffffffffffffffffffffffffffffffffffffffff16610e106110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613cc3565b60405180910390fd5b60001515601160149054906101000a900460ff16151514610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613b23565b60405180910390fd5b8181600e9190610ecd929190612c13565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90613c03565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f92611c50565b73ffffffffffffffffffffffffffffffffffffffff16610fb06110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613cc3565b60405180910390fd5b6110106000612058565b565b601160149054906101000a900460ff1681565b61102d611c50565b73ffffffffffffffffffffffffffffffffffffffff1661104b6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890613cc3565b60405180910390fd5b6001601160146101000a81548160ff021916908315150217905550565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110f6611c50565b73ffffffffffffffffffffffffffffffffffffffff166111146110c4565b73ffffffffffffffffffffffffffffffffffffffff161461116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613cc3565b60405180910390fd5b80600b8190555050565b60606001805461118390614062565b80601f01602080910402602001604051908101604052809291908181526020018280546111af90614062565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b61120e611c50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613b63565b60405180910390fd5b8060056000611289611c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611336611c50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137b9190613a66565b60405180910390a35050565b61138f611c50565b73ffffffffffffffffffffffffffffffffffffffff166113ad6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613cc3565b60405180910390fd5b600061140d6109fc565b9050611f4060648261141f9190613e97565b1061145f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145690613ba3565b60405180910390fd5b6000600190505b606481116114b8576114a5601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682846114a09190613e97565b61211e565b80806114b090614094565b915050611466565b5050565b6114cd6114c7611c50565b83611d1e565b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613d43565b60405180910390fd5b6115188484848461213c565b50505050565b601160159054906101000a900460ff1681565b611f4081565b606061154282611be4565b611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890613b83565b60405180910390fd5b6000600e805461159090614062565b90501161162757600d80546115a490614062565b80601f01602080910402602001604051908101604052809291908181526020018280546115d090614062565b801561161d5780601f106115f25761010080835404028352916020019161161d565b820191906000526020600020905b81548152906001019060200180831161160057829003601f168201915b5050505050611653565b600e61163283612198565b6040516020016116439291906139db565b6040516020818303038152906040525b9050919050565b600a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116fb611c50565b73ffffffffffffffffffffffffffffffffffffffff166117196110c4565b73ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613cc3565b60405180910390fd5b601160159054906101000a900460ff1615601160156101000a81548160ff021916908315150217905550565b80600a81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e99190613e97565b111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613da3565b60405180910390fd5b601160159054906101000a900460ff16611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090613d63565b60405180910390fd5b6118816109fc565b611f40116118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90613c83565b60405180910390fd5b816118cd6109fc565b6118d79190613e97565b611f40101561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613da3565b60405180910390fd5b3482600b5461192a9190613f1e565b1461196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c43565b60405180910390fd5b60005b82811015611a0557600161197f6109fc565b6119899190613e97565b6010819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119df9190613e97565b925050819055506119f23360105461211e565b80806119fd90614094565b91505061196d565b505050565b611a12611c50565b73ffffffffffffffffffffffffffffffffffffffff16611a306110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90613ae3565b60405180910390fd5b611aff81612058565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bcd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bdd5750611bdc82612345565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ccb83610d38565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600880549050905090565b6000611d2982611be4565b611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613bc3565b60405180910390fd5b6000611d7383610d38565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de257508373ffffffffffffffffffffffffffffffffffffffff16611dca8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df35750611df2818561165f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1c82610d38565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613ce3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b43565b60405180910390fd5b611eed8383836123af565b611ef8600082611c58565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f489190613f78565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9f9190613e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121388282604051806020016040528060008152506124c3565b5050565b612147848484611dfc565b6121538484848461251e565b612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990613ac3565b60405180910390fd5b50505050565b606060008214156121e0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612340565b600082905060005b600082146122125780806121fb90614094565b915050600a8261220b9190613eed565b91506121e8565b60008167ffffffffffffffff811115612254577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122865781602001600182028036833780820191505090505b5090505b600085146123395760018261229f9190613f78565b9150600a856122ae91906140dd565b60306122ba9190613e97565b60f81b8183815181106122f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123329190613eed565b945061228a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123ba8383836126b5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123fd576123f8816126ba565b61243c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461243b5761243a8382612703565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561247f5761247a81612870565b6124be565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124bd576124bc82826129b3565b5b5b505050565b6124cd8383612a32565b6124da600084848461251e565b612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090613ac3565b60405180910390fd5b505050565b600061253f8473ffffffffffffffffffffffffffffffffffffffff16612c00565b156126a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612568611c50565b8786866040518563ffffffff1660e01b815260040161258a9493929190613a1a565b602060405180830381600087803b1580156125a457600080fd5b505af19250505080156125d557506040513d601f19601f820116820180604052508101906125d29190612fa1565b60015b612658573d8060008114612605576040519150601f19603f3d011682016040523d82523d6000602084013e61260a565b606091505b50600081511415612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790613ac3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ad565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161271084610ed2565b61271a9190613f78565b90506000600760008481526020019081526020016000205490508181146127ff576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128849190613f78565b90506000600960008481526020019081526020016000205490506000600883815481106128da577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612997577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129be83610ed2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990613c63565b60405180910390fd5b612aab81611be4565b15612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290613b03565b60405180910390fd5b612af7600083836123af565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b479190613e97565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c1f90614062565b90600052602060002090601f016020900481019282612c415760008555612c88565b82601f10612c5a57803560ff1916838001178555612c88565b82800160010185558215612c88579182015b82811115612c87578235825591602001919060010190612c6c565b5b509050612c959190612c99565b5090565b5b80821115612cb2576000816000905550600101612c9a565b5090565b6000612cc9612cc484613e0f565b613dde565b905082815260208101848484011115612ce157600080fd5b612cec848285614020565b509392505050565b600081359050612d03816141db565b92915050565b600081359050612d18816141f2565b92915050565b600081359050612d2d81614209565b92915050565b600081519050612d4281614209565b92915050565b600082601f830112612d5957600080fd5b8135612d69848260208601612cb6565b91505092915050565b60008083601f840112612d8457600080fd5b8235905067ffffffffffffffff811115612d9d57600080fd5b602083019150836001820283011115612db557600080fd5b9250929050565b600081359050612dcb81614220565b92915050565b600060208284031215612de357600080fd5b6000612df184828501612cf4565b91505092915050565b60008060408385031215612e0d57600080fd5b6000612e1b85828601612cf4565b9250506020612e2c85828601612cf4565b9150509250929050565b600080600060608486031215612e4b57600080fd5b6000612e5986828701612cf4565b9350506020612e6a86828701612cf4565b9250506040612e7b86828701612dbc565b9150509250925092565b60008060008060808587031215612e9b57600080fd5b6000612ea987828801612cf4565b9450506020612eba87828801612cf4565b9350506040612ecb87828801612dbc565b925050606085013567ffffffffffffffff811115612ee857600080fd5b612ef487828801612d48565b91505092959194509250565b60008060408385031215612f1357600080fd5b6000612f2185828601612cf4565b9250506020612f3285828601612d09565b9150509250929050565b60008060408385031215612f4f57600080fd5b6000612f5d85828601612cf4565b9250506020612f6e85828601612dbc565b9150509250929050565b600060208284031215612f8a57600080fd5b6000612f9884828501612d1e565b91505092915050565b600060208284031215612fb357600080fd5b6000612fc184828501612d33565b91505092915050565b60008060208385031215612fdd57600080fd5b600083013567ffffffffffffffff811115612ff757600080fd5b61300385828601612d72565b92509250509250929050565b60006020828403121561302157600080fd5b600061302f84828501612dbc565b91505092915050565b61304181613fac565b82525050565b61305081613fbe565b82525050565b600061306182613e54565b61306b8185613e6a565b935061307b81856020860161402f565b613084816141ca565b840191505092915050565b600061309a82613e5f565b6130a48185613e7b565b93506130b481856020860161402f565b6130bd816141ca565b840191505092915050565b60006130d382613e5f565b6130dd8185613e8c565b93506130ed81856020860161402f565b80840191505092915050565b6000815461310681614062565b6131108186613e8c565b9450600182166000811461312b576001811461313c5761316f565b60ff1983168652818601935061316f565b61314585613e3f565b60005b8381101561316757815481890152600182019150602081019050613148565b838801955050505b50505092915050565b6000613185602b83613e7b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131eb603283613e7b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613251602683613e7b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132b7601c83613e7b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132f7601483613e7b565b91507f4c6f636b65643a2043616e2774204368616e67650000000000000000000000006000830152602082019050919050565b6000613337602483613e7b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339d601983613e7b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133dd601483613e7b565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b600061341d601683613e7b565b91507f52656163686564204e4654206d696e74206c696d6974000000000000000000006000830152602082019050919050565b600061345d602c83613e7b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134c3603883613e7b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613529602a83613e7b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061358f602983613e7b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135f5601483613e7b565b91507f496e636f72726563742045544820616d6f756e740000000000000000000000006000830152602082019050919050565b6000613635602083613e7b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613675601983613e7b565b91507f416c6c204e4654732068617665206265656e206d696e746564000000000000006000830152602082019050919050565b60006136b5602c83613e7b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061371b602083613e7b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061375b602983613e7b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006137c1602183613e7b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613827602183613e7b565b91507f4f6e6c79207769746864726177616c2077616c6c65742063616e20616363657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061388d603183613e7b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138f3601483613e7b565b91507f53616c65206973206e6f74206c697665207965740000000000000000000000006000830152602082019050919050565b6000613933602c83613e7b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613999601d83613e7b565b91507f43616e206e6f7420657863656564206d6178204e465420636f756e742e0000006000830152602082019050919050565b6139d581614016565b82525050565b60006139e782856130f9565b91506139f382846130c8565b91508190509392505050565b6000602082019050613a146000830184613038565b92915050565b6000608082019050613a2f6000830187613038565b613a3c6020830186613038565b613a4960408301856139cc565b8181036060830152613a5b8184613056565b905095945050505050565b6000602082019050613a7b6000830184613047565b92915050565b60006020820190508181036000830152613a9b818461308f565b905092915050565b60006020820190508181036000830152613abc81613178565b9050919050565b60006020820190508181036000830152613adc816131de565b9050919050565b60006020820190508181036000830152613afc81613244565b9050919050565b60006020820190508181036000830152613b1c816132aa565b9050919050565b60006020820190508181036000830152613b3c816132ea565b9050919050565b60006020820190508181036000830152613b5c8161332a565b9050919050565b60006020820190508181036000830152613b7c81613390565b9050919050565b60006020820190508181036000830152613b9c816133d0565b9050919050565b60006020820190508181036000830152613bbc81613410565b9050919050565b60006020820190508181036000830152613bdc81613450565b9050919050565b60006020820190508181036000830152613bfc816134b6565b9050919050565b60006020820190508181036000830152613c1c8161351c565b9050919050565b60006020820190508181036000830152613c3c81613582565b9050919050565b60006020820190508181036000830152613c5c816135e8565b9050919050565b60006020820190508181036000830152613c7c81613628565b9050919050565b60006020820190508181036000830152613c9c81613668565b9050919050565b60006020820190508181036000830152613cbc816136a8565b9050919050565b60006020820190508181036000830152613cdc8161370e565b9050919050565b60006020820190508181036000830152613cfc8161374e565b9050919050565b60006020820190508181036000830152613d1c816137b4565b9050919050565b60006020820190508181036000830152613d3c8161381a565b9050919050565b60006020820190508181036000830152613d5c81613880565b9050919050565b60006020820190508181036000830152613d7c816138e6565b9050919050565b60006020820190508181036000830152613d9c81613926565b9050919050565b60006020820190508181036000830152613dbc8161398c565b9050919050565b6000602082019050613dd860008301846139cc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e0557613e0461419b565b5b8060405250919050565b600067ffffffffffffffff821115613e2a57613e2961419b565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ea282614016565b9150613ead83614016565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee257613ee161410e565b5b828201905092915050565b6000613ef882614016565b9150613f0383614016565b925082613f1357613f1261413d565b5b828204905092915050565b6000613f2982614016565b9150613f3483614016565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6d57613f6c61410e565b5b828202905092915050565b6000613f8382614016565b9150613f8e83614016565b925082821015613fa157613fa061410e565b5b828203905092915050565b6000613fb782613ff6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561404d578082015181840152602081019050614032565b8381111561405c576000848401525b50505050565b6000600282049050600182168061407a57607f821691505b6020821081141561408e5761408d61416c565b5b50919050565b600061409f82614016565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d2576140d161410e565b5b600182019050919050565b60006140e882614016565b91506140f383614016565b9250826141035761410261413d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141e481613fac565b81146141ef57600080fd5b50565b6141fb81613fbe565b811461420657600080fd5b50565b61421281613fca565b811461421d57600080fd5b50565b61422981614016565b811461423457600080fd5b5056fea2646970667358221220916ecdcbb47bf1a0193582fb587565233f972a2e73cf4da434522a7ccb497f4664736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000d6c60dad11e945deecc95b0bda7ab3312724cd000000000000000000000000000000000000000000000000000000000000000a446973636f20446f677300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344444700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d514759793376383366416e3976587961354b424d725538744c56746e484461664a634c756566346d6d5465630000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Disco Dogs
Arg [1] : symbol (string): DDG
Arg [2] : baseURI (string): ipfs://QmQGYy3v83fAn9vXya5KBMrU8tLVtnHDafJcLuef4mmTec
Arg [3] : wallet (address): 0x00D6c60DAd11E945DeeCC95B0bdA7ab3312724Cd

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000d6c60dad11e945deecc95b0bda7ab3312724cd
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 446973636f20446f677300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4444470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d514759793376383366416e3976587961354b424d725538
Arg [10] : 744c56746e484461664a634c756566346d6d5465630000000000000000000000


Deployed Bytecode Sourcemap

43279:3851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34822:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23275:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22798:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45208:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24165:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35130:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46344:261;;;;;;;;;;;;;:::i;:::-;;24575:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35652:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44799:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21410:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44905:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21140:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42617:94;;;;;;;;;;;;;:::i;:::-;;43819:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44593:96;;;;;;;;;;;;;:::i;:::-;;43513:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41966:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44697:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21885:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23568:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45373:271;;;;;;;;;;;;;:::i;:::-;;24831:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43867:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46613:512;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43463:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23934:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45125:75;;;;;;;;;;;;;:::i;:::-;;45652:684;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42866:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34822:224;34924:4;34963:35;34948:50;;;:11;:50;;;;:90;;;;35002:36;35026:11;35002:23;:36::i;:::-;34948:90;34941:97;;34822:224;;;:::o;21716:100::-;21770:13;21803:5;21796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21716:100;:::o;23275:221::-;23351:7;23379:16;23387:7;23379;:16::i;:::-;23371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23464:15;:24;23480:7;23464:24;;;;;;;;;;;;;;;;;;;;;23457:31;;23275:221;;;:::o;22798:411::-;22879:13;22895:23;22910:7;22895:14;:23::i;:::-;22879:39;;22943:5;22937:11;;:2;:11;;;;22929:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23037:5;23021:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23046:37;23063:5;23070:12;:10;:12::i;:::-;23046:16;:37::i;:::-;23021:62;22999:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23180:21;23189:2;23193:7;23180:8;:21::i;:::-;22798:411;;;:::o;45208:105::-;45261:7;45286:19;:17;:19::i;:::-;45279:26;;45208:105;:::o;24165:339::-;24360:41;24379:12;:10;:12::i;:::-;24393:7;24360:18;:41::i;:::-;24352:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24468:28;24478:4;24484:2;24488:7;24468:9;:28::i;:::-;24165:339;;;:::o;35130:256::-;35227:7;35263:23;35280:5;35263:16;:23::i;:::-;35255:5;:31;35247:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35352:12;:19;35365:5;35352:19;;;;;;;;;;;;;;;:26;35372:5;35352:26;;;;;;;;;;;;35345:33;;35130:256;;;;:::o;46344:261::-;46420:16;;;;;;;;;;;46406:30;;:10;:30;;;46384:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46508:15;46526:21;46508:39;;46568:10;46560:28;;:37;46589:7;46560:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46344:261;:::o;24575:185::-;24713:39;24730:4;24736:2;24740:7;24713:39;;;;;;;;;;;;:16;:39::i;:::-;24575:185;;;:::o;35652:233::-;35727:7;35763:30;:28;:30::i;:::-;35755:5;:38;35747:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35860:10;35871:5;35860:17;;;;;;;;;;;;;;;;;;;;;;;;35853:24;;35652:233;;;:::o;44799:98::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44886:3:::1;;44870:13;:19;;;;;;;:::i;:::-;;44799:98:::0;;:::o;21410:239::-;21482:7;21502:13;21518:7;:16;21526:7;21518:16;;;;;;;;;;;;;;;;;;;;;21502:32;;21570:1;21553:19;;:5;:19;;;;21545:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21636:5;21629:12;;;21410:239;;;:::o;44905:212::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45029:5:::1;45004:30;;:21;;;;;;;;;;;:30;;;44996:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45093:16;;45069:21;:40;;;;;;;:::i;:::-;;44905:212:::0;;:::o;21140:208::-;21212:7;21257:1;21240:19;;:5;:19;;;;21232:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21324:9;:16;21334:5;21324:16;;;;;;;;;;;;;;;;21317:23;;21140:208;;;:::o;42617:94::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42682:21:::1;42700:1;42682:9;:21::i;:::-;42617:94::o:0;43819:41::-;;;;;;;;;;;;;:::o;44593:96::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44677:4:::1;44653:21;;:28;;;;;;;;;;;;;;;;;;44593:96::o:0;43513:33::-;;;;:::o;41966:87::-;42012:7;42039:6;;;;;;;;;;;42032:13;;41966:87;:::o;44697:90::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44771:8:::1;44763:5;:16;;;;44697:90:::0;:::o;21885:104::-;21941:13;21974:7;21967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21885:104;:::o;23568:295::-;23683:12;:10;:12::i;:::-;23671:24;;:8;:24;;;;23663:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23783:8;23738:18;:32;23757:12;:10;:12::i;:::-;23738:32;;;;;;;;;;;;;;;:42;23771:8;23738:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23836:8;23807:48;;23822:12;:10;:12::i;:::-;23807:48;;;23846:8;23807:48;;;;;;:::i;:::-;;;;;;;;23568:295;;:::o;45373:271::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45427:11:::1;45441:13;:11;:13::i;:::-;45427:27;;43402:4;45484:3;45475:6;:12;;;;:::i;:::-;:22;45467:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45541:9;45553:1;45541:13;;45536:101;45561:3;45556:1;:8;45536:101;;45586:39;45596:16;;;;;;;;;;;45623:1;45614:6;:10;;;;:::i;:::-;45586:9;:39::i;:::-;45566:3;;;;;:::i;:::-;;;;45536:101;;;;42257:1;45373:271::o:0;24831:328::-;25006:41;25025:12;:10;:12::i;:::-;25039:7;25006:18;:41::i;:::-;24998:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25112:39;25126:4;25132:2;25136:7;25145:5;25112:13;:39::i;:::-;24831:328;;;;:::o;43867:26::-;;;;;;;;;;;;;:::o;43368:38::-;43402:4;43368:38;:::o;46613:512::-;46723:13;46762:17;46770:8;46762:7;:17::i;:::-;46754:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;46955:1;46923:21;46917:35;;;;;:::i;:::-;;;:39;:200;;47104:13;46917:200;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47022:21;47045:19;:8;:17;:19::i;:::-;47005:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46917:200;46897:220;;46613:512;;;:::o;43463:43::-;43504:2;43463:43;:::o;23934:164::-;24031:4;24055:18;:25;24074:5;24055:25;;;;;;;;;;;;;;;:35;24081:8;24055:35;;;;;;;;;;;;;;;;;;;;;;;;;24048:42;;23934:164;;;;:::o;45125:75::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45186:6:::1;;;;;;;;;;;45185:7;45176:6;;:16;;;;;;;;;;;;;;;;;;45125:75::o:0;45652:684::-;45750:14;43504:2;44074:6;44045:14;:26;44060:10;44045:26;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:53;;44023:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;44218:6:::1;;;;;;;;;;;44210:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;45816:13:::2;:11;:13::i;:::-;43402:4;45806:23;45798:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45921:14;45905:13;:11;:13::i;:::-;:30;;;;:::i;:::-;43402:4;45894:41;;45872:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;46053:9;46035:14;46027:5;;:22;;;;:::i;:::-;:35;46005:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;46128:9;46123:206;46147:14;46143:1;:18;46123:206;;;46214:1;46198:13;:11;:13::i;:::-;:17;;;;:::i;:::-;46187:8;:28;;;;46266:1;46236:14;:26;46251:10;46236:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;46286;46296:10;46308:8;;46286:9;:31::i;:::-;46163:3;;;;;:::i;:::-;;;;46123:206;;;;45652:684:::0;;:::o;42866:192::-;42197:12;:10;:12::i;:::-;42186:23;;:7;:5;:7::i;:::-;:23;;;42178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42975:1:::1;42955:22;;:8;:22;;;;42947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43031:19;43041:8;43031:9;:19::i;:::-;42866:192:::0;:::o;20771:305::-;20873:4;20925:25;20910:40;;;:11;:40;;;;:105;;;;20982:33;20967:48;;;:11;:48;;;;20910:105;:158;;;;21032:36;21056:11;21032:23;:36::i;:::-;20910:158;20890:178;;20771:305;;;:::o;26667:127::-;26732:4;26784:1;26756:30;;:7;:16;26764:7;26756:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26749:37;;26667:127;;;:::o;16162:98::-;16215:7;16242:10;16235:17;;16162:98;:::o;30649:174::-;30751:2;30724:15;:24;30740:7;30724:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30807:7;30803:2;30769:46;;30778:23;30793:7;30778:14;:23::i;:::-;30769:46;;;;;;;;;;;;30649:174;;:::o;35462:113::-;35523:7;35550:10;:17;;;;35543:24;;35462:113;:::o;26961:348::-;27054:4;27079:16;27087:7;27079;:16::i;:::-;27071:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27155:13;27171:23;27186:7;27171:14;:23::i;:::-;27155:39;;27224:5;27213:16;;:7;:16;;;:51;;;;27257:7;27233:31;;:20;27245:7;27233:11;:20::i;:::-;:31;;;27213:51;:87;;;;27268:32;27285:5;27292:7;27268:16;:32::i;:::-;27213:87;27205:96;;;26961:348;;;;:::o;29953:578::-;30112:4;30085:31;;:23;30100:7;30085:14;:23::i;:::-;:31;;;30077:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30195:1;30181:16;;:2;:16;;;;30173:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30251:39;30272:4;30278:2;30282:7;30251:20;:39::i;:::-;30355:29;30372:1;30376:7;30355:8;:29::i;:::-;30416:1;30397:9;:15;30407:4;30397:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30445:1;30428:9;:13;30438:2;30428:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30476:2;30457:7;:16;30465:7;30457:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30515:7;30511:2;30496:27;;30505:4;30496:27;;;;;;;;;;;;29953:578;;;:::o;43066:173::-;43122:16;43141:6;;;;;;;;;;;43122:25;;43167:8;43158:6;;:17;;;;;;;;;;;;;;;;;;43222:8;43191:40;;43212:8;43191:40;;;;;;;;;;;;43066:173;;:::o;27651:110::-;27727:26;27737:2;27741:7;27727:26;;;;;;;;;;;;:9;:26::i;:::-;27651:110;;:::o;26041:313::-;26198:28;26208:4;26214:2;26218:7;26198:9;:28::i;:::-;26245:48;26268:4;26274:2;26278:7;26287:5;26245:22;:48::i;:::-;26237:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26041:313;;;;:::o;16698:721::-;16754:13;16982:1;16973:5;:10;16969:53;;;17000:10;;;;;;;;;;;;;;;;;;;;;16969:53;17032:12;17047:5;17032:20;;17063:14;17088:78;17103:1;17095:4;:9;17088:78;;17121:8;;;;;:::i;:::-;;;;17152:2;17144:10;;;;;:::i;:::-;;;17088:78;;;17176:19;17208:6;17198:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17176:39;;17226:154;17242:1;17233:5;:10;17226:154;;17270:1;17260:11;;;;;:::i;:::-;;;17337:2;17329:5;:10;;;;:::i;:::-;17316:2;:24;;;;:::i;:::-;17303:39;;17286:6;17293;17286:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17366:2;17357:11;;;;;:::i;:::-;;;17226:154;;;17404:6;17390:21;;;;;16698:721;;;;:::o;19264:157::-;19349:4;19388:25;19373:40;;;:11;:40;;;;19366:47;;19264:157;;;:::o;36498:589::-;36642:45;36669:4;36675:2;36679:7;36642:26;:45::i;:::-;36720:1;36704:18;;:4;:18;;;36700:187;;;36739:40;36771:7;36739:31;:40::i;:::-;36700:187;;;36809:2;36801:10;;:4;:10;;;36797:90;;36828:47;36861:4;36867:7;36828:32;:47::i;:::-;36797:90;36700:187;36915:1;36901:16;;:2;:16;;;36897:183;;;36934:45;36971:7;36934:36;:45::i;:::-;36897:183;;;37007:4;37001:10;;:2;:10;;;36997:83;;37028:40;37056:2;37060:7;37028:27;:40::i;:::-;36997:83;36897:183;36498:589;;;:::o;27988:321::-;28118:18;28124:2;28128:7;28118:5;:18::i;:::-;28169:54;28200:1;28204:2;28208:7;28217:5;28169:22;:54::i;:::-;28147:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27988:321;;;:::o;31388:799::-;31543:4;31564:15;:2;:13;;;:15::i;:::-;31560:620;;;31616:2;31600:36;;;31637:12;:10;:12::i;:::-;31651:4;31657:7;31666:5;31600:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31596:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31859:1;31842:6;:13;:18;31838:272;;;31885:60;;;;;;;;;;:::i;:::-;;;;;;;;31838:272;32060:6;32054:13;32045:6;32041:2;32037:15;32030:38;31596:529;31733:41;;;31723:51;;;:6;:51;;;;31716:58;;;;;31560:620;32164:4;32157:11;;31388:799;;;;;;;:::o;32759:126::-;;;;:::o;37810:164::-;37914:10;:17;;;;37887:15;:24;37903:7;37887:24;;;;;;;;;;;:44;;;;37942:10;37958:7;37942:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37810:164;:::o;38601:988::-;38867:22;38917:1;38892:22;38909:4;38892:16;:22::i;:::-;:26;;;;:::i;:::-;38867:51;;38929:18;38950:17;:26;38968:7;38950:26;;;;;;;;;;;;38929:47;;39097:14;39083:10;:28;39079:328;;39128:19;39150:12;:18;39163:4;39150:18;;;;;;;;;;;;;;;:34;39169:14;39150:34;;;;;;;;;;;;39128:56;;39234:11;39201:12;:18;39214:4;39201:18;;;;;;;;;;;;;;;:30;39220:10;39201:30;;;;;;;;;;;:44;;;;39351:10;39318:17;:30;39336:11;39318:30;;;;;;;;;;;:43;;;;39079:328;;39503:17;:26;39521:7;39503:26;;;;;;;;;;;39496:33;;;39547:12;:18;39560:4;39547:18;;;;;;;;;;;;;;;:34;39566:14;39547:34;;;;;;;;;;;39540:41;;;38601:988;;;;:::o;39884:1079::-;40137:22;40182:1;40162:10;:17;;;;:21;;;;:::i;:::-;40137:46;;40194:18;40215:15;:24;40231:7;40215:24;;;;;;;;;;;;40194:45;;40566:19;40588:10;40599:14;40588:26;;;;;;;;;;;;;;;;;;;;;;;;40566:48;;40652:11;40627:10;40638;40627:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40763:10;40732:15;:28;40748:11;40732:28;;;;;;;;;;;:41;;;;40904:15;:24;40920:7;40904:24;;;;;;;;;;;40897:31;;;40939:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39884:1079;;;;:::o;37388:221::-;37473:14;37490:20;37507:2;37490:16;:20::i;:::-;37473:37;;37548:7;37521:12;:16;37534:2;37521:16;;;;;;;;;;;;;;;:24;37538:6;37521:24;;;;;;;;;;;:34;;;;37595:6;37566:17;:26;37584:7;37566:26;;;;;;;;;;;:35;;;;37388:221;;;:::o;28645:382::-;28739:1;28725:16;;:2;:16;;;;28717:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28798:16;28806:7;28798;:16::i;:::-;28797:17;28789:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28860:45;28889:1;28893:2;28897:7;28860:20;:45::i;:::-;28935:1;28918:9;:13;28928:2;28918:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28966:2;28947:7;:16;28955:7;28947:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29011:7;29007:2;28986:33;;29003:1;28986:33;;;;;;;;;;;;28645:382;;:::o;8195:387::-;8255:4;8463:12;8530:7;8518:20;8510:28;;8573:1;8566:4;:8;8559:15;;;8195:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1233:352::-;;;1351:3;1344:4;1336:6;1332:17;1328:27;1318:2;;1369:1;1366;1359:12;1318:2;1405:6;1392:20;1382:30;;1435:18;1427:6;1424:30;1421:2;;;1467:1;1464;1457:12;1421:2;1504:4;1496:6;1492:17;1480:29;;1558:3;1550:4;1542:6;1538:17;1528:8;1524:32;1521:41;1518:2;;;1575:1;1572;1565:12;1518:2;1308:277;;;;;:::o;1591:139::-;;1675:6;1662:20;1653:29;;1691:33;1718:5;1691:33;:::i;:::-;1643:87;;;;:::o;1736:262::-;;1844:2;1832:9;1823:7;1819:23;1815:32;1812:2;;;1860:1;1857;1850:12;1812:2;1903:1;1928:53;1973:7;1964:6;1953:9;1949:22;1928:53;:::i;:::-;1918:63;;1874:117;1802:196;;;;:::o;2004:407::-;;;2129:2;2117:9;2108:7;2104:23;2100:32;2097:2;;;2145:1;2142;2135:12;2097:2;2188:1;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2159:117;2315:2;2341:53;2386:7;2377:6;2366:9;2362:22;2341:53;:::i;:::-;2331:63;;2286:118;2087:324;;;;;:::o;2417:552::-;;;;2559:2;2547:9;2538:7;2534:23;2530:32;2527:2;;;2575:1;2572;2565:12;2527:2;2618:1;2643:53;2688:7;2679:6;2668:9;2664:22;2643:53;:::i;:::-;2633:63;;2589:117;2745:2;2771:53;2816:7;2807:6;2796:9;2792:22;2771:53;:::i;:::-;2761:63;;2716:118;2873:2;2899:53;2944:7;2935:6;2924:9;2920:22;2899:53;:::i;:::-;2889:63;;2844:118;2517:452;;;;;:::o;2975:809::-;;;;;3143:3;3131:9;3122:7;3118:23;3114:33;3111:2;;;3160:1;3157;3150:12;3111:2;3203:1;3228:53;3273:7;3264:6;3253:9;3249:22;3228:53;:::i;:::-;3218:63;;3174:117;3330:2;3356:53;3401:7;3392:6;3381:9;3377:22;3356:53;:::i;:::-;3346:63;;3301:118;3458:2;3484:53;3529:7;3520:6;3509:9;3505:22;3484:53;:::i;:::-;3474:63;;3429:118;3614:2;3603:9;3599:18;3586:32;3645:18;3637:6;3634:30;3631:2;;;3677:1;3674;3667:12;3631:2;3705:62;3759:7;3750:6;3739:9;3735:22;3705:62;:::i;:::-;3695:72;;3557:220;3101:683;;;;;;;:::o;3790:401::-;;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:50;4166:7;4157:6;4146:9;4142:22;4124:50;:::i;:::-;4114:60;;4069:115;3870:321;;;;;:::o;4197:407::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4338:1;4335;4328:12;4290:2;4381:1;4406:53;4451:7;4442:6;4431:9;4427:22;4406:53;:::i;:::-;4396:63;;4352:117;4508:2;4534:53;4579:7;4570:6;4559:9;4555:22;4534:53;:::i;:::-;4524:63;;4479:118;4280:324;;;;;:::o;4610:260::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4733:1;4730;4723:12;4685:2;4776:1;4801:52;4845:7;4836:6;4825:9;4821:22;4801:52;:::i;:::-;4791:62;;4747:116;4675:195;;;;:::o;4876:282::-;;4994:2;4982:9;4973:7;4969:23;4965:32;4962:2;;;5010:1;5007;5000:12;4962:2;5053:1;5078:63;5133:7;5124:6;5113:9;5109:22;5078:63;:::i;:::-;5068:73;;5024:127;4952:206;;;;:::o;5164:395::-;;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5308:1;5305;5298:12;5260:2;5379:1;5368:9;5364:17;5351:31;5409:18;5401:6;5398:30;5395:2;;;5441:1;5438;5431:12;5395:2;5477:65;5534:7;5525:6;5514:9;5510:22;5477:65;:::i;:::-;5459:83;;;;5322:230;5250:309;;;;;:::o;5565:262::-;;5673:2;5661:9;5652:7;5648:23;5644:32;5641:2;;;5689:1;5686;5679:12;5641:2;5732:1;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5703:117;5631:196;;;;:::o;5833:118::-;5920:24;5938:5;5920:24;:::i;:::-;5915:3;5908:37;5898:53;;:::o;5957:109::-;6038:21;6053:5;6038:21;:::i;:::-;6033:3;6026:34;6016:50;;:::o;6072:360::-;;6186:38;6218:5;6186:38;:::i;:::-;6240:70;6303:6;6298:3;6240:70;:::i;:::-;6233:77;;6319:52;6364:6;6359:3;6352:4;6345:5;6341:16;6319:52;:::i;:::-;6396:29;6418:6;6396:29;:::i;:::-;6391:3;6387:39;6380:46;;6162:270;;;;;:::o;6438:364::-;;6554:39;6587:5;6554:39;:::i;:::-;6609:71;6673:6;6668:3;6609:71;:::i;:::-;6602:78;;6689:52;6734:6;6729:3;6722:4;6715:5;6711:16;6689:52;:::i;:::-;6766:29;6788:6;6766:29;:::i;:::-;6761:3;6757:39;6750:46;;6530:272;;;;;:::o;6808:377::-;;6942:39;6975:5;6942:39;:::i;:::-;6997:89;7079:6;7074:3;6997:89;:::i;:::-;6990:96;;7095:52;7140:6;7135:3;7128:4;7121:5;7117:16;7095:52;:::i;:::-;7172:6;7167:3;7163:16;7156:23;;6918:267;;;;;:::o;7215:845::-;;7355:5;7349:12;7384:36;7410:9;7384:36;:::i;:::-;7436:89;7518:6;7513:3;7436:89;:::i;:::-;7429:96;;7556:1;7545:9;7541:17;7572:1;7567:137;;;;7718:1;7713:341;;;;7534:520;;7567:137;7651:4;7647:9;7636;7632:25;7627:3;7620:38;7687:6;7682:3;7678:16;7671:23;;7567:137;;7713:341;7780:38;7812:5;7780:38;:::i;:::-;7840:1;7854:154;7868:6;7865:1;7862:13;7854:154;;;7942:7;7936:14;7932:1;7927:3;7923:11;7916:35;7992:1;7983:7;7979:15;7968:26;;7890:4;7887:1;7883:12;7878:17;;7854:154;;;8037:6;8032:3;8028:16;8021:23;;7720:334;;7534:520;;7322:738;;;;;;:::o;8066:375::-;;8229:67;8293:2;8288:3;8229:67;:::i;:::-;8222:74;;8326:34;8322:1;8317:3;8313:11;8306:55;8392:13;8387:2;8382:3;8378:12;8371:35;8432:2;8427:3;8423:12;8416:19;;8212:229;;;:::o;8447:382::-;;8610:67;8674:2;8669:3;8610:67;:::i;:::-;8603:74;;8707:34;8703:1;8698:3;8694:11;8687:55;8773:20;8768:2;8763:3;8759:12;8752:42;8820:2;8815:3;8811:12;8804:19;;8593:236;;;:::o;8835:370::-;;8998:67;9062:2;9057:3;8998:67;:::i;:::-;8991:74;;9095:34;9091:1;9086:3;9082:11;9075:55;9161:8;9156:2;9151:3;9147:12;9140:30;9196:2;9191:3;9187:12;9180:19;;8981:224;;;:::o;9211:326::-;;9374:67;9438:2;9433:3;9374:67;:::i;:::-;9367:74;;9471:30;9467:1;9462:3;9458:11;9451:51;9528:2;9523:3;9519:12;9512:19;;9357:180;;;:::o;9543:318::-;;9706:67;9770:2;9765:3;9706:67;:::i;:::-;9699:74;;9803:22;9799:1;9794:3;9790:11;9783:43;9852:2;9847:3;9843:12;9836:19;;9689:172;;;:::o;9867:368::-;;10030:67;10094:2;10089:3;10030:67;:::i;:::-;10023:74;;10127:34;10123:1;10118:3;10114:11;10107:55;10193:6;10188:2;10183:3;10179:12;10172:28;10226:2;10221:3;10217:12;10210:19;;10013:222;;;:::o;10241:323::-;;10404:67;10468:2;10463:3;10404:67;:::i;:::-;10397:74;;10501:27;10497:1;10492:3;10488:11;10481:48;10555:2;10550:3;10546:12;10539:19;;10387:177;;;:::o;10570:318::-;;10733:67;10797:2;10792:3;10733:67;:::i;:::-;10726:74;;10830:22;10826:1;10821:3;10817:11;10810:43;10879:2;10874:3;10870:12;10863:19;;10716:172;;;:::o;10894:320::-;;11057:67;11121:2;11116:3;11057:67;:::i;:::-;11050:74;;11154:24;11150:1;11145:3;11141:11;11134:45;11205:2;11200:3;11196:12;11189:19;;11040:174;;;:::o;11220:376::-;;11383:67;11447:2;11442:3;11383:67;:::i;:::-;11376:74;;11480:34;11476:1;11471:3;11467:11;11460:55;11546:14;11541:2;11536:3;11532:12;11525:36;11587:2;11582:3;11578:12;11571:19;;11366:230;;;:::o;11602:388::-;;11765:67;11829:2;11824:3;11765:67;:::i;:::-;11758:74;;11862:34;11858:1;11853:3;11849:11;11842:55;11928:26;11923:2;11918:3;11914:12;11907:48;11981:2;11976:3;11972:12;11965:19;;11748:242;;;:::o;11996:374::-;;12159:67;12223:2;12218:3;12159:67;:::i;:::-;12152:74;;12256:34;12252:1;12247:3;12243:11;12236:55;12322:12;12317:2;12312:3;12308:12;12301:34;12361:2;12356:3;12352:12;12345:19;;12142:228;;;:::o;12376:373::-;;12539:67;12603:2;12598:3;12539:67;:::i;:::-;12532:74;;12636:34;12632:1;12627:3;12623:11;12616:55;12702:11;12697:2;12692:3;12688:12;12681:33;12740:2;12735:3;12731:12;12724:19;;12522:227;;;:::o;12755:318::-;;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;13015:22;13011:1;13006:3;13002:11;12995:43;13064:2;13059:3;13055:12;13048:19;;12901:172;;;:::o;13079:330::-;;13242:67;13306:2;13301:3;13242:67;:::i;:::-;13235:74;;13339:34;13335:1;13330:3;13326:11;13319:55;13400:2;13395:3;13391:12;13384:19;;13225:184;;;:::o;13415:323::-;;13578:67;13642:2;13637:3;13578:67;:::i;:::-;13571:74;;13675:27;13671:1;13666:3;13662:11;13655:48;13729:2;13724:3;13720:12;13713:19;;13561:177;;;:::o;13744:376::-;;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;14004:34;14000:1;13995:3;13991:11;13984:55;14070:14;14065:2;14060:3;14056:12;14049:36;14111:2;14106:3;14102:12;14095:19;;13890:230;;;:::o;14126:330::-;;14289:67;14353:2;14348:3;14289:67;:::i;:::-;14282:74;;14386:34;14382:1;14377:3;14373:11;14366:55;14447:2;14442:3;14438:12;14431:19;;14272:184;;;:::o;14462:373::-;;14625:67;14689:2;14684:3;14625:67;:::i;:::-;14618:74;;14722:34;14718:1;14713:3;14709:11;14702:55;14788:11;14783:2;14778:3;14774:12;14767:33;14826:2;14821:3;14817:12;14810:19;;14608:227;;;:::o;14841:365::-;;15004:67;15068:2;15063:3;15004:67;:::i;:::-;14997:74;;15101:34;15097:1;15092:3;15088:11;15081:55;15167:3;15162:2;15157:3;15153:12;15146:25;15197:2;15192:3;15188:12;15181:19;;14987:219;;;:::o;15212:365::-;;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15472:34;15468:1;15463:3;15459:11;15452:55;15538:3;15533:2;15528:3;15524:12;15517:25;15568:2;15563:3;15559:12;15552:19;;15358:219;;;:::o;15583:381::-;;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15843:34;15839:1;15834:3;15830:11;15823:55;15909:19;15904:2;15899:3;15895:12;15888:41;15955:2;15950:3;15946:12;15939:19;;15729:235;;;:::o;15970:318::-;;16133:67;16197:2;16192:3;16133:67;:::i;:::-;16126:74;;16230:22;16226:1;16221:3;16217:11;16210:43;16279:2;16274:3;16270:12;16263:19;;16116:172;;;:::o;16294:376::-;;16457:67;16521:2;16516:3;16457:67;:::i;:::-;16450:74;;16554:34;16550:1;16545:3;16541:11;16534:55;16620:14;16615:2;16610:3;16606:12;16599:36;16661:2;16656:3;16652:12;16645:19;;16440:230;;;:::o;16676:327::-;;16839:67;16903:2;16898:3;16839:67;:::i;:::-;16832:74;;16936:31;16932:1;16927:3;16923:11;16916:52;16994:2;16989:3;16985:12;16978:19;;16822:181;;;:::o;17009:118::-;17096:24;17114:5;17096:24;:::i;:::-;17091:3;17084:37;17074:53;;:::o;17133:429::-;;17332:92;17420:3;17411:6;17332:92;:::i;:::-;17325:99;;17441:95;17532:3;17523:6;17441:95;:::i;:::-;17434:102;;17553:3;17546:10;;17314:248;;;;;:::o;17568:222::-;;17699:2;17688:9;17684:18;17676:26;;17712:71;17780:1;17769:9;17765:17;17756:6;17712:71;:::i;:::-;17666:124;;;;:::o;17796:640::-;;18029:3;18018:9;18014:19;18006:27;;18043:71;18111:1;18100:9;18096:17;18087:6;18043:71;:::i;:::-;18124:72;18192:2;18181:9;18177:18;18168:6;18124:72;:::i;:::-;18206;18274:2;18263:9;18259:18;18250:6;18206:72;:::i;:::-;18325:9;18319:4;18315:20;18310:2;18299:9;18295:18;18288:48;18353:76;18424:4;18415:6;18353:76;:::i;:::-;18345:84;;17996:440;;;;;;;:::o;18442:210::-;;18567:2;18556:9;18552:18;18544:26;;18580:65;18642:1;18631:9;18627:17;18618:6;18580:65;:::i;:::-;18534:118;;;;:::o;18658:313::-;;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:78;18959:4;18950:6;18886:78;:::i;:::-;18878:86;;18776:195;;;;:::o;18977:419::-;;19181:2;19170:9;19166:18;19158:26;;19230:9;19224:4;19220:20;19216:1;19205:9;19201:17;19194:47;19258:131;19384:4;19258:131;:::i;:::-;19250:139;;19148:248;;;:::o;19402:419::-;;19606:2;19595:9;19591:18;19583:26;;19655:9;19649:4;19645:20;19641:1;19630:9;19626:17;19619:47;19683:131;19809:4;19683:131;:::i;:::-;19675:139;;19573:248;;;:::o;19827:419::-;;20031:2;20020:9;20016:18;20008:26;;20080:9;20074:4;20070:20;20066:1;20055:9;20051:17;20044:47;20108:131;20234:4;20108:131;:::i;:::-;20100:139;;19998:248;;;:::o;20252:419::-;;20456:2;20445:9;20441:18;20433:26;;20505:9;20499:4;20495:20;20491:1;20480:9;20476:17;20469:47;20533:131;20659:4;20533:131;:::i;:::-;20525:139;;20423:248;;;:::o;20677:419::-;;20881:2;20870:9;20866:18;20858:26;;20930:9;20924:4;20920:20;20916:1;20905:9;20901:17;20894:47;20958:131;21084:4;20958:131;:::i;:::-;20950:139;;20848:248;;;:::o;21102:419::-;;21306:2;21295:9;21291:18;21283:26;;21355:9;21349:4;21345:20;21341:1;21330:9;21326:17;21319:47;21383:131;21509:4;21383:131;:::i;:::-;21375:139;;21273:248;;;:::o;21527:419::-;;21731:2;21720:9;21716:18;21708:26;;21780:9;21774:4;21770:20;21766:1;21755:9;21751:17;21744:47;21808:131;21934:4;21808:131;:::i;:::-;21800:139;;21698:248;;;:::o;21952:419::-;;22156:2;22145:9;22141:18;22133:26;;22205:9;22199:4;22195:20;22191:1;22180:9;22176:17;22169:47;22233:131;22359:4;22233:131;:::i;:::-;22225:139;;22123:248;;;:::o;22377:419::-;;22581:2;22570:9;22566:18;22558:26;;22630:9;22624:4;22620:20;22616:1;22605:9;22601:17;22594:47;22658:131;22784:4;22658:131;:::i;:::-;22650:139;;22548:248;;;:::o;22802:419::-;;23006:2;22995:9;22991:18;22983:26;;23055:9;23049:4;23045:20;23041:1;23030:9;23026:17;23019:47;23083:131;23209:4;23083:131;:::i;:::-;23075:139;;22973:248;;;:::o;23227:419::-;;23431:2;23420:9;23416:18;23408:26;;23480:9;23474:4;23470:20;23466:1;23455:9;23451:17;23444:47;23508:131;23634:4;23508:131;:::i;:::-;23500:139;;23398:248;;;:::o;23652:419::-;;23856:2;23845:9;23841:18;23833:26;;23905:9;23899:4;23895:20;23891:1;23880:9;23876:17;23869:47;23933:131;24059:4;23933:131;:::i;:::-;23925:139;;23823:248;;;:::o;24077:419::-;;24281:2;24270:9;24266:18;24258:26;;24330:9;24324:4;24320:20;24316:1;24305:9;24301:17;24294:47;24358:131;24484:4;24358:131;:::i;:::-;24350:139;;24248:248;;;:::o;24502:419::-;;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24673:248;;;:::o;24927:419::-;;25131:2;25120:9;25116:18;25108:26;;25180:9;25174:4;25170:20;25166:1;25155:9;25151:17;25144:47;25208:131;25334:4;25208:131;:::i;:::-;25200:139;;25098:248;;;:::o;25352:419::-;;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:131;25759:4;25633:131;:::i;:::-;25625:139;;25523:248;;;:::o;25777:419::-;;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25948:248;;;:::o;26202:419::-;;26406:2;26395:9;26391:18;26383:26;;26455:9;26449:4;26445:20;26441:1;26430:9;26426:17;26419:47;26483:131;26609:4;26483:131;:::i;:::-;26475:139;;26373:248;;;:::o;26627:419::-;;26831:2;26820:9;26816:18;26808:26;;26880:9;26874:4;26870:20;26866:1;26855:9;26851:17;26844:47;26908:131;27034:4;26908:131;:::i;:::-;26900:139;;26798:248;;;:::o;27052:419::-;;27256:2;27245:9;27241:18;27233:26;;27305:9;27299:4;27295:20;27291:1;27280:9;27276:17;27269:47;27333:131;27459:4;27333:131;:::i;:::-;27325:139;;27223:248;;;:::o;27477:419::-;;27681:2;27670:9;27666:18;27658:26;;27730:9;27724:4;27720:20;27716:1;27705:9;27701:17;27694:47;27758:131;27884:4;27758:131;:::i;:::-;27750:139;;27648:248;;;:::o;27902:419::-;;28106:2;28095:9;28091:18;28083:26;;28155:9;28149:4;28145:20;28141:1;28130:9;28126:17;28119:47;28183:131;28309:4;28183:131;:::i;:::-;28175:139;;28073:248;;;:::o;28327:419::-;;28531:2;28520:9;28516:18;28508:26;;28580:9;28574:4;28570:20;28566:1;28555:9;28551:17;28544:47;28608:131;28734:4;28608:131;:::i;:::-;28600:139;;28498:248;;;:::o;28752:419::-;;28956:2;28945:9;28941:18;28933:26;;29005:9;28999:4;28995:20;28991:1;28980:9;28976:17;28969:47;29033:131;29159:4;29033:131;:::i;:::-;29025:139;;28923:248;;;:::o;29177:419::-;;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29348:248;;;:::o;29602:222::-;;29733:2;29722:9;29718:18;29710:26;;29746:71;29814:1;29803:9;29799:17;29790:6;29746:71;:::i;:::-;29700:124;;;;:::o;29830:283::-;;29896:2;29890:9;29880:19;;29938:4;29930:6;29926:17;30045:6;30033:10;30030:22;30009:18;29997:10;29994:34;29991:62;29988:2;;;30056:18;;:::i;:::-;29988:2;30096:10;30092:2;30085:22;29870:243;;;;:::o;30119:331::-;;30270:18;30262:6;30259:30;30256:2;;;30292:18;;:::i;:::-;30256:2;30377:4;30373:9;30366:4;30358:6;30354:17;30350:33;30342:41;;30438:4;30432;30428:15;30420:23;;30185:265;;;:::o;30456:141::-;;30528:3;30520:11;;30551:3;30548:1;30541:14;30585:4;30582:1;30572:18;30564:26;;30510:87;;;:::o;30603:98::-;;30688:5;30682:12;30672:22;;30661:40;;;:::o;30707:99::-;;30793:5;30787:12;30777:22;;30766:40;;;:::o;30812:168::-;;30929:6;30924:3;30917:19;30969:4;30964:3;30960:14;30945:29;;30907:73;;;;:::o;30986:169::-;;31104:6;31099:3;31092:19;31144:4;31139:3;31135:14;31120:29;;31082:73;;;;:::o;31161:148::-;;31300:3;31285:18;;31275:34;;;;:::o;31315:305::-;;31374:20;31392:1;31374:20;:::i;:::-;31369:25;;31408:20;31426:1;31408:20;:::i;:::-;31403:25;;31562:1;31494:66;31490:74;31487:1;31484:81;31481:2;;;31568:18;;:::i;:::-;31481:2;31612:1;31609;31605:9;31598:16;;31359:261;;;;:::o;31626:185::-;;31683:20;31701:1;31683:20;:::i;:::-;31678:25;;31717:20;31735:1;31717:20;:::i;:::-;31712:25;;31756:1;31746:2;;31761:18;;:::i;:::-;31746:2;31803:1;31800;31796:9;31791:14;;31668:143;;;;:::o;31817:348::-;;31880:20;31898:1;31880:20;:::i;:::-;31875:25;;31914:20;31932:1;31914:20;:::i;:::-;31909:25;;32102:1;32034:66;32030:74;32027:1;32024:81;32019:1;32012:9;32005:17;32001:105;31998:2;;;32109:18;;:::i;:::-;31998:2;32157:1;32154;32150:9;32139:20;;31865:300;;;;:::o;32171:191::-;;32231:20;32249:1;32231:20;:::i;:::-;32226:25;;32265:20;32283:1;32265:20;:::i;:::-;32260:25;;32304:1;32301;32298:8;32295:2;;;32309:18;;:::i;:::-;32295:2;32354:1;32351;32347:9;32339:17;;32216:146;;;;:::o;32368:96::-;;32434:24;32452:5;32434:24;:::i;:::-;32423:35;;32413:51;;;:::o;32470:90::-;;32547:5;32540:13;32533:21;32522:32;;32512:48;;;:::o;32566:149::-;;32642:66;32635:5;32631:78;32620:89;;32610:105;;;:::o;32721:126::-;;32798:42;32791:5;32787:54;32776:65;;32766:81;;;:::o;32853:77::-;;32919:5;32908:16;;32898:32;;;:::o;32936:154::-;33020:6;33015:3;33010;32997:30;33082:1;33073:6;33068:3;33064:16;33057:27;32987:103;;;:::o;33096:307::-;33164:1;33174:113;33188:6;33185:1;33182:13;33174:113;;;33273:1;33268:3;33264:11;33258:18;33254:1;33249:3;33245:11;33238:39;33210:2;33207:1;33203:10;33198:15;;33174:113;;;33305:6;33302:1;33299:13;33296:2;;;33385:1;33376:6;33371:3;33367:16;33360:27;33296:2;33145:258;;;;:::o;33409:320::-;;33490:1;33484:4;33480:12;33470:22;;33537:1;33531:4;33527:12;33558:18;33548:2;;33614:4;33606:6;33602:17;33592:27;;33548:2;33676;33668:6;33665:14;33645:18;33642:38;33639:2;;;33695:18;;:::i;:::-;33639:2;33460:269;;;;:::o;33735:233::-;;33797:24;33815:5;33797:24;:::i;:::-;33788:33;;33843:66;33836:5;33833:77;33830:2;;;33913:18;;:::i;:::-;33830:2;33960:1;33953:5;33949:13;33942:20;;33778:190;;;:::o;33974:176::-;;34023:20;34041:1;34023:20;:::i;:::-;34018:25;;34057:20;34075:1;34057:20;:::i;:::-;34052:25;;34096:1;34086:2;;34101:18;;:::i;:::-;34086:2;34142:1;34139;34135:9;34130:14;;34008:142;;;;:::o;34156:180::-;34204:77;34201:1;34194:88;34301:4;34298:1;34291:15;34325:4;34322:1;34315:15;34342:180;34390:77;34387:1;34380:88;34487:4;34484:1;34477:15;34511:4;34508:1;34501:15;34528:180;34576:77;34573:1;34566:88;34673:4;34670:1;34663:15;34697:4;34694:1;34687:15;34714:180;34762:77;34759:1;34752:88;34859:4;34856:1;34849:15;34883:4;34880:1;34873:15;34900:102;;34992:2;34988:7;34983:2;34976:5;34972:14;34968:28;34958:38;;34948:54;;;:::o;35008:122::-;35081:24;35099:5;35081:24;:::i;:::-;35074:5;35071:35;35061:2;;35120:1;35117;35110:12;35061:2;35051:79;:::o;35136:116::-;35206:21;35221:5;35206:21;:::i;:::-;35199:5;35196:32;35186:2;;35242:1;35239;35232:12;35186:2;35176:76;:::o;35258:120::-;35330:23;35347:5;35330:23;:::i;:::-;35323:5;35320:34;35310:2;;35368:1;35365;35358:12;35310:2;35300:78;:::o;35384:122::-;35457:24;35475:5;35457:24;:::i;:::-;35450:5;35447:35;35437:2;;35496:1;35493;35486:12;35437:2;35427:79;:::o

Swarm Source

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