ETH Price: $3,396.23 (-1.07%)

Token

Kidrobot Zodiac (KRZ)
 

Overview

Max Total Supply

374 KRZ

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
XRAY by SABET: Deployer
0x02eb75be1e72e988de64f0088d654d8ea1081e87
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:
zodiacDunny

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-16
*/

// File: openzeppelin-solidity/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

// File: zodiacdunny.sol


// Author: August Rosedale (https://twitter.com/augustfr)
pragma solidity ^0.8.0;




contract zodiacDunny is ERC1155Supply, Ownable  {
using Strings for uint256;
uint256 mintActive = 1;
uint256 priceStill = 0.01 ether;
uint256 priceAni = 0.05 ether;
uint256 maxStill = 495;
uint256 maxAni = 95;
string baseURI = 'https://ipfs.io/ipfs/QmU3sUukrHCzBUzmWJNEQRFFZxt7H3HPuDq4Y9kvYNWkr1/';
constructor() ERC1155(baseURI) {
}
function name() external pure returns (string memory) {
    return "Kidrobot Zodiac";
}
function symbol() external pure returns (string memory) {
    return "KRZ";
}
function updateBaseURI(string memory newBaseURI) public onlyOwner {
    baseURI = newBaseURI;
}
function updatePrices(uint256 _priceStill, uint256 _priceAni) public onlyOwner {
    priceStill = _priceStill;
    priceAni = _priceAni;
}
 function mintDunny(uint numberOfTokens, uint optionID) internal {
    _mint(msg.sender, optionID, numberOfTokens, "");
}
function updateMintStatus(uint256 _id) public onlyOwner {
    require(_id==0 || _id==1 || _id==2, "Not an available state. Options: 0 (open), 1 (paused), 2 (locked)");
    require(mintActive != 2, "Minting has been permanently closed");
    mintActive = _id;
}
function purchaseDunny(uint numberOfTokens, uint optionID) public payable {
    require(optionID >= 0 && optionID < 24, "Option does not exist");
    require(mintActive == 0, "Mint has not opened yet or has been locked");
    require(numberOfTokens <= 10, "Can only purchase a maximum of 10 tokens at a time");
     if (optionID >= 0 && optionID <= 11) {
         require(totalSupply(optionID) + numberOfTokens <= maxStill, "Minting would exceed max supply");
         require(priceStill * numberOfTokens <= msg.value, "Ether value sent is not correct");
         mintDunny(numberOfTokens, optionID);
     } else if (optionID >= 12 && optionID <= 23) {
         require(totalSupply(optionID) + numberOfTokens <= maxAni, "Minting would exceed max supply");
         require(priceAni * numberOfTokens <= msg.value, "Ether value sent is not correct");
         mintDunny(numberOfTokens, optionID);
     }
}
 function mintToAddress(uint numberOfTokens, address address_to_mint, uint optionID) internal {
    _mint(address_to_mint, optionID, numberOfTokens, "");
}
 function airdrop(address addresstm, uint numberOfTokens, uint optionID) public onlyOwner {
    require(optionID >= 0 && optionID < 24, "Option does not exist");
    if (optionID >= 0 && optionID <= 11) {
        require(totalSupply(optionID) + numberOfTokens <= 475, "Minting would exceed max supply");
        mintToAddress(numberOfTokens, addresstm, optionID);
     } else if (optionID >= 12 && optionID <= 23){
        require(totalSupply(optionID) + numberOfTokens <= 95, "Minting would exceed max supply");
        mintToAddress(numberOfTokens, addresstm, optionID);
     }
}
function uri(uint256 tokenID) public view override returns(string memory) {
    if (tokenID > 23) {
        return 'Token does not exist';
    }
    return string(abi.encodePacked(baseURI,tokenID.toString()));
}
function withdraw() public onlyOwner {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"addresstm","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"optionID","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"optionID","type":"uint256"}],"name":"purchaseDunny","outputs":[],"stateMutability":"payable","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"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":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"updateMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceStill","type":"uint256"},{"internalType":"uint256","name":"_priceAni","type":"uint256"}],"name":"updatePrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6001600555662386f26fc1000060065566b1a2bc2ec500006007556101ef600855605f60095561010060405260446080818152906200280960a03980516200005091600a916020909101906200018d565b503480156200005e57600080fd5b50600a80546200006e9062000233565b80601f01602080910402602001604051908101604052809291908181526020018280546200009c9062000233565b8015620000ed5780601f10620000c157610100808354040283529160200191620000ed565b820191906000526020600020905b815481529060010190602001808311620000cf57829003601f168201915b505050505062000103816200011e60201b60201c565b50620001186200011262000137565b6200013b565b62000270565b8051620001339060029060208401906200018d565b5050565b3390565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019b9062000233565b90600052602060002090601f016020900481019282620001bf57600085556200020a565b82601f10620001da57805160ff19168380011785556200020a565b828001600101855582156200020a579182015b828111156200020a578251825591602001919060010190620001ed565b50620002189291506200021c565b5090565b5b808211156200021857600081556001016200021d565b6002810460018216806200024857607f821691505b602082108114156200026a57634e487b7160e01b600052602260045260246000fd5b50919050565b61258980620002806000396000f3fe6080604052600436106101295760003560e01c8063715018a6116100ab578063bd85b0391161006f578063bd85b03914610316578063e1bc296714610336578063e985e9c514610356578063ef88d7f014610376578063f242432a14610396578063f2fde38b146103b657610129565b8063715018a61461028a5780638da5cb5b1461029f578063931688cb146102c157806395d89b41146102e1578063a22cb465146102f657610129565b80633ccfd60b116100f25780633ccfd60b146101f557806340c493131461020a5780634e1273f41461021d5780634f558e791461024a578063528dd2a81461026a57610129565b8062fdd58e1461012e57806301ffc9a71461016457806306fdde03146101915780630e89341c146101b35780632eb2c2d6146101d3575b600080fd5b34801561013a57600080fd5b5061014e610149366004611954565b6103d6565b60405161015b91906122e3565b60405180910390f35b34801561017057600080fd5b5061018461017f366004611a6d565b61042d565b60405161015b9190611d3b565b34801561019d57600080fd5b506101a6610475565b60405161015b9190611d46565b3480156101bf57600080fd5b506101a66101ce366004611aeb565b61049f565b3480156101df57600080fd5b506101f36101ee366004611811565b61050d565b005b34801561020157600080fd5b506101f361056b565b6101f3610218366004611b03565b6105dd565b34801561022957600080fd5b5061023d6102383660046119af565b61073a565b60405161015b9190611d03565b34801561025657600080fd5b50610184610265366004611aeb565b61085a565b34801561027657600080fd5b506101f3610285366004611aeb565b61086d565b34801561029657600080fd5b506101f3610908565b3480156102ab57600080fd5b506102b4610953565b60405161015b9190611c4c565b3480156102cd57600080fd5b506101f36102dc366004611aa5565b610962565b3480156102ed57600080fd5b506101a66109b4565b34801561030257600080fd5b506101f361031136600461191a565b6109d1565b34801561032257600080fd5b5061014e610331366004611aeb565b6109e3565b34801561034257600080fd5b506101f361035136600461197d565b6109f5565b34801561036257600080fd5b506101846103713660046117df565b610afc565b34801561038257600080fd5b506101f3610391366004611b03565b610b2a565b3480156103a257600080fd5b506101f36103b13660046118b7565b610b74565b3480156103c257600080fd5b506101f36103d13660046117c5565b610bcb565b60006001600160a01b0383166104075760405162461bcd60e51b81526004016103fe90611df5565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061045e57506001600160e01b031982166303a24d0760e21b145b8061046d575061046d82610c3c565b90505b919050565b60408051808201909152600f81526e4b6964726f626f74205a6f6469616360881b60208201525b90565b606060178211156104db5750604080518082019091526014815273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6020820152610470565b600a6104e683610c55565b6040516020016104f7929190611ba6565b6040516020818303038152906040529050919050565b610515610d78565b6001600160a01b0316856001600160a01b0316148061053b575061053b85610371610d78565b6105575760405162461bcd60e51b81526004016103fe90611f4b565b6105648585858585610d7c565b5050505050565b610573610d78565b6001600160a01b0316610584610953565b6001600160a01b0316146105aa5760405162461bcd60e51b81526004016103fe906120ba565b6040514790339082156108fc029083906000818181858888f193505050501580156105d9573d6000803e3d6000fd5b5050565b601881106105fd5760405162461bcd60e51b81526004016103fe90612271565b6005541561061d5760405162461bcd60e51b81526004016103fe90611f9d565b600a82111561063e5760405162461bcd60e51b81526004016103fe90611fe7565b600b81116106b75760085482610653836109e3565b61065d9190612354565b111561067b5760405162461bcd60e51b81526004016103fe90612039565b348260065461068a9190612380565b11156106a85760405162461bcd60e51b81526004016103fe90611ecf565b6106b28282610f4d565b6105d9565b600c81101580156106c9575060178111155b156105d957600954826106db836109e3565b6106e59190612354565b11156107035760405162461bcd60e51b81526004016103fe90612039565b34826007546107129190612380565b11156107305760405162461bcd60e51b81526004016103fe90611ecf565b6105d98282610f4d565b6060815183511461075d5760405162461bcd60e51b81526004016103fe9061219f565b6000835167ffffffffffffffff81111561078757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107b0578160200160208202803683370190505b50905060005b8451811015610852576108178582815181106107e257634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061080a57634e487b7160e01b600052603260045260246000fd5b60200260200101516103d6565b82828151811061083757634e487b7160e01b600052603260045260246000fd5b602090810291909101015261084b81612421565b90506107b6565b509392505050565b600080610866836109e3565b1192915050565b610875610d78565b6001600160a01b0316610886610953565b6001600160a01b0316146108ac5760405162461bcd60e51b81526004016103fe906120ba565b8015806108b95750806001145b806108c45750806002145b6108e05760405162461bcd60e51b81526004016103fe906120ef565b600554600214156109035760405162461bcd60e51b81526004016103fe906122a0565b600555565b610910610d78565b6001600160a01b0316610921610953565b6001600160a01b0316146109475760405162461bcd60e51b81526004016103fe906120ba565b6109516000610f68565b565b6004546001600160a01b031690565b61096a610d78565b6001600160a01b031661097b610953565b6001600160a01b0316146109a15760405162461bcd60e51b81526004016103fe906120ba565b80516105d990600a90602084019061162b565b60408051808201909152600381526225a92d60e91b602082015290565b6105d96109dc610d78565b8383610fba565b60009081526003602052604090205490565b6109fd610d78565b6001600160a01b0316610a0e610953565b6001600160a01b031614610a345760405162461bcd60e51b81526004016103fe906120ba565b60188110610a545760405162461bcd60e51b81526004016103fe90612271565b600b8111610aa1576101db82610a69836109e3565b610a739190612354565b1115610a915760405162461bcd60e51b81526004016103fe90612039565b610a9c82848361105d565b610af7565b600c8110158015610ab3575060178111155b15610af757605f82610ac4836109e3565b610ace9190612354565b1115610aec5760405162461bcd60e51b81526004016103fe90612039565b610af782848361105d565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610b32610d78565b6001600160a01b0316610b43610953565b6001600160a01b031614610b695760405162461bcd60e51b81526004016103fe906120ba565b600691909155600755565b610b7c610d78565b6001600160a01b0316856001600160a01b03161480610ba25750610ba285610371610d78565b610bbe5760405162461bcd60e51b81526004016103fe90611e86565b6105648585858585611078565b610bd3610d78565b6001600160a01b0316610be4610953565b6001600160a01b031614610c0a5760405162461bcd60e51b81526004016103fe906120ba565b6001600160a01b038116610c305760405162461bcd60e51b81526004016103fe90611e40565b610c3981610f68565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b606081610c7a57506040805180820190915260018152600360fc1b6020820152610470565b8160005b8115610ca45780610c8e81612421565b9150610c9d9050600a8361236c565b9150610c7e565b60008167ffffffffffffffff811115610ccd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610cf7576020820181803683370190505b5090505b8415610d7057610d0c60018361239f565b9150610d19600a8661243c565b610d24906030612354565b60f81b818381518110610d4757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610d69600a8661236c565b9450610cfb565b949350505050565b3390565b8151835114610d9d5760405162461bcd60e51b81526004016103fe906121e8565b6001600160a01b038416610dc35760405162461bcd60e51b81526004016103fe90611f06565b6000610dcd610d78565b9050610ddd8187878787876111bb565b60005b8451811015610edf576000858281518110610e0b57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610e3757634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610e875760405162461bcd60e51b81526004016103fe90612070565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610ec4908490612354565b9250508190555050505080610ed890612421565b9050610de0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f2f929190611d16565b60405180910390a4610f4581878787878761130d565b505050505050565b6105d93382846040518060200160405280600081525061141b565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fec5760405162461bcd60e51b81526004016103fe90612156565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611050908590611d3b565b60405180910390a3505050565b610af78282856040518060200160405280600081525061141b565b6001600160a01b03841661109e5760405162461bcd60e51b81526004016103fe90611f06565b60006110a8610d78565b90506110c88187876110b9886114fb565b6110c2886114fb565b876111bb565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156111095760405162461bcd60e51b81526004016103fe90612070565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611146908490612354565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161119c9291906122ec565b60405180910390a46111b2828888888888611554565b50505050505050565b6111c9868686868686610f45565b6001600160a01b03851661126c5760005b835181101561126a5782818151811061120357634e487b7160e01b600052603260045260246000fd5b60200260200101516003600086848151811061122f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546112549190612354565b90915550611263905081612421565b90506111da565b505b6001600160a01b038416610f455760005b83518110156111b2578281815181106112a657634e487b7160e01b600052603260045260246000fd5b6020026020010151600360008684815181106112d257634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546112f7919061239f565b90915550611306905081612421565b905061127d565b61131f846001600160a01b0316611625565b15610f455760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113589089908990889088908890600401611c60565b602060405180830381600087803b15801561137257600080fd5b505af19250505080156113a2575060408051601f3d908101601f1916820190925261139f91810190611a89565b60015b6113eb576113ae612498565b806113b957506113d3565b8060405162461bcd60e51b81526004016103fe9190611d46565b60405162461bcd60e51b81526004016103fe90611d59565b6001600160e01b0319811663bc197c8160e01b146111b25760405162461bcd60e51b81526004016103fe90611dad565b6001600160a01b0384166114415760405162461bcd60e51b81526004016103fe90612230565b600061144b610d78565b905061145d816000876110b9886114fb565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061148d908490612354565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516114e49291906122ec565b60405180910390a461056481600087878787611554565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061154357634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611566846001600160a01b0316611625565b15610f455760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061159f9089908990889088908890600401611cbe565b602060405180830381600087803b1580156115b957600080fd5b505af19250505080156115e9575060408051601f3d908101601f191682019092526115e691810190611a89565b60015b6115f5576113ae612498565b6001600160e01b0319811663f23a6e6160e01b146111b25760405162461bcd60e51b81526004016103fe90611dad565b3b151590565b828054611637906123e6565b90600052602060002090601f016020900481019282611659576000855561169f565b82601f1061167257805160ff191683800117855561169f565b8280016001018555821561169f579182015b8281111561169f578251825591602001919060010190611684565b506116ab9291506116af565b5090565b5b808211156116ab57600081556001016116b0565b600067ffffffffffffffff8311156116de576116de61247c565b6116f1601f8401601f19166020016122fa565b905082815283838301111561170557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461047057600080fd5b600082601f830112611743578081fd5b8135602061175861175383612324565b6122fa565b8281528181019085830183850287018401881015611774578586fd5b855b8581101561179257813584529284019290840190600101611776565b5090979650505050505050565b600082601f8301126117af578081fd5b6117be838335602085016116c4565b9392505050565b6000602082840312156117d6578081fd5b6117be8261171c565b600080604083850312156117f1578081fd5b6117fa8361171c565b91506118086020840161171c565b90509250929050565b600080600080600060a08688031215611828578081fd5b6118318661171c565b945061183f6020870161171c565b9350604086013567ffffffffffffffff8082111561185b578283fd5b61186789838a01611733565b9450606088013591508082111561187c578283fd5b61188889838a01611733565b9350608088013591508082111561189d578283fd5b506118aa8882890161179f565b9150509295509295909350565b600080600080600060a086880312156118ce578081fd5b6118d78661171c565b94506118e56020870161171c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561190e578182fd5b6118aa8882890161179f565b6000806040838503121561192c578182fd5b6119358361171c565b915060208301358015158114611949578182fd5b809150509250929050565b60008060408385031215611966578182fd5b61196f8361171c565b946020939093013593505050565b600080600060608486031215611991578283fd5b61199a8461171c565b95602085013595506040909401359392505050565b600080604083850312156119c1578182fd5b823567ffffffffffffffff808211156119d8578384fd5b818501915085601f8301126119eb578384fd5b813560206119fb61175383612324565b82815281810190858301838502870184018b1015611a17578889fd5b8896505b84871015611a4057611a2c8161171c565b835260019690960195918301918301611a1b565b5096505086013592505080821115611a56578283fd5b50611a6385828601611733565b9150509250929050565b600060208284031215611a7e578081fd5b81356117be8161253d565b600060208284031215611a9a578081fd5b81516117be8161253d565b600060208284031215611ab6578081fd5b813567ffffffffffffffff811115611acc578182fd5b8201601f81018413611adc578182fd5b610d70848235602084016116c4565b600060208284031215611afc578081fd5b5035919050565b60008060408385031215611b15578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015611b5357815187529582019590820190600101611b37565b509495945050505050565b60008151808452611b768160208601602086016123b6565b601f01601f19169290920160200192915050565b60008151611b9c8185602086016123b6565b9290920192915050565b8254600090819060028104600180831680611bc257607f831692505b6020808410821415611be257634e487b7160e01b87526022600452602487fd5b818015611bf65760018114611c0757611c33565b60ff19861689528489019650611c33565b611c108b612348565b885b86811015611c2b5781548b820152908501908301611c12565b505084890196505b505050505050611c438185611b8a565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611c8c90830186611b24565b8281036060840152611c9e8186611b24565b90508281036080840152611cb28185611b5e565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611cf890830184611b5e565b979650505050505050565b6000602082526117be6020830184611b24565b600060408252611d296040830185611b24565b8281036020840152611c438185611b24565b901515815260200190565b6000602082526117be6020830184611b5e565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f4d696e7420686173206e6f74206f70656e656420796574206f7220686173206260408201526919595b881b1bd8dad95960b21b606082015260800190565b60208082526032908201527f43616e206f6e6c792070757263686173652061206d6178696d756d206f6620316040820152713020746f6b656e7320617420612074696d6560701b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526041908201527f4e6f7420616e20617661696c61626c652073746174652e204f7074696f6e733a60408201527f203020286f70656e292c20312028706175736564292c203220286c6f636b65646060820152602960f81b608082015260a00190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526015908201527413dc1d1a5bdb88191bd95cc81b9bdd08195e1a5cdd605a1b604082015260600190565b60208082526023908201527f4d696e74696e6720686173206265656e207065726d616e656e746c7920636c6f6040820152621cd95960ea1b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561231c5761231c61247c565b604052919050565b600067ffffffffffffffff82111561233e5761233e61247c565b5060209081020190565b60009081526020902090565b6000821982111561236757612367612450565b500190565b60008261237b5761237b612466565b500490565b600081600019048311821515161561239a5761239a612450565b500290565b6000828210156123b1576123b1612450565b500390565b60005b838110156123d15781810151838201526020016123b9565b838111156123e0576000848401525b50505050565b6002810460018216806123fa57607f821691505b6020821081141561241b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561243557612435612450565b5060010190565b60008261244b5761244b612466565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156124a85761049c565b600481823e6308c379a06124bc8251612492565b146124c65761049c565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156124f6575050505061049c565b82840192508251915080821115612510575050505061049c565b503d830160208284010111156125285750505061049c565b601f01601f1916810160200160405291505090565b6001600160e01b031981168114610c3957600080fdfea26469706673582212205da88b3bc2a107f7753cee715996c6347a956f7fee9636d60eb4c1151adabfb864736f6c6343000800003368747470733a2f2f697066732e696f2f697066732f516d55337355756b7248437a42557a6d574a4e45515246465a787437483348507544713459396b76594e576b72312f

