ETH Price: $2,982.35 (-3.92%)
Gas: 2 Gwei

Token

Dope Shibas (DOPESHIBA)
 

Overview

Max Total Supply

9,900 DOPESHIBA

Holders

4,044

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
sleepy0x13.eth
Balance
1 DOPESHIBA
0x429f13e4ec5e57c9ae2388c5020e372f73fe168a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

**Dope Shibas** is a cool degenerative collection on Ethereum Mainnet and a tribute to Cool Cats. The collection consists of 10,000 randomly generated Shibas that are assembled from 180 different items layered on top of each other.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DopeShiba

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 2021-07-30
*/

// Dope Shibas
// SPDX-License-Identifier: MIT

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);
}





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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}



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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





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);
}




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


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);
}


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);
}



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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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();
    }
}


pragma solidity ^0.8.0;


contract DopeShiba is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 100;
    uint256 private _price = 0.02 ether;
    bool public _paused = true;

    address t1 = 0x13F58543FD794C88221cc75f23e72541027aA3BD;
    address t2 = 0x9dD990f772b482C8e984936408514c032D85d47C;

    constructor(string memory baseURI) ERC721("Dope Shibas", "DOPESHIBA")  {
        setBaseURI(baseURI);
        _safeMint( t1, 0);
        _safeMint( t2, 1);
    }

    function adopt(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 21,                              "You can adopt a maximum of 20 Shibas" );
        require( supply + num < 10000 - _reserved,      "Exceeds maximum Shibas supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

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

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

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

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

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

    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Cat supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"adopt","outputs":[],"stateMutability":"payable","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"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":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064600c5566470de4df820000600d556001600e60006101000a81548160ff0219169083151502179055507313f58543fd794c88221cc75f23e72541027aa3bd600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739dd990f772b482c8e984936408514c032d85d47c600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e657600080fd5b50604051620056e1380380620056e183398181016040528101906200010c919062000f75565b6040518060400160405280600b81526020017f446f7065205368696261730000000000000000000000000000000000000000008152506040518060400160405280600981526020017f444f50455348494241000000000000000000000000000000000000000000000081525081600090805190602001906200019092919062000e10565b508060019080519060200190620001a992919062000e10565b5050506000620001be620002df60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200026e81620002e760201b60201c565b620002a3600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200039260201b60201c565b620002d8600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200039260201b60201c565b506200156b565b600033905090565b620002f7620002df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031d620003b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036d906200128f565b60405180910390fd5b80600b90805190602001906200038e92919062000e10565b5050565b620003b4828260405180602001604052806000815250620003e260201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003f483836200045060201b60201c565b6200040960008484846200063660201b60201c565b6200044b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004429062001207565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ba906200126d565b60405180910390fd5b620004d481620007f060201b60201c565b1562000517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050e9062001229565b60405180910390fd5b6200052b600083836200085c60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200057d919062001345565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006648473ffffffffffffffffffffffffffffffffffffffff16620009a360201b62001a171760201c565b15620007e3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000696620002df60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006ba9493929190620011b3565b602060405180830381600087803b158015620006d557600080fd5b505af19250505080156200070957506040513d601f19601f8201168201806040525081019062000706919062000f49565b60015b62000792573d80600081146200073c576040519150601f19603f3d011682016040523d82523d6000602084013e62000741565b606091505b506000815114156200078a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007819062001207565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007e8565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000874838383620009b660201b62001a2a1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008c157620008bb81620009bb60201b60201c565b62000909565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009085762000907838262000a0460201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200095657620009508162000b8160201b60201c565b6200099e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200099d576200099c828262000cc960201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a1e8462000d5560201b62000e1a1760201c565b62000a2a9190620013a2565b905060006007600084815260200190815260200160002054905081811462000b10576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b979190620013a2565b905060006009600084815260200190815260200160002054905060006008838154811062000bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000c37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000cad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000ce18362000d5560201b62000e1a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000dc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dc0906200124b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e1e906200147d565b90600052602060002090601f01602090048101928262000e42576000855562000e8e565b82601f1062000e5d57805160ff191683800117855562000e8e565b8280016001018555821562000e8e579182015b8281111562000e8d57825182559160200191906001019062000e70565b5b50905062000e9d919062000ea1565b5090565b5b8082111562000ebc57600081600090555060010162000ea2565b5090565b600062000ed762000ed184620012e5565b620012b1565b90508281526020810184848401111562000ef057600080fd5b62000efd84828562001447565b509392505050565b60008151905062000f168162001551565b92915050565b600082601f83011262000f2e57600080fd5b815162000f4084826020860162000ec0565b91505092915050565b60006020828403121562000f5c57600080fd5b600062000f6c8482850162000f05565b91505092915050565b60006020828403121562000f8857600080fd5b600082015167ffffffffffffffff81111562000fa357600080fd5b62000fb18482850162000f1c565b91505092915050565b62000fc581620013dd565b82525050565b600062000fd88262001318565b62000fe4818562001323565b935062000ff681856020860162001447565b620010018162001540565b840191505092915050565b60006200101b60328362001334565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600062001083601c8362001334565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000620010c5602a8362001334565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006200112d60208362001334565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006200116f60208362001334565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b620011ad816200143d565b82525050565b6000608082019050620011ca600083018762000fba565b620011d9602083018662000fba565b620011e86040830185620011a2565b8181036060830152620011fc818462000fcb565b905095945050505050565b6000602082019050818103600083015262001222816200100c565b9050919050565b60006020820190508181036000830152620012448162001074565b9050919050565b600060208201905081810360008301526200126681620010b6565b9050919050565b6000602082019050818103600083015262001288816200111e565b9050919050565b60006020820190508181036000830152620012aa8162001160565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620012db57620012da62001511565b5b8060405250919050565b600067ffffffffffffffff82111562001303576200130262001511565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001352826200143d565b91506200135f836200143d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013975762001396620014b3565b5b828201905092915050565b6000620013af826200143d565b9150620013bc836200143d565b925082821015620013d257620013d1620014b3565b5b828203905092915050565b6000620013ea826200141d565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014675780820151818401526020810190506200144a565b8381111562001477576000848401525b50505050565b600060028204905060018216806200149657607f821691505b60208210811415620014ad57620014ac620014e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200155c81620013f1565b81146200156857600080fd5b50565b614166806200157b6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e93565b6106ba565b6040516101f0919061394b565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612e6a565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613966565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612f26565b61085f565b60405161028191906138c2565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612e2e565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d5919061394b565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613c68565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612d28565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612e2e565b610a7c565b6040516103669190613c68565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612d28565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cc3565b610b41565b6040516103cc9190613929565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612f26565b610c3b565b6040516104099190613c68565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612ee5565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612f26565b610d68565b60405161046f91906138c2565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612cc3565b610e1a565b6040516104ac9190613c68565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612f26565b61115f565b005b3480156104fe57600080fd5b506105076112e2565b60405161051491906138c2565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612f26565b61130c565b005b34801561055257600080fd5b5061055b611392565b6040516105689190613966565b60405180910390f35b34801561057d57600080fd5b50610586611424565b6040516105939190613c68565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612df2565b61142e565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612d77565b6115af565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612f26565b611611565b6040516106229190613966565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612e2e565b6116b8565b005b34801561066057600080fd5b5061067b60048036038101906106769190612cec565b6117d7565b604051610688919061394b565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612cc3565b61186b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611a2f565b5b9050919050565b61073c611b11565b73ffffffffffffffffffffffffffffffffffffffff1661075a6112e2565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613b88565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613f5b565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613f5b565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611b19565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613b68565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613be8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611b11565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611b11565b6117d7565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613ae8565b60405180910390fd5b6109f78383611b85565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611b11565b82611c3e565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613c28565b60405180910390fd5b610a77838383611d1c565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906139a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c838383604051806020016040528060008152506115af565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c2890613f8d565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613c48565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611b11565b73ffffffffffffffffffffffffffffffffffffffff16610cf86112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613b88565b60405180910390fd5b80600b9080519060200190610d64929190612ae7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613b28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613b08565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611b11565b73ffffffffffffffffffffffffffffffffffffffff16610ef86112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611b11565b73ffffffffffffffffffffffffffffffffffffffff166110356112e2565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613b88565b60405180910390fd5b600060024761109a9190613de6565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110fc57600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061115c57600080fd5b50565b6000611169610a0f565b9050600e60009054906101000a900460ff16156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613988565b60405180910390fd5b601582106111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613a88565b60405180910390fd5b600c5461271061120e9190613e71565b828261121a9190613d90565b1061125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613ac8565b60405180910390fd5b81600d546112689190613e17565b3410156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613c08565b60405180910390fd5b60005b828110156112dd576112ca3382846112c59190613d90565b611f78565b80806112d590613f8d565b9150506112ad565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611314611b11565b73ffffffffffffffffffffffffffffffffffffffff166113326112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613b88565b60405180910390fd5b80600d8190555050565b6060600180546113a190613f5b565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90613f5b565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b5050505050905090565b6000600d54905090565b611436611b11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a68565b60405180910390fd5b80600560006114b1611b11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155e611b11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a3919061394b565b60405180910390a35050565b6115c06115ba611b11565b83611c3e565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613c28565b60405180910390fd5b61160b84848484611f96565b50505050565b606061161c82611b19565b61165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613bc8565b60405180910390fd5b6000611665611ff2565b9050600081511161168557604051806020016040528060008152506116b0565b8061168f84612084565b6040516020016116a092919061389e565b6040516020818303038152906040525b915050919050565b6116c0611b11565b73ffffffffffffffffffffffffffffffffffffffff166116de6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613b88565b60405180910390fd5b600c54811115611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613a08565b60405180910390fd5b6000611783610a0f565b905060005b828110156117b8576117a58482846117a09190613d90565b611f78565b80806117b090613f8d565b915050611788565b5081600c60008282546117cb9190613e71565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611873611b11565b73ffffffffffffffffffffffffffffffffffffffff166118916112e2565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906139e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611afa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b0a5750611b0982612231565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf883610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4982611b19565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613aa8565b60405180910390fd5b6000611c9383610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d0257508373ffffffffffffffffffffffffffffffffffffffff16611cea8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d135750611d1281856117d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3c82610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613a48565b60405180910390fd5b611e0d83838361229b565b611e18600082611b85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e689190613e71565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebf9190613d90565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f928282604051806020016040528060008152506123af565b5050565b611fa1848484611d1c565b611fad8484848461240a565b611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe3906139c8565b60405180910390fd5b50505050565b6060600b805461200190613f5b565b80601f016020809104026020016040519081016040528092919081815260200182805461202d90613f5b565b801561207a5780601f1061204f5761010080835404028352916020019161207a565b820191906000526020600020905b81548152906001019060200180831161205d57829003601f168201915b5050505050905090565b606060008214156120cc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061222c565b600082905060005b600082146120fe5780806120e790613f8d565b915050600a826120f79190613de6565b91506120d4565b60008167ffffffffffffffff811115612140577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121725781602001600182028036833780820191505090505b5090505b600085146122255760018261218b9190613e71565b9150600a8561219a9190613fd6565b60306121a69190613d90565b60f81b8183815181106121e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221e9190613de6565b9450612176565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122a6838383611a2a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e9576122e4816125a1565b612328565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123275761232683826125ea565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236b5761236681612757565b6123aa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123a9576123a8828261289a565b5b5b505050565b6123b98383612919565b6123c6600084848461240a565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906139c8565b60405180910390fd5b505050565b600061242b8473ffffffffffffffffffffffffffffffffffffffff16611a17565b15612594578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611b11565b8786866040518563ffffffff1660e01b815260040161247694939291906138dd565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612ebc565b60015b612544573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5060008151141561253c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612533906139c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612599565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125f784610e1a565b6126019190613e71565b90506000600760008481526020019081526020016000205490508181146126e6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061276b9190613e71565b90506000600960008481526020019081526020016000205490506000600883815481106127c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612809577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061287e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128a583610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298090613b48565b60405180910390fd5b61299281611b19565b156129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990613a28565b60405180910390fd5b6129de6000838361229b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2e9190613d90565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612af390613f5b565b90600052602060002090601f016020900481019282612b155760008555612b5c565b82601f10612b2e57805160ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5b578251825591602001919060010190612b40565b5b509050612b699190612b6d565b5090565b5b80821115612b86576000816000905550600101612b6e565b5090565b6000612b9d612b9884613cb4565b613c83565b905082815260208101848484011115612bb557600080fd5b612bc0848285613f19565b509392505050565b6000612bdb612bd684613ce4565b613c83565b905082815260208101848484011115612bf357600080fd5b612bfe848285613f19565b509392505050565b600081359050612c15816140d4565b92915050565b600081359050612c2a816140eb565b92915050565b600081359050612c3f81614102565b92915050565b600081519050612c5481614102565b92915050565b600082601f830112612c6b57600080fd5b8135612c7b848260208601612b8a565b91505092915050565b600082601f830112612c9557600080fd5b8135612ca5848260208601612bc8565b91505092915050565b600081359050612cbd81614119565b92915050565b600060208284031215612cd557600080fd5b6000612ce384828501612c06565b91505092915050565b60008060408385031215612cff57600080fd5b6000612d0d85828601612c06565b9250506020612d1e85828601612c06565b9150509250929050565b600080600060608486031215612d3d57600080fd5b6000612d4b86828701612c06565b9350506020612d5c86828701612c06565b9250506040612d6d86828701612cae565b9150509250925092565b60008060008060808587031215612d8d57600080fd5b6000612d9b87828801612c06565b9450506020612dac87828801612c06565b9350506040612dbd87828801612cae565b925050606085013567ffffffffffffffff811115612dda57600080fd5b612de687828801612c5a565b91505092959194509250565b60008060408385031215612e0557600080fd5b6000612e1385828601612c06565b9250506020612e2485828601612c1b565b9150509250929050565b60008060408385031215612e4157600080fd5b6000612e4f85828601612c06565b9250506020612e6085828601612cae565b9150509250929050565b600060208284031215612e7c57600080fd5b6000612e8a84828501612c1b565b91505092915050565b600060208284031215612ea557600080fd5b6000612eb384828501612c30565b91505092915050565b600060208284031215612ece57600080fd5b6000612edc84828501612c45565b91505092915050565b600060208284031215612ef757600080fd5b600082013567ffffffffffffffff811115612f1157600080fd5b612f1d84828501612c84565b91505092915050565b600060208284031215612f3857600080fd5b6000612f4684828501612cae565b91505092915050565b6000612f5b8383613880565b60208301905092915050565b612f7081613ea5565b82525050565b6000612f8182613d24565b612f8b8185613d52565b9350612f9683613d14565b8060005b83811015612fc7578151612fae8882612f4f565b9750612fb983613d45565b925050600181019050612f9a565b5085935050505092915050565b612fdd81613eb7565b82525050565b6000612fee82613d2f565b612ff88185613d63565b9350613008818560208601613f28565b613011816140c3565b840191505092915050565b600061302782613d3a565b6130318185613d74565b9350613041818560208601613f28565b61304a816140c3565b840191505092915050565b600061306082613d3a565b61306a8185613d85565b935061307a818560208601613f28565b80840191505092915050565b6000613093600b83613d74565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b60006130d3602b83613d74565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613139603283613d74565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061319f602683613d74565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613205601b83613d74565b91507f457863656564732072657365727665642043617420737570706c7900000000006000830152602082019050919050565b6000613245601c83613d74565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613285602483613d74565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132eb601983613d74565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061332b602483613d74565b91507f596f752063616e2061646f70742061206d6178696d756d206f6620323020536860008301527f69626173000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613391602c83613d74565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133f7601d83613d74565b91507f45786365656473206d6178696d756d2053686962617320737570706c790000006000830152602082019050919050565b6000613437603883613d74565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061349d602a83613d74565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613503602983613d74565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613569602083613d74565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135a9602c83613d74565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061360f602083613d74565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061364f602983613d74565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b5602f83613d74565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061371b602183613d74565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613781601983613d74565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006137c1603183613d74565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613827602c83613d74565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61388981613f0f565b82525050565b61389881613f0f565b82525050565b60006138aa8285613055565b91506138b68284613055565b91508190509392505050565b60006020820190506138d76000830184612f67565b92915050565b60006080820190506138f26000830187612f67565b6138ff6020830186612f67565b61390c604083018561388f565b818103606083015261391e8184612fe3565b905095945050505050565b600060208201905081810360008301526139438184612f76565b905092915050565b60006020820190506139606000830184612fd4565b92915050565b60006020820190508181036000830152613980818461301c565b905092915050565b600060208201905081810360008301526139a181613086565b9050919050565b600060208201905081810360008301526139c1816130c6565b9050919050565b600060208201905081810360008301526139e18161312c565b9050919050565b60006020820190508181036000830152613a0181613192565b9050919050565b60006020820190508181036000830152613a21816131f8565b9050919050565b60006020820190508181036000830152613a4181613238565b9050919050565b60006020820190508181036000830152613a6181613278565b9050919050565b60006020820190508181036000830152613a81816132de565b9050919050565b60006020820190508181036000830152613aa18161331e565b9050919050565b60006020820190508181036000830152613ac181613384565b9050919050565b60006020820190508181036000830152613ae1816133ea565b9050919050565b60006020820190508181036000830152613b018161342a565b9050919050565b60006020820190508181036000830152613b2181613490565b9050919050565b60006020820190508181036000830152613b41816134f6565b9050919050565b60006020820190508181036000830152613b618161355c565b9050919050565b60006020820190508181036000830152613b818161359c565b9050919050565b60006020820190508181036000830152613ba181613602565b9050919050565b60006020820190508181036000830152613bc181613642565b9050919050565b60006020820190508181036000830152613be1816136a8565b9050919050565b60006020820190508181036000830152613c018161370e565b9050919050565b60006020820190508181036000830152613c2181613774565b9050919050565b60006020820190508181036000830152613c41816137b4565b9050919050565b60006020820190508181036000830152613c618161381a565b9050919050565b6000602082019050613c7d600083018461388f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613caa57613ca9614094565b5b8060405250919050565b600067ffffffffffffffff821115613ccf57613cce614094565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613cff57613cfe614094565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9b82613f0f565b9150613da683613f0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda614007565b5b828201905092915050565b6000613df182613f0f565b9150613dfc83613f0f565b925082613e0c57613e0b614036565b5b828204905092915050565b6000613e2282613f0f565b9150613e2d83613f0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6657613e65614007565b5b828202905092915050565b6000613e7c82613f0f565b9150613e8783613f0f565b925082821015613e9a57613e99614007565b5b828203905092915050565b6000613eb082613eef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f46578082015181840152602081019050613f2b565b83811115613f55576000848401525b50505050565b60006002820490506001821680613f7357607f821691505b60208210811415613f8757613f86614065565b5b50919050565b6000613f9882613f0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcb57613fca614007565b5b600182019050919050565b6000613fe182613f0f565b9150613fec83613f0f565b925082613ffc57613ffb614036565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6140dd81613ea5565b81146140e857600080fd5b50565b6140f481613eb7565b81146140ff57600080fd5b50565b61410b81613ec3565b811461411657600080fd5b50565b61412281613f0f565b811461412d57600080fd5b5056fea264697066735822122010d0153a3358f9893d7a36d5fe5e6bbfabbba1d466308e55200e7e92f891777e64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7777772e646f70657368696261732e66756e2f6170692f646f67732f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec57806398d5fdca1161008a578063c87b56dd11610064578063c87b56dd146105ee578063ca8001441461062b578063e985e9c514610654578063f2fde38b14610691576101b7565b806398d5fdca14610571578063a22cb4651461059c578063b88d4fde146105c5576101b7565b80638588b2c5116100c65780638588b2c5146104d65780638da5cb5b146104f257806391b7f5ed1461051d57806395d89b4114610546576101b7565b806370a0823114610478578063715018a6146104b5578063853828b6146104cc576101b7565b806323b872dd11610159578063438b630011610133578063438b6300146103985780634f6ccce7146103d557806355f804b3146104125780636352211e1461043b576101b7565b806323b872dd146103095780632f745c591461033257806342842e0e1461036f576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806316c61ccc146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e93565b6106ba565b6040516101f0919061394b565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612e6a565b610734565b005b34801561022e57600080fd5b506102376107cd565b6040516102449190613966565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612f26565b61085f565b60405161028191906138c2565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612e2e565b6108e4565b005b3480156102bf57600080fd5b506102c86109fc565b6040516102d5919061394b565b60405180910390f35b3480156102ea57600080fd5b506102f3610a0f565b6040516103009190613c68565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612d28565b610a1c565b005b34801561033e57600080fd5b5061035960048036038101906103549190612e2e565b610a7c565b6040516103669190613c68565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612d28565b610b21565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cc3565b610b41565b6040516103cc9190613929565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190612f26565b610c3b565b6040516104099190613c68565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612ee5565b610cd2565b005b34801561044757600080fd5b50610462600480360381019061045d9190612f26565b610d68565b60405161046f91906138c2565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612cc3565b610e1a565b6040516104ac9190613c68565b60405180910390f35b3480156104c157600080fd5b506104ca610ed2565b005b6104d461100f565b005b6104f060048036038101906104eb9190612f26565b61115f565b005b3480156104fe57600080fd5b506105076112e2565b60405161051491906138c2565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612f26565b61130c565b005b34801561055257600080fd5b5061055b611392565b6040516105689190613966565b60405180910390f35b34801561057d57600080fd5b50610586611424565b6040516105939190613c68565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612df2565b61142e565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190612d77565b6115af565b005b3480156105fa57600080fd5b5061061560048036038101906106109190612f26565b611611565b6040516106229190613966565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612e2e565b6116b8565b005b34801561066057600080fd5b5061067b60048036038101906106769190612cec565b6117d7565b604051610688919061394b565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612cc3565b61186b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072d575061072c82611a2f565b5b9050919050565b61073c611b11565b73ffffffffffffffffffffffffffffffffffffffff1661075a6112e2565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a790613b88565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600080546107dc90613f5b565b80601f016020809104026020016040519081016040528092919081815260200182805461080890613f5b565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086a82611b19565b6108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a090613b68565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ef82610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790613be8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097f611b11565b73ffffffffffffffffffffffffffffffffffffffff1614806109ae57506109ad816109a8611b11565b6117d7565b5b6109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e490613ae8565b60405180910390fd5b6109f78383611b85565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b610a2d610a27611b11565b82611c3e565b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613c28565b60405180910390fd5b610a77838383611d1c565b505050565b6000610a8783610e1a565b8210610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906139a8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b3c838383604051806020016040528060008152506115af565b505050565b60606000610b4e83610e1a565b905060008167ffffffffffffffff811115610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bc05781602001602082028036833780820191505090505b50905060005b82811015610c3057610bd88582610a7c565b828281518110610c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c2890613f8d565b915050610bc6565b508092505050919050565b6000610c45610a0f565b8210610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613c48565b60405180910390fd5b60088281548110610cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cda611b11565b73ffffffffffffffffffffffffffffffffffffffff16610cf86112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613b88565b60405180910390fd5b80600b9080519060200190610d64929190612ae7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613b28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613b08565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eda611b11565b73ffffffffffffffffffffffffffffffffffffffff16610ef86112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611017611b11565b73ffffffffffffffffffffffffffffffffffffffff166110356112e2565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290613b88565b60405180910390fd5b600060024761109a9190613de6565b9050600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110fc57600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061115c57600080fd5b50565b6000611169610a0f565b9050600e60009054906101000a900460ff16156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613988565b60405180910390fd5b601582106111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613a88565b60405180910390fd5b600c5461271061120e9190613e71565b828261121a9190613d90565b1061125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613ac8565b60405180910390fd5b81600d546112689190613e17565b3410156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613c08565b60405180910390fd5b60005b828110156112dd576112ca3382846112c59190613d90565b611f78565b80806112d590613f8d565b9150506112ad565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611314611b11565b73ffffffffffffffffffffffffffffffffffffffff166113326112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613b88565b60405180910390fd5b80600d8190555050565b6060600180546113a190613f5b565b80601f01602080910402602001604051908101604052809291908181526020018280546113cd90613f5b565b801561141a5780601f106113ef5761010080835404028352916020019161141a565b820191906000526020600020905b8154815290600101906020018083116113fd57829003601f168201915b5050505050905090565b6000600d54905090565b611436611b11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a68565b60405180910390fd5b80600560006114b1611b11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155e611b11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a3919061394b565b60405180910390a35050565b6115c06115ba611b11565b83611c3e565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613c28565b60405180910390fd5b61160b84848484611f96565b50505050565b606061161c82611b19565b61165b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165290613bc8565b60405180910390fd5b6000611665611ff2565b9050600081511161168557604051806020016040528060008152506116b0565b8061168f84612084565b6040516020016116a092919061389e565b6040516020818303038152906040525b915050919050565b6116c0611b11565b73ffffffffffffffffffffffffffffffffffffffff166116de6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613b88565b60405180910390fd5b600c54811115611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613a08565b60405180910390fd5b6000611783610a0f565b905060005b828110156117b8576117a58482846117a09190613d90565b611f78565b80806117b090613f8d565b915050611788565b5081600c60008282546117cb9190613e71565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611873611b11565b73ffffffffffffffffffffffffffffffffffffffff166118916112e2565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e906139e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611afa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b0a5750611b0982612231565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf883610d68565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4982611b19565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613aa8565b60405180910390fd5b6000611c9383610d68565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d0257508373ffffffffffffffffffffffffffffffffffffffff16611cea8461085f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d135750611d1281856117d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3c82610d68565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df990613a48565b60405180910390fd5b611e0d83838361229b565b611e18600082611b85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e689190613e71565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebf9190613d90565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f928282604051806020016040528060008152506123af565b5050565b611fa1848484611d1c565b611fad8484848461240a565b611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe3906139c8565b60405180910390fd5b50505050565b6060600b805461200190613f5b565b80601f016020809104026020016040519081016040528092919081815260200182805461202d90613f5b565b801561207a5780601f1061204f5761010080835404028352916020019161207a565b820191906000526020600020905b81548152906001019060200180831161205d57829003601f168201915b5050505050905090565b606060008214156120cc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061222c565b600082905060005b600082146120fe5780806120e790613f8d565b915050600a826120f79190613de6565b91506120d4565b60008167ffffffffffffffff811115612140577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121725781602001600182028036833780820191505090505b5090505b600085146122255760018261218b9190613e71565b9150600a8561219a9190613fd6565b60306121a69190613d90565b60f81b8183815181106121e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221e9190613de6565b9450612176565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122a6838383611a2a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e9576122e4816125a1565b612328565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123275761232683826125ea565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236b5761236681612757565b6123aa565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123a9576123a8828261289a565b5b5b505050565b6123b98383612919565b6123c6600084848461240a565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906139c8565b60405180910390fd5b505050565b600061242b8473ffffffffffffffffffffffffffffffffffffffff16611a17565b15612594578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612454611b11565b8786866040518563ffffffff1660e01b815260040161247694939291906138dd565b602060405180830381600087803b15801561249057600080fd5b505af19250505080156124c157506040513d601f19601f820116820180604052508101906124be9190612ebc565b60015b612544573d80600081146124f1576040519150601f19603f3d011682016040523d82523d6000602084013e6124f6565b606091505b5060008151141561253c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612533906139c8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612599565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125f784610e1a565b6126019190613e71565b90506000600760008481526020019081526020016000205490508181146126e6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061276b9190613e71565b90506000600960008481526020019081526020016000205490506000600883815481106127c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612809577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061287e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128a583610e1a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298090613b48565b60405180910390fd5b61299281611b19565b156129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990613a28565b60405180910390fd5b6129de6000838361229b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2e9190613d90565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612af390613f5b565b90600052602060002090601f016020900481019282612b155760008555612b5c565b82601f10612b2e57805160ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5b578251825591602001919060010190612b40565b5b509050612b699190612b6d565b5090565b5b80821115612b86576000816000905550600101612b6e565b5090565b6000612b9d612b9884613cb4565b613c83565b905082815260208101848484011115612bb557600080fd5b612bc0848285613f19565b509392505050565b6000612bdb612bd684613ce4565b613c83565b905082815260208101848484011115612bf357600080fd5b612bfe848285613f19565b509392505050565b600081359050612c15816140d4565b92915050565b600081359050612c2a816140eb565b92915050565b600081359050612c3f81614102565b92915050565b600081519050612c5481614102565b92915050565b600082601f830112612c6b57600080fd5b8135612c7b848260208601612b8a565b91505092915050565b600082601f830112612c9557600080fd5b8135612ca5848260208601612bc8565b91505092915050565b600081359050612cbd81614119565b92915050565b600060208284031215612cd557600080fd5b6000612ce384828501612c06565b91505092915050565b60008060408385031215612cff57600080fd5b6000612d0d85828601612c06565b9250506020612d1e85828601612c06565b9150509250929050565b600080600060608486031215612d3d57600080fd5b6000612d4b86828701612c06565b9350506020612d5c86828701612c06565b9250506040612d6d86828701612cae565b9150509250925092565b60008060008060808587031215612d8d57600080fd5b6000612d9b87828801612c06565b9450506020612dac87828801612c06565b9350506040612dbd87828801612cae565b925050606085013567ffffffffffffffff811115612dda57600080fd5b612de687828801612c5a565b91505092959194509250565b60008060408385031215612e0557600080fd5b6000612e1385828601612c06565b9250506020612e2485828601612c1b565b9150509250929050565b60008060408385031215612e4157600080fd5b6000612e4f85828601612c06565b9250506020612e6085828601612cae565b9150509250929050565b600060208284031215612e7c57600080fd5b6000612e8a84828501612c1b565b91505092915050565b600060208284031215612ea557600080fd5b6000612eb384828501612c30565b91505092915050565b600060208284031215612ece57600080fd5b6000612edc84828501612c45565b91505092915050565b600060208284031215612ef757600080fd5b600082013567ffffffffffffffff811115612f1157600080fd5b612f1d84828501612c84565b91505092915050565b600060208284031215612f3857600080fd5b6000612f4684828501612cae565b91505092915050565b6000612f5b8383613880565b60208301905092915050565b612f7081613ea5565b82525050565b6000612f8182613d24565b612f8b8185613d52565b9350612f9683613d14565b8060005b83811015612fc7578151612fae8882612f4f565b9750612fb983613d45565b925050600181019050612f9a565b5085935050505092915050565b612fdd81613eb7565b82525050565b6000612fee82613d2f565b612ff88185613d63565b9350613008818560208601613f28565b613011816140c3565b840191505092915050565b600061302782613d3a565b6130318185613d74565b9350613041818560208601613f28565b61304a816140c3565b840191505092915050565b600061306082613d3a565b61306a8185613d85565b935061307a818560208601613f28565b80840191505092915050565b6000613093600b83613d74565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b60006130d3602b83613d74565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613139603283613d74565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061319f602683613d74565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613205601b83613d74565b91507f457863656564732072657365727665642043617420737570706c7900000000006000830152602082019050919050565b6000613245601c83613d74565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613285602483613d74565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132eb601983613d74565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061332b602483613d74565b91507f596f752063616e2061646f70742061206d6178696d756d206f6620323020536860008301527f69626173000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613391602c83613d74565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006133f7601d83613d74565b91507f45786365656473206d6178696d756d2053686962617320737570706c790000006000830152602082019050919050565b6000613437603883613d74565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061349d602a83613d74565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613503602983613d74565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613569602083613d74565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135a9602c83613d74565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061360f602083613d74565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061364f602983613d74565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136b5602f83613d74565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061371b602183613d74565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613781601983613d74565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b60006137c1603183613d74565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613827602c83613d74565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61388981613f0f565b82525050565b61389881613f0f565b82525050565b60006138aa8285613055565b91506138b68284613055565b91508190509392505050565b60006020820190506138d76000830184612f67565b92915050565b60006080820190506138f26000830187612f67565b6138ff6020830186612f67565b61390c604083018561388f565b818103606083015261391e8184612fe3565b905095945050505050565b600060208201905081810360008301526139438184612f76565b905092915050565b60006020820190506139606000830184612fd4565b92915050565b60006020820190508181036000830152613980818461301c565b905092915050565b600060208201905081810360008301526139a181613086565b9050919050565b600060208201905081810360008301526139c1816130c6565b9050919050565b600060208201905081810360008301526139e18161312c565b9050919050565b60006020820190508181036000830152613a0181613192565b9050919050565b60006020820190508181036000830152613a21816131f8565b9050919050565b60006020820190508181036000830152613a4181613238565b9050919050565b60006020820190508181036000830152613a6181613278565b9050919050565b60006020820190508181036000830152613a81816132de565b9050919050565b60006020820190508181036000830152613aa18161331e565b9050919050565b60006020820190508181036000830152613ac181613384565b9050919050565b60006020820190508181036000830152613ae1816133ea565b9050919050565b60006020820190508181036000830152613b018161342a565b9050919050565b60006020820190508181036000830152613b2181613490565b9050919050565b60006020820190508181036000830152613b41816134f6565b9050919050565b60006020820190508181036000830152613b618161355c565b9050919050565b60006020820190508181036000830152613b818161359c565b9050919050565b60006020820190508181036000830152613ba181613602565b9050919050565b60006020820190508181036000830152613bc181613642565b9050919050565b60006020820190508181036000830152613be1816136a8565b9050919050565b60006020820190508181036000830152613c018161370e565b9050919050565b60006020820190508181036000830152613c2181613774565b9050919050565b60006020820190508181036000830152613c41816137b4565b9050919050565b60006020820190508181036000830152613c618161381a565b9050919050565b6000602082019050613c7d600083018461388f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613caa57613ca9614094565b5b8060405250919050565b600067ffffffffffffffff821115613ccf57613cce614094565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613cff57613cfe614094565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9b82613f0f565b9150613da683613f0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda614007565b5b828201905092915050565b6000613df182613f0f565b9150613dfc83613f0f565b925082613e0c57613e0b614036565b5b828204905092915050565b6000613e2282613f0f565b9150613e2d83613f0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6657613e65614007565b5b828202905092915050565b6000613e7c82613f0f565b9150613e8783613f0f565b925082821015613e9a57613e99614007565b5b828203905092915050565b6000613eb082613eef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f46578082015181840152602081019050613f2b565b83811115613f55576000848401525b50505050565b60006002820490506001821680613f7357607f821691505b60208210811415613f8757613f86614065565b5b50919050565b6000613f9882613f0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcb57613fca614007565b5b600182019050919050565b6000613fe182613f0f565b9150613fec83613f0f565b925082613ffc57613ffb614036565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6140dd81613ea5565b81146140e857600080fd5b50565b6140f481613eb7565b81146140ff57600080fd5b50565b61410b81613ec3565b811461411657600080fd5b50565b61412281613f0f565b811461412d57600080fd5b5056fea264697066735822122010d0153a3358f9893d7a36d5fe5e6bbfabbba1d466308e55200e7e92f891777e64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f7777772e646f70657368696261732e66756e2f6170692f646f67732f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://www.dopeshibas.fun/api/dogs/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f7777772e646f70657368696261732e66756e2f6170692f64
Arg [3] : 6f67732f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42000:2469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35842:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44190:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23339:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22876:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42198:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36495:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24229:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36163:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24605:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43087:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36685:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43660:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21573:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21303:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34445:148;;;;;;;;;;;;;:::i;:::-;;44272:194;;;:::i;:::-;;42532:547;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33794:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43437:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43770:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23632:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24827:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22223:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43859:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23998:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34748:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35842:237;35944:4;35983:35;35968:50;;;:11;:50;;;;:103;;;;36035:36;36059:11;36035:23;:36::i;:::-;35968:103;35961:110;;35842:237;;;:::o;44190:74::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44253:3:::1;44243:7;;:13;;;;;;;;;;;;;;;;;;44190:74:::0;:::o;21879:100::-;21933:13;21966:5;21959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21879:100;:::o;23339:221::-;23415:7;23443:16;23451:7;23443;:16::i;:::-;23435:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23528:15;:24;23544:7;23528:24;;;;;;;;;;;;;;;;;;;;;23521:31;;23339:221;;;:::o;22876:397::-;22957:13;22973:23;22988:7;22973:14;:23::i;:::-;22957:39;;23021:5;23015:11;;:2;:11;;;;23007:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23101:5;23085:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23110:37;23127:5;23134:12;:10;:12::i;:::-;23110:16;:37::i;:::-;23085:62;23077:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23244:21;23253:2;23257:7;23244:8;:21::i;:::-;22876:397;;;:::o;42198:26::-;;;;;;;;;;;;;:::o;36495:113::-;36556:7;36583:10;:17;;;;36576:24;;36495:113;:::o;24229:305::-;24390:41;24409:12;:10;:12::i;:::-;24423:7;24390:18;:41::i;:::-;24382:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24498:28;24508:4;24514:2;24518:7;24498:9;:28::i;:::-;24229:305;;;:::o;36163:256::-;36260:7;36296:23;36313:5;36296:16;:23::i;:::-;36288:5;:31;36280:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36385:12;:19;36398:5;36385:19;;;;;;;;;;;;;;;:26;36405:5;36385:26;;;;;;;;;;;;36378:33;;36163:256;;;;:::o;24605:151::-;24709:39;24726:4;24732:2;24736:7;24709:39;;;;;;;;;;;;:16;:39::i;:::-;24605:151;;;:::o;43087:342::-;43146:16;43175:18;43196:17;43206:6;43196:9;:17::i;:::-;43175:38;;43226:25;43268:10;43254:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43226:53;;43294:9;43290:106;43309:10;43305:1;:14;43290:106;;;43354:30;43374:6;43382:1;43354:19;:30::i;:::-;43340:8;43349:1;43340:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43321:3;;;;;:::i;:::-;;;;43290:106;;;;43413:8;43406:15;;;;43087:342;;;:::o;36685:233::-;36760:7;36796:30;:28;:30::i;:::-;36788:5;:38;36780:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36893:10;36904:5;36893:17;;;;;;;;;;;;;;;;;;;;;;;;36886:24;;36685:233;;;:::o;43660:102::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43747:7:::1;43731:13;:23;;;;;;;;;;;;:::i;:::-;;43660:102:::0;:::o;21573:239::-;21645:7;21665:13;21681:7;:16;21689:7;21681:16;;;;;;;;;;;;;;;;;;;;;21665:32;;21733:1;21716:19;;:5;:19;;;;21708:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21799:5;21792:12;;;21573:239;;;:::o;21303:208::-;21375:7;21420:1;21403:19;;:5;:19;;;;21395:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21487:9;:16;21497:5;21487:16;;;;;;;;;;;;;;;;21480:23;;21303:208;;;:::o;34445:148::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34552:1:::1;34515:40;;34536:6;;;;;;;;;;;34515:40;;;;;;;;;;;;34583:1;34566:6;;:19;;;;;;;;;;;;;;;;;;34445:148::o:0;44272:194::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44331:13:::1;44371:1;44347:21;:25;;;;:::i;:::-;44331:41;;44399:2;;;;;;;;;;;44391:16;;:23;44408:5;44391:23;;;;;;;;;;;;;;;;;;;;;;;44383:32;;;::::0;::::1;;44442:2;;;;;;;;;;;44434:16;;:23;44451:5;44434:23;;;;;;;;;;;;;;;;;;;;;;;44426:32;;;::::0;::::1;;34085:1;44272:194::o:0;42532:547::-;42586:14;42603:13;:11;:13::i;:::-;42586:30;;42637:7;;;;;;;;;;;42636:8;42627:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42716:2;42710:3;:8;42701:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;42832:9;;42824:5;:17;;;;:::i;:::-;42818:3;42809:6;:12;;;;:::i;:::-;:32;42800:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;42923:3;42914:6;;:12;;;;:::i;:::-;42901:9;:25;;42892:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42986:9;42982:90;43001:3;42997:1;:7;42982:90;;;43025:35;43036:10;43057:1;43048:6;:10;;;;:::i;:::-;43025:9;:35::i;:::-;43006:3;;;;;:::i;:::-;;;;42982:90;;;;42532:547;;:::o;33794:87::-;33840:7;33867:6;;;;;;;;;;;33860:13;;33794:87;:::o;43437:93::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43513:9:::1;43504:6;:18;;;;43437:93:::0;:::o;22048:104::-;22104:13;22137:7;22130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22048:104;:::o;43770:81::-;43811:7;43837:6;;43830:13;;43770:81;:::o;23632:295::-;23747:12;:10;:12::i;:::-;23735:24;;:8;:24;;;;23727:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23847:8;23802:18;:32;23821:12;:10;:12::i;:::-;23802:32;;;;;;;;;;;;;;;:42;23835:8;23802:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23900:8;23871:48;;23886:12;:10;:12::i;:::-;23871:48;;;23910:8;23871:48;;;;;;:::i;:::-;;;;;;;;23632:295;;:::o;24827:285::-;24959:41;24978:12;:10;:12::i;:::-;24992:7;24959:18;:41::i;:::-;24951:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25065:39;25079:4;25085:2;25089:7;25098:5;25065:13;:39::i;:::-;24827:285;;;;:::o;22223:360::-;22296:13;22330:16;22338:7;22330;:16::i;:::-;22322:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22411:21;22435:10;:8;:10::i;:::-;22411:34;;22487:1;22469:7;22463:21;:25;:112;;;;;;;;;;;;;;;;;22528:7;22537:18;:7;:16;:18::i;:::-;22511:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22463:112;22456:119;;;22223:360;;;:::o;43859:323::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43959:9:::1;;43948:7;:20;;43939:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44014:14;44031:13;:11;:13::i;:::-;44014:30;;44059:9;44055:87;44074:7;44070:1;:11;44055:87;;;44102:28;44113:3;44127:1;44118:6;:10;;;;:::i;:::-;44102:9;:28::i;:::-;44083:3;;;;;:::i;:::-;;;;44055:87;;;;44167:7;44154:9;;:20;;;;;;;:::i;:::-;;;;;;;;34085:1;43859:323:::0;;:::o;23998:164::-;24095:4;24119:18;:25;24138:5;24119:25;;;;;;;;;;;;;;;:35;24145:8;24119:35;;;;;;;;;;;;;;;;;;;;;;;;;24112:42;;23998:164;;;;:::o;34748:244::-;34025:12;:10;:12::i;:::-;34014:23;;:7;:5;:7::i;:::-;:23;;;34006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34857:1:::1;34837:22;;:8;:22;;;;34829:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34947:8;34918:38;;34939:6;;;;;;;;;;;34918:38;;;;;;;;;;;;34976:8;34967:6;;:17;;;;;;;;;;;;;;;;;;34748:244:::0;:::o;5363:422::-;5423:4;5631:12;5742:7;5730:20;5722:28;;5776:1;5769:4;:8;5762:15;;;5363:422;;;:::o;32657:93::-;;;;:::o;20947:292::-;21049:4;21088:25;21073:40;;;:11;:40;;;;:105;;;;21145:33;21130:48;;;:11;:48;;;;21073:105;:158;;;;21195:36;21219:11;21195:23;:36::i;:::-;21073:158;21066:165;;20947:292;;;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;26579:127::-;26644:4;26696:1;26668:30;;:7;:16;26676:7;26668:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26661:37;;26579:127;;;:::o;30462:174::-;30564:2;30537:15;:24;30553:7;30537:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30620:7;30616:2;30582:46;;30591:23;30606:7;30591:14;:23::i;:::-;30582:46;;;;;;;;;;;;30462:174;;:::o;26873:348::-;26966:4;26991:16;26999:7;26991;:16::i;:::-;26983:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27067:13;27083:23;27098:7;27083:14;:23::i;:::-;27067:39;;27136:5;27125:16;;:7;:16;;;:51;;;;27169:7;27145:31;;:20;27157:7;27145:11;:20::i;:::-;:31;;;27125:51;:87;;;;27180:32;27197:5;27204:7;27180:16;:32::i;:::-;27125:87;27117:96;;;26873:348;;;;:::o;29800:544::-;29925:4;29898:31;;:23;29913:7;29898:14;:23::i;:::-;:31;;;29890:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30008:1;29994:16;;:2;:16;;;;29986:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30064:39;30085:4;30091:2;30095:7;30064:20;:39::i;:::-;30168:29;30185:1;30189:7;30168:8;:29::i;:::-;30229:1;30210:9;:15;30220:4;30210:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30258:1;30241:9;:13;30251:2;30241:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30289:2;30270:7;:16;30278:7;30270:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30328:7;30324:2;30309:27;;30318:4;30309:27;;;;;;;;;;;;29800:544;;;:::o;27563:110::-;27639:26;27649:2;27653:7;27639:26;;;;;;;;;;;;:9;:26::i;:::-;27563:110;;:::o;25994:272::-;26108:28;26118:4;26124:2;26128:7;26108:9;:28::i;:::-;26155:48;26178:4;26184:2;26188:7;26197:5;26155:22;:48::i;:::-;26147:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25994:272;;;;:::o;43538:114::-;43598:13;43631;43624:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43538:114;:::o;1978:723::-;2034:13;2264:1;2255:5;:10;2251:53;;;2282:10;;;;;;;;;;;;;;;;;;;;;2251:53;2314:12;2329:5;2314:20;;2345:14;2370:78;2385:1;2377:4;:9;2370:78;;2403:8;;;;;:::i;:::-;;;;2434:2;2426:10;;;;;:::i;:::-;;;2370:78;;;2458:19;2490:6;2480:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2458:39;;2508:154;2524:1;2515:5;:10;2508:154;;2552:1;2542:11;;;;;:::i;:::-;;;2619:2;2611:5;:10;;;;:::i;:::-;2598:2;:24;;;;:::i;:::-;2585:39;;2568:6;2575;2568:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2648:2;2639:11;;;;;:::i;:::-;;;2508:154;;;2686:6;2672:21;;;;;1978:723;;;;:::o;1563:157::-;1648:4;1687:25;1672:40;;;:11;:40;;;;1665:47;;1563:157;;;:::o;37531:555::-;37641:45;37668:4;37674:2;37678:7;37641:26;:45::i;:::-;37719:1;37703:18;;:4;:18;;;37699:187;;;37738:40;37770:7;37738:31;:40::i;:::-;37699:187;;;37808:2;37800:10;;:4;:10;;;37796:90;;37827:47;37860:4;37866:7;37827:32;:47::i;:::-;37796:90;37699:187;37914:1;37900:16;;:2;:16;;;37896:183;;;37933:45;37970:7;37933:36;:45::i;:::-;37896:183;;;38006:4;38000:10;;:2;:10;;;37996:83;;38027:40;38055:2;38059:7;38027:27;:40::i;:::-;37996:83;37896:183;37531:555;;;:::o;27900:250::-;27996:18;28002:2;28006:7;27996:5;:18::i;:::-;28033:54;28064:1;28068:2;28072:7;28081:5;28033:22;:54::i;:::-;28025:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27900:250;;;:::o;31201:843::-;31322:4;31348:15;:2;:13;;;:15::i;:::-;31344:693;;;31400:2;31384:36;;;31421:12;:10;:12::i;:::-;31435:4;31441:7;31450:5;31384:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31380:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31647:1;31630:6;:13;:18;31626:341;;;31673:60;;;;;;;;;;:::i;:::-;;;;;;;;31626:341;31917:6;31911:13;31902:6;31898:2;31894:15;31887:38;31380:602;31517:45;;;31507:55;;;:6;:55;;;;31500:62;;;;;31344:693;32021:4;32014:11;;31201:843;;;;;;;:::o;38809:164::-;38913:10;:17;;;;38886:15;:24;38902:7;38886:24;;;;;;;;;;;:44;;;;38941:10;38957:7;38941:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38809:164;:::o;39600:988::-;39866:22;39916:1;39891:22;39908:4;39891:16;:22::i;:::-;:26;;;;:::i;:::-;39866:51;;39928:18;39949:17;:26;39967:7;39949:26;;;;;;;;;;;;39928:47;;40096:14;40082:10;:28;40078:328;;40127:19;40149:12;:18;40162:4;40149:18;;;;;;;;;;;;;;;:34;40168:14;40149:34;;;;;;;;;;;;40127:56;;40233:11;40200:12;:18;40213:4;40200:18;;;;;;;;;;;;;;;:30;40219:10;40200:30;;;;;;;;;;;:44;;;;40350:10;40317:17;:30;40335:11;40317:30;;;;;;;;;;;:43;;;;40078:328;;40502:17;:26;40520:7;40502:26;;;;;;;;;;;40495:33;;;40546:12;:18;40559:4;40546:18;;;;;;;;;;;;;;;:34;40565:14;40546:34;;;;;;;;;;;40539:41;;;39600:988;;;;:::o;40883:1079::-;41136:22;41181:1;41161:10;:17;;;;:21;;;;:::i;:::-;41136:46;;41193:18;41214:15;:24;41230:7;41214:24;;;;;;;;;;;;41193:45;;41565:19;41587:10;41598:14;41587:26;;;;;;;;;;;;;;;;;;;;;;;;41565:48;;41651:11;41626:10;41637;41626:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41762:10;41731:15;:28;41747:11;41731:28;;;;;;;;;;;:41;;;;41903:15;:24;41919:7;41903:24;;;;;;;;;;;41896:31;;;41938:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40883:1079;;;;:::o;38387:221::-;38472:14;38489:20;38506:2;38489:16;:20::i;:::-;38472:37;;38547:7;38520:12;:16;38533:2;38520:16;;;;;;;;;;;;;;;:24;38537:6;38520:24;;;;;;;;;;;:34;;;;38594:6;38565:17;:26;38583:7;38565:26;;;;;;;;;;;:35;;;;38387:221;;;:::o;28486:382::-;28580:1;28566:16;;:2;:16;;;;28558:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28639:16;28647:7;28639;:16::i;:::-;28638:17;28630:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28701:45;28730:1;28734:2;28738:7;28701:20;:45::i;:::-;28776:1;28759:9;:13;28769:2;28759:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28807:2;28788:7;:16;28796:7;28788:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28852:7;28848:2;28827:33;;28844:1;28827:33;;;;;;;;;;;;28486:382;;:::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:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:179::-;;6436:46;6478:3;6470:6;6436:46;:::i;:::-;6514:4;6509:3;6505:14;6491:28;;6426:99;;;;:::o;6531:118::-;6618:24;6636:5;6618:24;:::i;:::-;6613:3;6606:37;6596:53;;:::o;6685:732::-;;6833:54;6881:5;6833:54;:::i;:::-;6903:86;6982:6;6977:3;6903:86;:::i;:::-;6896:93;;7013:56;7063:5;7013:56;:::i;:::-;7092:7;7123:1;7108:284;7133:6;7130:1;7127:13;7108:284;;;7209:6;7203:13;7236:63;7295:3;7280:13;7236:63;:::i;:::-;7229:70;;7322:60;7375:6;7322:60;:::i;:::-;7312:70;;7168:224;7155:1;7152;7148:9;7143:14;;7108:284;;;7112:14;7408:3;7401:10;;6809:608;;;;;;;:::o;7423:109::-;7504:21;7519:5;7504:21;:::i;:::-;7499:3;7492:34;7482:50;;:::o;7538:360::-;;7652:38;7684:5;7652:38;:::i;:::-;7706:70;7769:6;7764:3;7706:70;:::i;:::-;7699:77;;7785:52;7830:6;7825:3;7818:4;7811:5;7807:16;7785:52;:::i;:::-;7862:29;7884:6;7862:29;:::i;:::-;7857:3;7853:39;7846:46;;7628:270;;;;;:::o;7904:364::-;;8020:39;8053:5;8020:39;:::i;:::-;8075:71;8139:6;8134:3;8075:71;:::i;:::-;8068:78;;8155:52;8200:6;8195:3;8188:4;8181:5;8177:16;8155:52;:::i;:::-;8232:29;8254:6;8232:29;:::i;:::-;8227:3;8223:39;8216:46;;7996:272;;;;;:::o;8274:377::-;;8408:39;8441:5;8408:39;:::i;:::-;8463:89;8545:6;8540:3;8463:89;:::i;:::-;8456:96;;8561:52;8606:6;8601:3;8594:4;8587:5;8583:16;8561:52;:::i;:::-;8638:6;8633:3;8629:16;8622:23;;8384:267;;;;;:::o;8657:309::-;;8820:67;8884:2;8879:3;8820:67;:::i;:::-;8813:74;;8917:13;8913:1;8908:3;8904:11;8897:34;8957:2;8952:3;8948:12;8941:19;;8803:163;;;:::o;8972:375::-;;9135:67;9199:2;9194:3;9135:67;:::i;:::-;9128:74;;9232:34;9228:1;9223:3;9219:11;9212:55;9298:13;9293:2;9288:3;9284:12;9277:35;9338:2;9333:3;9329:12;9322:19;;9118:229;;;:::o;9353:382::-;;9516:67;9580:2;9575:3;9516:67;:::i;:::-;9509:74;;9613:34;9609:1;9604:3;9600:11;9593:55;9679:20;9674:2;9669:3;9665:12;9658:42;9726:2;9721:3;9717:12;9710:19;;9499:236;;;:::o;9741:370::-;;9904:67;9968:2;9963:3;9904:67;:::i;:::-;9897:74;;10001:34;9997:1;9992:3;9988:11;9981:55;10067:8;10062:2;10057:3;10053:12;10046:30;10102:2;10097:3;10093:12;10086:19;;9887:224;;;:::o;10117:325::-;;10280:67;10344:2;10339:3;10280:67;:::i;:::-;10273:74;;10377:29;10373:1;10368:3;10364:11;10357:50;10433:2;10428:3;10424:12;10417:19;;10263:179;;;:::o;10448:326::-;;10611:67;10675:2;10670:3;10611:67;:::i;:::-;10604:74;;10708:30;10704:1;10699:3;10695:11;10688:51;10765:2;10760:3;10756:12;10749:19;;10594:180;;;:::o;10780:368::-;;10943:67;11007:2;11002:3;10943:67;:::i;:::-;10936:74;;11040:34;11036:1;11031:3;11027:11;11020:55;11106:6;11101:2;11096:3;11092:12;11085:28;11139:2;11134:3;11130:12;11123:19;;10926:222;;;:::o;11154:323::-;;11317:67;11381:2;11376:3;11317:67;:::i;:::-;11310:74;;11414:27;11410:1;11405:3;11401:11;11394:48;11468:2;11463:3;11459:12;11452:19;;11300:177;;;:::o;11483:368::-;;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11743:34;11739:1;11734:3;11730:11;11723:55;11809:6;11804:2;11799:3;11795:12;11788:28;11842:2;11837:3;11833:12;11826:19;;11629:222;;;:::o;11857:376::-;;12020:67;12084:2;12079:3;12020:67;:::i;:::-;12013:74;;12117:34;12113:1;12108:3;12104:11;12097:55;12183:14;12178:2;12173:3;12169:12;12162:36;12224:2;12219:3;12215:12;12208:19;;12003:230;;;:::o;12239:327::-;;12402:67;12466:2;12461:3;12402:67;:::i;:::-;12395:74;;12499:31;12495:1;12490:3;12486:11;12479:52;12557:2;12552:3;12548:12;12541:19;;12385:181;;;:::o;12572:388::-;;12735:67;12799:2;12794:3;12735:67;:::i;:::-;12728:74;;12832:34;12828:1;12823:3;12819:11;12812:55;12898:26;12893:2;12888:3;12884:12;12877:48;12951:2;12946:3;12942:12;12935:19;;12718:242;;;:::o;12966:374::-;;13129:67;13193:2;13188:3;13129:67;:::i;:::-;13122:74;;13226:34;13222:1;13217:3;13213:11;13206:55;13292:12;13287:2;13282:3;13278:12;13271:34;13331:2;13326:3;13322:12;13315:19;;13112:228;;;:::o;13346:373::-;;13509:67;13573:2;13568:3;13509:67;:::i;:::-;13502:74;;13606:34;13602:1;13597:3;13593:11;13586:55;13672:11;13667:2;13662:3;13658:12;13651:33;13710:2;13705:3;13701:12;13694:19;;13492:227;;;:::o;13725:330::-;;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13985:34;13981:1;13976:3;13972:11;13965:55;14046:2;14041:3;14037:12;14030:19;;13871:184;;;:::o;14061:376::-;;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14321:34;14317:1;14312:3;14308:11;14301:55;14387:14;14382:2;14377:3;14373:12;14366:36;14428:2;14423:3;14419:12;14412:19;;14207:230;;;:::o;14443:330::-;;14606:67;14670:2;14665:3;14606:67;:::i;:::-;14599:74;;14703:34;14699:1;14694:3;14690:11;14683:55;14764:2;14759:3;14755:12;14748:19;;14589:184;;;:::o;14779:373::-;;14942:67;15006:2;15001:3;14942:67;:::i;:::-;14935:74;;15039:34;15035:1;15030:3;15026:11;15019:55;15105:11;15100:2;15095:3;15091:12;15084:33;15143:2;15138:3;15134:12;15127:19;;14925:227;;;:::o;15158:379::-;;15321:67;15385:2;15380:3;15321:67;:::i;:::-;15314:74;;15418:34;15414:1;15409:3;15405:11;15398:55;15484:17;15479:2;15474:3;15470:12;15463:39;15528:2;15523:3;15519:12;15512:19;;15304:233;;;:::o;15543:365::-;;15706:67;15770:2;15765:3;15706:67;:::i;:::-;15699:74;;15803:34;15799:1;15794:3;15790:11;15783:55;15869:3;15864:2;15859:3;15855:12;15848:25;15899:2;15894:3;15890:12;15883:19;;15689:219;;;:::o;15914:323::-;;16077:67;16141:2;16136:3;16077:67;:::i;:::-;16070:74;;16174:27;16170:1;16165:3;16161:11;16154:48;16228:2;16223:3;16219:12;16212:19;;16060:177;;;:::o;16243:381::-;;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16503:34;16499:1;16494:3;16490:11;16483:55;16569:19;16564:2;16559:3;16555:12;16548:41;16615:2;16610:3;16606:12;16599:19;;16389:235;;;:::o;16630:376::-;;16793:67;16857:2;16852:3;16793:67;:::i;:::-;16786:74;;16890:34;16886:1;16881:3;16877:11;16870:55;16956:14;16951:2;16946:3;16942:12;16935:36;16997:2;16992:3;16988:12;16981:19;;16776:230;;;:::o;17012:108::-;17089:24;17107:5;17089:24;:::i;:::-;17084:3;17077:37;17067:53;;:::o;17126:118::-;17213:24;17231:5;17213:24;:::i;:::-;17208:3;17201:37;17191:53;;:::o;17250:435::-;;17452:95;17543:3;17534:6;17452:95;:::i;:::-;17445:102;;17564:95;17655:3;17646:6;17564:95;:::i;:::-;17557:102;;17676:3;17669:10;;17434:251;;;;;:::o;17691:222::-;;17822:2;17811:9;17807:18;17799:26;;17835:71;17903:1;17892:9;17888:17;17879:6;17835:71;:::i;:::-;17789:124;;;;:::o;17919:640::-;;18152:3;18141:9;18137:19;18129:27;;18166:71;18234:1;18223:9;18219:17;18210:6;18166:71;:::i;:::-;18247:72;18315:2;18304:9;18300:18;18291:6;18247:72;:::i;:::-;18329;18397:2;18386:9;18382:18;18373:6;18329:72;:::i;:::-;18448:9;18442:4;18438:20;18433:2;18422:9;18418:18;18411:48;18476:76;18547:4;18538:6;18476:76;:::i;:::-;18468:84;;18119:440;;;;;;;:::o;18565:373::-;;18746:2;18735:9;18731:18;18723:26;;18795:9;18789:4;18785:20;18781:1;18770:9;18766:17;18759:47;18823:108;18926:4;18917:6;18823:108;:::i;:::-;18815:116;;18713:225;;;;:::o;18944:210::-;;19069:2;19058:9;19054:18;19046:26;;19082:65;19144:1;19133:9;19129:17;19120:6;19082:65;:::i;:::-;19036:118;;;;:::o;19160:313::-;;19311:2;19300:9;19296:18;19288:26;;19360:9;19354:4;19350:20;19346:1;19335:9;19331:17;19324:47;19388:78;19461:4;19452:6;19388:78;:::i;:::-;19380:86;;19278:195;;;;:::o;19479:419::-;;19683:2;19672:9;19668:18;19660:26;;19732:9;19726:4;19722:20;19718:1;19707:9;19703:17;19696:47;19760:131;19886:4;19760:131;:::i;:::-;19752:139;;19650:248;;;:::o;19904:419::-;;20108:2;20097:9;20093:18;20085:26;;20157:9;20151:4;20147:20;20143:1;20132:9;20128:17;20121:47;20185:131;20311:4;20185:131;:::i;:::-;20177:139;;20075:248;;;:::o;20329:419::-;;20533:2;20522:9;20518:18;20510:26;;20582:9;20576:4;20572:20;20568:1;20557:9;20553:17;20546:47;20610:131;20736:4;20610:131;:::i;:::-;20602:139;;20500:248;;;:::o;20754:419::-;;20958:2;20947:9;20943:18;20935:26;;21007:9;21001:4;20997:20;20993:1;20982:9;20978:17;20971:47;21035:131;21161:4;21035:131;:::i;:::-;21027:139;;20925:248;;;:::o;21179:419::-;;21383:2;21372:9;21368:18;21360:26;;21432:9;21426:4;21422:20;21418:1;21407:9;21403:17;21396:47;21460:131;21586:4;21460:131;:::i;:::-;21452:139;;21350:248;;;:::o;21604:419::-;;21808:2;21797:9;21793:18;21785:26;;21857:9;21851:4;21847:20;21843:1;21832:9;21828:17;21821:47;21885:131;22011:4;21885:131;:::i;:::-;21877:139;;21775:248;;;:::o;22029:419::-;;22233:2;22222:9;22218:18;22210:26;;22282:9;22276:4;22272:20;22268:1;22257:9;22253:17;22246:47;22310:131;22436:4;22310:131;:::i;:::-;22302:139;;22200:248;;;:::o;22454:419::-;;22658:2;22647:9;22643:18;22635:26;;22707:9;22701:4;22697:20;22693:1;22682:9;22678:17;22671:47;22735:131;22861:4;22735:131;:::i;:::-;22727:139;;22625:248;;;:::o;22879:419::-;;23083:2;23072:9;23068:18;23060:26;;23132:9;23126:4;23122:20;23118:1;23107:9;23103:17;23096:47;23160:131;23286:4;23160:131;:::i;:::-;23152:139;;23050:248;;;:::o;23304:419::-;;23508:2;23497:9;23493:18;23485:26;;23557:9;23551:4;23547:20;23543:1;23532:9;23528:17;23521:47;23585:131;23711:4;23585:131;:::i;:::-;23577:139;;23475:248;;;:::o;23729:419::-;;23933:2;23922:9;23918:18;23910:26;;23982:9;23976:4;23972:20;23968:1;23957:9;23953:17;23946:47;24010:131;24136:4;24010:131;:::i;:::-;24002:139;;23900:248;;;:::o;24154:419::-;;24358:2;24347:9;24343:18;24335:26;;24407:9;24401:4;24397:20;24393:1;24382:9;24378:17;24371:47;24435:131;24561:4;24435:131;:::i;:::-;24427:139;;24325:248;;;:::o;24579:419::-;;24783:2;24772:9;24768:18;24760:26;;24832:9;24826:4;24822:20;24818:1;24807:9;24803:17;24796:47;24860:131;24986:4;24860:131;:::i;:::-;24852:139;;24750:248;;;:::o;25004:419::-;;25208:2;25197:9;25193:18;25185:26;;25257:9;25251:4;25247:20;25243:1;25232:9;25228:17;25221:47;25285:131;25411:4;25285:131;:::i;:::-;25277:139;;25175:248;;;:::o;25429:419::-;;25633:2;25622:9;25618:18;25610:26;;25682:9;25676:4;25672:20;25668:1;25657:9;25653:17;25646:47;25710:131;25836:4;25710:131;:::i;:::-;25702:139;;25600:248;;;:::o;25854:419::-;;26058:2;26047:9;26043:18;26035:26;;26107:9;26101:4;26097:20;26093:1;26082:9;26078:17;26071:47;26135:131;26261:4;26135:131;:::i;:::-;26127:139;;26025:248;;;:::o;26279:419::-;;26483:2;26472:9;26468:18;26460:26;;26532:9;26526:4;26522:20;26518:1;26507:9;26503:17;26496:47;26560:131;26686:4;26560:131;:::i;:::-;26552:139;;26450:248;;;:::o;26704:419::-;;26908:2;26897:9;26893:18;26885:26;;26957:9;26951:4;26947:20;26943:1;26932:9;26928:17;26921:47;26985:131;27111:4;26985:131;:::i;:::-;26977:139;;26875:248;;;:::o;27129:419::-;;27333:2;27322:9;27318:18;27310:26;;27382:9;27376:4;27372:20;27368:1;27357:9;27353:17;27346:47;27410:131;27536:4;27410:131;:::i;:::-;27402:139;;27300:248;;;:::o;27554:419::-;;27758:2;27747:9;27743:18;27735:26;;27807:9;27801:4;27797:20;27793:1;27782:9;27778:17;27771:47;27835:131;27961:4;27835:131;:::i;:::-;27827:139;;27725:248;;;:::o;27979:419::-;;28183:2;28172:9;28168:18;28160:26;;28232:9;28226:4;28222:20;28218:1;28207:9;28203:17;28196:47;28260:131;28386:4;28260:131;:::i;:::-;28252:139;;28150:248;;;:::o;28404:419::-;;28608:2;28597:9;28593:18;28585:26;;28657:9;28651:4;28647:20;28643:1;28632:9;28628:17;28621:47;28685:131;28811:4;28685:131;:::i;:::-;28677:139;;28575:248;;;:::o;28829:419::-;;29033:2;29022:9;29018:18;29010:26;;29082:9;29076:4;29072:20;29068:1;29057:9;29053:17;29046:47;29110:131;29236:4;29110:131;:::i;:::-;29102:139;;29000:248;;;:::o;29254:222::-;;29385:2;29374:9;29370:18;29362:26;;29398:71;29466:1;29455:9;29451:17;29442:6;29398:71;:::i;:::-;29352:124;;;;:::o;29482:283::-;;29548:2;29542:9;29532:19;;29590:4;29582:6;29578:17;29697:6;29685:10;29682:22;29661:18;29649:10;29646:34;29643:62;29640:2;;;29708:18;;:::i;:::-;29640:2;29748:10;29744:2;29737:22;29522:243;;;;:::o;29771:331::-;;29922:18;29914:6;29911:30;29908:2;;;29944:18;;:::i;:::-;29908:2;30029:4;30025:9;30018:4;30010:6;30006:17;30002:33;29994:41;;30090:4;30084;30080:15;30072:23;;29837:265;;;:::o;30108:332::-;;30260:18;30252:6;30249:30;30246:2;;;30282:18;;:::i;:::-;30246:2;30367:4;30363:9;30356:4;30348:6;30344:17;30340:33;30332:41;;30428:4;30422;30418:15;30410:23;;30175:265;;;:::o;30446:132::-;;30536:3;30528:11;;30566:4;30561:3;30557:14;30549:22;;30518:60;;;:::o;30584:114::-;;30685:5;30679:12;30669:22;;30658:40;;;:::o;30704:98::-;;30789:5;30783:12;30773:22;;30762:40;;;:::o;30808:99::-;;30894:5;30888:12;30878:22;;30867:40;;;:::o;30913:113::-;;31015:4;31010:3;31006:14;30998:22;;30988:38;;;:::o;31032:184::-;;31165:6;31160:3;31153:19;31205:4;31200:3;31196:14;31181:29;;31143:73;;;;:::o;31222:168::-;;31339:6;31334:3;31327:19;31379:4;31374:3;31370:14;31355:29;;31317:73;;;;:::o;31396:169::-;;31514:6;31509:3;31502:19;31554:4;31549:3;31545:14;31530:29;;31492:73;;;;:::o;31571:148::-;;31710:3;31695:18;;31685:34;;;;:::o;31725:305::-;;31784:20;31802:1;31784:20;:::i;:::-;31779:25;;31818:20;31836:1;31818:20;:::i;:::-;31813:25;;31972:1;31904:66;31900:74;31897:1;31894:81;31891:2;;;31978:18;;:::i;:::-;31891:2;32022:1;32019;32015:9;32008:16;;31769:261;;;;:::o;32036:185::-;;32093:20;32111:1;32093:20;:::i;:::-;32088:25;;32127:20;32145:1;32127:20;:::i;:::-;32122:25;;32166:1;32156:2;;32171:18;;:::i;:::-;32156:2;32213:1;32210;32206:9;32201:14;;32078:143;;;;:::o;32227:348::-;;32290:20;32308:1;32290:20;:::i;:::-;32285:25;;32324:20;32342:1;32324:20;:::i;:::-;32319:25;;32512:1;32444:66;32440:74;32437:1;32434:81;32429:1;32422:9;32415:17;32411:105;32408:2;;;32519:18;;:::i;:::-;32408:2;32567:1;32564;32560:9;32549:20;;32275:300;;;;:::o;32581:191::-;;32641:20;32659:1;32641:20;:::i;:::-;32636:25;;32675:20;32693:1;32675:20;:::i;:::-;32670:25;;32714:1;32711;32708:8;32705:2;;;32719:18;;:::i;:::-;32705:2;32764:1;32761;32757:9;32749:17;;32626:146;;;;:::o;32778:96::-;;32844:24;32862:5;32844:24;:::i;:::-;32833:35;;32823:51;;;:::o;32880:90::-;;32957:5;32950:13;32943:21;32932:32;;32922:48;;;:::o;32976:149::-;;33052:66;33045:5;33041:78;33030:89;;33020:105;;;:::o;33131:126::-;;33208:42;33201:5;33197:54;33186:65;;33176:81;;;:::o;33263:77::-;;33329:5;33318:16;;33308:32;;;:::o;33346:154::-;33430:6;33425:3;33420;33407:30;33492:1;33483:6;33478:3;33474:16;33467:27;33397:103;;;:::o;33506:307::-;33574:1;33584:113;33598:6;33595:1;33592:13;33584:113;;;33683:1;33678:3;33674:11;33668:18;33664:1;33659:3;33655:11;33648:39;33620:2;33617:1;33613:10;33608:15;;33584:113;;;33715:6;33712:1;33709:13;33706:2;;;33795:1;33786:6;33781:3;33777:16;33770:27;33706:2;33555:258;;;;:::o;33819:320::-;;33900:1;33894:4;33890:12;33880:22;;33947:1;33941:4;33937:12;33968:18;33958:2;;34024:4;34016:6;34012:17;34002:27;;33958:2;34086;34078:6;34075:14;34055:18;34052:38;34049:2;;;34105:18;;:::i;:::-;34049:2;33870:269;;;;:::o;34145:233::-;;34207:24;34225:5;34207:24;:::i;:::-;34198:33;;34253:66;34246:5;34243:77;34240:2;;;34323:18;;:::i;:::-;34240:2;34370:1;34363:5;34359:13;34352:20;;34188:190;;;:::o;34384:176::-;;34433:20;34451:1;34433:20;:::i;:::-;34428:25;;34467:20;34485:1;34467:20;:::i;:::-;34462:25;;34506:1;34496:2;;34511:18;;:::i;:::-;34496:2;34552:1;34549;34545:9;34540:14;;34418:142;;;;:::o;34566:180::-;34614:77;34611:1;34604:88;34711:4;34708:1;34701:15;34735:4;34732:1;34725:15;34752:180;34800:77;34797:1;34790:88;34897:4;34894:1;34887:15;34921:4;34918:1;34911:15;34938:180;34986:77;34983:1;34976:88;35083:4;35080:1;35073:15;35107:4;35104:1;35097:15;35124:180;35172:77;35169:1;35162:88;35269:4;35266:1;35259:15;35293:4;35290:1;35283:15;35310:102;;35402:2;35398:7;35393:2;35386:5;35382:14;35378:28;35368:38;;35358:54;;;:::o;35418:122::-;35491:24;35509:5;35491:24;:::i;:::-;35484:5;35481:35;35471:2;;35530:1;35527;35520:12;35471:2;35461:79;:::o;35546:116::-;35616:21;35631:5;35616:21;:::i;:::-;35609:5;35606:32;35596:2;;35652:1;35649;35642:12;35596:2;35586:76;:::o;35668:120::-;35740:23;35757:5;35740:23;:::i;:::-;35733:5;35730:34;35720:2;;35778:1;35775;35768:12;35720:2;35710:78;:::o;35794:122::-;35867:24;35885:5;35867:24;:::i;:::-;35860:5;35857:35;35847:2;;35906:1;35903;35896:12;35847:2;35837:79;:::o

Swarm Source

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