ETH Price: $3,418.37 (-0.60%)
Gas: 2 Gwei

Token

goblindiedie (GOBLINDIE)
 

Overview

Max Total Supply

10,000 GOBLINDIE

Holders

4,681

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
airdeni.eth
Balance
2 GOBLINDIE
0x1e6c02d4f25dff92b8355abbac1b9522e0a7e8e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
goblindiedieNFT

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@*  %@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@  @@@@    *@@@@@@@@@@@@@@  @@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@   .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@# %@@@@@@@@@   @@ /@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@@ /@  /@@  @@@@@ @@@@@   @@@@@@@@ @@@@@@@@@@@@@@@@@@@@./@*         .@@@@@@@@@@@@@@
//@@@@@@@@@@* @@@@@@@@@@@@  @@ @@@@@@@@@@@@ (@%   &@@@@@@  @@@,@@@@@@@ #@@@@%   @@@@@@ #@@@@         @@  @@@@@@@@@@@@@@@@. @/ @@@@@@@@@@@@  @@@@@@@@@@@@
//@@@@@@@@@@ /@@@@@@@@@@@@@      @  @@@    # @@@@@@@@@. @@ (@@@ @@@@@  @@@@@@@  @@@@@@  @@ &@@@@@@@@@  @ @@@@@@@  @@@@@@@/ @  @@@@@@@@@@@@@  @@@@@@@@@@@
//@@@@@@@@@@  @@@@@@@@@@@@    @@@@@@@@@@@@@   @@@@@@@@@@ @/ @@@& @@@/ @@@@@@@@  @@@@@@@   .@@@@@@@@@@@@ & @@@@@@  (@@@@@@  @  &@@@@@@@@@@@@@( @@@@@@@@@@
//@@@@@@@@@@@  .@@@@@.  ,@@@   @@@@@@@@@@@@   @@@@@@@@@  @@ .@@@  @@@ @@@@@@@@  @@@@@@@@ # @@@@@@@@@@@@@   @@@@@   @@@@@  @@@  @@@@@@@@@@@@@@  @@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@%  @@@@@@@@@@@@@  %    ,@@  @@@  @@@@ @@@@ &@@@@@  (@@@@@@@@/   @@@@@@@@@@@* @  @@@* @ @@@@. @@@@# @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@  @ ,@@@@@@@@@@@@ *@@@@@ @@@@@@@@@@@@@@@@@@@@@@  @ %@@@@@@@  @@@@, @@ @@  @@  @@@@@@ @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@ %@@@@@@@@@@@@@@ *@  @@@@@@@  &@@( @@@@@@@@@@@@ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@   @@@@@@@@@@@@@@@@# @  @@@@@@@ @@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@      .@@@@@@  @@@@       @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@   @@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@*   %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

    /**
     * @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);
}

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}



contract goblindiedieNFT is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public _partslink;
    bool public byebye = false;
    uint256 public goblins = 10000;
    uint256 public goblinbyebye = 1;
    mapping(address => uint256) public howmanygobblins;

    constructor() ERC721A("goblindiedie", "GOBLINDIE") {}

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

    function makingobblin() external nonReentrant {
        uint256 totalgobnlinsss = totalSupply();
        require(byebye);
        require(totalgobnlinsss + goblinbyebye <= goblins);
        require(msg.sender == tx.origin);
        require(howmanygobblins[msg.sender] < goblinbyebye);
        _safeMint(msg.sender, goblinbyebye);
        howmanygobblins[msg.sender] += goblinbyebye;
    }

    function makegoblinnnfly(address lords, uint256 _goblins) public onlyOwner {
        uint256 totalgobnlinsss = totalSupply();
        require(totalgobnlinsss + _goblins <= goblins);
        _safeMint(lords, _goblins);
    }

    function makegoblngobyebye(bool _bye) external onlyOwner {
        byebye = _bye;
    }

    function spredgobblins(uint256 _byebye) external onlyOwner {
        goblinbyebye = _byebye;
    }

    function makegobblinhaveparts(string memory parts) external onlyOwner {
        _partslink = parts;
    }

    function sumthinboutfunds() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_partslink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"byebye","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"goblinbyebye","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanygobblins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"parts","type":"string"}],"name":"makegobblinhaveparts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"_goblins","type":"uint256"}],"name":"makegoblinnnfly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bye","type":"bool"}],"name":"makegoblngobyebye","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makingobblin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_byebye","type":"uint256"}],"name":"spredgobblins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sumthinboutfunds","outputs":[],"stateMutability":"payable","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"}]

60806040526000600a60006101000a81548160ff021916908315150217905550612710600b556001600c553480156200003757600080fd5b506040518060400160405280600c81526020017f676f626c696e64696564696500000000000000000000000000000000000000008152506040518060400160405280600981526020017f474f424c494e44494500000000000000000000000000000000000000000000008152508160019080519060200190620000bc929190620001d4565b508060029080519060200190620000d5929190620001d4565b505050620000f8620000ec6200010660201b60201c565b6200010e60201b60201c565b6001600881905550620002e9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e29062000284565b90600052602060002090601f01602090048101928262000206576000855562000252565b82601f106200022157805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025157825182559160200191906001019062000234565b5b50905062000261919062000265565b5090565b5b808211156200028057600081600090555060010162000266565b5090565b600060028204905060018216806200029d57607f821691505b60208210811415620002b457620002b3620002ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f9c80620002f96000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d519f39b11610064578063d519f39b1461067b578063e985e9c5146106a4578063ed64da9f146106e1578063f2fde38b146106f8576101cd565b8063a22cb465146105c1578063b88d4fde146105ea578063c87b56dd14610613578063ced33bc414610650576101cd565b80638d80854e116100d15780638d80854e146105175780638da5cb5b1461054057806395d89b411461056b578063a01ffdff14610596576101cd565b8063715018a61461049a57806375d2a90e146104b157806383ae807b146104da576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103ba5780636352211e146103f75780636e63b1041461043457806370a082311461045d576101cd565b80632f745c591461031f5780633232deeb1461035c57806333958a181461038757806342842e0e14610391576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806325f08cf2146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d7a565b610721565b6040516102069190613285565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b60405161023191906132a0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e0d565b6108fd565b60405161026e919061321e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d15565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190613542565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c0f565b610aa4565b005b34801561030057600080fd5b50610309610ab4565b6040516103169190613542565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612d15565b610aba565b6040516103539190613542565b60405180910390f35b34801561036857600080fd5b50610371610cac565b60405161037e91906132a0565b60405180910390f35b61038f610d3a565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612c0f565b610e2f565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612e0d565b610e4f565b6040516103ee9190613542565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612e0d565b610ea2565b60405161042b919061321e565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612dcc565b610eb8565b005b34801561046957600080fd5b50610484600480360381019061047f9190612baa565b610f4e565b6040516104919190613542565b60405180910390f35b3480156104a657600080fd5b506104af611037565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612e0d565b6110bf565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612baa565b611145565b60405161050e9190613542565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612d51565b61115d565b005b34801561054c57600080fd5b506105556111f6565b604051610562919061321e565b60405180910390f35b34801561057757600080fd5b50610580611220565b60405161058d91906132a0565b60405180910390f35b3480156105a257600080fd5b506105ab6112b2565b6040516105b89190613285565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190612cd9565b6112c5565b005b3480156105f657600080fd5b50610611600480360381019061060c9190612c5e565b611446565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612e0d565b6114a2565b60405161064791906132a0565b60405180910390f35b34801561065c57600080fd5b5061066561154a565b6040516106729190613542565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612d15565b611550565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612bd3565b611601565b6040516106d89190613285565b60405180910390f35b3480156106ed57600080fd5b506106f6611695565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612baa565b611818565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611910565b5b9050919050565b60606001805461087a906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546108a6906137a3565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b60006109088261197a565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613522565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610ea2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613442565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d611987565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a46611987565b611601565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613362565b60405180910390fd5b610a9683838361198f565b505050565b60008054905090565b610aaf838383611a41565b505050565b600c5481565b6000610ac583610f4e565b8210610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906132c2565b60405180910390fd5b6000610b10610a9b565b905060008060005b83811015610c6a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c53578195505050505050610ca6565b83806001019450505b508080600101915050610b18565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134c2565b60405180910390fd5b92915050565b60098054610cb9906137a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce5906137a3565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b505050505081565b610d42611987565b73ffffffffffffffffffffffffffffffffffffffff16610d606111f6565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad906133c2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ddc90613209565b60006040518083038185875af1925050503d8060008114610e19576040519150601f19603f3d011682016040523d82523d6000602084013e610e1e565b606091505b5050905080610e2c57600080fd5b50565b610e4a83838360405180602001604052806000815250611446565b505050565b6000610e59610a9b565b8210610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613322565b60405180910390fd5b819050919050565b6000610ead82611f81565b600001519050919050565b610ec0611987565b73ffffffffffffffffffffffffffffffffffffffff16610ede6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906133c2565b60405180910390fd5b8060099080519060200190610f4a929190612994565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613382565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61103f611987565b73ffffffffffffffffffffffffffffffffffffffff1661105d6111f6565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906133c2565b60405180910390fd5b6110bd600061211b565b565b6110c7611987565b73ffffffffffffffffffffffffffffffffffffffff166110e56111f6565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906133c2565b60405180910390fd5b80600c8190555050565b600d6020528060005260406000206000915090505481565b611165611987565b73ffffffffffffffffffffffffffffffffffffffff166111836111f6565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906133c2565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461122f906137a3565b80601f016020809104026020016040519081016040528092919081815260200182805461125b906137a3565b80156112a85780601f1061127d576101008083540402835291602001916112a8565b820191906000526020600020905b81548152906001019060200180831161128b57829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b6112cd611987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613402565b60405180910390fd5b8060066000611348611987565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f5611987565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143a9190613285565b60405180910390a35050565b611451848484611a41565b61145d848484846121e1565b61149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613462565b60405180910390fd5b50505050565b60606114ad8261197a565b6114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906133e2565b60405180910390fd5b60006114f6612378565b90506000815114156115175760405180602001604052806000815250611542565b806115218461240a565b6040516020016115329291906131e5565b6040516020818303038152906040525b915050919050565b600b5481565b611558611987565b73ffffffffffffffffffffffffffffffffffffffff166115766111f6565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c3906133c2565b60405180910390fd5b60006115d6610a9b565b9050600b5482826115e79190613632565b11156115f257600080fd5b6115fc83836125b7565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260085414156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d2906134e2565b60405180910390fd5b600260088190555060006116ed610a9b565b9050600a60009054906101000a900460ff1661170857600080fd5b600b54600c54826117199190613632565b111561172457600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175c57600080fd5b600c54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117a957600080fd5b6117b533600c546125b7565b600c54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118069190613632565b92505081905550506001600881905550565b611820611987565b73ffffffffffffffffffffffffffffffffffffffff1661183e6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906133c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb906132e2565b60405180910390fd5b61190d8161211b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a4c82611f81565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a73611987565b73ffffffffffffffffffffffffffffffffffffffff161480611acf5750611a98611987565b73ffffffffffffffffffffffffffffffffffffffff16611ab7846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aeb5750611aea8260000151611ae5611987565b611601565b5b905080611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613422565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b96906133a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613342565b60405180910390fd5b611c1c85858560016125d5565b611c2c600084846000015161198f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1157611e708161197a565b15611f105782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f7a85858560016125db565b5050505050565b611f89612a1a565b611f928261197a565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613302565b60405180910390fd5b60008290505b600081106120da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120cb578092505050612116565b50808060019003915050611fd7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90613502565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122028473ffffffffffffffffffffffffffffffffffffffff166125e1565b1561236b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222b611987565b8786866040518563ffffffff1660e01b815260040161224d9493929190613239565b602060405180830381600087803b15801561226757600080fd5b505af192505050801561229857506040513d601f19601f820116820180604052508101906122959190612da3565b60015b61231b573d80600081146122c8576040519150601f19603f3d011682016040523d82523d6000602084013e6122cd565b606091505b50600081511415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90613462565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612370565b600190505b949350505050565b606060098054612387906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546123b3906137a3565b80156124005780601f106123d557610100808354040283529160200191612400565b820191906000526020600020905b8154815290600101906020018083116123e357829003601f168201915b5050505050905090565b60606000821415612452576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b2565b600082905060005b6000821461248457808061246d90613806565b915050600a8261247d9190613688565b915061245a565b60008167ffffffffffffffff8111156124c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124f85781602001600182028036833780820191505090505b5090505b600085146125ab5760018261251191906136b9565b9150600a85612520919061384f565b603061252c9190613632565b60f81b818381518110612568577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a49190613688565b94506124fc565b8093505050505b919050565b6125d1828260405180602001604052806000815250612604565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6126118383836001612616565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390613482565b60405180910390fd5b60008414156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c7906134a2565b60405180910390fd5b6126dd60008683876125d5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561297757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129625761292260008884886121e1565b612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890613462565b60405180910390fd5b5b818060010192505080806001019150506128ab565b50806000819055505061298d60008683876125db565b5050505050565b8280546129a0906137a3565b90600052602060002090601f0160209004810192826129c25760008555612a09565b82601f106129db57805160ff1916838001178555612a09565b82800160010185558215612a09579182015b82811115612a085782518255916020019190600101906129ed565b5b509050612a169190612a54565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a6d576000816000905550600101612a55565b5090565b6000612a84612a7f84613582565b61355d565b905082815260208101848484011115612a9c57600080fd5b612aa7848285613761565b509392505050565b6000612ac2612abd846135b3565b61355d565b905082815260208101848484011115612ada57600080fd5b612ae5848285613761565b509392505050565b600081359050612afc81613f0a565b92915050565b600081359050612b1181613f21565b92915050565b600081359050612b2681613f38565b92915050565b600081519050612b3b81613f38565b92915050565b600082601f830112612b5257600080fd5b8135612b62848260208601612a71565b91505092915050565b600082601f830112612b7c57600080fd5b8135612b8c848260208601612aaf565b91505092915050565b600081359050612ba481613f4f565b92915050565b600060208284031215612bbc57600080fd5b6000612bca84828501612aed565b91505092915050565b60008060408385031215612be657600080fd5b6000612bf485828601612aed565b9250506020612c0585828601612aed565b9150509250929050565b600080600060608486031215612c2457600080fd5b6000612c3286828701612aed565b9350506020612c4386828701612aed565b9250506040612c5486828701612b95565b9150509250925092565b60008060008060808587031215612c7457600080fd5b6000612c8287828801612aed565b9450506020612c9387828801612aed565b9350506040612ca487828801612b95565b925050606085013567ffffffffffffffff811115612cc157600080fd5b612ccd87828801612b41565b91505092959194509250565b60008060408385031215612cec57600080fd5b6000612cfa85828601612aed565b9250506020612d0b85828601612b02565b9150509250929050565b60008060408385031215612d2857600080fd5b6000612d3685828601612aed565b9250506020612d4785828601612b95565b9150509250929050565b600060208284031215612d6357600080fd5b6000612d7184828501612b02565b91505092915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b17565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b2c565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b6b565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612b95565b91505092915050565b612e3f816136ed565b82525050565b612e4e816136ff565b82525050565b6000612e5f826135e4565b612e6981856135fa565b9350612e79818560208601613770565b612e828161393c565b840191505092915050565b6000612e98826135ef565b612ea28185613616565b9350612eb2818560208601613770565b612ebb8161393c565b840191505092915050565b6000612ed1826135ef565b612edb8185613627565b9350612eeb818560208601613770565b80840191505092915050565b6000612f04602283613616565b9150612f0f8261394d565b604082019050919050565b6000612f27602683613616565b9150612f328261399c565b604082019050919050565b6000612f4a602a83613616565b9150612f55826139eb565b604082019050919050565b6000612f6d602383613616565b9150612f7882613a3a565b604082019050919050565b6000612f90602583613616565b9150612f9b82613a89565b604082019050919050565b6000612fb3603983613616565b9150612fbe82613ad8565b604082019050919050565b6000612fd6602b83613616565b9150612fe182613b27565b604082019050919050565b6000612ff9602683613616565b915061300482613b76565b604082019050919050565b600061301c602083613616565b915061302782613bc5565b602082019050919050565b600061303f602f83613616565b915061304a82613bee565b604082019050919050565b6000613062601a83613616565b915061306d82613c3d565b602082019050919050565b6000613085603283613616565b915061309082613c66565b604082019050919050565b60006130a8602283613616565b91506130b382613cb5565b604082019050919050565b60006130cb60008361360b565b91506130d682613d04565b600082019050919050565b60006130ee603383613616565b91506130f982613d07565b604082019050919050565b6000613111602183613616565b915061311c82613d56565b604082019050919050565b6000613134602883613616565b915061313f82613da5565b604082019050919050565b6000613157602e83613616565b915061316282613df4565b604082019050919050565b600061317a601f83613616565b915061318582613e43565b602082019050919050565b600061319d602f83613616565b91506131a882613e6c565b604082019050919050565b60006131c0602d83613616565b91506131cb82613ebb565b604082019050919050565b6131df81613757565b82525050565b60006131f18285612ec6565b91506131fd8284612ec6565b91508190509392505050565b6000613214826130be565b9150819050919050565b60006020820190506132336000830184612e36565b92915050565b600060808201905061324e6000830187612e36565b61325b6020830186612e36565b61326860408301856131d6565b818103606083015261327a8184612e54565b905095945050505050565b600060208201905061329a6000830184612e45565b92915050565b600060208201905081810360008301526132ba8184612e8d565b905092915050565b600060208201905081810360008301526132db81612ef7565b9050919050565b600060208201905081810360008301526132fb81612f1a565b9050919050565b6000602082019050818103600083015261331b81612f3d565b9050919050565b6000602082019050818103600083015261333b81612f60565b9050919050565b6000602082019050818103600083015261335b81612f83565b9050919050565b6000602082019050818103600083015261337b81612fa6565b9050919050565b6000602082019050818103600083015261339b81612fc9565b9050919050565b600060208201905081810360008301526133bb81612fec565b9050919050565b600060208201905081810360008301526133db8161300f565b9050919050565b600060208201905081810360008301526133fb81613032565b9050919050565b6000602082019050818103600083015261341b81613055565b9050919050565b6000602082019050818103600083015261343b81613078565b9050919050565b6000602082019050818103600083015261345b8161309b565b9050919050565b6000602082019050818103600083015261347b816130e1565b9050919050565b6000602082019050818103600083015261349b81613104565b9050919050565b600060208201905081810360008301526134bb81613127565b9050919050565b600060208201905081810360008301526134db8161314a565b9050919050565b600060208201905081810360008301526134fb8161316d565b9050919050565b6000602082019050818103600083015261351b81613190565b9050919050565b6000602082019050818103600083015261353b816131b3565b9050919050565b600060208201905061355760008301846131d6565b92915050565b6000613567613578565b905061357382826137d5565b919050565b6000604051905090565b600067ffffffffffffffff82111561359d5761359c61390d565b5b6135a68261393c565b9050602081019050919050565b600067ffffffffffffffff8211156135ce576135cd61390d565b5b6135d78261393c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363d82613757565b915061364883613757565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367d5761367c613880565b5b828201905092915050565b600061369382613757565b915061369e83613757565b9250826136ae576136ad6138af565b5b828204905092915050565b60006136c482613757565b91506136cf83613757565b9250828210156136e2576136e1613880565b5b828203905092915050565b60006136f882613737565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378e578082015181840152602081019050613773565b8381111561379d576000848401525b50505050565b600060028204905060018216806137bb57607f821691505b602082108114156137cf576137ce6138de565b5b50919050565b6137de8261393c565b810181811067ffffffffffffffff821117156137fd576137fc61390d565b5b80604052505050565b600061381182613757565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384457613843613880565b5b600182019050919050565b600061385a82613757565b915061386583613757565b925082613875576138746138af565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b613f13816136ed565b8114613f1e57600080fd5b50565b613f2a816136ff565b8114613f3557600080fd5b50565b613f418161370b565b8114613f4c57600080fd5b50565b613f5881613757565b8114613f6357600080fd5b5056fea26469706673582212202c94c5f541e5c5d44628824af3359e36a5a3844e3eaa73226e86510e0399254e64736f6c63430008020033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d519f39b11610064578063d519f39b1461067b578063e985e9c5146106a4578063ed64da9f146106e1578063f2fde38b146106f8576101cd565b8063a22cb465146105c1578063b88d4fde146105ea578063c87b56dd14610613578063ced33bc414610650576101cd565b80638d80854e116100d15780638d80854e146105175780638da5cb5b1461054057806395d89b411461056b578063a01ffdff14610596576101cd565b8063715018a61461049a57806375d2a90e146104b157806383ae807b146104da576101cd565b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce7146103ba5780636352211e146103f75780636e63b1041461043457806370a082311461045d576101cd565b80632f745c591461031f5780633232deeb1461035c57806333958a181461038757806342842e0e14610391576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806325f08cf2146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d7a565b610721565b6040516102069190613285565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b60405161023191906132a0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e0d565b6108fd565b60405161026e919061321e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d15565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190613542565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c0f565b610aa4565b005b34801561030057600080fd5b50610309610ab4565b6040516103169190613542565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612d15565b610aba565b6040516103539190613542565b60405180910390f35b34801561036857600080fd5b50610371610cac565b60405161037e91906132a0565b60405180910390f35b61038f610d3a565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612c0f565b610e2f565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612e0d565b610e4f565b6040516103ee9190613542565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612e0d565b610ea2565b60405161042b919061321e565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612dcc565b610eb8565b005b34801561046957600080fd5b50610484600480360381019061047f9190612baa565b610f4e565b6040516104919190613542565b60405180910390f35b3480156104a657600080fd5b506104af611037565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612e0d565b6110bf565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190612baa565b611145565b60405161050e9190613542565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612d51565b61115d565b005b34801561054c57600080fd5b506105556111f6565b604051610562919061321e565b60405180910390f35b34801561057757600080fd5b50610580611220565b60405161058d91906132a0565b60405180910390f35b3480156105a257600080fd5b506105ab6112b2565b6040516105b89190613285565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190612cd9565b6112c5565b005b3480156105f657600080fd5b50610611600480360381019061060c9190612c5e565b611446565b005b34801561061f57600080fd5b5061063a60048036038101906106359190612e0d565b6114a2565b60405161064791906132a0565b60405180910390f35b34801561065c57600080fd5b5061066561154a565b6040516106729190613542565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612d15565b611550565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612bd3565b611601565b6040516106d89190613285565b60405180910390f35b3480156106ed57600080fd5b506106f6611695565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612baa565b611818565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610864575061086382611910565b5b9050919050565b60606001805461087a906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546108a6906137a3565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b60006109088261197a565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613522565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610ea2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613442565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d611987565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a46611987565b611601565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613362565b60405180910390fd5b610a9683838361198f565b505050565b60008054905090565b610aaf838383611a41565b505050565b600c5481565b6000610ac583610f4e565b8210610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd906132c2565b60405180910390fd5b6000610b10610a9b565b905060008060005b83811015610c6a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c53578195505050505050610ca6565b83806001019450505b508080600101915050610b18565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134c2565b60405180910390fd5b92915050565b60098054610cb9906137a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce5906137a3565b8015610d325780601f10610d0757610100808354040283529160200191610d32565b820191906000526020600020905b815481529060010190602001808311610d1557829003601f168201915b505050505081565b610d42611987565b73ffffffffffffffffffffffffffffffffffffffff16610d606111f6565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad906133c2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ddc90613209565b60006040518083038185875af1925050503d8060008114610e19576040519150601f19603f3d011682016040523d82523d6000602084013e610e1e565b606091505b5050905080610e2c57600080fd5b50565b610e4a83838360405180602001604052806000815250611446565b505050565b6000610e59610a9b565b8210610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190613322565b60405180910390fd5b819050919050565b6000610ead82611f81565b600001519050919050565b610ec0611987565b73ffffffffffffffffffffffffffffffffffffffff16610ede6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906133c2565b60405180910390fd5b8060099080519060200190610f4a929190612994565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613382565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61103f611987565b73ffffffffffffffffffffffffffffffffffffffff1661105d6111f6565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906133c2565b60405180910390fd5b6110bd600061211b565b565b6110c7611987565b73ffffffffffffffffffffffffffffffffffffffff166110e56111f6565b73ffffffffffffffffffffffffffffffffffffffff161461113b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611132906133c2565b60405180910390fd5b80600c8190555050565b600d6020528060005260406000206000915090505481565b611165611987565b73ffffffffffffffffffffffffffffffffffffffff166111836111f6565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906133c2565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461122f906137a3565b80601f016020809104026020016040519081016040528092919081815260200182805461125b906137a3565b80156112a85780601f1061127d576101008083540402835291602001916112a8565b820191906000526020600020905b81548152906001019060200180831161128b57829003601f168201915b5050505050905090565b600a60009054906101000a900460ff1681565b6112cd611987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290613402565b60405180910390fd5b8060066000611348611987565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f5611987565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143a9190613285565b60405180910390a35050565b611451848484611a41565b61145d848484846121e1565b61149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613462565b60405180910390fd5b50505050565b60606114ad8261197a565b6114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e3906133e2565b60405180910390fd5b60006114f6612378565b90506000815114156115175760405180602001604052806000815250611542565b806115218461240a565b6040516020016115329291906131e5565b6040516020818303038152906040525b915050919050565b600b5481565b611558611987565b73ffffffffffffffffffffffffffffffffffffffff166115766111f6565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c3906133c2565b60405180910390fd5b60006115d6610a9b565b9050600b5482826115e79190613632565b11156115f257600080fd5b6115fc83836125b7565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260085414156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d2906134e2565b60405180910390fd5b600260088190555060006116ed610a9b565b9050600a60009054906101000a900460ff1661170857600080fd5b600b54600c54826117199190613632565b111561172457600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461175c57600080fd5b600c54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106117a957600080fd5b6117b533600c546125b7565b600c54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118069190613632565b92505081905550506001600881905550565b611820611987565b73ffffffffffffffffffffffffffffffffffffffff1661183e6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906133c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fb906132e2565b60405180910390fd5b61190d8161211b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611a4c82611f81565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a73611987565b73ffffffffffffffffffffffffffffffffffffffff161480611acf5750611a98611987565b73ffffffffffffffffffffffffffffffffffffffff16611ab7846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aeb5750611aea8260000151611ae5611987565b611601565b5b905080611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613422565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b96906133a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613342565b60405180910390fd5b611c1c85858560016125d5565b611c2c600084846000015161198f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1157611e708161197a565b15611f105782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f7a85858560016125db565b5050505050565b611f89612a1a565b611f928261197a565b611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890613302565b60405180910390fd5b60008290505b600081106120da576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120cb578092505050612116565b50808060019003915050611fd7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90613502565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122028473ffffffffffffffffffffffffffffffffffffffff166125e1565b1561236b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222b611987565b8786866040518563ffffffff1660e01b815260040161224d9493929190613239565b602060405180830381600087803b15801561226757600080fd5b505af192505050801561229857506040513d601f19601f820116820180604052508101906122959190612da3565b60015b61231b573d80600081146122c8576040519150601f19603f3d011682016040523d82523d6000602084013e6122cd565b606091505b50600081511415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90613462565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612370565b600190505b949350505050565b606060098054612387906137a3565b80601f01602080910402602001604051908101604052809291908181526020018280546123b3906137a3565b80156124005780601f106123d557610100808354040283529160200191612400565b820191906000526020600020905b8154815290600101906020018083116123e357829003601f168201915b5050505050905090565b60606000821415612452576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b2565b600082905060005b6000821461248457808061246d90613806565b915050600a8261247d9190613688565b915061245a565b60008167ffffffffffffffff8111156124c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124f85781602001600182028036833780820191505090505b5090505b600085146125ab5760018261251191906136b9565b9150600a85612520919061384f565b603061252c9190613632565b60f81b818381518110612568577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a49190613688565b94506124fc565b8093505050505b919050565b6125d1828260405180602001604052806000815250612604565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6126118383836001612616565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390613482565b60405180910390fd5b60008414156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c7906134a2565b60405180910390fd5b6126dd60008683876125d5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561297757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156129625761292260008884886121e1565b612961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295890613462565b60405180910390fd5b5b818060010192505080806001019150506128ab565b50806000819055505061298d60008683876125db565b5050505050565b8280546129a0906137a3565b90600052602060002090601f0160209004810192826129c25760008555612a09565b82601f106129db57805160ff1916838001178555612a09565b82800160010185558215612a09579182015b82811115612a085782518255916020019190600101906129ed565b5b509050612a169190612a54565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a6d576000816000905550600101612a55565b5090565b6000612a84612a7f84613582565b61355d565b905082815260208101848484011115612a9c57600080fd5b612aa7848285613761565b509392505050565b6000612ac2612abd846135b3565b61355d565b905082815260208101848484011115612ada57600080fd5b612ae5848285613761565b509392505050565b600081359050612afc81613f0a565b92915050565b600081359050612b1181613f21565b92915050565b600081359050612b2681613f38565b92915050565b600081519050612b3b81613f38565b92915050565b600082601f830112612b5257600080fd5b8135612b62848260208601612a71565b91505092915050565b600082601f830112612b7c57600080fd5b8135612b8c848260208601612aaf565b91505092915050565b600081359050612ba481613f4f565b92915050565b600060208284031215612bbc57600080fd5b6000612bca84828501612aed565b91505092915050565b60008060408385031215612be657600080fd5b6000612bf485828601612aed565b9250506020612c0585828601612aed565b9150509250929050565b600080600060608486031215612c2457600080fd5b6000612c3286828701612aed565b9350506020612c4386828701612aed565b9250506040612c5486828701612b95565b9150509250925092565b60008060008060808587031215612c7457600080fd5b6000612c8287828801612aed565b9450506020612c9387828801612aed565b9350506040612ca487828801612b95565b925050606085013567ffffffffffffffff811115612cc157600080fd5b612ccd87828801612b41565b91505092959194509250565b60008060408385031215612cec57600080fd5b6000612cfa85828601612aed565b9250506020612d0b85828601612b02565b9150509250929050565b60008060408385031215612d2857600080fd5b6000612d3685828601612aed565b9250506020612d4785828601612b95565b9150509250929050565b600060208284031215612d6357600080fd5b6000612d7184828501612b02565b91505092915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612b17565b91505092915050565b600060208284031215612db557600080fd5b6000612dc384828501612b2c565b91505092915050565b600060208284031215612dde57600080fd5b600082013567ffffffffffffffff811115612df857600080fd5b612e0484828501612b6b565b91505092915050565b600060208284031215612e1f57600080fd5b6000612e2d84828501612b95565b91505092915050565b612e3f816136ed565b82525050565b612e4e816136ff565b82525050565b6000612e5f826135e4565b612e6981856135fa565b9350612e79818560208601613770565b612e828161393c565b840191505092915050565b6000612e98826135ef565b612ea28185613616565b9350612eb2818560208601613770565b612ebb8161393c565b840191505092915050565b6000612ed1826135ef565b612edb8185613627565b9350612eeb818560208601613770565b80840191505092915050565b6000612f04602283613616565b9150612f0f8261394d565b604082019050919050565b6000612f27602683613616565b9150612f328261399c565b604082019050919050565b6000612f4a602a83613616565b9150612f55826139eb565b604082019050919050565b6000612f6d602383613616565b9150612f7882613a3a565b604082019050919050565b6000612f90602583613616565b9150612f9b82613a89565b604082019050919050565b6000612fb3603983613616565b9150612fbe82613ad8565b604082019050919050565b6000612fd6602b83613616565b9150612fe182613b27565b604082019050919050565b6000612ff9602683613616565b915061300482613b76565b604082019050919050565b600061301c602083613616565b915061302782613bc5565b602082019050919050565b600061303f602f83613616565b915061304a82613bee565b604082019050919050565b6000613062601a83613616565b915061306d82613c3d565b602082019050919050565b6000613085603283613616565b915061309082613c66565b604082019050919050565b60006130a8602283613616565b91506130b382613cb5565b604082019050919050565b60006130cb60008361360b565b91506130d682613d04565b600082019050919050565b60006130ee603383613616565b91506130f982613d07565b604082019050919050565b6000613111602183613616565b915061311c82613d56565b604082019050919050565b6000613134602883613616565b915061313f82613da5565b604082019050919050565b6000613157602e83613616565b915061316282613df4565b604082019050919050565b600061317a601f83613616565b915061318582613e43565b602082019050919050565b600061319d602f83613616565b91506131a882613e6c565b604082019050919050565b60006131c0602d83613616565b91506131cb82613ebb565b604082019050919050565b6131df81613757565b82525050565b60006131f18285612ec6565b91506131fd8284612ec6565b91508190509392505050565b6000613214826130be565b9150819050919050565b60006020820190506132336000830184612e36565b92915050565b600060808201905061324e6000830187612e36565b61325b6020830186612e36565b61326860408301856131d6565b818103606083015261327a8184612e54565b905095945050505050565b600060208201905061329a6000830184612e45565b92915050565b600060208201905081810360008301526132ba8184612e8d565b905092915050565b600060208201905081810360008301526132db81612ef7565b9050919050565b600060208201905081810360008301526132fb81612f1a565b9050919050565b6000602082019050818103600083015261331b81612f3d565b9050919050565b6000602082019050818103600083015261333b81612f60565b9050919050565b6000602082019050818103600083015261335b81612f83565b9050919050565b6000602082019050818103600083015261337b81612fa6565b9050919050565b6000602082019050818103600083015261339b81612fc9565b9050919050565b600060208201905081810360008301526133bb81612fec565b9050919050565b600060208201905081810360008301526133db8161300f565b9050919050565b600060208201905081810360008301526133fb81613032565b9050919050565b6000602082019050818103600083015261341b81613055565b9050919050565b6000602082019050818103600083015261343b81613078565b9050919050565b6000602082019050818103600083015261345b8161309b565b9050919050565b6000602082019050818103600083015261347b816130e1565b9050919050565b6000602082019050818103600083015261349b81613104565b9050919050565b600060208201905081810360008301526134bb81613127565b9050919050565b600060208201905081810360008301526134db8161314a565b9050919050565b600060208201905081810360008301526134fb8161316d565b9050919050565b6000602082019050818103600083015261351b81613190565b9050919050565b6000602082019050818103600083015261353b816131b3565b9050919050565b600060208201905061355760008301846131d6565b92915050565b6000613567613578565b905061357382826137d5565b919050565b6000604051905090565b600067ffffffffffffffff82111561359d5761359c61390d565b5b6135a68261393c565b9050602081019050919050565b600067ffffffffffffffff8211156135ce576135cd61390d565b5b6135d78261393c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363d82613757565b915061364883613757565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367d5761367c613880565b5b828201905092915050565b600061369382613757565b915061369e83613757565b9250826136ae576136ad6138af565b5b828204905092915050565b60006136c482613757565b91506136cf83613757565b9250828210156136e2576136e1613880565b5b828203905092915050565b60006136f882613737565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561378e578082015181840152602081019050613773565b8381111561379d576000848401525b50505050565b600060028204905060018216806137bb57607f821691505b602082108114156137cf576137ce6138de565b5b50919050565b6137de8261393c565b810181811067ffffffffffffffff821117156137fd576137fc61390d565b5b80604052505050565b600061381182613757565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561384457613843613880565b5b600182019050919050565b600061385a82613757565b915061386583613757565b925082613875576138746138af565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b613f13816136ed565b8114613f1e57600080fd5b50565b613f2a816136ff565b8114613f3557600080fd5b50565b613f418161370b565b8114613f4c57600080fd5b50565b613f5881613757565b8114613f6357600080fd5b5056fea26469706673582212202c94c5f541e5c5d44628824af3359e36a5a3844e3eaa73226e86510e0399254e64736f6c63430008020033

Deployed Bytecode Sourcemap

40040:1613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25081:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26967:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28529:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28050:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23338:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29405:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40242:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24002:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40141:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41478:172;;;:::i;:::-;;29638:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23515:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26776:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41363:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25517:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13980:103;;;;;;;;;;;;;:::i;:::-;;41255:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40280:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41158:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13329:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27136:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40172:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28815:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29886:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27311:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40205:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40923:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29174:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40519:396;;;;;;;;;;;;;:::i;:::-;;14238:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25081:372;25183:4;25235:25;25220:40;;;:11;:40;;;;:105;;;;25292:33;25277:48;;;:11;:48;;;;25220:105;:172;;;;25357:35;25342:50;;;:11;:50;;;;25220:172;:225;;;;25409:36;25433:11;25409:23;:36::i;:::-;25220:225;25200:245;;25081:372;;;:::o;26967:100::-;27021:13;27054:5;27047:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26967:100;:::o;28529:214::-;28597:7;28625:16;28633:7;28625;:16::i;:::-;28617:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28711:15;:24;28727:7;28711:24;;;;;;;;;;;;;;;;;;;;;28704:31;;28529:214;;;:::o;28050:413::-;28123:13;28139:24;28155:7;28139:15;:24::i;:::-;28123:40;;28188:5;28182:11;;:2;:11;;;;28174:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28283:5;28267:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28292:37;28309:5;28316:12;:10;:12::i;:::-;28292:16;:37::i;:::-;28267:62;28245:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28427:28;28436:2;28440:7;28449:5;28427:8;:28::i;:::-;28050:413;;;:::o;23338:100::-;23391:7;23418:12;;23411:19;;23338:100;:::o;29405:162::-;29531:28;29541:4;29547:2;29551:7;29531:9;:28::i;:::-;29405:162;;;:::o;40242:31::-;;;;:::o;24002:1007::-;24091:7;24127:16;24137:5;24127:9;:16::i;:::-;24119:5;:24;24111:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24193:22;24218:13;:11;:13::i;:::-;24193:38;;24242:19;24272:25;24461:9;24456:466;24476:14;24472:1;:18;24456:466;;;24516:31;24550:11;:14;24562:1;24550:14;;;;;;;;;;;24516:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24613:1;24587:28;;:9;:14;;;:28;;;24583:111;;24660:9;:14;;;24640:34;;24583:111;24737:5;24716:26;;:17;:26;;;24712:195;;;24786:5;24771:11;:20;24767:85;;;24827:1;24820:8;;;;;;;;;24767:85;24874:13;;;;;;;24712:195;24456:466;24492:3;;;;;;;24456:466;;;;24945:56;;;;;;;;;;:::i;:::-;;;;;;;;24002:1007;;;;;:::o;40141:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41478:172::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41539:12:::1;41565:10;41557:24;;41589:21;41557:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41538:77;;;41634:7;41626:16;;;::::0;::::1;;13620:1;41478:172::o:0;29638:177::-;29768:39;29785:4;29791:2;29795:7;29768:39;;;;;;;;;;;;:16;:39::i;:::-;29638:177;;;:::o;23515:187::-;23582:7;23618:13;:11;:13::i;:::-;23610:5;:21;23602:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23689:5;23682:12;;23515:187;;;:::o;26776:124::-;26840:7;26867:20;26879:7;26867:11;:20::i;:::-;:25;;;26860:32;;26776:124;;;:::o;41363:107::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41457:5:::1;41444:10;:18;;;;;;;;;;;;:::i;:::-;;41363:107:::0;:::o;25517:221::-;25581:7;25626:1;25609:19;;:5;:19;;;;25601:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25702:12;:19;25715:5;25702:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25694:36;;25687:43;;25517:221;;;:::o;13980:103::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14045:30:::1;14072:1;14045:18;:30::i;:::-;13980:103::o:0;41255:100::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41340:7:::1;41325:12;:22;;;;41255:100:::0;:::o;40280:50::-;;;;;;;;;;;;;;;;;:::o;41158:89::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41235:4:::1;41226:6;;:13;;;;;;;;;;;;;;;;;;41158:89:::0;:::o;13329:87::-;13375:7;13402:6;;;;;;;;;;;13395:13;;13329:87;:::o;27136:104::-;27192:13;27225:7;27218:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27136:104;:::o;40172:26::-;;;;;;;;;;;;;:::o;28815:288::-;28922:12;:10;:12::i;:::-;28910:24;;:8;:24;;;;28902:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29023:8;28978:18;:32;28997:12;:10;:12::i;:::-;28978:32;;;;;;;;;;;;;;;:42;29011:8;28978:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29076:8;29047:48;;29062:12;:10;:12::i;:::-;29047:48;;;29086:8;29047:48;;;;;;:::i;:::-;;;;;;;;28815:288;;:::o;29886:355::-;30045:28;30055:4;30061:2;30065:7;30045:9;:28::i;:::-;30106:48;30129:4;30135:2;30139:7;30148:5;30106:22;:48::i;:::-;30084:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29886:355;;;;:::o;27311:335::-;27384:13;27418:16;27426:7;27418;:16::i;:::-;27410:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27499:21;27523:10;:8;:10::i;:::-;27499:34;;27576:1;27557:7;27551:21;:26;;:87;;;;;;;;;;;;;;;;;27604:7;27613:18;:7;:16;:18::i;:::-;27587:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27551:87;27544:94;;;27311:335;;;:::o;40205:30::-;;;;:::o;40923:227::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41009:23:::1;41035:13;:11;:13::i;:::-;41009:39;;41097:7;;41085:8;41067:15;:26;;;;:::i;:::-;:37;;41059:46;;;::::0;::::1;;41116:26;41126:5;41133:8;41116:9;:26::i;:::-;13620:1;40923:227:::0;;:::o;29174:164::-;29271:4;29295:18;:25;29314:5;29295:25;;;;;;;;;;;;;;;:35;29321:8;29295:35;;;;;;;;;;;;;;;;;;;;;;;;;29288:42;;29174:164;;;;:::o;40519:396::-;39089:1;39687:7;;:19;;39679:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39089:1;39820:7;:18;;;;40576:23:::1;40602:13;:11;:13::i;:::-;40576:39;;40634:6;;;;;;;;;;;40626:15;;;::::0;::::1;;40694:7;;40678:12;;40660:15;:30;;;;:::i;:::-;:41;;40652:50;;;::::0;::::1;;40735:9;40721:23;;:10;:23;;;40713:32;;;::::0;::::1;;40794:12;;40764:15;:27;40780:10;40764:27;;;;;;;;;;;;;;;;:42;40756:51;;;::::0;::::1;;40818:35;40828:10;40840:12;;40818:9;:35::i;:::-;40895:12;;40864:15;:27;40880:10;40864:27;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;39851:1;39045::::0;39999:7;:22;;;;40519:396::o;14238:201::-;13560:12;:10;:12::i;:::-;13549:23;;:7;:5;:7::i;:::-;:23;;;13541:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14347:1:::1;14327:22;;:8;:22;;;;14319:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14403:28;14422:8;14403:18;:28::i;:::-;14238:201:::0;:::o;15365:157::-;15450:4;15489:25;15474:40;;;:11;:40;;;;15467:47;;15365:157;;;:::o;30496:111::-;30553:4;30587:12;;30577:7;:22;30570:29;;30496:111;;;:::o;12703:98::-;12756:7;12783:10;12776:17;;12703:98;:::o;35416:196::-;35558:2;35531:15;:24;35547:7;35531:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35596:7;35592:2;35576:28;;35585:5;35576:28;;;;;;;;;;;;35416:196;;;:::o;33296:2002::-;33411:35;33449:20;33461:7;33449:11;:20::i;:::-;33411:58;;33482:22;33524:13;:18;;;33508:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33583:12;:10;:12::i;:::-;33559:36;;:20;33571:7;33559:11;:20::i;:::-;:36;;;33508:87;:154;;;;33612:50;33629:13;:18;;;33649:12;:10;:12::i;:::-;33612:16;:50::i;:::-;33508:154;33482:181;;33684:17;33676:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33799:4;33777:26;;:13;:18;;;:26;;;33769:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33879:1;33865:16;;:2;:16;;;;33857:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33936:43;33958:4;33964:2;33968:7;33977:1;33936:21;:43::i;:::-;34044:49;34061:1;34065:7;34074:13;:18;;;34044:8;:49::i;:::-;34419:1;34389:12;:18;34402:4;34389:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34463:1;34435:12;:16;34448:2;34435:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34509:2;34481:11;:20;34493:7;34481:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34571:15;34526:11;:20;34538:7;34526:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34839:19;34871:1;34861:7;:11;34839:33;;34932:1;34891:43;;:11;:24;34903:11;34891:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34887:295;;;34959:20;34967:11;34959:7;:20::i;:::-;34955:212;;;35036:13;:18;;;35004:11;:24;35016:11;35004:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35119:13;:28;;;35077:11;:24;35089:11;35077:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34955:212;34887:295;33296:2002;35229:7;35225:2;35210:27;;35219:4;35210:27;;;;;;;;;;;;35248:42;35269:4;35275:2;35279:7;35288:1;35248:20;:42::i;:::-;33296:2002;;;;;:::o;26177:537::-;26238:21;;:::i;:::-;26280:16;26288:7;26280;:16::i;:::-;26272:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26386:12;26401:7;26386:22;;26381:245;26418:1;26410:4;:9;26381:245;;26448:31;26482:11;:17;26494:4;26482:17;;;;;;;;;;;26448:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26548:1;26522:28;;:9;:14;;;:28;;;26518:93;;26582:9;26575:16;;;;;;26518:93;26381:245;26421:6;;;;;;;;26381:245;;;;26649:57;;;;;;;;;;:::i;:::-;;;;;;;;26177:537;;;;:::o;14599:191::-;14673:16;14692:6;;;;;;;;;;;14673:25;;14718:8;14709:6;;:17;;;;;;;;;;;;;;;;;;14773:8;14742:40;;14763:8;14742:40;;;;;;;;;;;;14599:191;;:::o;36177:804::-;36332:4;36353:15;:2;:13;;;:15::i;:::-;36349:625;;;36405:2;36389:36;;;36426:12;:10;:12::i;:::-;36440:4;36446:7;36455:5;36389:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36385:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36652:1;36635:6;:13;:18;36631:273;;;36678:61;;;;;;;;;;:::i;:::-;;;;;;;;36631:273;36854:6;36848:13;36839:6;36835:2;36831:15;36824:38;36385:534;36522:45;;;36512:55;;;:6;:55;;;;36505:62;;;;;36349:625;36958:4;36951:11;;36177:804;;;;;;;:::o;40400:111::-;40460:13;40493:10;40486:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40400:111;:::o;2631:723::-;2687:13;2917:1;2908:5;:10;2904:53;;;2935:10;;;;;;;;;;;;;;;;;;;;;2904:53;2967:12;2982:5;2967:20;;2998:14;3023:78;3038:1;3030:4;:9;3023:78;;3056:8;;;;;:::i;:::-;;;;3087:2;3079:10;;;;;:::i;:::-;;;3023:78;;;3111:19;3143:6;3133:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3111:39;;3161:154;3177:1;3168:5;:10;3161:154;;3205:1;3195:11;;;;;:::i;:::-;;;3272:2;3264:5;:10;;;;:::i;:::-;3251:2;:24;;;;:::i;:::-;3238:39;;3221:6;3228;3221:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3301:2;3292:11;;;;;:::i;:::-;;;3161:154;;;3339:6;3325:21;;;;;2631:723;;;;:::o;30615:104::-;30684:27;30694:2;30698:8;30684:27;;;;;;;;;;;;:9;:27::i;:::-;30615:104;;:::o;37469:159::-;;;;;:::o;38040:158::-;;;;;:::o;5398:326::-;5458:4;5715:1;5693:7;:19;;;:23;5686:30;;5398:326;;;:::o;31082:163::-;31205:32;31211:2;31215:8;31225:5;31232:4;31205:5;:32::i;:::-;31082:163;;;:::o;31504:1538::-;31643:20;31666:12;;31643:35;;31711:1;31697:16;;:2;:16;;;;31689:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31782:1;31770:8;:13;;31762:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31841:61;31871:1;31875:2;31879:12;31893:8;31841:21;:61::i;:::-;32216:8;32180:12;:16;32193:2;32180:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32281:8;32240:12;:16;32253:2;32240:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32340:2;32307:11;:25;32319:12;32307:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32407:15;32357:11;:25;32369:12;32357:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32440:20;32463:12;32440:35;;32497:9;32492:415;32512:8;32508:1;:12;32492:415;;;32576:12;32572:2;32551:38;;32568:1;32551:38;;;;;;;;;;;;32612:4;32608:249;;;32675:59;32706:1;32710:2;32714:12;32728:5;32675:22;:59::i;:::-;32641:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32608:249;32877:14;;;;;;;32522:3;;;;;;;32492:415;;;;32938:12;32923;:27;;;;31504:1538;32974:60;33003:1;33007:2;33011:12;33025:8;32974:20;:60::i;:::-;31504:1538;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:366::-;;8613:67;8677:2;8672:3;8613:67;:::i;:::-;8606:74;;8689:93;8778:3;8689:93;:::i;:::-;8807:2;8802:3;8798:12;8791:19;;8596:220;;;:::o;8822:366::-;;8985:67;9049:2;9044:3;8985:67;:::i;:::-;8978:74;;9061:93;9150:3;9061:93;:::i;:::-;9179:2;9174:3;9170:12;9163:19;;8968:220;;;:::o;9194:366::-;;9357:67;9421:2;9416:3;9357:67;:::i;:::-;9350:74;;9433:93;9522:3;9433:93;:::i;:::-;9551:2;9546:3;9542:12;9535:19;;9340:220;;;:::o;9566:366::-;;9729:67;9793:2;9788:3;9729:67;:::i;:::-;9722:74;;9805:93;9894:3;9805:93;:::i;:::-;9923:2;9918:3;9914:12;9907:19;;9712:220;;;:::o;9938:366::-;;10101:67;10165:2;10160:3;10101:67;:::i;:::-;10094:74;;10177:93;10266:3;10177:93;:::i;:::-;10295:2;10290:3;10286:12;10279:19;;10084:220;;;:::o;10310:366::-;;10473:67;10537:2;10532:3;10473:67;:::i;:::-;10466:74;;10549:93;10638:3;10549:93;:::i;:::-;10667:2;10662:3;10658:12;10651:19;;10456:220;;;:::o;10682:366::-;;10845:67;10909:2;10904:3;10845:67;:::i;:::-;10838:74;;10921:93;11010:3;10921:93;:::i;:::-;11039:2;11034:3;11030:12;11023:19;;10828:220;;;:::o;11054:366::-;;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11200:220;;;:::o;11426:366::-;;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11572:220;;;:::o;11798:366::-;;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11944:220;;;:::o;12170:366::-;;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12316:220;;;:::o;12542:398::-;;12722:83;12803:1;12798:3;12722:83;:::i;:::-;12715:90;;12814:93;12903:3;12814:93;:::i;:::-;12932:1;12927:3;12923:11;12916:18;;12705:235;;;:::o;12946:366::-;;13109:67;13173:2;13168:3;13109:67;:::i;:::-;13102:74;;13185:93;13274:3;13185:93;:::i;:::-;13303:2;13298:3;13294:12;13287:19;;13092:220;;;:::o;13318:366::-;;13481:67;13545:2;13540:3;13481:67;:::i;:::-;13474:74;;13557:93;13646:3;13557:93;:::i;:::-;13675:2;13670:3;13666:12;13659:19;;13464:220;;;:::o;13690:366::-;;13853:67;13917:2;13912:3;13853:67;:::i;:::-;13846:74;;13929:93;14018:3;13929:93;:::i;:::-;14047:2;14042:3;14038:12;14031:19;;13836:220;;;:::o;14062:366::-;;14225:67;14289:2;14284:3;14225:67;:::i;:::-;14218:74;;14301:93;14390:3;14301:93;:::i;:::-;14419:2;14414:3;14410:12;14403:19;;14208:220;;;:::o;14434:366::-;;14597:67;14661:2;14656:3;14597:67;:::i;:::-;14590:74;;14673:93;14762:3;14673:93;:::i;:::-;14791:2;14786:3;14782:12;14775:19;;14580:220;;;:::o;14806:366::-;;14969:67;15033:2;15028:3;14969:67;:::i;:::-;14962:74;;15045:93;15134:3;15045:93;:::i;:::-;15163:2;15158:3;15154:12;15147:19;;14952:220;;;:::o;15178:366::-;;15341:67;15405:2;15400:3;15341:67;:::i;:::-;15334:74;;15417:93;15506:3;15417:93;:::i;:::-;15535:2;15530:3;15526:12;15519:19;;15324:220;;;:::o;15550:118::-;15637:24;15655:5;15637:24;:::i;:::-;15632:3;15625:37;15615:53;;:::o;15674:435::-;;15876:95;15967:3;15958:6;15876:95;:::i;:::-;15869:102;;15988:95;16079:3;16070:6;15988:95;:::i;:::-;15981:102;;16100:3;16093:10;;15858:251;;;;;:::o;16115:379::-;;16321:147;16464:3;16321:147;:::i;:::-;16314:154;;16485:3;16478:10;;16303:191;;;:::o;16500:222::-;;16631:2;16620:9;16616:18;16608:26;;16644:71;16712:1;16701:9;16697:17;16688:6;16644:71;:::i;:::-;16598:124;;;;:::o;16728:640::-;;16961:3;16950:9;16946:19;16938:27;;16975:71;17043:1;17032:9;17028:17;17019:6;16975:71;:::i;:::-;17056:72;17124:2;17113:9;17109:18;17100:6;17056:72;:::i;:::-;17138;17206:2;17195:9;17191:18;17182:6;17138:72;:::i;:::-;17257:9;17251:4;17247:20;17242:2;17231:9;17227:18;17220:48;17285:76;17356:4;17347:6;17285:76;:::i;:::-;17277:84;;16928:440;;;;;;;:::o;17374:210::-;;17499:2;17488:9;17484:18;17476:26;;17512:65;17574:1;17563:9;17559:17;17550:6;17512:65;:::i;:::-;17466:118;;;;:::o;17590:313::-;;17741:2;17730:9;17726:18;17718:26;;17790:9;17784:4;17780:20;17776:1;17765:9;17761:17;17754:47;17818:78;17891:4;17882:6;17818:78;:::i;:::-;17810:86;;17708:195;;;;:::o;17909:419::-;;18113:2;18102:9;18098:18;18090:26;;18162:9;18156:4;18152:20;18148:1;18137:9;18133:17;18126:47;18190:131;18316:4;18190:131;:::i;:::-;18182:139;;18080:248;;;:::o;18334:419::-;;18538:2;18527:9;18523:18;18515:26;;18587:9;18581:4;18577:20;18573:1;18562:9;18558:17;18551:47;18615:131;18741:4;18615:131;:::i;:::-;18607:139;;18505:248;;;:::o;18759:419::-;;18963:2;18952:9;18948:18;18940:26;;19012:9;19006:4;19002:20;18998:1;18987:9;18983:17;18976:47;19040:131;19166:4;19040:131;:::i;:::-;19032:139;;18930:248;;;:::o;19184:419::-;;19388:2;19377:9;19373:18;19365:26;;19437:9;19431:4;19427:20;19423:1;19412:9;19408:17;19401:47;19465:131;19591:4;19465:131;:::i;:::-;19457:139;;19355:248;;;:::o;19609:419::-;;19813:2;19802:9;19798:18;19790:26;;19862:9;19856:4;19852:20;19848:1;19837:9;19833:17;19826:47;19890:131;20016:4;19890:131;:::i;:::-;19882:139;;19780:248;;;:::o;20034:419::-;;20238:2;20227:9;20223:18;20215:26;;20287:9;20281:4;20277:20;20273:1;20262:9;20258:17;20251:47;20315:131;20441:4;20315:131;:::i;:::-;20307:139;;20205:248;;;:::o;20459:419::-;;20663:2;20652:9;20648:18;20640:26;;20712:9;20706:4;20702:20;20698:1;20687:9;20683:17;20676:47;20740:131;20866:4;20740:131;:::i;:::-;20732:139;;20630:248;;;:::o;20884:419::-;;21088:2;21077:9;21073:18;21065:26;;21137:9;21131:4;21127:20;21123:1;21112:9;21108:17;21101:47;21165:131;21291:4;21165:131;:::i;:::-;21157:139;;21055:248;;;:::o;21309:419::-;;21513:2;21502:9;21498:18;21490:26;;21562:9;21556:4;21552:20;21548:1;21537:9;21533:17;21526:47;21590:131;21716:4;21590:131;:::i;:::-;21582:139;;21480:248;;;:::o;21734:419::-;;21938:2;21927:9;21923:18;21915:26;;21987:9;21981:4;21977:20;21973:1;21962:9;21958:17;21951:47;22015:131;22141:4;22015:131;:::i;:::-;22007:139;;21905:248;;;:::o;22159:419::-;;22363:2;22352:9;22348:18;22340:26;;22412:9;22406:4;22402:20;22398:1;22387:9;22383:17;22376:47;22440:131;22566:4;22440:131;:::i;:::-;22432:139;;22330:248;;;:::o;22584:419::-;;22788:2;22777:9;22773:18;22765:26;;22837:9;22831:4;22827:20;22823:1;22812:9;22808:17;22801:47;22865:131;22991:4;22865:131;:::i;:::-;22857:139;;22755:248;;;:::o;23009:419::-;;23213:2;23202:9;23198:18;23190:26;;23262:9;23256:4;23252:20;23248:1;23237:9;23233:17;23226:47;23290:131;23416:4;23290:131;:::i;:::-;23282:139;;23180:248;;;:::o;23434:419::-;;23638:2;23627:9;23623:18;23615:26;;23687:9;23681:4;23677:20;23673:1;23662:9;23658:17;23651:47;23715:131;23841:4;23715:131;:::i;:::-;23707:139;;23605:248;;;:::o;23859:419::-;;24063:2;24052:9;24048:18;24040:26;;24112:9;24106:4;24102:20;24098:1;24087:9;24083:17;24076:47;24140:131;24266:4;24140:131;:::i;:::-;24132:139;;24030:248;;;:::o;24284:419::-;;24488:2;24477:9;24473:18;24465:26;;24537:9;24531:4;24527:20;24523:1;24512:9;24508:17;24501:47;24565:131;24691:4;24565:131;:::i;:::-;24557:139;;24455:248;;;:::o;24709:419::-;;24913:2;24902:9;24898:18;24890:26;;24962:9;24956:4;24952:20;24948:1;24937:9;24933:17;24926:47;24990:131;25116:4;24990:131;:::i;:::-;24982:139;;24880:248;;;:::o;25134:419::-;;25338:2;25327:9;25323:18;25315:26;;25387:9;25381:4;25377:20;25373:1;25362:9;25358:17;25351:47;25415:131;25541:4;25415:131;:::i;:::-;25407:139;;25305:248;;;:::o;25559:419::-;;25763:2;25752:9;25748:18;25740:26;;25812:9;25806:4;25802:20;25798:1;25787:9;25783:17;25776:47;25840:131;25966:4;25840:131;:::i;:::-;25832:139;;25730:248;;;:::o;25984:419::-;;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;26155:248;;;:::o;26409:222::-;;26540:2;26529:9;26525:18;26517:26;;26553:71;26621:1;26610:9;26606:17;26597:6;26553:71;:::i;:::-;26507:124;;;;:::o;26637:129::-;;26698:20;;:::i;:::-;26688:30;;26727:33;26755:4;26747:6;26727:33;:::i;:::-;26678:88;;;:::o;26772:75::-;;26838:2;26832:9;26822:19;;26812:35;:::o;26853:307::-;;27004:18;26996:6;26993:30;26990:2;;;27026:18;;:::i;:::-;26990:2;27064:29;27086:6;27064:29;:::i;:::-;27056:37;;27148:4;27142;27138:15;27130:23;;26919:241;;;:::o;27166:308::-;;27318:18;27310:6;27307:30;27304:2;;;27340:18;;:::i;:::-;27304:2;27378:29;27400:6;27378:29;:::i;:::-;27370:37;;27462:4;27456;27452:15;27444:23;;27233:241;;;:::o;27480:98::-;;27565:5;27559:12;27549:22;;27538:40;;;:::o;27584:99::-;;27670:5;27664:12;27654:22;;27643:40;;;:::o;27689:168::-;;27806:6;27801:3;27794:19;27846:4;27841:3;27837:14;27822:29;;27784:73;;;;:::o;27863:147::-;;28001:3;27986:18;;27976:34;;;;:::o;28016:169::-;;28134:6;28129:3;28122:19;28174:4;28169:3;28165:14;28150:29;;28112:73;;;;:::o;28191:148::-;;28330:3;28315:18;;28305:34;;;;:::o;28345:305::-;;28404:20;28422:1;28404:20;:::i;:::-;28399:25;;28438:20;28456:1;28438:20;:::i;:::-;28433:25;;28592:1;28524:66;28520:74;28517:1;28514:81;28511:2;;;28598:18;;:::i;:::-;28511:2;28642:1;28639;28635:9;28628:16;;28389:261;;;;:::o;28656:185::-;;28713:20;28731:1;28713:20;:::i;:::-;28708:25;;28747:20;28765:1;28747:20;:::i;:::-;28742:25;;28786:1;28776:2;;28791:18;;:::i;:::-;28776:2;28833:1;28830;28826:9;28821:14;;28698:143;;;;:::o;28847:191::-;;28907:20;28925:1;28907:20;:::i;:::-;28902:25;;28941:20;28959:1;28941:20;:::i;:::-;28936:25;;28980:1;28977;28974:8;28971:2;;;28985:18;;:::i;:::-;28971:2;29030:1;29027;29023:9;29015:17;;28892:146;;;;:::o;29044:96::-;;29110:24;29128:5;29110:24;:::i;:::-;29099:35;;29089:51;;;:::o;29146:90::-;;29223:5;29216:13;29209:21;29198:32;;29188:48;;;:::o;29242:149::-;;29318:66;29311:5;29307:78;29296:89;;29286:105;;;:::o;29397:126::-;;29474:42;29467:5;29463:54;29452:65;;29442:81;;;:::o;29529:77::-;;29595:5;29584:16;;29574:32;;;:::o;29612:154::-;29696:6;29691:3;29686;29673:30;29758:1;29749:6;29744:3;29740:16;29733:27;29663:103;;;:::o;29772:307::-;29840:1;29850:113;29864:6;29861:1;29858:13;29850:113;;;29949:1;29944:3;29940:11;29934:18;29930:1;29925:3;29921:11;29914:39;29886:2;29883:1;29879:10;29874:15;;29850:113;;;29981:6;29978:1;29975:13;29972:2;;;30061:1;30052:6;30047:3;30043:16;30036:27;29972:2;29821:258;;;;:::o;30085:320::-;;30166:1;30160:4;30156:12;30146:22;;30213:1;30207:4;30203:12;30234:18;30224:2;;30290:4;30282:6;30278:17;30268:27;;30224:2;30352;30344:6;30341:14;30321:18;30318:38;30315:2;;;30371:18;;:::i;:::-;30315:2;30136:269;;;;:::o;30411:281::-;30494:27;30516:4;30494:27;:::i;:::-;30486:6;30482:40;30624:6;30612:10;30609:22;30588:18;30576:10;30573:34;30570:62;30567:2;;;30635:18;;:::i;:::-;30567:2;30675:10;30671:2;30664:22;30454:238;;;:::o;30698:233::-;;30760:24;30778:5;30760:24;:::i;:::-;30751:33;;30806:66;30799:5;30796:77;30793:2;;;30876:18;;:::i;:::-;30793:2;30923:1;30916:5;30912:13;30905:20;;30741:190;;;:::o;30937:176::-;;30986:20;31004:1;30986:20;:::i;:::-;30981:25;;31020:20;31038:1;31020:20;:::i;:::-;31015:25;;31059:1;31049:2;;31064:18;;:::i;:::-;31049:2;31105:1;31102;31098:9;31093:14;;30971:142;;;;:::o;31119:180::-;31167:77;31164:1;31157:88;31264:4;31261:1;31254:15;31288:4;31285:1;31278:15;31305:180;31353:77;31350:1;31343:88;31450:4;31447:1;31440:15;31474:4;31471:1;31464:15;31491:180;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15;31677:180;31725:77;31722:1;31715:88;31822:4;31819:1;31812:15;31846:4;31843:1;31836:15;31863:102;;31955:2;31951:7;31946:2;31939:5;31935:14;31931:28;31921:38;;31911:54;;;:::o;31971:221::-;32111:34;32107:1;32099:6;32095:14;32088:58;32180:4;32175:2;32167:6;32163:15;32156:29;32077:115;:::o;32198:225::-;32338:34;32334:1;32326:6;32322:14;32315:58;32407:8;32402:2;32394:6;32390:15;32383:33;32304:119;:::o;32429:229::-;32569:34;32565:1;32557:6;32553:14;32546:58;32638:12;32633:2;32625:6;32621:15;32614:37;32535:123;:::o;32664:222::-;32804:34;32800:1;32792:6;32788:14;32781:58;32873:5;32868:2;32860:6;32856:15;32849:30;32770:116;:::o;32892:224::-;33032:34;33028:1;33020:6;33016:14;33009:58;33101:7;33096:2;33088:6;33084:15;33077:32;32998:118;:::o;33122:244::-;33262:34;33258:1;33250:6;33246:14;33239:58;33331:27;33326:2;33318:6;33314:15;33307:52;33228:138;:::o;33372:230::-;33512:34;33508:1;33500:6;33496:14;33489:58;33581:13;33576:2;33568:6;33564:15;33557:38;33478:124;:::o;33608:225::-;33748:34;33744:1;33736:6;33732:14;33725:58;33817:8;33812:2;33804:6;33800:15;33793:33;33714:119;:::o;33839:182::-;33979:34;33975:1;33967:6;33963:14;33956:58;33945:76;:::o;34027:234::-;34167:34;34163:1;34155:6;34151:14;34144:58;34236:17;34231:2;34223:6;34219:15;34212:42;34133:128;:::o;34267:176::-;34407:28;34403:1;34395:6;34391:14;34384:52;34373:70;:::o;34449:237::-;34589:34;34585:1;34577:6;34573:14;34566:58;34658:20;34653:2;34645:6;34641:15;34634:45;34555:131;:::o;34692:221::-;34832:34;34828:1;34820:6;34816:14;34809:58;34901:4;34896:2;34888:6;34884:15;34877:29;34798:115;:::o;34919:114::-;35025:8;:::o;35039:238::-;35179:34;35175:1;35167:6;35163:14;35156:58;35248:21;35243:2;35235:6;35231:15;35224:46;35145:132;:::o;35283:220::-;35423:34;35419:1;35411:6;35407:14;35400:58;35492:3;35487:2;35479:6;35475:15;35468:28;35389:114;:::o;35509:227::-;35649:34;35645:1;35637:6;35633:14;35626:58;35718:10;35713:2;35705:6;35701:15;35694:35;35615:121;:::o;35742:233::-;35882:34;35878:1;35870:6;35866:14;35859:58;35951:16;35946:2;35938:6;35934:15;35927:41;35848:127;:::o;35981:181::-;36121:33;36117:1;36109:6;36105:14;36098:57;36087:75;:::o;36168:234::-;36308:34;36304:1;36296:6;36292:14;36285:58;36377:17;36372:2;36364:6;36360:15;36353:42;36274:128;:::o;36408:232::-;36548:34;36544:1;36536:6;36532:14;36525:58;36617:15;36612:2;36604:6;36600:15;36593:40;36514:126;:::o;36646:122::-;36719:24;36737:5;36719:24;:::i;:::-;36712:5;36709:35;36699:2;;36758:1;36755;36748:12;36699:2;36689:79;:::o;36774:116::-;36844:21;36859:5;36844:21;:::i;:::-;36837:5;36834:32;36824:2;;36880:1;36877;36870:12;36824:2;36814:76;:::o;36896:120::-;36968:23;36985:5;36968:23;:::i;:::-;36961:5;36958:34;36948:2;;37006:1;37003;36996:12;36948:2;36938:78;:::o;37022:122::-;37095:24;37113:5;37095:24;:::i;:::-;37088:5;37085:35;37075:2;;37134:1;37131;37124:12;37075:2;37065:79;:::o

Swarm Source

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