Deployed Bytecode

0x6080604052600436106101295760003560e01c8063715018a6116100ab578063bd85b0391161006f578063bd85b03914610316578063e1bc296714610336578063e985e9c514610356578063ef88d7f014610376578063f242432a14610396578063f2fde38b146103b657610129565b8063715018a61461028a5780638da5cb5b1461029f578063931688cb146102c157806395d89b41146102e1578063a22cb465146102f657610129565b80633ccfd60b116100f25780633ccfd60b146101f557806340c493131461020a5780634e1273f41461021d5780634f558e791461024a578063528dd2a81461026a57610129565b8062fdd58e1461012e57806301ffc9a71461016457806306fdde03146101915780630e89341c146101b35780632eb2c2d6146101d3575b600080fd5b34801561013a57600080fd5b5061014e610149366004611954565b6103d6565b60405161015b91906122e3565b60405180910390f35b34801561017057600080fd5b5061018461017f366004611a6d565b61042d565b60405161015b9190611d3b565b34801561019d57600080fd5b506101a6610475565b60405161015b9190611d46565b3480156101bf57600080fd5b506101a66101ce366004611aeb565b61049f565b3480156101df57600080fd5b506101f36101ee366004611811565b61050d565b005b34801561020157600080fd5b506101f361056b565b6101f3610218366004611b03565b6105dd565b34801561022957600080fd5b5061023d6102383660046119af565b61073a565b60405161015b9190611d03565b34801561025657600080fd5b50610184610265366004611aeb565b61085a565b34801561027657600080fd5b506101f3610285366004611aeb565b61086d565b34801561029657600080fd5b506101f3610908565b3480156102ab57600080fd5b506102b4610953565b60405161015b9190611c4c565b3480156102cd57600080fd5b506101f36102dc366004611aa5565b610962565b3480156102ed57600080fd5b506101a66109b4565b34801561030257600080fd5b506101f361031136600461191a565b6109d1565b34801561032257600080fd5b5061014e610331366004611aeb565b6109e3565b34801561034257600080fd5b506101f361035136600461197d565b6109f5565b34801561036257600080fd5b506101846103713660046117df565b610afc565b34801561038257600080fd5b506101f3610391366004611b03565b610b2a565b3480156103a257600080fd5b506101f36103b13660046118b7565b610b74565b3480156103c257600080fd5b506101f36103d13660046117c5565b610bcb565b60006001600160a01b0383166104075760405162461bcd60e51b81526004016103fe90611df5565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061045e57506001600160e01b031982166303a24d0760e21b145b8061046d575061046d82610c3c565b90505b919050565b60408051808201909152600f81526e4b6964726f626f74205a6f6469616360881b60208201525b90565b606060178211156104db5750604080518082019091526014815273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6020820152610470565b600a6104e683610c55565b6040516020016104f7929190611ba6565b6040516020818303038152906040529050919050565b610515610d78565b6001600160a01b0316856001600160a01b0316148061053b575061053b85610371610d78565b6105575760405162461bcd60e51b81526004016103fe90611f4b565b6105648585858585610d7c565b5050505050565b610573610d78565b6001600160a01b0316610584610953565b6001600160a01b0316146105aa5760405162461bcd60e51b81526004016103fe906120ba565b6040514790339082156108fc029083906000818181858888f193505050501580156105d9573d6000803e3d6000fd5b5050565b601881106105fd5760405162461bcd60e51b81526004016103fe90612271565b6005541561061d5760405162461bcd60e51b81526004016103fe90611f9d565b600a82111561063e5760405162461bcd60e51b81526004016103fe90611fe7565b600b81116106b75760085482610653836109e3565b61065d9190612354565b111561067b5760405162461bcd60e51b81526004016103fe90612039565b348260065461068a9190612380565b11156106a85760405162461bcd60e51b81526004016103fe90611ecf565b6106b28282610f4d565b6105d9565b600c81101580156106c9575060178111155b156105d957600954826106db836109e3565b6106e59190612354565b11156107035760405162461bcd60e51b81526004016103fe90612039565b34826007546107129190612380565b11156107305760405162461bcd60e51b81526004016103fe90611ecf565b6105d98282610f4d565b6060815183511461075d5760405162461bcd60e51b81526004016103fe9061219f565b6000835167ffffffffffffffff81111561078757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107b0578160200160208202803683370190505b50905060005b8451811015610852576108178582815181106107e257634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061080a57634e487b7160e01b600052603260045260246000fd5b60200260200101516103d6565b82828151811061083757634e487b7160e01b600052603260045260246000fd5b602090810291909101015261084b81612421565b90506107b6565b509392505050565b600080610866836109e3565b1192915050565b610875610d78565b6001600160a01b0316610886610953565b6001600160a01b0316146108ac5760405162461bcd60e51b81526004016103fe906120ba565b8015806108b95750806001145b806108c45750806002145b6108e05760405162461bcd60e51b81526004016103fe906120ef565b600554600214156109035760405162461bcd60e51b81526004016103fe906122a0565b600555565b610910610d78565b6001600160a01b0316610921610953565b6001600160a01b0316146109475760405162461bcd60e51b81526004016103fe906120ba565b6109516000610f68565b565b6004546001600160a01b031690565b61096a610d78565b6001600160a01b031661097b610953565b6001600160a01b0316146109a15760405162461bcd60e51b81526004016103fe906120ba565b80516105d990600a90602084019061162b565b60408051808201909152600381526225a92d60e91b602082015290565b6105d96109dc610d78565b8383610fba565b60009081526003602052604090205490565b6109fd610d78565b6001600160a01b0316610a0e610953565b6001600160a01b031614610a345760405162461bcd60e51b81526004016103fe906120ba565b60188110610a545760405162461bcd60e51b81526004016103fe90612271565b600b8111610aa1576101db82610a69836109e3565b610a739190612354565b1115610a915760405162461bcd60e51b81526004016103fe90612039565b610a9c82848361105d565b610af7565b600c8110158015610ab3575060178111155b15610af757605f82610ac4836109e3565b610ace9190612354565b1115610aec5760405162461bcd60e51b81526004016103fe90612039565b610af782848361105d565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610b32610d78565b6001600160a01b0316610b43610953565b6001600160a01b031614610b695760405162461bcd60e51b81526004016103fe906120ba565b600691909155600755565b610b7c610d78565b6001600160a01b0316856001600160a01b03161480610ba25750610ba285610371610d78565b610bbe5760405162461bcd60e51b81526004016103fe90611e86565b6105648585858585611078565b610bd3610d78565b6001600160a01b0316610be4610953565b6001600160a01b031614610c0a5760405162461bcd60e51b81526004016103fe906120ba565b6001600160a01b038116610c305760405162461bcd60e51b81526004016103fe90611e40565b610c3981610f68565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b606081610c7a57506040805180820190915260018152600360fc1b6020820152610470565b8160005b8115610ca45780610c8e81612421565b9150610c9d9050600a8361236c565b9150610c7e565b60008167ffffffffffffffff811115610ccd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610cf7576020820181803683370190505b5090505b8415610d7057610d0c60018361239f565b9150610d19600a8661243c565b610d24906030612354565b60f81b818381518110610d4757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610d69600a8661236c565b9450610cfb565b949350505050565b3390565b8151835114610d9d5760405162461bcd60e51b81526004016103fe906121e8565b6001600160a01b038416610dc35760405162461bcd60e51b81526004016103fe90611f06565b6000610dcd610d78565b9050610ddd8187878787876111bb565b60005b8451811015610edf576000858281518110610e0b57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610e3757634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610e875760405162461bcd60e51b81526004016103fe90612070565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610ec4908490612354565b9250508190555050505080610ed890612421565b9050610de0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f2f929190611d16565b60405180910390a4610f4581878787878761130d565b505050505050565b6105d93382846040518060200160405280600081525061141b565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fec5760405162461bcd60e51b81526004016103fe90612156565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611050908590611d3b565b60405180910390a3505050565b610af78282856040518060200160405280600081525061141b565b6001600160a01b03841661109e5760405162461bcd60e51b81526004016103fe90611f06565b60006110a8610d78565b90506110c88187876110b9886114fb565b6110c2886114fb565b876111bb565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156111095760405162461bcd60e51b81526004016103fe90612070565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611146908490612354565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161119c9291906122ec565b60405180910390a46111b2828888888888611554565b50505050505050565b6111c9868686868686610f45565b6001600160a01b03851661126c5760005b835181101561126a5782818151811061120357634e487b7160e01b600052603260045260246000fd5b60200260200101516003600086848151811061122f57634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546112549190612354565b90915550611263905081612421565b90506111da565b505b6001600160a01b038416610f455760005b83518110156111b2578281815181106112a657634e487b7160e01b600052603260045260246000fd5b6020026020010151600360008684815181106112d257634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546112f7919061239f565b90915550611306905081612421565b905061127d565b61131f846001600160a01b0316611625565b15610f455760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113589089908990889088908890600401611c60565b602060405180830381600087803b15801561137257600080fd5b505af19250505080156113a2575060408051601f3d908101601f1916820190925261139f91810190611a89565b60015b6113eb576113ae612498565b806113b957506113d3565b8060405162461bcd60e51b81526004016103fe9190611d46565b60405162461bcd60e51b81526004016103fe90611d59565b6001600160e01b0319811663bc197c8160e01b146111b25760405162461bcd60e51b81526004016103fe90611dad565b6001600160a01b0384166114415760405162461bcd60e51b81526004016103fe90612230565b600061144b610d78565b905061145d816000876110b9886114fb565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061148d908490612354565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516114e49291906122ec565b60405180910390a461056481600087878787611554565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061154357634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611566846001600160a01b0316611625565b15610f455760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061159f9089908990889088908890600401611cbe565b602060405180830381600087803b1580156115b957600080fd5b505af19250505080156115e9575060408051601f3d908101601f191682019092526115e691810190611a89565b60015b6115f5576113ae612498565b6001600160e01b0319811663f23a6e6160e01b146111b25760405162461bcd60e51b81526004016103fe90611dad565b3b151590565b828054611637906123e6565b90600052602060002090601f016020900481019282611659576000855561169f565b82601f1061167257805160ff191683800117855561169f565b8280016001018555821561169f579182015b8281111561169f578251825591602001919060010190611684565b506116ab9291506116af565b5090565b5b808211156116ab57600081556001016116b0565b600067ffffffffffffffff8311156116de576116de61247c565b6116f1601f8401601f19166020016122fa565b905082815283838301111561170557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461047057600080fd5b600082601f830112611743578081fd5b8135602061175861175383612324565b6122fa565b8281528181019085830183850287018401881015611774578586fd5b855b8581101561179257813584529284019290840190600101611776565b5090979650505050505050565b600082601f8301126117af578081fd5b6117be838335602085016116c4565b9392505050565b6000602082840312156117d6578081fd5b6117be8261171c565b600080604083850312156117f1578081fd5b6117fa8361171c565b91506118086020840161171c565b90509250929050565b600080600080600060a08688031215611828578081fd5b6118318661171c565b945061183f6020870161171c565b9350604086013567ffffffffffffffff8082111561185b578283fd5b61186789838a01611733565b9450606088013591508082111561187c578283fd5b61188889838a01611733565b9350608088013591508082111561189d578283fd5b506118aa8882890161179f565b9150509295509295909350565b600080600080600060a086880312156118ce578081fd5b6118d78661171c565b94506118e56020870161171c565b93506040860135925060608601359150608086013567ffffffffffffffff81111561190e578182fd5b6118aa8882890161179f565b6000806040838503121561192c578182fd5b6119358361171c565b915060208301358015158114611949578182fd5b809150509250929050565b60008060408385031215611966578182fd5b61196f8361171c565b946020939093013593505050565b600080600060608486031215611991578283fd5b61199a8461171c565b95602085013595506040909401359392505050565b600080604083850312156119c1578182fd5b823567ffffffffffffffff808211156119d8578384fd5b818501915085601f8301126119eb578384fd5b813560206119fb61175383612324565b82815281810190858301838502870184018b1015611a17578889fd5b8896505b84871015611a4057611a2c8161171c565b835260019690960195918301918301611a1b565b5096505086013592505080821115611a56578283fd5b50611a6385828601611733565b9150509250929050565b600060208284031215611a7e578081fd5b81356117be8161253d565b600060208284031215611a9a578081fd5b81516117be8161253d565b600060208284031215611ab6578081fd5b813567ffffffffffffffff811115611acc578182fd5b8201601f81018413611adc578182fd5b610d70848235602084016116c4565b600060208284031215611afc578081fd5b5035919050565b60008060408385031215611b15578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015611b5357815187529582019590820190600101611b37565b509495945050505050565b60008151808452611b768160208601602086016123b6565b601f01601f19169290920160200192915050565b60008151611b9c8185602086016123b6565b9290920192915050565b8254600090819060028104600180831680611bc257607f831692505b6020808410821415611be257634e487b7160e01b87526022600452602487fd5b818015611bf65760018114611c0757611c33565b60ff19861689528489019650611c33565b611c108b612348565b885b86811015611c2b5781548b820152908501908301611c12565b505084890196505b505050505050611c438185611b8a565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a060408201819052600090611c8c90830186611b24565b8281036060840152611c9e8186611b24565b90508281036080840152611cb28185611b5e565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611cf890830184611b5e565b979650505050505050565b6000602082526117be6020830184611b24565b600060408252611d296040830185611b24565b8281036020840152611c438185611b24565b901515815260200190565b6000602082526117be6020830184611b5e565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f4d696e7420686173206e6f74206f70656e656420796574206f7220686173206260408201526919595b881b1bd8dad95960b21b606082015260800190565b60208082526032908201527f43616e206f6e6c792070757263686173652061206d6178696d756d206f6620316040820152713020746f6b656e7320617420612074696d6560701b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526041908201527f4e6f7420616e20617661696c61626c652073746174652e204f7074696f6e733a60408201527f203020286f70656e292c20312028706175736564292c203220286c6f636b65646060820152602960f81b608082015260a00190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526015908201527413dc1d1a5bdb88191bd95cc81b9bdd08195e1a5cdd605a1b604082015260600190565b60208082526023908201527f4d696e74696e6720686173206265656e207065726d616e656e746c7920636c6f6040820152621cd95960ea1b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561231c5761231c61247c565b604052919050565b600067ffffffffffffffff82111561233e5761233e61247c565b5060209081020190565b60009081526020902090565b6000821982111561236757612367612450565b500190565b60008261237b5761237b612466565b500490565b600081600019048311821515161561239a5761239a612450565b500290565b6000828210156123b1576123b1612450565b500390565b60005b838110156123d15781810151838201526020016123b9565b838111156123e0576000848401525b50505050565b6002810460018216806123fa57607f821691505b6020821081141561241b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561243557612435612450565b5060010190565b60008261244b5761244b612466565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156124a85761049c565b600481823e6308c379a06124bc8251612492565b146124c65761049c565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156124f6575050505061049c565b82840192508251915080821115612510575050505061049c565b503d830160208284010111156125285750505061049c565b601f01601f1916810160200160405291505090565b6001600160e01b031981168114610c3957600080fdfea26469706673582212205da88b3bc2a107f7753cee715996c6347a956f7fee9636d60eb4c1151adabfb864736f6c63430008000033

