ETH Price: $3,285.67 (+1.21%)
Gas: 13 Gwei

Token

Moon Crypto Cola (MAL_CRYPTO_COLA)
 

Overview

Max Total Supply

15,025 MAL_CRYPTO_COLA

Holders

858

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x06f64a6a94ceb668cef0e3c06453b334c6b47f8b
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:
MoonCryptoCola

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-20
*/

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



// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)
/**
 * @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;
}


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
/**
 * @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.
     *
     * NOTE: 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.
     *
     * NOTE: 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);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)
/**
 * @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);
}


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)
/**
 * @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;
    }
}


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)
/**
 * @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];
            }
        }
    }
}


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
 * @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);
    }
}


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}


interface IMAL {
  function spendMAL(address user, uint256 amount) external;
}

interface ISTAKING {
  function balanceOf(address user) external view returns (uint256);
}

contract MoonCryptoCola is ERC1155Supply, Ownable {
    using Strings for uint256;

    uint256 public MAX_SUPPLY = 15000;
    uint256 public SUPPLY = 0;
    mapping (uint256 => uint256) maxSupplies;
    mapping (uint256 => uint256) tokensPrices;
    mapping(uint256=>uint256) priceIncrementer;
    bool private _detailsSet;

    mapping(address=> uint256) _mintedTokens;

    bool public saleIsActive;
    bool public isPaused;

    string private name_;
    string private symbol_; 

    IMAL public MAL;
    ISTAKING public STAKING;
    IERC721 public APES;
    IERC721 public BREEDING;

    string private colaBaseUri;

    mapping(address => bool) private _isAuthorised;
    address[] public authorisedLog;

    enum CryptoColaTypes{
        Can,
        Bottle,
        Barrel
    }

    mapping (address => uint256) private _mintedPerAddress;

    event CryptoColasMinted(address mintedBy, uint256 totalAmount, uint256 totalTypes);

    constructor(address _apes, address _staking, address _mal, string memory baseUri) ERC1155(baseUri) {
      name_ = "Moon Crypto Cola";
      symbol_ = "MAL_CRYPTO_COLA";
      colaBaseUri = baseUri;

      saleIsActive = false;
      isPaused = false;

      // contracts
      APES = IERC721(address(_apes));
      STAKING = ISTAKING(address(_staking));
      MAL = IMAL(address(_mal));
      
      saleIsActive = false;

      maxSupplies[0] = 10000;
      maxSupplies[1] = 6000;
      maxSupplies[2] = 2000;
      tokensPrices[0] = 1500 ether;
      tokensPrices[1] = 3000 ether;
      tokensPrices[2] = 7000 ether;


      priceIncrementer[0] = 1500 ether;
      priceIncrementer[1] = 3000 ether;
      priceIncrementer[2] = 7000 ether;
      _detailsSet = true;
    }

    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes memory data) public override {
        require(from == _msgSender() || isApprovedForAll(from, _msgSender()) || _isAuthorised[_msgSender()], "ERC1155: caller is not owner nor approved");
        _safeTransferFrom(from, to, id, amount, data);
    }

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

    function authorise(address addressToAuth) public onlyOwner {
      _isAuthorised[addressToAuth] = true;
      authorisedLog.push(addressToAuth);
    }

    function unauthorise(address addressToUnAuth) public onlyOwner {
      _isAuthorised[addressToUnAuth] = false;
    }

    function setBreedingContract(address _breeding) public onlyOwner{
      BREEDING = IERC721(_breeding);
      _isAuthorised[_breeding] = true;
    }

    function reserveForGiveaway(uint256[] memory tokenTypes, uint256[] memory tokenAmounts) public onlyOwner{
      require(tokenTypes.length == tokenAmounts.length, "Lists are not same length");
      uint256 totalAmount = 0;
      for (uint256 i = 0; i < tokenTypes.length; i++){
            require(tokenTypes[i] <= uint256(CryptoColaTypes.Barrel), "Invalid token type");
            require(totalSupply(tokenTypes[i]) + tokenAmounts[i] <= maxSupplies[tokenTypes[i]], "You tried to mint more than allowed");
            totalAmount += tokenAmounts[i];
        }
        require(SUPPLY + totalAmount <= MAX_SUPPLY, "Cannot mint more than Total Crypto Cola Supply allows");
      _mintBatch(_msgSender(), tokenTypes, tokenAmounts, "");
    }
    
    function name() public view returns (string memory) {
      return name_;
    }

    function symbol() public view returns (string memory) {
      return symbol_;
    }

    function getTotalPrice(address buyer, uint256[] memory tokensTypes, uint256[] memory tokensNumbers) public view returns (uint256){
        require(tokensTypes.length == tokensNumbers.length, "Lists not same length");
        uint256 apesOwned = _getApeBalance(buyer);
        uint256 colasMinted = _mintedTokens[buyer];
        uint256 totalPrice = 0;
        uint256 totalAmount = 0;
        for (uint256 i = 0; i < tokensTypes.length; i++){
            require(tokensNumbers[i] > 0, "Wrong Crypto Cola purchase amount");
            require(tokensTypes[i] <= uint256(CryptoColaTypes.Barrel), "Invalid token type");
            require(totalSupply(tokensTypes[i]) + tokensNumbers[i] <= maxSupplies[tokensTypes[i]], "You tried to mint more than allowed");

            uint256 colaBasePrice = tokensPrices[tokensTypes[i]];
            uint256 colaIncrement = priceIncrementer[tokensTypes[i]];

            for (uint256 j = 0; j < tokensNumbers[i]; j++){
              colasMinted += 1;
              if (colasMinted <= apesOwned){
                totalPrice += colaBasePrice;
              } else {
                totalPrice += colaBasePrice + ((colasMinted - apesOwned) * colaIncrement);
              }
            }
            totalAmount += tokensNumbers[i];
        }

        return totalPrice;

    }

    function purchase(uint256[] memory tokensTypes, uint256[] memory tokensNumbers) public {
        require(tokensTypes.length == tokensNumbers.length, "Lists not same length");
        require(_detailsSet, "The mint has not started yet");
        require(saleIsActive, "The mint has not started yet");
        uint256 apesOwned = _getApeBalance(_msgSender());
        uint256 colasMinted = _mintedTokens[_msgSender()];
        uint256 totalPrice = 0;
        uint256 totalAmount = 0;
        for (uint256 i = 0; i < tokensTypes.length; i++){
            require(tokensNumbers[i] > 0, "Wrong Crypto Cola purchase amount");
            require(tokensTypes[i] <= uint256(CryptoColaTypes.Barrel), "Invalid token type");
            require(totalSupply(tokensTypes[i]) + tokensNumbers[i] <= maxSupplies[tokensTypes[i]], "You tried to mint more than allowed");

            uint256 colaBasePrice = tokensPrices[tokensTypes[i]];
            uint256 colaIncrement = priceIncrementer[tokensTypes[i]];

            for (uint256 j = 0; j < tokensNumbers[i]; j++){
              colasMinted += 1;
              if (colasMinted <= apesOwned){
                totalPrice += colaBasePrice;
              } else {
                totalPrice += colaBasePrice + ((colasMinted - apesOwned) * colaIncrement);
              }
            }
            totalAmount += tokensNumbers[i];
        }
        require(SUPPLY + totalAmount <= MAX_SUPPLY, "Cannot mint more than Total Crypto Cola Supply allows");

        _mintedTokens[_msgSender()] += totalAmount;
        MAL.spendMAL(_msgSender(), totalPrice);

        _mintBatch(_msgSender(), tokensTypes, tokensNumbers, "");

        emit CryptoColasMinted(_msgSender(), totalAmount, tokensTypes.length);
    }

    function getColasMinted(address user) public view returns(uint256){
      return _mintedTokens[user];
    }

    function getColaIncrement(uint256 colaType) public view returns(uint256){
      return priceIncrementer[colaType];
    }

    function updateSaleStatus(bool status) public onlyOwner {
      saleIsActive = status;
    }
    
    function setTokenPriceAndMaxSupplies(uint256[] memory _tokenTypes, uint256[] memory _tokenPrices, uint256[] memory _increments, uint256[] memory _tokensMaxSupplies) public onlyOwner {
        require(_tokenTypes.length == _tokenPrices.length, "Lists not same length");
        require(_tokenTypes.length == _tokensMaxSupplies.length, "Lists not same length");
        require(_tokenTypes.length == _increments.length, "Lists not same length");
        require(!saleIsActive, "Price cannot be changed while sale is active");
        for (uint256 i = 0; i < _tokenTypes.length; i++){
            require(_tokenTypes[i] >= 0, "Invalid token type");
            require(_tokenTypes[i] <= uint256(CryptoColaTypes.Barrel), "Invalid token type");
            require(_tokenPrices[i] > 0, "Invalid price");
            tokensPrices[_tokenTypes[i]] = _tokenPrices[i];
            _tokensMaxSupplies[_tokenTypes[i]] = _tokensMaxSupplies[i];
            priceIncrementer[_tokenTypes[i]] = _increments[i];
        }
        _detailsSet = true;
    }

    function _getApeBalance(address user) internal view returns (uint256){
      return STAKING.balanceOf(user) + APES.balanceOf(user);
    }


    function withdraw() external onlyOwner {
      uint256 balance = address(this).balance;
      payable(owner()).transfer(balance);
    }

    function pause(bool _isPaused) external onlyOwner {
      isPaused = _isPaused;
    }

    function uri(uint256 tokenType) public view override returns (string memory) {
        require(tokenType <= uint256(CryptoColaTypes.Barrel), "Invalid token type");
        return string(abi.encodePacked(string(abi.encodePacked(colaBaseUri, tokenType.toString())), ".json"));
    }

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

        require(!isPaused, "ERC1155Pausable: token transfer while paused");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_apes","type":"address"},{"internalType":"address","name":"_staking","type":"address"},{"internalType":"address","name":"_mal","type":"address"},{"internalType":"string","name":"baseUri","type":"string"}],"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":false,"internalType":"address","name":"mintedBy","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTypes","type":"uint256"}],"name":"CryptoColasMinted","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":[],"name":"APES","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BREEDING","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAL","outputs":[{"internalType":"contract IMAL","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING","outputs":[{"internalType":"contract ISTAKING","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToAuth","type":"address"}],"name":"authorise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"authorisedLog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"colaType","type":"uint256"}],"name":"getColaIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getColasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256[]","name":"tokensTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"tokensNumbers","type":"uint256[]"}],"name":"getTotalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokensTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"tokensNumbers","type":"uint256[]"}],"name":"purchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"tokenAmounts","type":"uint256[]"}],"name":"reserveForGiveaway","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_breeding","type":"address"}],"name":"setBreedingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"_tokenPrices","type":"uint256[]"},{"internalType":"uint256[]","name":"_increments","type":"uint256[]"},{"internalType":"uint256[]","name":"_tokensMaxSupplies","type":"uint256[]"}],"name":"setTokenPriceAndMaxSupplies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"address","name":"addressToUnAuth","type":"address"}],"name":"unauthorise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenType","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052613a9860055560006006553480156200001c57600080fd5b5060405162003667380380620036678339810160408190526200003f91620003d7565b806200004b81620002a9565b506200005733620002c2565b6040805180820190915260108082526f4d6f6f6e2043727970746f20436f6c6160801b60209092019182526200009091600d9162000314565b5060408051808201909152600f8082526e4d414c5f43525950544f5f434f4c4160881b6020909201918252620000c991600e9162000314565b508051620000df90601390602084019062000314565b5050600c805461ffff19169055601180546001600160a01b039485166001600160a01b0319918216179091556010805493851693821693909317909255600f80549190931691161790556127107f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df556117707fb39221ace053465ec3453ce2b36430bd138b997ecea25c1043da0c366812b828556107d07fb7c774451310d1be4108bc180d1b52823cb0ee0274a6c0081bcaf94f115fb96d55685150ae84a8cdf000007f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c781905568a2a15d09519be000007fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f81905569017b7883c069166000007f6add646517a5b0f6793cd5891b7937d28a5b2981a5d88ebc7cd776088fea904181905560096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b929092557f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a365560026000527f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c355600a805460ff191660011790556200053f565b8051620002be90600290602084019062000314565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200032290620004ec565b90600052602060002090601f01602090048101928262000346576000855562000391565b82601f106200036157805160ff191683800117855562000391565b8280016001018555821562000391579182015b828111156200039157825182559160200191906001019062000374565b506200039f929150620003a3565b5090565b5b808211156200039f5760008155600101620003a4565b80516001600160a01b0381168114620003d257600080fd5b919050565b60008060008060808587031215620003ee57600080fd5b620003f985620003ba565b935060206200040a818701620003ba565b93506200041a60408701620003ba565b60608701519093506001600160401b03808211156200043857600080fd5b818801915088601f8301126200044d57600080fd5b81518181111562000462576200046262000529565b604051601f8201601f19908116603f011681019083821181831017156200048d576200048d62000529565b816040528281528b86848701011115620004a657600080fd5b600093505b82841015620004ca5784840186015181850187015292850192620004ab565b82841115620004dc5760008684830101525b989b979a50959850505050505050565b600181811c908216806200050157607f821691505b602082108114156200052357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613118806200054f6000396000f3fe608060405234801561001057600080fd5b506004361061021b5760003560e01c806380833d7811610125578063bd85b039116100ad578063d95f89a01161007c578063d95f89a0146104aa578063e985e9c5146104d3578063eb8d24441461050f578063f242432a1461051c578063f2fde38b1461052f57600080fd5b8063bd85b0391461045b578063c50497ae1461047b578063c82bc61d14610484578063d5ce65131461049757600080fd5b8063922fab05116100f4578063922fab051461040857806395d89b411461041b57806397610f3014610423578063a22cb46514610436578063b187bd261461044957600080fd5b806380833d78146103be57806386f3b23d146103d15780638c5527cf146103e45780638da5cb5b146103f757600080fd5b806337b05584116101a85780636116e69d116101775780636116e69d1461035257806366e6c8af1461037d578063715018a61461039057806373ec42b7146103985780637bdadbcf146103ab57600080fd5b806337b05584146102e85780633ccfd60b146103085780634e1273f4146103105780634f558e791461033057600080fd5b80630a088949116101ef5780630a088949146102935780630e89341c146102a65780632b5545d2146102b95780632eb2c2d6146102cc57806332cb6b0c146102df57600080fd5b8062fdd58e1461022057806301ffc9a71461024657806302329a291461026957806306fdde031461027e575b600080fd5b61023361022e36600461273c565b610542565b6040519081526020015b60405180910390f35b61025961025436600461294c565b6105d9565b604051901515815260200161023d565b61027c610277366004612931565b61062b565b005b61028661066f565b60405161023d9190612be6565b61027c6102a1366004612931565b610701565b6102866102b4366004612986565b61073e565b61027c6102c7366004612884565b6107b0565b61027c6102da36600461258f565b610a8a565b61023360055481565b6102336102f6366004612986565b60009081526009602052604090205490565b61027c610b3b565b61032361031e366004612766565b610bb4565b60405161023d9190612bae565b61025961033e366004612986565b600090815260036020526040902054151590565b601254610365906001600160a01b031681565b6040516001600160a01b03909116815260200161023d565b61027c61038b36600461253a565b610cde565b61027c610d6e565b61027c6103a6366004612837565b610da4565b600f54610365906001600160a01b031681565b61027c6103cc36600461253a565b610f8d565b61027c6103df366004612837565b610fd8565b61027c6103f236600461253a565b61141d565b6004546001600160a01b0316610365565b601154610365906001600160a01b031681565b610286611481565b601054610365906001600160a01b031681565b61027c610444366004612712565b611490565b600c5461025990610100900460ff1681565b610233610469366004612986565b60009081526003602052604090205490565b61023360065481565b610365610492366004612986565b61149b565b6102336104a536600461269e565b6114c5565b6102336104b836600461253a565b6001600160a01b03166000908152600b602052604090205490565b6102596104e136600461255c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b600c546102599060ff1681565b61027c61052a366004612639565b611745565b61027c61053d36600461253a565b6117e6565b60006001600160a01b0383166105b35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061060a57506001600160e01b031982166303a24d0760e21b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146106555760405162461bcd60e51b81526004016105aa90612d3f565b600c80549115156101000261ff0019909216919091179055565b6060600d805461067e90612f37565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612f37565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b6004546001600160a01b0316331461072b5760405162461bcd60e51b81526004016105aa90612d3f565b600c805460ff1916911515919091179055565b606060028211156107615760405162461bcd60e51b81526004016105aa90612c41565b601361076c83611881565b60405160200161077d929190612a64565b60408051601f198184030181529082905261079a91602001612a3b565b6040516020818303038152906040529050919050565b6004546001600160a01b031633146107da5760405162461bcd60e51b81526004016105aa90612d3f565b82518451146107fb5760405162461bcd60e51b81526004016105aa90612e0a565b805184511461081c5760405162461bcd60e51b81526004016105aa90612e0a565b815184511461083d5760405162461bcd60e51b81526004016105aa90612e0a565b600c5460ff16156108a55760405162461bcd60e51b815260206004820152602c60248201527f50726963652063616e6e6f74206265206368616e676564207768696c6520736160448201526b6c652069732061637469766560a01b60648201526084016105aa565b60005b8451811015610a765760008582815181106108c5576108c5612ffa565b602002602001015110156108eb5760405162461bcd60e51b81526004016105aa90612c41565b60028582815181106108ff576108ff612ffa565b602002602001015111156109255760405162461bcd60e51b81526004016105aa90612c41565b600084828151811061093957610939612ffa565b60200260200101511161097e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b60448201526064016105aa565b83818151811061099057610990612ffa565b6020026020010151600860008784815181106109ae576109ae612ffa565b60200260200101518152602001908152602001600020819055508181815181106109da576109da612ffa565b6020026020010151828683815181106109f5576109f5612ffa565b602002602001015181518110610a0d57610a0d612ffa565b602002602001018181525050828181518110610a2b57610a2b612ffa565b602002602001015160096000878481518110610a4957610a49612ffa565b60200260200101518152602001908152602001600020819055508080610a6e90612f9f565b9150506108a8565b5050600a805460ff19166001179055505050565b6001600160a01b038516331480610aa65750610aa685336104e1565b80610ac057503360009081526014602052604090205460ff165b610b275760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105aa565b610b348585858585611987565b5050505050565b6004546001600160a01b03163314610b655760405162461bcd60e51b81526004016105aa90612d3f565b47610b786004546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b5050565b60608151835114610c195760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105aa565b6000835167ffffffffffffffff811115610c3557610c35613010565b604051908082528060200260200182016040528015610c5e578160200160208202803683370190505b50905060005b8451811015610cd657610ca9858281518110610c8257610c82612ffa565b6020026020010151858381518110610c9c57610c9c612ffa565b6020026020010151610542565b828281518110610cbb57610cbb612ffa565b6020908102919091010152610ccf81612f9f565b9050610c64565b509392505050565b6004546001600160a01b03163314610d085760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b03166000818152601460205260408120805460ff191660019081179091556015805491820181559091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4750180546001600160a01b0319169091179055565b6004546001600160a01b03163314610d985760405162461bcd60e51b81526004016105aa90612d3f565b610da26000611b31565b565b6004546001600160a01b03163314610dce5760405162461bcd60e51b81526004016105aa90612d3f565b8051825114610e1f5760405162461bcd60e51b815260206004820152601960248201527f4c6973747320617265206e6f742073616d65206c656e6774680000000000000060448201526064016105aa565b6000805b8351811015610f3d576002848281518110610e4057610e40612ffa565b60200260200101511115610e665760405162461bcd60e51b81526004016105aa90612c41565b60076000858381518110610e7c57610e7c612ffa565b6020026020010151815260200190815260200160002054838281518110610ea557610ea5612ffa565b6020026020010151610edc868481518110610ec257610ec2612ffa565b602002602001015160009081526003602052604090205490565b610ee69190612ea5565b1115610f045760405162461bcd60e51b81526004016105aa90612c6d565b828181518110610f1657610f16612ffa565b602002602001015182610f299190612ea5565b915080610f3581612f9f565b915050610e23565b5060055481600654610f4f9190612ea5565b1115610f6d5760405162461bcd60e51b81526004016105aa90612d74565b610f8833848460405180602001604052806000815250611b83565b505050565b6004546001600160a01b03163314610fb75760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b03166000908152601460205260409020805460ff19169055565b8051825114610ff95760405162461bcd60e51b81526004016105aa90612e0a565b600a5460ff1661104b5760405162461bcd60e51b815260206004820152601c60248201527f546865206d696e7420686173206e6f742073746172746564207965740000000060448201526064016105aa565b600c5460ff1661109d5760405162461bcd60e51b815260206004820152601c60248201527f546865206d696e7420686173206e6f742073746172746564207965740000000060448201526064016105aa565b60006110a833611d17565b336000908152600b602052604081205491925080805b86518110156112e45760008682815181106110db576110db612ffa565b6020026020010151116111005760405162461bcd60e51b81526004016105aa90612dc9565b600287828151811061111457611114612ffa565b6020026020010151111561113a5760405162461bcd60e51b81526004016105aa90612c41565b6007600088838151811061115057611150612ffa565b602002602001015181526020019081526020016000205486828151811061117957611179612ffa565b6020026020010151611196898481518110610ec257610ec2612ffa565b6111a09190612ea5565b11156111be5760405162461bcd60e51b81526004016105aa90612c6d565b6000600860008984815181106111d6576111d6612ffa565b602002602001015181526020019081526020016000205490506000600960008a858151811061120757611207612ffa565b6020026020010151815260200190815260200160002054905060005b88848151811061123557611235612ffa565b60200260200101518110156112a75761124f600188612ea5565b9650878711611269576112628387612ea5565b9550611295565b816112748989612ef0565b61127e9190612ed1565b6112889084612ea5565b6112929087612ea5565b95505b8061129f81612f9f565b915050611223565b508783815181106112ba576112ba612ffa565b6020026020010151846112cd9190612ea5565b9350505080806112dc90612f9f565b9150506110be565b50600554816006546112f69190612ea5565b11156113145760405162461bcd60e51b81526004016105aa90612d74565b336000908152600b602052604081208054839290611333908490612ea5565b9091555050600f546001600160a01b03166384a85b0d336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401600060405180830381600087803b15801561139257600080fd5b505af11580156113a6573d6000803e3d6000fd5b505050506113cb6113b43390565b878760405180602001604052806000815250611b83565b7f7a6aa71bdd3be6c609f2a7b3b4ba7e6eadaceb47b47b21ac5c160aede148db94338751604080516001600160a01b0390931683526020830185905282015260600160405180910390a1505050505050565b6004546001600160a01b031633146114475760405162461bcd60e51b81526004016105aa90612d3f565b601280546001600160a01b039092166001600160a01b0319909216821790556000908152601460205260409020805460ff19166001179055565b6060600e805461067e90612f37565b610bb0338383611e1c565b601581815481106114ab57600080fd5b6000918252602090912001546001600160a01b0316905081565b600081518351146114e85760405162461bcd60e51b81526004016105aa90612e0a565b60006114f385611d17565b6001600160a01b0386166000908152600b602052604081205491925080805b875181101561173857600087828151811061152f5761152f612ffa565b6020026020010151116115545760405162461bcd60e51b81526004016105aa90612dc9565b600288828151811061156857611568612ffa565b6020026020010151111561158e5760405162461bcd60e51b81526004016105aa90612c41565b600760008983815181106115a4576115a4612ffa565b60200260200101518152602001908152602001600020548782815181106115cd576115cd612ffa565b60200260200101516115ea8a8481518110610ec257610ec2612ffa565b6115f49190612ea5565b11156116125760405162461bcd60e51b81526004016105aa90612c6d565b6000600860008a848151811061162a5761162a612ffa565b602002602001015181526020019081526020016000205490506000600960008b858151811061165b5761165b612ffa565b6020026020010151815260200190815260200160002054905060005b89848151811061168957611689612ffa565b60200260200101518110156116fb576116a3600188612ea5565b96508787116116bd576116b68387612ea5565b95506116e9565b816116c88989612ef0565b6116d29190612ed1565b6116dc9084612ea5565b6116e69087612ea5565b95505b806116f381612f9f565b915050611677565b5088838151811061170e5761170e612ffa565b6020026020010151846117219190612ea5565b93505050808061173090612f9f565b915050611512565b5090979650505050505050565b6001600160a01b038516331480611761575061176185336104e1565b8061177b57503360009081526014602052604090205460ff165b6117d95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105aa565b610b348585858585611efd565b6004546001600160a01b031633146118105760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b0381166118755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105aa565b61187e81611b31565b50565b6060816118a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cf57806118b981612f9f565b91506118c89050600a83612ebd565b91506118a9565b60008167ffffffffffffffff8111156118ea576118ea613010565b6040519080825280601f01601f191660200182016040528015611914576020820181803683370190505b5090505b841561197f57611929600183612ef0565b9150611936600a86612fba565b611941906030612ea5565b60f81b81838151811061195657611956612ffa565b60200101906001600160f81b031916908160001a905350611978600a86612ebd565b9450611918565b949350505050565b81518351146119a85760405162461bcd60e51b81526004016105aa90612e39565b6001600160a01b0384166119ce5760405162461bcd60e51b81526004016105aa90612cb0565b336119dd818787878787612029565b60005b8451811015611ac35760008582815181106119fd576119fd612ffa565b602002602001015190506000858381518110611a1b57611a1b612ffa565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611a6b5760405162461bcd60e51b81526004016105aa90612cf5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611aa8908490612ea5565b9250508190555050505080611abc90612f9f565b90506119e0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b13929190612bc1565b60405180910390a4611b298187878787876120a4565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611be35760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105aa565b8151835114611c045760405162461bcd60e51b81526004016105aa90612e39565b33611c1481600087878787612029565b60005b8451811015611caf57838181518110611c3257611c32612ffa565b6020026020010151600080878481518110611c4f57611c4f612ffa565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611c979190612ea5565b90915550819050611ca781612f9f565b915050611c17565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d00929190612bc1565b60405180910390a4610b34816000878787876120a4565b6011546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611d5d57600080fd5b505afa158015611d71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d95919061299f565b6010546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015611dda57600080fd5b505afa158015611dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e12919061299f565b6106259190612ea5565b816001600160a01b0316836001600160a01b03161415611e905760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611f235760405162461bcd60e51b81526004016105aa90612cb0565b33611f42818787611f338861220f565b611f3c8861220f565b87612029565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611f835760405162461bcd60e51b81526004016105aa90612cf5565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611fc0908490612ea5565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461202082888888888861225a565b50505050505050565b612037868686868686612324565b600c54610100900460ff1615611b295760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016105aa565b6001600160a01b0384163b15611b295760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120e89089908990889088908890600401612b0b565b602060405180830381600087803b15801561210257600080fd5b505af1925050508015612132575060408051601f3d908101601f1916820190925261212f91810190612969565b60015b6121df5761213e613026565b806308c379a014156121785750612153613042565b8061215e575061217a565b8060405162461bcd60e51b81526004016105aa9190612be6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105aa565b6001600160e01b0319811663bc197c8160e01b146120205760405162461bcd60e51b81526004016105aa90612bf9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061224957612249612ffa565b602090810291909101015292915050565b6001600160a01b0384163b15611b295760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061229e9089908990889088908890600401612b69565b602060405180830381600087803b1580156122b857600080fd5b505af19250505080156122e8575060408051601f3d908101601f191682019092526122e591810190612969565b60015b6122f45761213e613026565b6001600160e01b0319811663f23a6e6160e01b146120205760405162461bcd60e51b81526004016105aa90612bf9565b6001600160a01b0385166123ab5760005b83518110156123a95782818151811061235057612350612ffa565b60200260200101516003600086848151811061236e5761236e612ffa565b6020026020010151815260200190815260200160002060008282546123939190612ea5565b909155506123a2905081612f9f565b9050612335565b505b6001600160a01b038416611b295760005b8351811015612020578281815181106123d7576123d7612ffa565b6020026020010151600360008684815181106123f5576123f5612ffa565b60200260200101518152602001908152602001600020600082825461241a9190612ef0565b90915550612429905081612f9f565b90506123bc565b80356001600160a01b038116811461244757600080fd5b919050565b600082601f83011261245d57600080fd5b8135602061246a82612e81565b6040516124778282612f72565b8381528281019150858301600585901b8701840188101561249757600080fd5b60005b858110156117385781358452928401929084019060010161249a565b8035801515811461244757600080fd5b600082601f8301126124d757600080fd5b813567ffffffffffffffff8111156124f1576124f1613010565b604051612508601f8301601f191660200182612f72565b81815284602083860101111561251d57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561254c57600080fd5b61255582612430565b9392505050565b6000806040838503121561256f57600080fd5b61257883612430565b915061258660208401612430565b90509250929050565b600080600080600060a086880312156125a757600080fd5b6125b086612430565b94506125be60208701612430565b9350604086013567ffffffffffffffff808211156125db57600080fd5b6125e789838a0161244c565b945060608801359150808211156125fd57600080fd5b61260989838a0161244c565b9350608088013591508082111561261f57600080fd5b5061262c888289016124c6565b9150509295509295909350565b600080600080600060a0868803121561265157600080fd5b61265a86612430565b945061266860208701612430565b93506040860135925060608601359150608086013567ffffffffffffffff81111561269257600080fd5b61262c888289016124c6565b6000806000606084860312156126b357600080fd5b6126bc84612430565b9250602084013567ffffffffffffffff808211156126d957600080fd5b6126e58783880161244c565b935060408601359150808211156126fb57600080fd5b506127088682870161244c565b9150509250925092565b6000806040838503121561272557600080fd5b61272e83612430565b9150612586602084016124b6565b6000806040838503121561274f57600080fd5b61275883612430565b946020939093013593505050565b6000806040838503121561277957600080fd5b823567ffffffffffffffff8082111561279157600080fd5b818501915085601f8301126127a557600080fd5b813560206127b282612e81565b6040516127bf8282612f72565b8381528281019150858301600585901b870184018b10156127df57600080fd5b600096505b84871015612809576127f581612430565b8352600196909601959183019183016127e4565b509650508601359250508082111561282057600080fd5b5061282d8582860161244c565b9150509250929050565b6000806040838503121561284a57600080fd5b823567ffffffffffffffff8082111561286257600080fd5b61286e8683870161244c565b9350602085013591508082111561282057600080fd5b6000806000806080858703121561289a57600080fd5b843567ffffffffffffffff808211156128b257600080fd5b6128be8883890161244c565b955060208701359150808211156128d457600080fd5b6128e08883890161244c565b945060408701359150808211156128f657600080fd5b6129028883890161244c565b9350606087013591508082111561291857600080fd5b506129258782880161244c565b91505092959194509250565b60006020828403121561294357600080fd5b612555826124b6565b60006020828403121561295e57600080fd5b8135612555816130cc565b60006020828403121561297b57600080fd5b8151612555816130cc565b60006020828403121561299857600080fd5b5035919050565b6000602082840312156129b157600080fd5b5051919050565b600081518084526020808501945080840160005b838110156129e8578151875295820195908201906001016129cc565b509495945050505050565b60008151808452612a0b816020860160208601612f07565b601f01601f19169290920160200192915050565b60008151612a31818560208601612f07565b9290920192915050565b60008251612a4d818460208701612f07565b64173539b7b760d91b920191825250600501919050565b600080845481600182811c915080831680612a8057607f831692505b6020808410821415612aa057634e487b7160e01b86526022600452602486fd5b818015612ab45760018114612ac557612af2565b60ff19861689528489019650612af2565b60008b81526020902060005b86811015612aea5781548b820152908501908301612ad1565b505084890196505b505050505050612b028185612a1f565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612b37908301866129b8565b8281036060840152612b4981866129b8565b90508281036080840152612b5d81856129f3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ba3908301846129f3565b979650505050505050565b60208152600061255560208301846129b8565b604081526000612bd460408301856129b8565b8281036020840152612b0281856129b8565b60208152600061255560208301846129f3565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b602080825260129082015271496e76616c696420746f6b656e207479706560701b604082015260600190565b60208082526023908201527f596f7520747269656420746f206d696e74206d6f7265207468616e20616c6c6f6040820152621dd95960ea1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526035908201527f43616e6e6f74206d696e74206d6f7265207468616e20546f74616c2043727970604082015274746f20436f6c6120537570706c7920616c6c6f777360581b606082015260800190565b60208082526021908201527f57726f6e672043727970746f20436f6c6120707572636861736520616d6f756e6040820152601d60fa1b606082015260800190565b602080825260159082015274098d2e6e8e640dcdee840e6c2daca40d8cadccee8d605b1b604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115612e9b57612e9b613010565b5060051b60200190565b60008219821115612eb857612eb8612fce565b500190565b600082612ecc57612ecc612fe4565b500490565b6000816000190483118215151615612eeb57612eeb612fce565b500290565b600082821015612f0257612f02612fce565b500390565b60005b83811015612f22578181015183820152602001612f0a565b83811115612f31576000848401525b50505050565b600181811c90821680612f4b57607f821691505b60208210811415612f6c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612f9857612f98613010565b6040525050565b6000600019821415612fb357612fb3612fce565b5060010190565b600082612fc957612fc9612fe4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561303f5760046000803e5060005160e01c5b90565b600060443d10156130505790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561308057505050505090565b82850191508151818111156130985750505050505090565b843d87010160208285010111156130b25750505050505090565b6130c160208286010187612f72565b509095945050505050565b6001600160e01b03198116811461187e57600080fdfea2646970667358221220f7ce0a8572484286fd07bb8fe489cec0098c46b12fed4c5230e6aeb0e7ca92ac64736f6c6343000807003300000000000000000000000034c4eba1966b502dfcf0868b6f271d85cc8a231200000000000000000000000000a103267a22971375c3c37d6e1f1bdfb548e94600000000000000000000000065fd5d7ea09459c932aa70eba22548cd16283c9300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53624257756f33705637554175774237324c734e4e3154593773315455754c597558506f64517962646e775a2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021b5760003560e01c806380833d7811610125578063bd85b039116100ad578063d95f89a01161007c578063d95f89a0146104aa578063e985e9c5146104d3578063eb8d24441461050f578063f242432a1461051c578063f2fde38b1461052f57600080fd5b8063bd85b0391461045b578063c50497ae1461047b578063c82bc61d14610484578063d5ce65131461049757600080fd5b8063922fab05116100f4578063922fab051461040857806395d89b411461041b57806397610f3014610423578063a22cb46514610436578063b187bd261461044957600080fd5b806380833d78146103be57806386f3b23d146103d15780638c5527cf146103e45780638da5cb5b146103f757600080fd5b806337b05584116101a85780636116e69d116101775780636116e69d1461035257806366e6c8af1461037d578063715018a61461039057806373ec42b7146103985780637bdadbcf146103ab57600080fd5b806337b05584146102e85780633ccfd60b146103085780634e1273f4146103105780634f558e791461033057600080fd5b80630a088949116101ef5780630a088949146102935780630e89341c146102a65780632b5545d2146102b95780632eb2c2d6146102cc57806332cb6b0c146102df57600080fd5b8062fdd58e1461022057806301ffc9a71461024657806302329a291461026957806306fdde031461027e575b600080fd5b61023361022e36600461273c565b610542565b6040519081526020015b60405180910390f35b61025961025436600461294c565b6105d9565b604051901515815260200161023d565b61027c610277366004612931565b61062b565b005b61028661066f565b60405161023d9190612be6565b61027c6102a1366004612931565b610701565b6102866102b4366004612986565b61073e565b61027c6102c7366004612884565b6107b0565b61027c6102da36600461258f565b610a8a565b61023360055481565b6102336102f6366004612986565b60009081526009602052604090205490565b61027c610b3b565b61032361031e366004612766565b610bb4565b60405161023d9190612bae565b61025961033e366004612986565b600090815260036020526040902054151590565b601254610365906001600160a01b031681565b6040516001600160a01b03909116815260200161023d565b61027c61038b36600461253a565b610cde565b61027c610d6e565b61027c6103a6366004612837565b610da4565b600f54610365906001600160a01b031681565b61027c6103cc36600461253a565b610f8d565b61027c6103df366004612837565b610fd8565b61027c6103f236600461253a565b61141d565b6004546001600160a01b0316610365565b601154610365906001600160a01b031681565b610286611481565b601054610365906001600160a01b031681565b61027c610444366004612712565b611490565b600c5461025990610100900460ff1681565b610233610469366004612986565b60009081526003602052604090205490565b61023360065481565b610365610492366004612986565b61149b565b6102336104a536600461269e565b6114c5565b6102336104b836600461253a565b6001600160a01b03166000908152600b602052604090205490565b6102596104e136600461255c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b600c546102599060ff1681565b61027c61052a366004612639565b611745565b61027c61053d36600461253a565b6117e6565b60006001600160a01b0383166105b35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061060a57506001600160e01b031982166303a24d0760e21b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146106555760405162461bcd60e51b81526004016105aa90612d3f565b600c80549115156101000261ff0019909216919091179055565b6060600d805461067e90612f37565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612f37565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b6004546001600160a01b0316331461072b5760405162461bcd60e51b81526004016105aa90612d3f565b600c805460ff1916911515919091179055565b606060028211156107615760405162461bcd60e51b81526004016105aa90612c41565b601361076c83611881565b60405160200161077d929190612a64565b60408051601f198184030181529082905261079a91602001612a3b565b6040516020818303038152906040529050919050565b6004546001600160a01b031633146107da5760405162461bcd60e51b81526004016105aa90612d3f565b82518451146107fb5760405162461bcd60e51b81526004016105aa90612e0a565b805184511461081c5760405162461bcd60e51b81526004016105aa90612e0a565b815184511461083d5760405162461bcd60e51b81526004016105aa90612e0a565b600c5460ff16156108a55760405162461bcd60e51b815260206004820152602c60248201527f50726963652063616e6e6f74206265206368616e676564207768696c6520736160448201526b6c652069732061637469766560a01b60648201526084016105aa565b60005b8451811015610a765760008582815181106108c5576108c5612ffa565b602002602001015110156108eb5760405162461bcd60e51b81526004016105aa90612c41565b60028582815181106108ff576108ff612ffa565b602002602001015111156109255760405162461bcd60e51b81526004016105aa90612c41565b600084828151811061093957610939612ffa565b60200260200101511161097e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b60448201526064016105aa565b83818151811061099057610990612ffa565b6020026020010151600860008784815181106109ae576109ae612ffa565b60200260200101518152602001908152602001600020819055508181815181106109da576109da612ffa565b6020026020010151828683815181106109f5576109f5612ffa565b602002602001015181518110610a0d57610a0d612ffa565b602002602001018181525050828181518110610a2b57610a2b612ffa565b602002602001015160096000878481518110610a4957610a49612ffa565b60200260200101518152602001908152602001600020819055508080610a6e90612f9f565b9150506108a8565b5050600a805460ff19166001179055505050565b6001600160a01b038516331480610aa65750610aa685336104e1565b80610ac057503360009081526014602052604090205460ff165b610b275760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016105aa565b610b348585858585611987565b5050505050565b6004546001600160a01b03163314610b655760405162461bcd60e51b81526004016105aa90612d3f565b47610b786004546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b5050565b60608151835114610c195760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016105aa565b6000835167ffffffffffffffff811115610c3557610c35613010565b604051908082528060200260200182016040528015610c5e578160200160208202803683370190505b50905060005b8451811015610cd657610ca9858281518110610c8257610c82612ffa565b6020026020010151858381518110610c9c57610c9c612ffa565b6020026020010151610542565b828281518110610cbb57610cbb612ffa565b6020908102919091010152610ccf81612f9f565b9050610c64565b509392505050565b6004546001600160a01b03163314610d085760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b03166000818152601460205260408120805460ff191660019081179091556015805491820181559091527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec4750180546001600160a01b0319169091179055565b6004546001600160a01b03163314610d985760405162461bcd60e51b81526004016105aa90612d3f565b610da26000611b31565b565b6004546001600160a01b03163314610dce5760405162461bcd60e51b81526004016105aa90612d3f565b8051825114610e1f5760405162461bcd60e51b815260206004820152601960248201527f4c6973747320617265206e6f742073616d65206c656e6774680000000000000060448201526064016105aa565b6000805b8351811015610f3d576002848281518110610e4057610e40612ffa565b60200260200101511115610e665760405162461bcd60e51b81526004016105aa90612c41565b60076000858381518110610e7c57610e7c612ffa565b6020026020010151815260200190815260200160002054838281518110610ea557610ea5612ffa565b6020026020010151610edc868481518110610ec257610ec2612ffa565b602002602001015160009081526003602052604090205490565b610ee69190612ea5565b1115610f045760405162461bcd60e51b81526004016105aa90612c6d565b828181518110610f1657610f16612ffa565b602002602001015182610f299190612ea5565b915080610f3581612f9f565b915050610e23565b5060055481600654610f4f9190612ea5565b1115610f6d5760405162461bcd60e51b81526004016105aa90612d74565b610f8833848460405180602001604052806000815250611b83565b505050565b6004546001600160a01b03163314610fb75760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b03166000908152601460205260409020805460ff19169055565b8051825114610ff95760405162461bcd60e51b81526004016105aa90612e0a565b600a5460ff1661104b5760405162461bcd60e51b815260206004820152601c60248201527f546865206d696e7420686173206e6f742073746172746564207965740000000060448201526064016105aa565b600c5460ff1661109d5760405162461bcd60e51b815260206004820152601c60248201527f546865206d696e7420686173206e6f742073746172746564207965740000000060448201526064016105aa565b60006110a833611d17565b336000908152600b602052604081205491925080805b86518110156112e45760008682815181106110db576110db612ffa565b6020026020010151116111005760405162461bcd60e51b81526004016105aa90612dc9565b600287828151811061111457611114612ffa565b6020026020010151111561113a5760405162461bcd60e51b81526004016105aa90612c41565b6007600088838151811061115057611150612ffa565b602002602001015181526020019081526020016000205486828151811061117957611179612ffa565b6020026020010151611196898481518110610ec257610ec2612ffa565b6111a09190612ea5565b11156111be5760405162461bcd60e51b81526004016105aa90612c6d565b6000600860008984815181106111d6576111d6612ffa565b602002602001015181526020019081526020016000205490506000600960008a858151811061120757611207612ffa565b6020026020010151815260200190815260200160002054905060005b88848151811061123557611235612ffa565b60200260200101518110156112a75761124f600188612ea5565b9650878711611269576112628387612ea5565b9550611295565b816112748989612ef0565b61127e9190612ed1565b6112889084612ea5565b6112929087612ea5565b95505b8061129f81612f9f565b915050611223565b508783815181106112ba576112ba612ffa565b6020026020010151846112cd9190612ea5565b9350505080806112dc90612f9f565b9150506110be565b50600554816006546112f69190612ea5565b11156113145760405162461bcd60e51b81526004016105aa90612d74565b336000908152600b602052604081208054839290611333908490612ea5565b9091555050600f546001600160a01b03166384a85b0d336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401600060405180830381600087803b15801561139257600080fd5b505af11580156113a6573d6000803e3d6000fd5b505050506113cb6113b43390565b878760405180602001604052806000815250611b83565b7f7a6aa71bdd3be6c609f2a7b3b4ba7e6eadaceb47b47b21ac5c160aede148db94338751604080516001600160a01b0390931683526020830185905282015260600160405180910390a1505050505050565b6004546001600160a01b031633146114475760405162461bcd60e51b81526004016105aa90612d3f565b601280546001600160a01b039092166001600160a01b0319909216821790556000908152601460205260409020805460ff19166001179055565b6060600e805461067e90612f37565b610bb0338383611e1c565b601581815481106114ab57600080fd5b6000918252602090912001546001600160a01b0316905081565b600081518351146114e85760405162461bcd60e51b81526004016105aa90612e0a565b60006114f385611d17565b6001600160a01b0386166000908152600b602052604081205491925080805b875181101561173857600087828151811061152f5761152f612ffa565b6020026020010151116115545760405162461bcd60e51b81526004016105aa90612dc9565b600288828151811061156857611568612ffa565b6020026020010151111561158e5760405162461bcd60e51b81526004016105aa90612c41565b600760008983815181106115a4576115a4612ffa565b60200260200101518152602001908152602001600020548782815181106115cd576115cd612ffa565b60200260200101516115ea8a8481518110610ec257610ec2612ffa565b6115f49190612ea5565b11156116125760405162461bcd60e51b81526004016105aa90612c6d565b6000600860008a848151811061162a5761162a612ffa565b602002602001015181526020019081526020016000205490506000600960008b858151811061165b5761165b612ffa565b6020026020010151815260200190815260200160002054905060005b89848151811061168957611689612ffa565b60200260200101518110156116fb576116a3600188612ea5565b96508787116116bd576116b68387612ea5565b95506116e9565b816116c88989612ef0565b6116d29190612ed1565b6116dc9084612ea5565b6116e69087612ea5565b95505b806116f381612f9f565b915050611677565b5088838151811061170e5761170e612ffa565b6020026020010151846117219190612ea5565b93505050808061173090612f9f565b915050611512565b5090979650505050505050565b6001600160a01b038516331480611761575061176185336104e1565b8061177b57503360009081526014602052604090205460ff165b6117d95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016105aa565b610b348585858585611efd565b6004546001600160a01b031633146118105760405162461bcd60e51b81526004016105aa90612d3f565b6001600160a01b0381166118755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105aa565b61187e81611b31565b50565b6060816118a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cf57806118b981612f9f565b91506118c89050600a83612ebd565b91506118a9565b60008167ffffffffffffffff8111156118ea576118ea613010565b6040519080825280601f01601f191660200182016040528015611914576020820181803683370190505b5090505b841561197f57611929600183612ef0565b9150611936600a86612fba565b611941906030612ea5565b60f81b81838151811061195657611956612ffa565b60200101906001600160f81b031916908160001a905350611978600a86612ebd565b9450611918565b949350505050565b81518351146119a85760405162461bcd60e51b81526004016105aa90612e39565b6001600160a01b0384166119ce5760405162461bcd60e51b81526004016105aa90612cb0565b336119dd818787878787612029565b60005b8451811015611ac35760008582815181106119fd576119fd612ffa565b602002602001015190506000858381518110611a1b57611a1b612ffa565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611a6b5760405162461bcd60e51b81526004016105aa90612cf5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611aa8908490612ea5565b9250508190555050505080611abc90612f9f565b90506119e0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b13929190612bc1565b60405180910390a4611b298187878787876120a4565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611be35760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016105aa565b8151835114611c045760405162461bcd60e51b81526004016105aa90612e39565b33611c1481600087878787612029565b60005b8451811015611caf57838181518110611c3257611c32612ffa565b6020026020010151600080878481518110611c4f57611c4f612ffa565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611c979190612ea5565b90915550819050611ca781612f9f565b915050611c17565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d00929190612bc1565b60405180910390a4610b34816000878787876120a4565b6011546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611d5d57600080fd5b505afa158015611d71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d95919061299f565b6010546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b158015611dda57600080fd5b505afa158015611dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e12919061299f565b6106259190612ea5565b816001600160a01b0316836001600160a01b03161415611e905760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016105aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611f235760405162461bcd60e51b81526004016105aa90612cb0565b33611f42818787611f338861220f565b611f3c8861220f565b87612029565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611f835760405162461bcd60e51b81526004016105aa90612cf5565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611fc0908490612ea5565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461202082888888888861225a565b50505050505050565b612037868686868686612324565b600c54610100900460ff1615611b295760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b60648201526084016105aa565b6001600160a01b0384163b15611b295760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120e89089908990889088908890600401612b0b565b602060405180830381600087803b15801561210257600080fd5b505af1925050508015612132575060408051601f3d908101601f1916820190925261212f91810190612969565b60015b6121df5761213e613026565b806308c379a014156121785750612153613042565b8061215e575061217a565b8060405162461bcd60e51b81526004016105aa9190612be6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016105aa565b6001600160e01b0319811663bc197c8160e01b146120205760405162461bcd60e51b81526004016105aa90612bf9565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061224957612249612ffa565b602090810291909101015292915050565b6001600160a01b0384163b15611b295760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061229e9089908990889088908890600401612b69565b602060405180830381600087803b1580156122b857600080fd5b505af19250505080156122e8575060408051601f3d908101601f191682019092526122e591810190612969565b60015b6122f45761213e613026565b6001600160e01b0319811663f23a6e6160e01b146120205760405162461bcd60e51b81526004016105aa90612bf9565b6001600160a01b0385166123ab5760005b83518110156123a95782818151811061235057612350612ffa565b60200260200101516003600086848151811061236e5761236e612ffa565b6020026020010151815260200190815260200160002060008282546123939190612ea5565b909155506123a2905081612f9f565b9050612335565b505b6001600160a01b038416611b295760005b8351811015612020578281815181106123d7576123d7612ffa565b6020026020010151600360008684815181106123f5576123f5612ffa565b60200260200101518152602001908152602001600020600082825461241a9190612ef0565b90915550612429905081612f9f565b90506123bc565b80356001600160a01b038116811461244757600080fd5b919050565b600082601f83011261245d57600080fd5b8135602061246a82612e81565b6040516124778282612f72565b8381528281019150858301600585901b8701840188101561249757600080fd5b60005b858110156117385781358452928401929084019060010161249a565b8035801515811461244757600080fd5b600082601f8301126124d757600080fd5b813567ffffffffffffffff8111156124f1576124f1613010565b604051612508601f8301601f191660200182612f72565b81815284602083860101111561251d57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561254c57600080fd5b61255582612430565b9392505050565b6000806040838503121561256f57600080fd5b61257883612430565b915061258660208401612430565b90509250929050565b600080600080600060a086880312156125a757600080fd5b6125b086612430565b94506125be60208701612430565b9350604086013567ffffffffffffffff808211156125db57600080fd5b6125e789838a0161244c565b945060608801359150808211156125fd57600080fd5b61260989838a0161244c565b9350608088013591508082111561261f57600080fd5b5061262c888289016124c6565b9150509295509295909350565b600080600080600060a0868803121561265157600080fd5b61265a86612430565b945061266860208701612430565b93506040860135925060608601359150608086013567ffffffffffffffff81111561269257600080fd5b61262c888289016124c6565b6000806000606084860312156126b357600080fd5b6126bc84612430565b9250602084013567ffffffffffffffff808211156126d957600080fd5b6126e58783880161244c565b935060408601359150808211156126fb57600080fd5b506127088682870161244c565b9150509250925092565b6000806040838503121561272557600080fd5b61272e83612430565b9150612586602084016124b6565b6000806040838503121561274f57600080fd5b61275883612430565b946020939093013593505050565b6000806040838503121561277957600080fd5b823567ffffffffffffffff8082111561279157600080fd5b818501915085601f8301126127a557600080fd5b813560206127b282612e81565b6040516127bf8282612f72565b8381528281019150858301600585901b870184018b10156127df57600080fd5b600096505b84871015612809576127f581612430565b8352600196909601959183019183016127e4565b509650508601359250508082111561282057600080fd5b5061282d8582860161244c565b9150509250929050565b6000806040838503121561284a57600080fd5b823567ffffffffffffffff8082111561286257600080fd5b61286e8683870161244c565b9350602085013591508082111561282057600080fd5b6000806000806080858703121561289a57600080fd5b843567ffffffffffffffff808211156128b257600080fd5b6128be8883890161244c565b955060208701359150808211156128d457600080fd5b6128e08883890161244c565b945060408701359150808211156128f657600080fd5b6129028883890161244c565b9350606087013591508082111561291857600080fd5b506129258782880161244c565b91505092959194509250565b60006020828403121561294357600080fd5b612555826124b6565b60006020828403121561295e57600080fd5b8135612555816130cc565b60006020828403121561297b57600080fd5b8151612555816130cc565b60006020828403121561299857600080fd5b5035919050565b6000602082840312156129b157600080fd5b5051919050565b600081518084526020808501945080840160005b838110156129e8578151875295820195908201906001016129cc565b509495945050505050565b60008151808452612a0b816020860160208601612f07565b601f01601f19169290920160200192915050565b60008151612a31818560208601612f07565b9290920192915050565b60008251612a4d818460208701612f07565b64173539b7b760d91b920191825250600501919050565b600080845481600182811c915080831680612a8057607f831692505b6020808410821415612aa057634e487b7160e01b86526022600452602486fd5b818015612ab45760018114612ac557612af2565b60ff19861689528489019650612af2565b60008b81526020902060005b86811015612aea5781548b820152908501908301612ad1565b505084890196505b505050505050612b028185612a1f565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612b37908301866129b8565b8281036060840152612b4981866129b8565b90508281036080840152612b5d81856129f3565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ba3908301846129f3565b979650505050505050565b60208152600061255560208301846129b8565b604081526000612bd460408301856129b8565b8281036020840152612b0281856129b8565b60208152600061255560208301846129f3565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b602080825260129082015271496e76616c696420746f6b656e207479706560701b604082015260600190565b60208082526023908201527f596f7520747269656420746f206d696e74206d6f7265207468616e20616c6c6f6040820152621dd95960ea1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526035908201527f43616e6e6f74206d696e74206d6f7265207468616e20546f74616c2043727970604082015274746f20436f6c6120537570706c7920616c6c6f777360581b606082015260800190565b60208082526021908201527f57726f6e672043727970746f20436f6c6120707572636861736520616d6f756e6040820152601d60fa1b606082015260800190565b602080825260159082015274098d2e6e8e640dcdee840e6c2daca40d8cadccee8d605b1b604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115612e9b57612e9b613010565b5060051b60200190565b60008219821115612eb857612eb8612fce565b500190565b600082612ecc57612ecc612fe4565b500490565b6000816000190483118215151615612eeb57612eeb612fce565b500290565b600082821015612f0257612f02612fce565b500390565b60005b83811015612f22578181015183820152602001612f0a565b83811115612f31576000848401525b50505050565b600181811c90821680612f4b57607f821691505b60208210811415612f6c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612f9857612f98613010565b6040525050565b6000600019821415612fb357612fb3612fce565b5060010190565b600082612fc957612fc9612fe4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561303f5760046000803e5060005160e01c5b90565b600060443d10156130505790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561308057505050505090565b82850191508151818111156130985750505050505090565b843d87010160208285010111156130b25750505050505090565b6130c160208286010187612f72565b509095945050505050565b6001600160e01b03198116811461187e57600080fdfea2646970667358221220f7ce0a8572484286fd07bb8fe489cec0098c46b12fed4c5230e6aeb0e7ca92ac64736f6c63430008070033

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

00000000000000000000000034c4eba1966b502dfcf0868b6f271d85cc8a231200000000000000000000000000a103267a22971375c3c37d6e1f1bdfb548e94600000000000000000000000065fd5d7ea09459c932aa70eba22548cd16283c9300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53624257756f33705637554175774237324c734e4e3154593773315455754c597558506f64517962646e775a2f00000000000000000000

-----Decoded View---------------
Arg [0] : _apes (address): 0x34c4EBA1966B502dfCF0868b6f271d85CC8A2312
Arg [1] : _staking (address): 0x00a103267A22971375C3C37d6E1f1BDfb548e946
Arg [2] : _mal (address): 0x65fd5d7eA09459c932Aa70eba22548cd16283c93
Arg [3] : baseUri (string): ipfs://QmSbBWuo3pV7UAuwB72LsNN1TY7s1TUuLYuXPodQybdnwZ/

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000034c4eba1966b502dfcf0868b6f271d85cc8a2312
Arg [1] : 00000000000000000000000000a103267a22971375c3c37d6e1f1bdfb548e946
Arg [2] : 00000000000000000000000065fd5d7ea09459c932aa70eba22548cd16283c93
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d53624257756f33705637554175774237324c734e4e3154
Arg [6] : 593773315455754c597558506f64517962646e775a2f00000000000000000000


Deployed Bytecode Sourcemap

44758:9521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20133:231;;;;;;:::i;:::-;;:::i;:::-;;;24615:25:1;;;24603:2;24588:18;20133:231:0;;;;;;;;19156:310;;;;;;:::i;:::-;;:::i;:::-;;;14457:14:1;;14450:22;14432:41;;14420:2;14405:18;19156:310:0;14292:187:1;53498:87:0;;;;;;:::i;:::-;;:::i;:::-;;48488:81;;;:::i;:::-;;;;;;;:::i;52038:94::-;;;;;;:::i;:::-;;:::i;53593:283::-;;;;;;:::i;:::-;;:::i;52144:1051::-;;;;;;:::i;:::-;;:::i;46891:384::-;;;;;;:::i;:::-;;:::i;44849:33::-;;;;;;51908:122;;;;;;:::i;:::-;51972:7;51996:26;;;:16;:26;;;;;;;51908:122;53352:138;;;:::i;20530:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34462:122::-;;;;;;:::i;:::-;34519:4;34340:16;;;:12;:16;;;;;;-1:-1:-1;;;34462:122:0;45344:23;;;;;-1:-1:-1;;;;;45344:23:0;;;;;;-1:-1:-1;;;;;11487:32:1;;;11469:51;;11457:2;11442:18;45344:23:0;11323:203:1;47283:153:0;;;;;;:::i;:::-;;:::i;36948:103::-;;;:::i;47728:748::-;;;;;;:::i;:::-;;:::i;45266:15::-;;;;;-1:-1:-1;;;;;45266:15:0;;;47444:118;;;;;;:::i;:::-;;:::i;50014:1769::-;;;;;;:::i;:::-;;:::i;47570:150::-;;;;;;:::i;:::-;;:::i;36297:87::-;36370:6;;-1:-1:-1;;;;;36370:6:0;36297:87;;45318:19;;;;;-1:-1:-1;;;;;45318:19:0;;;48577:85;;;:::i;45288:23::-;;;;;-1:-1:-1;;;;;45288:23:0;;;21127:155;;;;;;:::i;:::-;;:::i;45178:20::-;;;;;;;;;;;;34251:113;;;;;;:::i;:::-;34313:7;34340:16;;;:12;:16;;;;;;;34251:113;44889:25;;;;;;45464:30;;;;;;:::i;:::-;;:::i;48670:1336::-;;;;;;:::i;:::-;;:::i;51791:109::-;;;;;;:::i;:::-;-1:-1:-1;;;;;51873:19:0;51849:7;51873:19;;;:13;:19;;;;;;;51791:109;21354:168;;;;;;:::i;:::-;-1:-1:-1;;;;;21477:27:0;;;21453:4;21477:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21354:168;45147:24;;;;;;;;;46548:335;;;;;;:::i;:::-;;:::i;37206:201::-;;;;;;:::i;:::-;;:::i;20133:231::-;20219:7;-1:-1:-1;;;;;20247:21:0;;20239:77;;;;-1:-1:-1;;;20239:77:0;;16410:2:1;20239:77:0;;;16392:21:1;16449:2;16429:18;;;16422:30;16488:34;16468:18;;;16461:62;-1:-1:-1;;;16539:18:1;;;16532:41;16590:19;;20239:77:0;;;;;;;;;-1:-1:-1;20334:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20334:22:0;;;;;;;;;;;;20133:231::o;19156:310::-;19258:4;-1:-1:-1;;;;;;19295:41:0;;-1:-1:-1;;;19295:41:0;;:110;;-1:-1:-1;;;;;;;19353:52:0;;-1:-1:-1;;;19353:52:0;19295:110;:163;;;-1:-1:-1;;;;;;;;;;18127:40:0;;;19422:36;19275:183;19156:310;-1:-1:-1;;19156:310:0:o;53498:87::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;53557:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;53557:20:0;;::::1;::::0;;;::::1;::::0;;53498:87::o;48488:81::-;48525:13;48556:5;48549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48488:81;:::o;52038:94::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;52103:12:::1;:21:::0;;-1:-1:-1;;52103:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52038:94::o;53593:283::-;53655:13;53710:22;53689:9;:44;;53681:75;;;;-1:-1:-1;;;53681:75:0;;;;;;;:::i;:::-;53822:11;53835:20;:9;:18;:20::i;:::-;53805:51;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53805:51:0;;;;;;;;;;53781:86;;53805:51;53781:86;;:::i;:::-;;;;;;;;;;;;;53767:101;;53593:283;;;:::o;52144:1051::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;52367:12:::1;:19;52345:11;:18;:41;52337:75;;;;-1:-1:-1::0;;;52337:75:0::1;;;;;;;:::i;:::-;52453:18;:25;52431:11;:18;:47;52423:81;;;;-1:-1:-1::0;;;52423:81:0::1;;;;;;;:::i;:::-;52545:11;:18;52523:11;:18;:40;52515:74;;;;-1:-1:-1::0;;;52515:74:0::1;;;;;;;:::i;:::-;52609:12;::::0;::::1;;52608:13;52600:70;;;::::0;-1:-1:-1;;;52600:70:0;;21928:2:1;52600:70:0::1;::::0;::::1;21910:21:1::0;21967:2;21947:18;;;21940:30;22006:34;21986:18;;;21979:62;-1:-1:-1;;;22057:18:1;;;22050:42;22109:19;;52600:70:0::1;21726:408:1::0;52600:70:0::1;52686:9;52681:478;52705:11;:18;52701:1;:22;52681:478;;;52770:1;52752:11;52764:1;52752:14;;;;;;;;:::i;:::-;;;;;;;:19;;52744:50;;;;-1:-1:-1::0;;;52744:50:0::1;;;;;;;:::i;:::-;52843:22;52817:11;52829:1;52817:14;;;;;;;;:::i;:::-;;;;;;;:49;;52809:80;;;;-1:-1:-1::0;;;52809:80:0::1;;;;;;;:::i;:::-;52930:1;52912:12;52925:1;52912:15;;;;;;;;:::i;:::-;;;;;;;:19;52904:45;;;::::0;-1:-1:-1;;;52904:45:0;;23570:2:1;52904:45:0::1;::::0;::::1;23552:21:1::0;23609:2;23589:18;;;23582:30;-1:-1:-1;;;23628:18:1;;;23621:43;23681:18;;52904:45:0::1;23368:337:1::0;52904:45:0::1;52995:12;53008:1;52995:15;;;;;;;;:::i;:::-;;;;;;;52964:12;:28;52977:11;52989:1;52977:14;;;;;;;;:::i;:::-;;;;;;;52964:28;;;;;;;;;;;:46;;;;53062:18;53081:1;53062:21;;;;;;;;:::i;:::-;;;;;;;53025:18;53044:11;53056:1;53044:14;;;;;;;;:::i;:::-;;;;;;;53025:34;;;;;;;;:::i;:::-;;;;;;:58;;;::::0;::::1;53133:11;53145:1;53133:14;;;;;;;;:::i;:::-;;;;;;;53098:16;:32;53115:11;53127:1;53115:14;;;;;;;;:::i;:::-;;;;;;;53098:32;;;;;;;;;;;:49;;;;52725:3;;;;;:::i;:::-;;;;52681:478;;;-1:-1:-1::0;;53169:11:0::1;:18:::0;;-1:-1:-1;;53169:18:0::1;53183:4;53169:18;::::0;;-1:-1:-1;;;52144:1051:0:o;46891:384::-;-1:-1:-1;;;;;47058:20:0;;17117:10;47058:20;;:60;;-1:-1:-1;47082:36:0;47099:4;17117:10;21354:168;:::i;47082:36::-;47058:91;;;-1:-1:-1;17117:10:0;47122:27;;;;:13;:27;;;;;;;;47058:91;47050:154;;;;-1:-1:-1;;;47050:154:0;;19209:2:1;47050:154:0;;;19191:21:1;19248:2;19228:18;;;19221:30;19287:34;19267:18;;;19260:62;-1:-1:-1;;;19338:18:1;;;19331:48;19396:19;;47050:154:0;19007:414:1;47050:154:0;47215:52;47238:4;47244:2;47248:3;47253:7;47262:4;47215:22;:52::i;:::-;46891:384;;;;;:::o;53352:138::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;53418:21:::1;53456:7;36370:6:::0;;-1:-1:-1;;;;;36370:6:0;;36297:87;53456:7:::1;-1:-1:-1::0;;;;;53448:25:0::1;:34;53474:7;53448:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53391:99;53352:138::o:0;20530:524::-;20686:16;20747:3;:10;20728:8;:15;:29;20720:83;;;;-1:-1:-1;;;20720:83:0;;22751:2:1;20720:83:0;;;22733:21:1;22790:2;22770:18;;;22763:30;22829:34;22809:18;;;22802:62;-1:-1:-1;;;22880:18:1;;;22873:39;22929:19;;20720:83:0;22549:405:1;20720:83:0;20816:30;20863:8;:15;20849:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20849:30:0;;20816:63;;20897:9;20892:122;20916:8;:15;20912:1;:19;20892:122;;;20972:30;20982:8;20991:1;20982:11;;;;;;;;:::i;:::-;;;;;;;20995:3;20999:1;20995:6;;;;;;;;:::i;:::-;;;;;;;20972:9;:30::i;:::-;20953:13;20967:1;20953:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20933:3;;;:::i;:::-;;;20892:122;;;-1:-1:-1;21033:13:0;20530:524;-1:-1:-1;;;20530:524:0:o;47283:153::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47351:28:0::1;;::::0;;;:13:::1;:28;::::0;;;;:35;;-1:-1:-1;;47351:35:0::1;47382:4;47351:35:::0;;::::1;::::0;;;47395:13:::1;:33:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;47395:33:0::1;::::0;;::::1;::::0;;47283:153::o;36948:103::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;37013:30:::1;37040:1;37013:18;:30::i;:::-;36948:103::o:0;47728:748::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;47870:12:::1;:19;47849:10;:17;:40;47841:78;;;::::0;-1:-1:-1;;;47841:78:0;;20039:2:1;47841:78:0::1;::::0;::::1;20021:21:1::0;20078:2;20058:18;;;20051:30;20117:27;20097:18;;;20090:55;20162:18;;47841:78:0::1;19837:349:1::0;47841:78:0::1;47928:19;47965:9:::0;47960:335:::1;47984:10;:17;47980:1;:21;47960:335;;;48055:22;48030:10;48041:1;48030:13;;;;;;;;:::i;:::-;;;;;;;:48;;48022:79;;;;-1:-1:-1::0;;;48022:79:0::1;;;;;;;:::i;:::-;48172:11;:26;48184:10;48195:1;48184:13;;;;;;;;:::i;:::-;;;;;;;48172:26;;;;;;;;;;;;48153:12;48166:1;48153:15;;;;;;;;:::i;:::-;;;;;;;48124:26;48136:10;48147:1;48136:13;;;;;;;;:::i;:::-;;;;;;;34313:7:::0;34340:16;;;:12;:16;;;;;;;34251:113;48124:26:::1;:44;;;;:::i;:::-;:74;;48116:122;;;;-1:-1:-1::0;;;48116:122:0::1;;;;;;;:::i;:::-;48268:12;48281:1;48268:15;;;;;;;;:::i;:::-;;;;;;;48253:30;;;;;:::i;:::-;::::0;-1:-1:-1;48003:3:0;::::1;::::0;::::1;:::i;:::-;;;;47960:335;;;;48337:10;;48322:11;48313:6;;:20;;;;:::i;:::-;:34;;48305:100;;;;-1:-1:-1::0;;;48305:100:0::1;;;;;;;:::i;:::-;48414:54;17117:10:::0;48439::::1;48451:12;48414:54;;;;;;;;;;;::::0;:10:::1;:54::i;:::-;47832:644;47728:748:::0;;:::o;47444:118::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47516:30:0::1;47549:5;47516:30:::0;;;:13:::1;:30;::::0;;;;:38;;-1:-1:-1;;47516:38:0::1;::::0;;47444:118::o;50014:1769::-;50142:13;:20;50120:11;:18;:42;50112:76;;;;-1:-1:-1;;;50112:76:0;;;;;;;:::i;:::-;50207:11;;;;50199:52;;;;-1:-1:-1;;;50199:52:0;;24314:2:1;50199:52:0;;;24296:21:1;24353:2;24333:18;;;24326:30;24392;24372:18;;;24365:58;24440:18;;50199:52:0;24112:352:1;50199:52:0;50270:12;;;;50262:53;;;;-1:-1:-1;;;50262:53:0;;24314:2:1;50262:53:0;;;24296:21:1;24353:2;24333:18;;;24326:30;24392;24372:18;;;24365:58;24440:18;;50262:53:0;24112:352:1;50262:53:0;50326:17;50346:28;17117:10;50346:14;:28::i;:::-;17117:10;50385:19;50407:27;;;:13;:27;;;;;;50326:48;;-1:-1:-1;50385:19:0;;50512:898;50536:11;:18;50532:1;:22;50512:898;;;50602:1;50583:13;50597:1;50583:16;;;;;;;;:::i;:::-;;;;;;;:20;50575:66;;;;-1:-1:-1;;;50575:66:0;;;;;;;:::i;:::-;50690:22;50664:11;50676:1;50664:14;;;;;;;;:::i;:::-;;;;;;;:49;;50656:80;;;;-1:-1:-1;;;50656:80:0;;;;;;;:::i;:::-;50809:11;:27;50821:11;50833:1;50821:14;;;;;;;;:::i;:::-;;;;;;;50809:27;;;;;;;;;;;;50789:13;50803:1;50789:16;;;;;;;;:::i;:::-;;;;;;;50759:27;50771:11;50783:1;50771:14;;;;;;;;:::i;50759:27::-;:46;;;;:::i;:::-;:77;;50751:125;;;;-1:-1:-1;;;50751:125:0;;;;;;;:::i;:::-;50893:21;50917:12;:28;50930:11;50942:1;50930:14;;;;;;;;:::i;:::-;;;;;;;50917:28;;;;;;;;;;;;50893:52;;50960:21;50984:16;:32;51001:11;51013:1;51001:14;;;;;;;;:::i;:::-;;;;;;;50984:32;;;;;;;;;;;;50960:56;;51038:9;51033:320;51057:13;51071:1;51057:16;;;;;;;;:::i;:::-;;;;;;;51053:1;:20;51033:320;;;51096:16;51111:1;51096:16;;:::i;:::-;;;51148:9;51133:11;:24;51129:209;;51177:27;51191:13;51177:27;;:::i;:::-;;;51129:209;;;51306:13;51279:23;51293:9;51279:11;:23;:::i;:::-;51278:41;;;;:::i;:::-;51261:59;;:13;:59;:::i;:::-;51247:73;;;;:::i;:::-;;;51129:209;51075:3;;;;:::i;:::-;;;;51033:320;;;;51382:13;51396:1;51382:16;;;;;;;;:::i;:::-;;;;;;;51367:31;;;;;:::i;:::-;;;50560:850;;50556:3;;;;;:::i;:::-;;;;50512:898;;;;51452:10;;51437:11;51428:6;;:20;;;;:::i;:::-;:34;;51420:100;;;;-1:-1:-1;;;51420:100:0;;;;;;;:::i;:::-;17117:10;51533:27;;;;:13;:27;;;;;:42;;51564:11;;51533:27;:42;;51564:11;;51533:42;:::i;:::-;;;;-1:-1:-1;;51586:3:0;;-1:-1:-1;;;;;51586:3:0;:12;17117:10;51586:38;;-1:-1:-1;;;;;;51586:38:0;;;;;;;-1:-1:-1;;;;;13119:32:1;;;51586:38:0;;;13101:51:1;13168:18;;;13161:34;;;13074:18;;51586:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51637:56;51648:12;17117:10;;17037:98;51648:12;51662:11;51675:13;51637:56;;;;;;;;;;;;:10;:56::i;:::-;51711:64;17117:10;51756:18;;51711:64;;;-1:-1:-1;;;;;13426:32:1;;;13408:51;;13490:2;13475:18;;13468:34;;;13518:18;;13511:34;13396:2;13381:18;51711:64:0;;;;;;;50101:1682;;;;50014:1769;;:::o;47570:150::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;47643:8:::1;:29:::0;;-1:-1:-1;;;;;47643:29:0;;::::1;-1:-1:-1::0;;;;;;47643:29:0;;::::1;::::0;::::1;::::0;;:8:::1;47681:24:::0;;;:13:::1;:24;::::0;;;;:31;;-1:-1:-1;;47681:31:0::1;47643:29:::0;47681:31:::1;::::0;;47570:150::o;48577:85::-;48616:13;48647:7;48640:14;;;;;:::i;21127:155::-;21222:52;17117:10;21255:8;21265;21222:18;:52::i;45464:30::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45464:30:0;;-1:-1:-1;45464:30:0;:::o;48670:1336::-;48791:7;48840:13;:20;48818:11;:18;:42;48810:76;;;;-1:-1:-1;;;48810:76:0;;;;;;;:::i;:::-;48897:17;48917:21;48932:5;48917:14;:21::i;:::-;-1:-1:-1;;;;;48971:20:0;;48949:19;48971:20;;;:13;:20;;;;;;48897:41;;-1:-1:-1;48949:19:0;;49069:898;49093:11;:18;49089:1;:22;49069:898;;;49159:1;49140:13;49154:1;49140:16;;;;;;;;:::i;:::-;;;;;;;:20;49132:66;;;;-1:-1:-1;;;49132:66:0;;;;;;;:::i;:::-;49247:22;49221:11;49233:1;49221:14;;;;;;;;:::i;:::-;;;;;;;:49;;49213:80;;;;-1:-1:-1;;;49213:80:0;;;;;;;:::i;:::-;49366:11;:27;49378:11;49390:1;49378:14;;;;;;;;:::i;:::-;;;;;;;49366:27;;;;;;;;;;;;49346:13;49360:1;49346:16;;;;;;;;:::i;:::-;;;;;;;49316:27;49328:11;49340:1;49328:14;;;;;;;;:::i;49316:27::-;:46;;;;:::i;:::-;:77;;49308:125;;;;-1:-1:-1;;;49308:125:0;;;;;;;:::i;:::-;49450:21;49474:12;:28;49487:11;49499:1;49487:14;;;;;;;;:::i;:::-;;;;;;;49474:28;;;;;;;;;;;;49450:52;;49517:21;49541:16;:32;49558:11;49570:1;49558:14;;;;;;;;:::i;:::-;;;;;;;49541:32;;;;;;;;;;;;49517:56;;49595:9;49590:320;49614:13;49628:1;49614:16;;;;;;;;:::i;:::-;;;;;;;49610:1;:20;49590:320;;;49653:16;49668:1;49653:16;;:::i;:::-;;;49705:9;49690:11;:24;49686:209;;49734:27;49748:13;49734:27;;:::i;:::-;;;49686:209;;;49863:13;49836:23;49850:9;49836:11;:23;:::i;:::-;49835:41;;;;:::i;:::-;49818:59;;:13;:59;:::i;:::-;49804:73;;;;:::i;:::-;;;49686:209;49632:3;;;;:::i;:::-;;;;49590:320;;;;49939:13;49953:1;49939:16;;;;;;;;:::i;:::-;;;;;;;49924:31;;;;;:::i;:::-;;;49117:850;;49113:3;;;;;:::i;:::-;;;;49069:898;;;-1:-1:-1;49986:10:0;;48670:1336;-1:-1:-1;;;;;;;48670:1336:0:o;46548:335::-;-1:-1:-1;;;;;46682:20:0;;17117:10;46682:20;;:60;;-1:-1:-1;46706:36:0;46723:4;17117:10;21354:168;:::i;46706:36::-;46682:91;;;-1:-1:-1;17117:10:0;46746:27;;;;:13;:27;;;;;;;;46682:91;46674:145;;;;-1:-1:-1;;;46674:145:0;;17989:2:1;46674:145:0;;;17971:21:1;18028:2;18008:18;;;18001:30;18067:34;18047:18;;;18040:62;-1:-1:-1;;;18118:18:1;;;18111:39;18167:19;;46674:145:0;17787:405:1;46674:145:0;46830:45;46848:4;46854:2;46858;46862:6;46870:4;46830:17;:45::i;37206:201::-;36370:6;;-1:-1:-1;;;;;36370:6:0;17117:10;36517:23;36509:68;;;;-1:-1:-1;;;36509:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37295:22:0;::::1;37287:73;;;::::0;-1:-1:-1;;;37287:73:0;;16822:2:1;37287:73:0::1;::::0;::::1;16804:21:1::0;16861:2;16841:18;;;16834:30;16900:34;16880:18;;;16873:62;-1:-1:-1;;;16951:18:1;;;16944:36;16997:19;;37287:73:0::1;16620:402:1::0;37287:73:0::1;37371:28;37390:8;37371:18;:28::i;:::-;37206:201:::0;:::o;42817:723::-;42873:13;43094:10;43090:53;;-1:-1:-1;;43121:10:0;;;;;;;;;;;;-1:-1:-1;;;43121:10:0;;;;;42817:723::o;43090:53::-;43168:5;43153:12;43209:78;43216:9;;43209:78;;43242:8;;;;:::i;:::-;;-1:-1:-1;43265:10:0;;-1:-1:-1;43273:2:0;43265:10;;:::i;:::-;;;43209:78;;;43297:19;43329:6;43319:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43319:17:0;;43297:39;;43347:154;43354:10;;43347:154;;43381:11;43391:1;43381:11;;:::i;:::-;;-1:-1:-1;43450:10:0;43458:2;43450:5;:10;:::i;:::-;43437:24;;:2;:24;:::i;:::-;43424:39;;43407:6;43414;43407:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;43407:56:0;;;;;;;;-1:-1:-1;43478:11:0;43487:2;43478:11;;:::i;:::-;;;43347:154;;;43525:6;42817:723;-1:-1:-1;;;;42817:723:0:o;24156:1074::-;24383:7;:14;24369:3;:10;:28;24361:81;;;;-1:-1:-1;;;24361:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24461:16:0;;24453:66;;;;-1:-1:-1;;;24453:66:0;;;;;;;:::i;:::-;17117:10;24576:60;17117:10;24607:4;24613:2;24617:3;24622:7;24631:4;24576:20;:60::i;:::-;24654:9;24649:421;24673:3;:10;24669:1;:14;24649:421;;;24705:10;24718:3;24722:1;24718:6;;;;;;;;:::i;:::-;;;;;;;24705:19;;24739:14;24756:7;24764:1;24756:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24783:19;24805:13;;;;;;;;;;-1:-1:-1;;;;;24805:19:0;;;;;;;;;;;;24756:10;;-1:-1:-1;24847:21:0;;;;24839:76;;;;-1:-1:-1;;;24839:76:0;;;;;;;:::i;:::-;24959:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24959:19:0;;;;;;;;;;24981:20;;;24959:42;;25031:17;;;;;;;:27;;24981:20;;24959:9;25031:27;;24981:20;;25031:27;:::i;:::-;;;;;;;;24690:380;;;24685:3;;;;:::i;:::-;;;24649:421;;;;25117:2;-1:-1:-1;;;;;25087:47:0;25111:4;-1:-1:-1;;;;;25087:47:0;25101:8;-1:-1:-1;;;;;25087:47:0;;25121:3;25126:7;25087:47;;;;;;;:::i;:::-;;;;;;;;25147:75;25183:8;25193:4;25199:2;25203:3;25208:7;25217:4;25147:35;:75::i;:::-;24350:880;24156:1074;;;;;:::o;37567:191::-;37660:6;;;-1:-1:-1;;;;;37677:17:0;;;-1:-1:-1;;;;;;37677:17:0;;;;;;;37710:40;;37660:6;;;37677:17;37660:6;;37710:40;;37641:16;;37710:40;37630:128;37567:191;:::o;27473:735::-;-1:-1:-1;;;;;27651:16:0;;27643:62;;;;-1:-1:-1;;;27643:62:0;;23912:2:1;27643:62:0;;;23894:21:1;23951:2;23931:18;;;23924:30;23990:34;23970:18;;;23963:62;-1:-1:-1;;;24041:18:1;;;24034:31;24082:19;;27643:62:0;23710:397:1;27643:62:0;27738:7;:14;27724:3;:10;:28;27716:81;;;;-1:-1:-1;;;27716:81:0;;;;;;;:::i;:::-;17117:10;27854:66;17117:10;27810:16;27897:2;27901:3;27906:7;27915:4;27854:20;:66::i;:::-;27938:9;27933:103;27957:3;:10;27953:1;:14;27933:103;;;28014:7;28022:1;28014:10;;;;;;;;:::i;:::-;;;;;;;27989:9;:17;27999:3;28003:1;27999:6;;;;;;;;:::i;:::-;;;;;;;27989:17;;;;;;;;;;;:21;28007:2;-1:-1:-1;;;;;27989:21:0;-1:-1:-1;;;;;27989:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;27969:3:0;;-1:-1:-1;27969:3:0;;;:::i;:::-;;;;27933:103;;;;28089:2;-1:-1:-1;;;;;28053:53:0;28085:1;-1:-1:-1;;;;;28053:53:0;28067:8;-1:-1:-1;;;;;28053:53:0;;28093:3;28098:7;28053:53;;;;;;;:::i;:::-;;;;;;;;28119:81;28155:8;28173:1;28177:2;28181:3;28186:7;28195:4;28119:35;:81::i;53203:139::-;53314:4;;:20;;-1:-1:-1;;;53314:20:0;;-1:-1:-1;;;;;11487:32:1;;;53314:20:0;;;11469:51:1;53264:7:0;;53314:4;;:14;;11442:18:1;;53314:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53288:7;;:23;;-1:-1:-1;;;53288:23:0;;-1:-1:-1;;;;;11487:32:1;;;53288:23:0;;;11469:51:1;53288:7:0;;;;:17;;11442:18:1;;53288:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;;;:::i;30342:331::-;30497:8;-1:-1:-1;;;;;30488:17:0;:5;-1:-1:-1;;;;;30488:17:0;;;30480:71;;;;-1:-1:-1;;;30480:71:0;;22341:2:1;30480:71:0;;;22323:21:1;22380:2;22360:18;;;22353:30;22419:34;22399:18;;;22392:62;-1:-1:-1;;;22470:18:1;;;22463:39;22519:19;;30480:71:0;22139:405:1;30480:71:0;-1:-1:-1;;;;;30562:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30562:46:0;;;;;;;;;;30624:41;;14432::1;;;30624::0;;14405:18:1;30624:41:0;;;;;;;30342:331;;;:::o;22978:820::-;-1:-1:-1;;;;;23166:16:0;;23158:66;;;;-1:-1:-1;;;23158:66:0;;;;;;;:::i;:::-;17117:10;23281:96;17117:10;23312:4;23318:2;23322:21;23340:2;23322:17;:21::i;:::-;23345:25;23363:6;23345:17;:25::i;:::-;23372:4;23281:20;:96::i;:::-;23390:19;23412:13;;;;;;;;;;;-1:-1:-1;;;;;23412:19:0;;;;;;;;;;23450:21;;;;23442:76;;;;-1:-1:-1;;;23442:76:0;;;;;;;:::i;:::-;23554:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23554:19:0;;;;;;;;;;23576:20;;;23554:42;;23618:17;;;;;;;:27;;23576:20;;23554:9;23618:27;;23576:20;;23618:27;:::i;:::-;;;;-1:-1:-1;;23663:46:0;;;24825:25:1;;;24881:2;24866:18;;24859:34;;;-1:-1:-1;;;;;23663:46:0;;;;;;;;;;;;;;24798:18:1;23663:46:0;;;;;;;23722:68;23753:8;23763:4;23769:2;23773;23777:6;23785:4;23722:30;:68::i;:::-;23147:651;;22978:820;;;;;:::o;53884:392::-;54123:66;54150:8;54160:4;54166:2;54170:3;54175:7;54184:4;54123:26;:66::i;:::-;54211:8;;;;;;;54210:9;54202:66;;;;-1:-1:-1;;;54202:66:0;;17576:2:1;54202:66:0;;;17558:21:1;17615:2;17595:18;;;17588:30;17654:34;17634:18;;;17627:62;-1:-1:-1;;;17705:18:1;;;17698:42;17757:19;;54202:66:0;17374:408:1;32610:813:0;-1:-1:-1;;;;;32850:13:0;;9466:19;:23;32846:570;;32886:79;;-1:-1:-1;;;32886:79:0;;-1:-1:-1;;;;;32886:43:0;;;;;:79;;32930:8;;32940:4;;32946:3;;32951:7;;32960:4;;32886:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32886:79:0;;;;;;;;-1:-1:-1;;32886:79:0;;;;;;;;;;;;:::i;:::-;;;32882:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33278:6;33271:14;;-1:-1:-1;;;33271:14:0;;;;;;;;:::i;32882:523::-;;;33327:62;;-1:-1:-1;;;33327:62:0;;15580:2:1;33327:62:0;;;15562:21:1;15619:2;15599:18;;;15592:30;15658:34;15638:18;;;15631:62;-1:-1:-1;;;15709:18:1;;;15702:50;15769:19;;33327:62:0;15378:416:1;32882:523:0;-1:-1:-1;;;;;;33047:60:0;;-1:-1:-1;;;33047:60:0;33043:159;;33132:50;;-1:-1:-1;;;33132:50:0;;;;;;;:::i;33431:198::-;33551:16;;;33565:1;33551:16;;;;;;;;;33497;;33526:22;;33551:16;;;;;;;;;;;;-1:-1:-1;33551:16:0;33526:41;;33589:7;33578:5;33584:1;33578:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33616:5;33431:198;-1:-1:-1;;33431:198:0:o;31858:744::-;-1:-1:-1;;;;;32073:13:0;;9466:19;:23;32069:526;;32109:72;;-1:-1:-1;;;32109:72:0;;-1:-1:-1;;;;;32109:38:0;;;;;:72;;32148:8;;32158:4;;32164:2;;32168:6;;32176:4;;32109:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32109:72:0;;;;;;;;-1:-1:-1;;32109:72:0;;;;;;;;;;;;:::i;:::-;;;32105:479;;;;:::i;:::-;-1:-1:-1;;;;;;32231:55:0;;-1:-1:-1;;;32231:55:0;32227:154;;32311:50;;-1:-1:-1;;;32311:50:0;;;;;;;:::i;34659:655::-;-1:-1:-1;;;;;34981:18:0;;34977:160;;35021:9;35016:110;35040:3;:10;35036:1;:14;35016:110;;;35100:7;35108:1;35100:10;;;;;;;;:::i;:::-;;;;;;;35076:12;:20;35089:3;35093:1;35089:6;;;;;;;;:::i;:::-;;;;;;;35076:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;35052:3:0;;-1:-1:-1;35052:3:0;;:::i;:::-;;;35016:110;;;;34977:160;-1:-1:-1;;;;;35153:16:0;;35149:158;;35191:9;35186:110;35210:3;:10;35206:1;:14;35186:110;;;35270:7;35278:1;35270:10;;;;;;;;:::i;:::-;;;;;;;35246:12;:20;35259:3;35263:1;35259:6;;;;;;;;:::i;:::-;;;;;;;35246:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;35222:3:0;;-1:-1:-1;35222:3:0;;:::i;:::-;;;35186:110;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:1;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:1;;;702:1;699;692:12;645:61;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;932:160;997:20;;1053:13;;1046:21;1036:32;;1026:60;;1082:1;1079;1072:12;1097:555;1139:5;1192:3;1185:4;1177:6;1173:17;1169:27;1159:55;;1210:1;1207;1200:12;1159:55;1246:6;1233:20;1272:18;1268:2;1265:26;1262:52;;;1294:18;;:::i;:::-;1343:2;1337:9;1355:67;1410:2;1391:13;;-1:-1:-1;;1387:27:1;1416:4;1383:38;1337:9;1355:67;:::i;:::-;1446:2;1438:6;1431:18;1492:3;1485:4;1480:2;1472:6;1468:15;1464:26;1461:35;1458:55;;;1509:1;1506;1499:12;1458:55;1573:2;1566:4;1558:6;1554:17;1547:4;1539:6;1535:17;1522:54;1620:1;1596:15;;;1613:4;1592:26;1585:37;;;;1600:6;1097:555;-1:-1:-1;;;1097:555:1:o;1657:186::-;1716:6;1769:2;1757:9;1748:7;1744:23;1740:32;1737:52;;;1785:1;1782;1775:12;1737:52;1808:29;1827:9;1808:29;:::i;:::-;1798:39;1657:186;-1:-1:-1;;;1657:186:1:o;1848:260::-;1916:6;1924;1977:2;1965:9;1956:7;1952:23;1948:32;1945:52;;;1993:1;1990;1983:12;1945:52;2016:29;2035:9;2016:29;:::i;:::-;2006:39;;2064:38;2098:2;2087:9;2083:18;2064:38;:::i;:::-;2054:48;;1848:260;;;;;:::o;2113:943::-;2267:6;2275;2283;2291;2299;2352:3;2340:9;2331:7;2327:23;2323:33;2320:53;;;2369:1;2366;2359:12;2320:53;2392:29;2411:9;2392:29;:::i;:::-;2382:39;;2440:38;2474:2;2463:9;2459:18;2440:38;:::i;:::-;2430:48;;2529:2;2518:9;2514:18;2501:32;2552:18;2593:2;2585:6;2582:14;2579:34;;;2609:1;2606;2599:12;2579:34;2632:61;2685:7;2676:6;2665:9;2661:22;2632:61;:::i;:::-;2622:71;;2746:2;2735:9;2731:18;2718:32;2702:48;;2775:2;2765:8;2762:16;2759:36;;;2791:1;2788;2781:12;2759:36;2814:63;2869:7;2858:8;2847:9;2843:24;2814:63;:::i;:::-;2804:73;;2930:3;2919:9;2915:19;2902:33;2886:49;;2960:2;2950:8;2947:16;2944:36;;;2976:1;2973;2966:12;2944:36;;2999:51;3042:7;3031:8;3020:9;3016:24;2999:51;:::i;:::-;2989:61;;;2113:943;;;;;;;;:::o;3061:606::-;3165:6;3173;3181;3189;3197;3250:3;3238:9;3229:7;3225:23;3221:33;3218:53;;;3267:1;3264;3257:12;3218:53;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3338:38;3372:2;3361:9;3357:18;3338:38;:::i;:::-;3328:48;;3423:2;3412:9;3408:18;3395:32;3385:42;;3474:2;3463:9;3459:18;3446:32;3436:42;;3529:3;3518:9;3514:19;3501:33;3557:18;3549:6;3546:30;3543:50;;;3589:1;3586;3579:12;3543:50;3612:49;3653:7;3644:6;3633:9;3629:22;3612:49;:::i;3672:669::-;3799:6;3807;3815;3868:2;3856:9;3847:7;3843:23;3839:32;3836:52;;;3884:1;3881;3874:12;3836:52;3907:29;3926:9;3907:29;:::i;:::-;3897:39;;3987:2;3976:9;3972:18;3959:32;4010:18;4051:2;4043:6;4040:14;4037:34;;;4067:1;4064;4057:12;4037:34;4090:61;4143:7;4134:6;4123:9;4119:22;4090:61;:::i;:::-;4080:71;;4204:2;4193:9;4189:18;4176:32;4160:48;;4233:2;4223:8;4220:16;4217:36;;;4249:1;4246;4239:12;4217:36;;4272:63;4327:7;4316:8;4305:9;4301:24;4272:63;:::i;:::-;4262:73;;;3672:669;;;;;:::o;4346:254::-;4411:6;4419;4472:2;4460:9;4451:7;4447:23;4443:32;4440:52;;;4488:1;4485;4478:12;4440:52;4511:29;4530:9;4511:29;:::i;:::-;4501:39;;4559:35;4590:2;4579:9;4575:18;4559:35;:::i;4605:254::-;4673:6;4681;4734:2;4722:9;4713:7;4709:23;4705:32;4702:52;;;4750:1;4747;4740:12;4702:52;4773:29;4792:9;4773:29;:::i;:::-;4763:39;4849:2;4834:18;;;;4821:32;;-1:-1:-1;;;4605:254:1:o;4864:1219::-;4982:6;4990;5043:2;5031:9;5022:7;5018:23;5014:32;5011:52;;;5059:1;5056;5049:12;5011:52;5099:9;5086:23;5128:18;5169:2;5161:6;5158:14;5155:34;;;5185:1;5182;5175:12;5155:34;5223:6;5212:9;5208:22;5198:32;;5268:7;5261:4;5257:2;5253:13;5249:27;5239:55;;5290:1;5287;5280:12;5239:55;5326:2;5313:16;5348:4;5371:43;5411:2;5371:43;:::i;:::-;5443:2;5437:9;5455:31;5483:2;5475:6;5455:31;:::i;:::-;5521:18;;;5555:15;;;;-1:-1:-1;5590:11:1;;;5632:1;5628:10;;;5620:19;;5616:28;;5613:41;-1:-1:-1;5610:61:1;;;5667:1;5664;5657:12;5610:61;5689:1;5680:10;;5699:169;5713:2;5710:1;5707:9;5699:169;;;5770:23;5789:3;5770:23;:::i;:::-;5758:36;;5731:1;5724:9;;;;;5814:12;;;;5846;;5699:169;;;-1:-1:-1;5887:6:1;-1:-1:-1;;5931:18:1;;5918:32;;-1:-1:-1;;5962:16:1;;;5959:36;;;5991:1;5988;5981:12;5959:36;;6014:63;6069:7;6058:8;6047:9;6043:24;6014:63;:::i;:::-;6004:73;;;4864:1219;;;;;:::o;6088:595::-;6206:6;6214;6267:2;6255:9;6246:7;6242:23;6238:32;6235:52;;;6283:1;6280;6273:12;6235:52;6323:9;6310:23;6352:18;6393:2;6385:6;6382:14;6379:34;;;6409:1;6406;6399:12;6379:34;6432:61;6485:7;6476:6;6465:9;6461:22;6432:61;:::i;:::-;6422:71;;6546:2;6535:9;6531:18;6518:32;6502:48;;6575:2;6565:8;6562:16;6559:36;;;6591:1;6588;6581:12;6688:1048;6874:6;6882;6890;6898;6951:3;6939:9;6930:7;6926:23;6922:33;6919:53;;;6968:1;6965;6958:12;6919:53;7008:9;6995:23;7037:18;7078:2;7070:6;7067:14;7064:34;;;7094:1;7091;7084:12;7064:34;7117:61;7170:7;7161:6;7150:9;7146:22;7117:61;:::i;:::-;7107:71;;7231:2;7220:9;7216:18;7203:32;7187:48;;7260:2;7250:8;7247:16;7244:36;;;7276:1;7273;7266:12;7244:36;7299:63;7354:7;7343:8;7332:9;7328:24;7299:63;:::i;:::-;7289:73;;7415:2;7404:9;7400:18;7387:32;7371:48;;7444:2;7434:8;7431:16;7428:36;;;7460:1;7457;7450:12;7428:36;7483:63;7538:7;7527:8;7516:9;7512:24;7483:63;:::i;:::-;7473:73;;7599:2;7588:9;7584:18;7571:32;7555:48;;7628:2;7618:8;7615:16;7612:36;;;7644:1;7641;7634:12;7612:36;;7667:63;7722:7;7711:8;7700:9;7696:24;7667:63;:::i;:::-;7657:73;;;6688:1048;;;;;;;:::o;7741:180::-;7797:6;7850:2;7838:9;7829:7;7825:23;7821:32;7818:52;;;7866:1;7863;7856:12;7818:52;7889:26;7905:9;7889:26;:::i;7926:245::-;7984:6;8037:2;8025:9;8016:7;8012:23;8008:32;8005:52;;;8053:1;8050;8043:12;8005:52;8092:9;8079:23;8111:30;8135:5;8111:30;:::i;8176:249::-;8245:6;8298:2;8286:9;8277:7;8273:23;8269:32;8266:52;;;8314:1;8311;8304:12;8266:52;8346:9;8340:16;8365:30;8389:5;8365:30;:::i;8430:180::-;8489:6;8542:2;8530:9;8521:7;8517:23;8513:32;8510:52;;;8558:1;8555;8548:12;8510:52;-1:-1:-1;8581:23:1;;8430:180;-1:-1:-1;8430:180:1:o;8615:184::-;8685:6;8738:2;8726:9;8717:7;8713:23;8709:32;8706:52;;;8754:1;8751;8744:12;8706:52;-1:-1:-1;8777:16:1;;8615:184;-1:-1:-1;8615:184:1:o;8804:435::-;8857:3;8895:5;8889:12;8922:6;8917:3;8910:19;8948:4;8977:2;8972:3;8968:12;8961:19;;9014:2;9007:5;9003:14;9035:1;9045:169;9059:6;9056:1;9053:13;9045:169;;;9120:13;;9108:26;;9154:12;;;;9189:15;;;;9081:1;9074:9;9045:169;;;-1:-1:-1;9230:3:1;;8804:435;-1:-1:-1;;;;;8804:435:1:o;9244:257::-;9285:3;9323:5;9317:12;9350:6;9345:3;9338:19;9366:63;9422:6;9415:4;9410:3;9406:14;9399:4;9392:5;9388:16;9366:63;:::i;:::-;9483:2;9462:15;-1:-1:-1;;9458:29:1;9449:39;;;;9490:4;9445:50;;9244:257;-1:-1:-1;;9244:257:1:o;9506:185::-;9548:3;9586:5;9580:12;9601:52;9646:6;9641:3;9634:4;9627:5;9623:16;9601:52;:::i;:::-;9669:16;;;;;9506:185;-1:-1:-1;;9506:185:1:o;9696:443::-;9928:3;9966:6;9960:13;9982:53;10028:6;10023:3;10016:4;10008:6;10004:17;9982:53;:::i;:::-;-1:-1:-1;;;10057:16:1;;10082:22;;;-1:-1:-1;10131:1:1;10120:13;;9696:443;-1:-1:-1;9696:443:1:o;10144:1174::-;10320:3;10349:1;10382:6;10376:13;10412:3;10434:1;10462:9;10458:2;10454:18;10444:28;;10522:2;10511:9;10507:18;10544;10534:61;;10588:4;10580:6;10576:17;10566:27;;10534:61;10614:2;10662;10654:6;10651:14;10631:18;10628:38;10625:165;;;-1:-1:-1;;;10689:33:1;;10745:4;10742:1;10735:15;10775:4;10696:3;10763:17;10625:165;10806:18;10833:104;;;;10951:1;10946:320;;;;10799:467;;10833:104;-1:-1:-1;;10866:24:1;;10854:37;;10911:16;;;;-1:-1:-1;10833:104:1;;10946:320;25165:1;25158:14;;;25202:4;25189:18;;11041:1;11055:165;11069:6;11066:1;11063:13;11055:165;;;11147:14;;11134:11;;;11127:35;11190:16;;;;11084:10;;11055:165;;;11059:3;;11249:6;11244:3;11240:16;11233:23;;10799:467;;;;;;;11282:30;11308:3;11300:6;11282:30;:::i;:::-;11275:37;10144:1174;-1:-1:-1;;;;;10144:1174:1:o;11531:826::-;-1:-1:-1;;;;;11928:15:1;;;11910:34;;11980:15;;11975:2;11960:18;;11953:43;11890:3;12027:2;12012:18;;12005:31;;;11853:4;;12059:57;;12096:19;;12088:6;12059:57;:::i;:::-;12164:9;12156:6;12152:22;12147:2;12136:9;12132:18;12125:50;12198:44;12235:6;12227;12198:44;:::i;:::-;12184:58;;12291:9;12283:6;12279:22;12273:3;12262:9;12258:19;12251:51;12319:32;12344:6;12336;12319:32;:::i;:::-;12311:40;11531:826;-1:-1:-1;;;;;;;;11531:826:1:o;12362:560::-;-1:-1:-1;;;;;12659:15:1;;;12641:34;;12711:15;;12706:2;12691:18;;12684:43;12758:2;12743:18;;12736:34;;;12801:2;12786:18;;12779:34;;;12621:3;12844;12829:19;;12822:32;;;12584:4;;12871:45;;12896:19;;12888:6;12871:45;:::i;:::-;12863:53;12362:560;-1:-1:-1;;;;;;;12362:560:1:o;13556:261::-;13735:2;13724:9;13717:21;13698:4;13755:56;13807:2;13796:9;13792:18;13784:6;13755:56;:::i;13822:465::-;14079:2;14068:9;14061:21;14042:4;14105:56;14157:2;14146:9;14142:18;14134:6;14105:56;:::i;:::-;14209:9;14201:6;14197:22;14192:2;14181:9;14177:18;14170:50;14237:44;14274:6;14266;14237:44;:::i;15154:219::-;15303:2;15292:9;15285:21;15266:4;15323:44;15363:2;15352:9;15348:18;15340:6;15323:44;:::i;15799:404::-;16001:2;15983:21;;;16040:2;16020:18;;;16013:30;16079:34;16074:2;16059:18;;16052:62;-1:-1:-1;;;16145:2:1;16130:18;;16123:38;16193:3;16178:19;;15799:404::o;17027:342::-;17229:2;17211:21;;;17268:2;17248:18;;;17241:30;-1:-1:-1;;;17302:2:1;17287:18;;17280:48;17360:2;17345:18;;17027:342::o;18197:399::-;18399:2;18381:21;;;18438:2;18418:18;;;18411:30;18477:34;18472:2;18457:18;;18450:62;-1:-1:-1;;;18543:2:1;18528:18;;18521:33;18586:3;18571:19;;18197:399::o;18601:401::-;18803:2;18785:21;;;18842:2;18822:18;;;18815:30;18881:34;18876:2;18861:18;;18854:62;-1:-1:-1;;;18947:2:1;18932:18;;18925:35;18992:3;18977:19;;18601:401::o;19426:406::-;19628:2;19610:21;;;19667:2;19647:18;;;19640:30;19706:34;19701:2;19686:18;;19679:62;-1:-1:-1;;;19772:2:1;19757:18;;19750:40;19822:3;19807:19;;19426:406::o;20191:356::-;20393:2;20375:21;;;20412:18;;;20405:30;20471:34;20466:2;20451:18;;20444:62;20538:2;20523:18;;20191:356::o;20552:417::-;20754:2;20736:21;;;20793:2;20773:18;;;20766:30;20832:34;20827:2;20812:18;;20805:62;-1:-1:-1;;;20898:2:1;20883:18;;20876:51;20959:3;20944:19;;20552:417::o;20974:397::-;21176:2;21158:21;;;21215:2;21195:18;;;21188:30;21254:34;21249:2;21234:18;;21227:62;-1:-1:-1;;;21320:2:1;21305:18;;21298:31;21361:3;21346:19;;20974:397::o;21376:345::-;21578:2;21560:21;;;21617:2;21597:18;;;21590:30;-1:-1:-1;;;21651:2:1;21636:18;;21629:51;21712:2;21697:18;;21376:345::o;22959:404::-;23161:2;23143:21;;;23200:2;23180:18;;;23173:30;23239:34;23234:2;23219:18;;23212:62;-1:-1:-1;;;23305:2:1;23290:18;;23283:38;23353:3;23338:19;;22959:404::o;24904:183::-;24964:4;24997:18;24989:6;24986:30;24983:56;;;25019:18;;:::i;:::-;-1:-1:-1;25064:1:1;25060:14;25076:4;25056:25;;24904:183::o;25218:128::-;25258:3;25289:1;25285:6;25282:1;25279:13;25276:39;;;25295:18;;:::i;:::-;-1:-1:-1;25331:9:1;;25218:128::o;25351:120::-;25391:1;25417;25407:35;;25422:18;;:::i;:::-;-1:-1:-1;25456:9:1;;25351:120::o;25476:168::-;25516:7;25582:1;25578;25574:6;25570:14;25567:1;25564:21;25559:1;25552:9;25545:17;25541:45;25538:71;;;25589:18;;:::i;:::-;-1:-1:-1;25629:9:1;;25476:168::o;25649:125::-;25689:4;25717:1;25714;25711:8;25708:34;;;25722:18;;:::i;:::-;-1:-1:-1;25759:9:1;;25649:125::o;25779:258::-;25851:1;25861:113;25875:6;25872:1;25869:13;25861:113;;;25951:11;;;25945:18;25932:11;;;25925:39;25897:2;25890:10;25861:113;;;25992:6;25989:1;25986:13;25983:48;;;26027:1;26018:6;26013:3;26009:16;26002:27;25983:48;;25779:258;;;:::o;26042:380::-;26121:1;26117:12;;;;26164;;;26185:61;;26239:4;26231:6;26227:17;26217:27;;26185:61;26292:2;26284:6;26281:14;26261:18;26258:38;26255:161;;;26338:10;26333:3;26329:20;26326:1;26319:31;26373:4;26370:1;26363:15;26401:4;26398:1;26391:15;26255:161;;26042:380;;;:::o;26427:249::-;26537:2;26518:13;;-1:-1:-1;;26514:27:1;26502:40;;26572:18;26557:34;;26593:22;;;26554:62;26551:88;;;26619:18;;:::i;:::-;26655:2;26648:22;-1:-1:-1;;26427:249:1:o;26681:135::-;26720:3;-1:-1:-1;;26741:17:1;;26738:43;;;26761:18;;:::i;:::-;-1:-1:-1;26808:1:1;26797:13;;26681:135::o;26821:112::-;26853:1;26879;26869:35;;26884:18;;:::i;:::-;-1:-1:-1;26918:9:1;;26821:112::o;26938:127::-;26999:10;26994:3;26990:20;26987:1;26980:31;27030:4;27027:1;27020:15;27054:4;27051:1;27044:15;27070:127;27131:10;27126:3;27122:20;27119:1;27112:31;27162:4;27159:1;27152:15;27186:4;27183:1;27176:15;27334:127;27395:10;27390:3;27386:20;27383:1;27376:31;27426:4;27423:1;27416:15;27450:4;27447:1;27440:15;27466:127;27527:10;27522:3;27518:20;27515:1;27508:31;27558:4;27555:1;27548:15;27582:4;27579:1;27572:15;27598:179;27633:3;27675:1;27657:16;27654:23;27651:120;;;27721:1;27718;27715;27700:23;-1:-1:-1;27758:1:1;27752:8;27747:3;27743:18;27651:120;27598:179;:::o;27782:671::-;27821:3;27863:4;27845:16;27842:26;27839:39;;;27782:671;:::o;27839:39::-;27905:2;27899:9;-1:-1:-1;;27970:16:1;27966:25;;27963:1;27899:9;27942:50;28021:4;28015:11;28045:16;28080:18;28151:2;28144:4;28136:6;28132:17;28129:25;28124:2;28116:6;28113:14;28110:45;28107:58;;;28158:5;;;;;27782:671;:::o;28107:58::-;28195:6;28189:4;28185:17;28174:28;;28231:3;28225:10;28258:2;28250:6;28247:14;28244:27;;;28264:5;;;;;;27782:671;:::o;28244:27::-;28348:2;28329:16;28323:4;28319:27;28315:36;28308:4;28299:6;28294:3;28290:16;28286:27;28283:69;28280:82;;;28355:5;;;;;;27782:671;:::o;28280:82::-;28371:57;28422:4;28413:6;28405;28401:19;28397:30;28391:4;28371:57;:::i;:::-;-1:-1:-1;28444:3:1;;27782:671;-1:-1:-1;;;;;27782:671:1:o;28458:131::-;-1:-1:-1;;;;;;28532:32:1;;28522:43;;28512:71;;28579:1;28576;28569:12

Swarm Source

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