Deployed Bytecode Sourcemap

40530:3167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22580:231;;;;;;;;;;-1:-1:-1;22580:231:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21603:310;;;;;;;;;;-1:-1:-1;21603:310:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40874:89::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43348:216::-;;;;;;;;;;-1:-1:-1;43348:216:0;;;;;:::i;:::-;;:::i;24519:442::-;;;;;;;;;;-1:-1:-1;24519:442:0;;;;;:::i;:::-;;:::i;:::-;;43566:128;;;;;;;;;;;;;:::i;41679:916::-;;;;;;:::i;:::-;;:::i;22977:524::-;;;;;;;;;;-1:-1:-1;22977:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37019:122::-;;;;;;;;;;-1:-1:-1;37019:122:0;;;;;:::i;:::-;;:::i;41413:264::-;;;;;;;;;;-1:-1:-1;41413:264:0;;;;;:::i;:::-;;:::i;39591:103::-;;;;;;;;;;;;;:::i;38940:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41046:97::-;;;;;;;;;;-1:-1:-1;41046:97:0;;;;;:::i;:::-;;:::i;40965:79::-;;;;;;;;;;;;;:::i;23574:155::-;;;;;;;;;;-1:-1:-1;23574:155:0;;;;;:::i;:::-;;:::i;36808:113::-;;;;;;;;;;-1:-1:-1;36808:113:0;;;;;:::i;:::-;;:::i;42757:589::-;;;;;;;;;;-1:-1:-1;42757:589:0;;;;;:::i;:::-;;:::i;23801:168::-;;;;;;;;;;-1:-1:-1;23801:168:0;;;;;:::i;:::-;;:::i;41145:141::-;;;;;;;;;;-1:-1:-1;41145:141:0;;;;;:::i;:::-;;:::i;24041:401::-;;;;;;;;;;-1:-1:-1;24041:401:0;;;;;:::i;:::-;;:::i;39849:201::-;;;;;;;;;;-1:-1:-1;39849:201:0;;;;;:::i;:::-;;:::i;22580:231::-;22666:7;-1:-1:-1;;;;;22694:21:0;;22686:77;;;;-1:-1:-1;;;22686:77:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22781:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;22781:22:0;;;;;;;;;;;;22580:231::o;21603:310::-;21705:4;-1:-1:-1;;;;;;21742:41:0;;-1:-1:-1;;;21742:41:0;;:110;;-1:-1:-1;;;;;;;21800:52:0;;-1:-1:-1;;;21800:52:0;21742:110;:163;;;;21869:36;21893:11;21869:23;:36::i;:::-;21722:183;;21603:310;;;;:::o;40874:89::-;40935:24;;;;;;;;;;;;-1:-1:-1;;;40935:24:0;;;;40874:89;;:::o;43348:216::-;43407:13;43443:2;43433:7;:12;43429:66;;;-1:-1:-1;43458:29:0;;;;;;;;;;;;-1:-1:-1;;;43458:29:0;;;;;;43429:66;43532:7;43540:18;:7;:16;:18::i;:::-;43515:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43501:59;;43348:216;;;:::o;24519:442::-;24760:12;:10;:12::i;:::-;-1:-1:-1;;;;;24752:20:0;:4;-1:-1:-1;;;;;24752:20:0;;:60;;;;24776:36;24793:4;24799:12;:10;:12::i;24776:36::-;24730:160;;;;-1:-1:-1;;;24730:160:0;;;;;;;:::i;:::-;24901:52;24924:4;24930:2;24934:3;24939:7;24948:4;24901:22;:52::i;:::-;24519:442;;;;;:::o;43566:128::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;43653:37:::1;::::0;43625:21:::1;::::0;43661:10:::1;::::0;43653:37;::::1;;;::::0;43625:21;;43610:12:::1;43653:37:::0;43610:12;43653:37;43625:21;43661:10;43653:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39231:1;43566:128::o:0;41679:916::-;41796:2;41785:8;:13;41760:64;;;;-1:-1:-1;;;41760:64:0;;;;;;;:::i;:::-;41839:10;;:15;41831:70;;;;-1:-1:-1;;;41831:70:0;;;;;;;:::i;:::-;41934:2;41916:14;:20;;41908:83;;;;-1:-1:-1;;;41908:83:0;;;;;;;:::i;:::-;42032:2;42020:8;:14;41999:593;;42098:8;;42080:14;42056:21;42068:8;42056:11;:21::i;:::-;:38;;;;:::i;:::-;:50;;42048:94;;;;-1:-1:-1;;;42048:94:0;;;;;;;:::i;:::-;42193:9;42175:14;42162:10;;:27;;;;:::i;:::-;:40;;42154:84;;;;-1:-1:-1;;;42154:84:0;;;;;;;:::i;:::-;42250:35;42260:14;42276:8;42250:9;:35::i;:::-;41999:593;;;42316:2;42304:8;:14;;:32;;;;;42334:2;42322:8;:14;;42304:32;42300:292;;;42400:6;;42382:14;42358:21;42370:8;42358:11;:21::i;:::-;:38;;;;:::i;:::-;:48;;42350:92;;;;-1:-1:-1;;;42350:92:0;;;;;;;:::i;:::-;42491:9;42473:14;42462:8;;:25;;;;:::i;:::-;:38;;42454:82;;;;-1:-1:-1;;;42454:82:0;;;;;;;:::i;:::-;42548:35;42558:14;42574:8;42548:9;:35::i;22977:524::-;23133:16;23194:3;:10;23175:8;:15;:29;23167:83;;;;-1:-1:-1;;;23167:83:0;;;;;;;:::i;:::-;23263:30;23310:8;:15;23296:30;;;;;;-1:-1:-1;;;23296:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23296:30:0;;23263:63;;23344:9;23339:122;23363:8;:15;23359:1;:19;23339:122;;;23419:30;23429:8;23438:1;23429:11;;;;;;-1:-1:-1;;;23429:11:0;;;;;;;;;;;;;;;23442:3;23446:1;23442:6;;;;;;-1:-1:-1;;;23442:6:0;;;;;;;;;;;;;;;23419:9;:30::i;:::-;23400:13;23414:1;23400:16;;;;;;-1:-1:-1;;;23400:16:0;;;;;;;;;;;;;;;;;;:49;23380:3;;;:::i;:::-;;;23339:122;;;-1:-1:-1;23480:13:0;22977:524;-1:-1:-1;;;22977:524:0:o;37019:122::-;37076:4;37132:1;37100:29;37126:2;37100:25;:29::i;:::-;:33;;37019:122;-1:-1:-1;;37019:122:0:o;41413:264::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;41484:6;;;:16:::1;;;41494:3;41499:1;41494:6;41484:16;:26;;;;41504:3;41509:1;41504:6;41484:26;41476:104;;;;-1:-1:-1::0;;;41476:104:0::1;;;;;;;:::i;:::-;41595:10;;41609:1;41595:15;;41587:63;;;;-1:-1:-1::0;;;41587:63:0::1;;;;;;;:::i;:::-;41657:10;:16:::0;41413:264::o;39591:103::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;39656:30:::1;39683:1;39656:18;:30::i;:::-;39591:103::o:0;38940:87::-;39013:6;;-1:-1:-1;;;;;39013:6:0;38940:87;:::o;41046:97::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;41119:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;40965:79::-:0;41028:12;;;;;;;;;;;;-1:-1:-1;;;41028:12:0;;;;40965:79;:::o;23574:155::-;23669:52;23688:12;:10;:12::i;:::-;23702:8;23712;23669:18;:52::i;36808:113::-;36870:7;36897:16;;;:12;:16;;;;;;;36808:113::o;42757:589::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;42889:2:::1;42878:8;:13;42853:64;;;;-1:-1:-1::0;;;42853:64:0::1;;;;;;;:::i;:::-;42957:2;42945:8;:14;42924:419;;43022:3;43004:14;42980:21;42992:8;42980:11;:21::i;:::-;:38;;;;:::i;:::-;:45;;42972:89;;;;-1:-1:-1::0;;;42972:89:0::1;;;;;;;:::i;:::-;43072:50;43086:14;43102:9;43113:8;43072:13;:50::i;:::-;42924:419;;;43153:2;43141:8;:14;;:32;;;;;43171:2;43159:8;:14;;43141:32;43137:206;;;43235:2;43217:14;43193:21;43205:8;43193:11;:21::i;:::-;:38;;;;:::i;:::-;:44;;43185:88;;;;-1:-1:-1::0;;;43185:88:0::1;;;;;;;:::i;:::-;43284:50;43298:14;43314:9;43325:8;43284:13;:50::i;:::-;42757:589:::0;;;:::o;23801:168::-;-1:-1:-1;;;;;23924:27:0;;;23900:4;23924:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;23801:168::o;41145:141::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;41231:10:::1;:24:::0;;;;41262:8:::1;:20:::0;41145:141::o;24041:401::-;24257:12;:10;:12::i;:::-;-1:-1:-1;;;;;24249:20:0;:4;-1:-1:-1;;;;;24249:20:0;;:60;;;;24273:36;24290:4;24296:12;:10;:12::i;24273:36::-;24227:151;;;;-1:-1:-1;;;24227:151:0;;;;;;;:::i;:::-;24389:45;24407:4;24413:2;24417;24421:6;24429:4;24389:17;:45::i;39849:201::-;39171:12;:10;:12::i;:::-;-1:-1:-1;;;;;39160:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39160:23:0;;39152:68;;;;-1:-1:-1;;;39152:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39938:22:0;::::1;39930:73;;;;-1:-1:-1::0;;;39930:73:0::1;;;;;;;:::i;:::-;40014:28;40033:8;40014:18;:28::i;:::-;39849:201:::0;:::o;12065:157::-;-1:-1:-1;;;;;;12174:40:0;;-1:-1:-1;;;12174:40:0;12065:157;;;:::o;373:723::-;429:13;650:10;646:53;;-1:-1:-1;677:10:0;;;;;;;;;;;;-1:-1:-1;;;677:10:0;;;;;;646:53;724:5;709:12;765:78;772:9;;765:78;;798:8;;;;:::i;:::-;;-1:-1:-1;821:10:0;;-1:-1:-1;829:2:0;821:10;;:::i;:::-;;;765:78;;;853:19;885:6;875:17;;;;;;-1:-1:-1;;;875:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;875:17:0;;853:39;;903:154;910:10;;903:154;;937:11;947:1;937:11;;:::i;:::-;;-1:-1:-1;1006:10:0;1014:2;1006:5;:10;:::i;:::-;993:24;;:2;:24;:::i;:::-;980:39;;963:6;970;963:14;;;;;;-1:-1:-1;;;963:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;963:56:0;;;;;;;;-1:-1:-1;1034:11:0;1043:2;1034:11;;:::i;:::-;;;903:154;;;1081:6;373:723;-1:-1:-1;;;;373:723:0:o;20312:98::-;20392:10;20312:98;:::o;26603:1074::-;26830:7;:14;26816:3;:10;:28;26808:81;;;;-1:-1:-1;;;26808:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26908:16:0;;26900:66;;;;-1:-1:-1;;;26900:66:0;;;;;;;:::i;:::-;26979:16;26998:12;:10;:12::i;:::-;26979:31;;27023:60;27044:8;27054:4;27060:2;27064:3;27069:7;27078:4;27023:20;:60::i;:::-;27101:9;27096:421;27120:3;:10;27116:1;:14;27096:421;;;27152:10;27165:3;27169:1;27165:6;;;;;;-1:-1:-1;;;27165:6:0;;;;;;;;;;;;;;;27152:19;;27186:14;27203:7;27211:1;27203:10;;;;;;-1:-1:-1;;;27203:10:0;;;;;;;;;;;;;;;;;;;;27230:19;27252:13;;;;;;;;;;-1:-1:-1;;;;;27252:19:0;;;;;;;;;;;;27203:10;;-1:-1:-1;27294:21:0;;;;27286:76;;;;-1:-1:-1;;;27286:76:0;;;;;;;:::i;:::-;27406:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27406:19:0;;;;;;;;;;27428:20;;;27406:42;;27478:17;;;;;;;:27;;27428:20;;27406:9;27478:27;;27428:20;;27478:27;:::i;:::-;;;;;;;;27096:421;;;27132:3;;;;:::i;:::-;;;27096:421;;;;27564:2;-1:-1:-1;;;;;27534:47:0;27558:4;-1:-1:-1;;;;;27534:47:0;27548:8;-1:-1:-1;;;;;27534:47:0;;27568:3;27573:7;27534:47;;;;;;;:::i;:::-;;;;;;;;27594:75;27630:8;27640:4;27646:2;27650:3;27655:7;27664:4;27594:35;:75::i;:::-;26603:1074;;;;;;:::o;41289:122::-;41360:47;41366:10;41378:8;41388:14;41360:47;;;;;;;;;;;;:5;:47::i;40210:191::-;40303:6;;;-1:-1:-1;;;;;40320:17:0;;;-1:-1:-1;;;;;;40320:17:0;;;;;;;40353:40;;40303:6;;;40320:17;40303:6;;40353:40;;40284:16;;40353:40;40210:191;;:::o;32789:331::-;32944:8;-1:-1:-1;;;;;32935:17:0;:5;-1:-1:-1;;;;;32935:17:0;;;32927:71;;;;-1:-1:-1;;;32927:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33009:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;33009:46:0;;;;;;;33071:41;;;;;33009:46;;33071:41;:::i;:::-;;;;;;;;32789:331;;;:::o;42598:156::-;42698:52;42704:15;42721:8;42731:14;42698:52;;;;;;;;;;;;:5;:52::i;25425:820::-;-1:-1:-1;;;;;25613:16:0;;25605:66;;;;-1:-1:-1;;;25605:66:0;;;;;;;:::i;:::-;25684:16;25703:12;:10;:12::i;:::-;25684:31;;25728:96;25749:8;25759:4;25765:2;25769:21;25787:2;25769:17;:21::i;:::-;25792:25;25810:6;25792:17;:25::i;:::-;25819:4;25728:20;:96::i;:::-;25837:19;25859:13;;;;;;;;;;;-1:-1:-1;;;;;25859:19:0;;;;;;;;;;25897:21;;;;25889:76;;;;-1:-1:-1;;;25889:76:0;;;;;;;:::i;:::-;26001:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26001:19:0;;;;;;;;;;26023:20;;;26001:42;;26065:17;;;;;;;:27;;26023:20;;26001:9;26065:27;;26023:20;;26065:27;:::i;:::-;;;;;;;;26141:2;-1:-1:-1;;;;;26110:46:0;26135:4;-1:-1:-1;;;;;26110:46:0;26125:8;-1:-1:-1;;;;;26110:46:0;;26145:2;26149:6;26110:46;;;;;;;:::i;:::-;;;;;;;;26169:68;26200:8;26210:4;26216:2;26220;26224:6;26232:4;26169:30;:68::i;:::-;25425:820;;;;;;;:::o;37216:655::-;37455:66;37482:8;37492:4;37498:2;37502:3;37507:7;37516:4;37455:26;:66::i;:::-;-1:-1:-1;;;;;37538:18:0;;37534:160;;37578:9;37573:110;37597:3;:10;37593:1;:14;37573:110;;;37657:7;37665:1;37657:10;;;;;;-1:-1:-1;;;37657:10:0;;;;;;;;;;;;;;;37633:12;:20;37646:3;37650:1;37646:6;;;;;;-1:-1:-1;;;37646:6:0;;;;;;;;;;;;;;;37633:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;37609:3:0;;-1:-1:-1;37609:3:0;;:::i;:::-;;;37573:110;;;;37534:160;-1:-1:-1;;;;;37710:16:0;;37706:158;;37748:9;37743:110;37767:3;:10;37763:1;:14;37743:110;;;37827:7;37835:1;37827:10;;;;;;-1:-1:-1;;;37827:10:0;;;;;;;;;;;;;;;37803:12;:20;37816:3;37820:1;37816:6;;;;;;-1:-1:-1;;;37816:6:0;;;;;;;;;;;;;;;37803:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;37779:3:0;;-1:-1:-1;37779:3:0;;:::i;:::-;;;37743:110;;35057:813;35297:15;:2;-1:-1:-1;;;;;35297:13:0;;:15::i;:::-;35293:570;;;35333:79;;-1:-1:-1;;;35333:79:0;;-1:-1:-1;;;;;35333:43:0;;;;;:79;;35377:8;;35387:4;;35393:3;;35398:7;;35407:4;;35333:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35333:79:0;;;;;;;;-1:-1:-1;;35333:79:0;;;;;;;;;;;;:::i;:::-;;;35329:523;;;;:::i;:::-;;;;;;;;35725:6;35718:14;;-1:-1:-1;;;35718:14:0;;;;;;;;:::i;35329:523::-;35774:62;;-1:-1:-1;;;35774:62:0;;;;;;;:::i;35329:523::-;-1:-1:-1;;;;;;35494:60:0;;-1:-1:-1;;;35494:60:0;35490:159;;35579:50;;-1:-1:-1;;;35579:50:0;;;;;;;:::i;28995:569::-;-1:-1:-1;;;;;29148:16:0;;29140:62;;;;-1:-1:-1;;;29140:62:0;;;;;;;:::i;:::-;29215:16;29234:12;:10;:12::i;:::-;29215:31;;29259:102;29280:8;29298:1;29302:2;29306:21;29324:2;29306:17;:21::i;29259:102::-;29374:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29374:17:0;;;;;;;;;:27;;29395:6;;29374:9;:27;;29395:6;;29374:27;:::i;:::-;;;;;;;;29454:2;-1:-1:-1;;;;;29417:52:0;29450:1;-1:-1:-1;;;;;29417:52:0;29432:8;-1:-1:-1;;;;;29417:52:0;;29458:2;29462:6;29417:52;;;;;;;:::i;:::-;;;;;;;;29482:74;29513:8;29531:1;29535:2;29539;29543:6;29551:4;29482:30;:74::i;35878:198::-;35998:16;;;36012:1;35998:16;;;;;;;;;35944;;35973:22;;35998:16;;;;;;;;;;;;-1:-1:-1;35998:16:0;35973:41;;36036:7;36025:5;36031:1;36025:8;;;;;;-1:-1:-1;;;36025:8:0;;;;;;;;;;;;;;;;;;:18;36063:5;35878:198;-1:-1:-1;;35878:198:0:o;34305:744::-;34520:15;:2;-1:-1:-1;;;;;34520:13:0;;:15::i;:::-;34516:526;;;34556:72;;-1:-1:-1;;;34556:72:0;;-1:-1:-1;;;;;34556:38:0;;;;;:72;;34595:8;;34605:4;;34611:2;;34615:6;;34623:4;;34556:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34556:72:0;;;;;;;;-1:-1:-1;;34556:72:0;;;;;;;;;;;;:::i;:::-;;;34552:479;;;;:::i;:::-;-1:-1:-1;;;;;;34678:55:0;;-1:-1:-1;;;34678:55:0;34674:154;;34758:50;;-1:-1:-1;;;34758:50:0;;;;;;;:::i;2952:387::-;3275:20;3323:8;;;2952:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:232::-;;1415:3;1408:4;1400:6;1396:17;1392:27;1382:2;;1437:5;1430;1423:20;1382:2;1463:81;1540:3;1531:6;1518:20;1511:4;1503:6;1499:17;1463:81;:::i;:::-;1454:90;1372:178;-1:-1:-1;;;1372:178:1:o;1555:198::-;;1667:2;1655:9;1646:7;1642:23;1638:32;1635:2;;;1688:6;1680;1673:22;1635:2;1716:31;1737:9;1716:31;:::i;1758:274::-;;;1887:2;1875:9;1866:7;1862:23;1858:32;1855:2;;;1908:6;1900;1893:22;1855:2;1936:31;1957:9;1936:31;:::i;:::-;1926:41;;1986:40;2022:2;2011:9;2007:18;1986:40;:::i;:::-;1976:50;;1845:187;;;;;:::o;2037:1001::-;;;;;;2276:3;2264:9;2255:7;2251:23;2247:33;2244:2;;;2298:6;2290;2283:22;2244:2;2326:31;2347:9;2326:31;:::i;:::-;2316:41;;2376:40;2412:2;2401:9;2397:18;2376:40;:::i;:::-;2366:50;;2467:2;2456:9;2452:18;2439:32;2490:18;2531:2;2523:6;2520:14;2517:2;;;2552:6;2544;2537:22;2517:2;2580:67;2639:7;2630:6;2619:9;2615:22;2580:67;:::i;:::-;2570:77;;2700:2;2689:9;2685:18;2672:32;2656:48;;2729:2;2719:8;2716:16;2713:2;;;2750:6;2742;2735:22;2713:2;2778:69;2839:7;2828:8;2817:9;2813:24;2778:69;:::i;:::-;2768:79;;2900:3;2889:9;2885:19;2872:33;2856:49;;2930:2;2920:8;2917:16;2914:2;;;2951:6;2943;2936:22;2914:2;;2979:53;3024:7;3013:8;3002:9;2998:24;2979:53;:::i;:::-;2969:63;;;2234:804;;;;;;;;:::o;3043:632::-;;;;;;3232:3;3220:9;3211:7;3207:23;3203:33;3200:2;;;3254:6;3246;3239:22;3200:2;3282:31;3303:9;3282:31;:::i;:::-;3272:41;;3332:40;3368:2;3357:9;3353:18;3332:40;:::i;:::-;3322:50;;3419:2;3408:9;3404:18;3391:32;3381:42;;3470:2;3459:9;3455:18;3442:32;3432:42;;3525:3;3514:9;3510:19;3497:33;3553:18;3545:6;3542:30;3539:2;;;3590:6;3582;3575:22;3539:2;3618:51;3661:7;3652:6;3641:9;3637:22;3618:51;:::i;3680:369::-;;;3806:2;3794:9;3785:7;3781:23;3777:32;3774:2;;;3827:6;3819;3812:22;3774:2;3855:31;3876:9;3855:31;:::i;:::-;3845:41;;3936:2;3925:9;3921:18;3908:32;3983:5;3976:13;3969:21;3962:5;3959:32;3949:2;;4010:6;4002;3995:22;3949:2;4038:5;4028:15;;;3764:285;;;;;:::o;4054:266::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4204:6;4196;4189:22;4151:2;4232:31;4253:9;4232:31;:::i;:::-;4222:41;4310:2;4295:18;;;;4282:32;;-1:-1:-1;;;4141:179:1:o;4325:334::-;;;;4471:2;4459:9;4450:7;4446:23;4442:32;4439:2;;;4492:6;4484;4477:22;4439:2;4520:31;4541:9;4520:31;:::i;:::-;4510:41;4598:2;4583:18;;4570:32;;-1:-1:-1;4649:2:1;4634:18;;;4621:32;;4429:230;-1:-1:-1;;;4429:230:1:o;4664:1226::-;;;4843:2;4831:9;4822:7;4818:23;4814:32;4811:2;;;4864:6;4856;4849:22;4811:2;4909:9;4896:23;4938:18;4979:2;4971:6;4968:14;4965:2;;;5000:6;4992;4985:22;4965:2;5043:6;5032:9;5028:22;5018:32;;5088:7;5081:4;5077:2;5073:13;5069:27;5059:2;;5115:6;5107;5100:22;5059:2;5156;5143:16;5178:4;5202:65;5217:49;5263:2;5217:49;:::i;5202:65::-;5301:15;;;5332:12;;;;5364:11;;;5402;;;5394:20;;5390:29;;5387:42;-1:-1:-1;5384:2:1;;;5447:6;5439;5432:22;5384:2;5474:6;5465:15;;5489:171;5503:2;5500:1;5497:9;5489:171;;;5560:25;5581:3;5560:25;:::i;:::-;5548:38;;5521:1;5514:9;;;;;5606:12;;;;5638;;5489:171;;;-1:-1:-1;5679:5:1;-1:-1:-1;;5722:18:1;;5709:32;;-1:-1:-1;;5753:16:1;;;5750:2;;;5787:6;5779;5772:22;5750:2;;5815:69;5876:7;5865:8;5854:9;5850:24;5815:69;:::i;:::-;5805:79;;;4801:1089;;;;;:::o;5895:257::-;;6006:2;5994:9;5985:7;5981:23;5977:32;5974:2;;;6027:6;6019;6012:22;5974:2;6071:9;6058:23;6090:32;6116:5;6090:32;:::i;6157:261::-;;6279:2;6267:9;6258:7;6254:23;6250:32;6247:2;;;6300:6;6292;6285:22;6247:2;6337:9;6331:16;6356:32;6382:5;6356:32;:::i;6423:482::-;;6545:2;6533:9;6524:7;6520:23;6516:32;6513:2;;;6566:6;6558;6551:22;6513:2;6611:9;6598:23;6644:18;6636:6;6633:30;6630:2;;;6681:6;6673;6666:22;6630:2;6709:22;;6762:4;6754:13;;6750:27;-1:-1:-1;6740:2:1;;6796:6;6788;6781:22;6740:2;6824:75;6891:7;6886:2;6873:16;6868:2;6864;6860:11;6824:75;:::i;6910:190::-;;7022:2;7010:9;7001:7;6997:23;6993:32;6990:2;;;7043:6;7035;7028:22;6990:2;-1:-1:-1;7071:23:1;;6980:120;-1:-1:-1;6980:120:1:o;7105:258::-;;;7234:2;7222:9;7213:7;7209:23;7205:32;7202:2;;;7255:6;7247;7240:22;7202:2;-1:-1:-1;;7283:23:1;;;7353:2;7338:18;;;7325:32;;-1:-1:-1;7192:171:1:o;7368:443::-;;7465:5;7459:12;7492:6;7487:3;7480:19;7518:4;7547:2;7542:3;7538:12;7531:19;;7584:2;7577:5;7573:14;7605:3;7617:169;7631:6;7628:1;7625:13;7617:169;;;7692:13;;7680:26;;7726:12;;;;7761:15;;;;7653:1;7646:9;7617:169;;;-1:-1:-1;7802:3:1;;7435:376;-1:-1:-1;;;;;7435:376:1:o;7816:259::-;;7897:5;7891:12;7924:6;7919:3;7912:19;7940:63;7996:6;7989:4;7984:3;7980:14;7973:4;7966:5;7962:16;7940:63;:::i;:::-;8057:2;8036:15;-1:-1:-1;;8032:29:1;8023:39;;;;8064:4;8019:50;;7867:208;-1:-1:-1;;7867:208:1:o;8080:187::-;;8162:5;8156:12;8177:52;8222:6;8217:3;8210:4;8203:5;8199:16;8177:52;:::i;:::-;8245:16;;;;;8132:135;-1:-1:-1;;8132:135:1:o;8272:1181::-;8506:13;;8272:1181;;;;8579:1;8564:17;;8600:1;8636:18;;;;8663:2;;8717:4;8709:6;8705:17;8695:27;;8663:2;8743;8791;8783:6;8780:14;8760:18;8757:38;8754:2;;;-1:-1:-1;;;8818:33:1;;8874:4;8871:1;8864:15;8904:4;8825:3;8892:17;8754:2;8935:18;8962:104;;;;9080:1;9075:324;;;;8928:471;;8962:104;-1:-1:-1;;8995:24:1;;8983:37;;9040:16;;;;-1:-1:-1;8962:104:1;;9075:324;9111:39;9143:6;9111:39;:::i;:::-;9172:3;9188:165;9202:6;9199:1;9196:13;9188:165;;;9280:14;;9267:11;;;9260:35;9323:16;;;;9217:10;;9188:165;;;9192:3;;9382:6;9377:3;9373:16;9366:23;;8928:471;;;;;;;9415:32;9443:3;9435:6;9415:32;:::i;:::-;9408:39;8456:997;-1:-1:-1;;;;;8456:997:1:o;9458:203::-;-1:-1:-1;;;;;9622:32:1;;;;9604:51;;9592:2;9577:18;;9559:102::o;9666:840::-;-1:-1:-1;;;;;10063:15:1;;;10045:34;;10115:15;;10110:2;10095:18;;10088:43;10025:3;10162:2;10147:18;;10140:31;;;9666:840;;10194:63;;10237:19;;10229:6;10194:63;:::i;:::-;10305:9;10297:6;10293:22;10288:2;10277:9;10273:18;10266:50;10339;10382:6;10374;10339:50;:::i;:::-;10325:64;;10438:9;10430:6;10426:22;10420:3;10409:9;10405:19;10398:51;10466:34;10493:6;10485;10466:34;:::i;:::-;10458:42;9997:509;-1:-1:-1;;;;;;;;9997:509:1:o;10511:562::-;-1:-1:-1;;;;;10808:15:1;;;10790:34;;10860:15;;10855:2;10840:18;;10833:43;10907:2;10892:18;;10885:34;;;10950:2;10935:18;;10928:34;;;10770:3;10993;10978:19;;10971:32;;;10511:562;;11020:47;;11047:19;;11039:6;11020:47;:::i;:::-;11012:55;10742:331;-1:-1:-1;;;;;;;10742:331:1:o;11078:267::-;;11257:2;11246:9;11239:21;11277:62;11335:2;11324:9;11320:18;11312:6;11277:62;:::i;11350:477::-;;11607:2;11596:9;11589:21;11633:62;11691:2;11680:9;11676:18;11668:6;11633:62;:::i;:::-;11743:9;11735:6;11731:22;11726:2;11715:9;11711:18;11704:50;11771;11814:6;11806;11771:50;:::i;11832:187::-;11997:14;;11990:22;11972:41;;11960:2;11945:18;;11927:92::o;12024:221::-;;12173:2;12162:9;12155:21;12193:46;12235:2;12224:9;12220:18;12212:6;12193:46;:::i;12250:416::-;12452:2;12434:21;;;12491:2;12471:18;;;12464:30;12530:34;12525:2;12510:18;;12503:62;-1:-1:-1;;;12596:2:1;12581:18;;12574:50;12656:3;12641:19;;12424:242::o;12671:404::-;12873:2;12855:21;;;12912:2;12892:18;;;12885:30;12951:34;12946:2;12931:18;;12924:62;-1:-1:-1;;;13017:2:1;13002:18;;12995:38;13065:3;13050:19;;12845:230::o;13080:407::-;13282:2;13264:21;;;13321:2;13301:18;;;13294:30;13360:34;13355:2;13340:18;;13333:62;-1:-1:-1;;;13426:2:1;13411:18;;13404:41;13477:3;13462:19;;13254:233::o;13492:402::-;13694:2;13676:21;;;13733:2;13713:18;;;13706:30;13772:34;13767:2;13752:18;;13745:62;-1:-1:-1;;;13838:2:1;13823:18;;13816:36;13884:3;13869:19;;13666:228::o;13899:405::-;14101:2;14083:21;;;14140:2;14120:18;;;14113:30;14179:34;14174:2;14159:18;;14152:62;-1:-1:-1;;;14245:2:1;14230:18;;14223:39;14294:3;14279:19;;14073:231::o;14309:355::-;14511:2;14493:21;;;14550:2;14530:18;;;14523:30;14589:33;14584:2;14569:18;;14562:61;14655:2;14640:18;;14483:181::o;14669:401::-;14871:2;14853:21;;;14910:2;14890:18;;;14883:30;14949:34;14944:2;14929:18;;14922:62;-1:-1:-1;;;15015:2:1;15000:18;;14993:35;15060:3;15045:19;;14843:227::o;15075:414::-;15277:2;15259:21;;;15316:2;15296:18;;;15289:30;15355:34;15350:2;15335:18;;15328:62;-1:-1:-1;;;15421:2:1;15406:18;;15399:48;15479:3;15464:19;;15249:240::o;15494:406::-;15696:2;15678:21;;;15735:2;15715:18;;;15708:30;15774:34;15769:2;15754:18;;15747:62;-1:-1:-1;;;15840:2:1;15825:18;;15818:40;15890:3;15875:19;;15668:232::o;15905:414::-;16107:2;16089:21;;;16146:2;16126:18;;;16119:30;16185:34;16180:2;16165:18;;16158:62;-1:-1:-1;;;16251:2:1;16236:18;;16229:48;16309:3;16294:19;;16079:240::o;16324:355::-;16526:2;16508:21;;;16565:2;16545:18;;;16538:30;16604:33;16599:2;16584:18;;16577:61;16670:2;16655:18;;16498:181::o;16684:406::-;16886:2;16868:21;;;16925:2;16905:18;;;16898:30;16964:34;16959:2;16944:18;;16937:62;-1:-1:-1;;;17030:2:1;17015:18;;17008:40;17080:3;17065:19;;16858:232::o;17095:356::-;17297:2;17279:21;;;17316:18;;;17309:30;17375:34;17370:2;17355:18;;17348:62;17442:2;17427:18;;17269:182::o;17456:469::-;17658:2;17640:21;;;17697:2;17677:18;;;17670:30;17736:34;17731:2;17716:18;;17709:62;17807:34;17802:2;17787:18;;17780:62;-1:-1:-1;;;17873:3:1;17858:19;;17851:32;17915:3;17900:19;;17630:295::o;17930:405::-;18132:2;18114:21;;;18171:2;18151:18;;;18144:30;18210:34;18205:2;18190:18;;18183:62;-1:-1:-1;;;18276:2:1;18261:18;;18254:39;18325:3;18310:19;;18104:231::o;18340:405::-;18542:2;18524:21;;;18581:2;18561:18;;;18554:30;18620:34;18615:2;18600:18;;18593:62;-1:-1:-1;;;18686:2:1;18671:18;;18664:39;18735:3;18720:19;;18514:231::o;18750:404::-;18952:2;18934:21;;;18991:2;18971:18;;;18964:30;19030:34;19025:2;19010:18;;19003:62;-1:-1:-1;;;19096:2:1;19081:18;;19074:38;19144:3;19129:19;;18924:230::o;19159:397::-;19361:2;19343:21;;;19400:2;19380:18;;;19373:30;19439:34;19434:2;19419:18;;19412:62;-1:-1:-1;;;19505:2:1;19490:18;;19483:31;19546:3;19531:19;;19333:223::o;19561:345::-;19763:2;19745:21;;;19802:2;19782:18;;;19775:30;-1:-1:-1;;;19836:2:1;19821:18;;19814:51;19897:2;19882:18;;19735:171::o;19911:399::-;20113:2;20095:21;;;20152:2;20132:18;;;20125:30;20191:34;20186:2;20171:18;;20164:62;-1:-1:-1;;;20257:2:1;20242:18;;20235:33;20300:3;20285:19;;20085:225::o;20315:177::-;20461:25;;;20449:2;20434:18;;20416:76::o;20497:248::-;20671:25;;;20727:2;20712:18;;20705:34;20659:2;20644:18;;20626:119::o;20750:251::-;20820:2;20814:9;20850:17;;;20897:18;20882:34;;20918:22;;;20879:62;20876:2;;;20944:18;;:::i;:::-;20980:2;20973:22;20794:207;;-1:-1:-1;20794:207:1:o;21006:192::-;;21105:18;21097:6;21094:30;21091:2;;;21127:18;;:::i;:::-;-1:-1:-1;21187:4:1;21168:17;;;21164:28;;21081:117::o;21203:129::-;;21271:17;;;21321:4;21305:21;;;21261:71::o;21337:128::-;;21408:1;21404:6;21401:1;21398:13;21395:2;;;21414:18;;:::i;:::-;-1:-1:-1;21450:9:1;;21385:80::o;21470:120::-;;21536:1;21526:2;;21541:18;;:::i;:::-;-1:-1:-1;21575:9:1;;21516:74::o;21595:168::-;;21701:1;21697;21693:6;21689:14;21686:1;21683:21;21678:1;21671:9;21664:17;21660:45;21657:2;;;21708:18;;:::i;:::-;-1:-1:-1;21748:9:1;;21647:116::o;21768:125::-;;21836:1;21833;21830:8;21827:2;;;21841:18;;:::i;:::-;-1:-1:-1;21878:9:1;;21817:76::o;21898:258::-;21970:1;21980:113;21994:6;21991:1;21988:13;21980:113;;;22070:11;;;22064:18;22051:11;;;22044:39;22016:2;22009:10;21980:113;;;22111:6;22108:1;22105:13;22102:2;;;22146:1;22137:6;22132:3;22128:16;22121:27;22102:2;;21951:205;;;:::o;22161:380::-;22246:1;22236:12;;22293:1;22283:12;;;22304:2;;22358:4;22350:6;22346:17;22336:27;;22304:2;22411;22403:6;22400:14;22380:18;22377:38;22374:2;;;22457:10;22452:3;22448:20;22445:1;22438:31;22492:4;22489:1;22482:15;22520:4;22517:1;22510:15;22374:2;;22216:325;;;:::o;22546:135::-;;-1:-1:-1;;22606:17:1;;22603:2;;;22626:18;;:::i;:::-;-1:-1:-1;22673:1:1;22662:13;;22593:88::o;22686:112::-;;22744:1;22734:2;;22749:18;;:::i;:::-;-1:-1:-1;22783:9:1;;22724:74::o;22803:127::-;22864:10;22859:3;22855:20;22852:1;22845:31;22895:4;22892:1;22885:15;22919:4;22916:1;22909:15;22935:127;22996:10;22991:3;22987:20;22984:1;22977:31;23027:4;23024:1;23017:15;23051:4;23048:1;23041:15;23067:127;23128:10;23123:3;23119:20;23116:1;23109:31;23159:4;23156:1;23149:15;23183:4;23180:1;23173:15;23199:88;23274:3;23270:15;;23256:31::o;23292:764::-;;23373:4;23355:16;23352:26;23349:2;;;23381:5;;23349:2;23422:1;23417:3;23412;23397:27;23484:10;23446:36;23477:3;23471:10;23446:36;:::i;:::-;23443:52;23433:2;;23499:5;;23433:2;23533;23527:9;23573:16;-1:-1:-1;;23569:29:1;23566:1;23527:9;23545:54;23628:4;23622:11;23652:16;23687:18;23758:2;23751:4;23743:6;23739:17;23736:25;23731:2;23723:6;23720:14;23717:45;23714:2;;;23765:5;;;;;;23714:2;23802:6;23796:4;23792:17;23781:28;;23838:3;23832:10;23818:24;;23865:2;23857:6;23854:14;23851:2;;;23871:5;;;;;;23851:2;;23932:16;23926:4;23922:27;23915:4;23906:6;23901:3;23897:16;23893:27;23890:60;23887:2;;;23953:5;;;;;23887:2;24018;23997:15;-1:-1:-1;;23993:29:1;23984:39;;24025:4;23980:50;23976:2;23969:62;23988:3;-1:-1:-1;;23339:717:1;:::o;24061:133::-;-1:-1:-1;;;;;;24137:32:1;;24127:43;;24117:2;;24184:1;24181;24174:12

Swarm Source

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