ETH Price: $3,073.82 (-1.60%)
Gas: 2 Gwei

Token

The Crop Collective ($TCC)
 

Overview

Max Total Supply

368 $TCC

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 $TCC
0xf0f2dd8f93edca01b283b518795b810e15421505
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:
CropCollective

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// Sources flattened with hardhat v2.3.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

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


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


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}('');
        require(success, 'Address: unable to send value, recipient may have reverted');
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), 'ERC721: owner query for nonexistent token');
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), 'ERC721: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved');
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), 'ERC721: operator query for nonexistent token');
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, '');
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer');
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), 'ERC721: mint to the zero address');
        require(!_exists(tokenId), 'ERC721: token already minted');

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own');
        require(to != address(0), 'ERC721: transfer to the zero address');

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds');
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), 'ERC721URIStorage: URI set of nonexistent token');
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), 'Pausable: paused');
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), 'Pausable: not paused');
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721Burnable: caller is not owner nor approved');
        _burn(tokenId);
    }
}

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, 'Counter: decrement overflow');
        unchecked {
            counter._value = value - 1;
        }
    }
}

contract CropCollective is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {    
    uint256 public MaxSupply = 8888;
    uint256 public publicSaleLimit = 8888;
    uint256 public publicSaleMinted = 0;    
    uint256 public price = 0.068 ether; 
    bool public saleOpen = false;    
    bool public airdropOpen = false;    
    bool public whiteListOpen = false;    
    uint public teamFeePercent = 50;
    uint public charityFeePercent = 50;
    uint public totalFeeUnitPercent = 100;

    uint public royalityMinterFeePercent = 1;
    uint public royalityTeamFeePercent = 5;    

    address public teamWallet = 0x81c695F14672219a88d11454D0BF2b645302FD4c;
    address public chartiyWallet = 0x835F1AFC49805e53b8eC38E6Ffe9323De1E1af01;
    address public royalityTeamWallet = 0xB66B27602475B0DeC73F1Cb3d7da2788C60c4361;

    string public baseURI;
    uint256 public publicSaleLimitPerAddress = 100;
    mapping(address => uint256) public MintAmountPerPublicAddress;    
    mapping(address => uint256) public airdroplist;
    mapping(address => uint256) public airdropMinted;
    mapping(address => uint256) public whitelist;
    mapping(address => uint256) public whitelistMinted;
    uint256 public airdropMintTotalLimt = 888;
    uint256 public whitelistMintTotalLimt = 8888;
    uint256 public airdropTotalMinted = 0;
    uint256 public whitelistTotalMinted = 0;


    receive() external payable {}

    constructor() ERC721('The Crop Collective', '$TCC') {}

    function setPublicSaleLimitPerAddress(uint256 _amount) external onlyOwner {
        publicSaleLimitPerAddress = _amount;
    }

    function setAirdropMintTotalLimt(uint256 _amount) external onlyOwner {
        airdropMintTotalLimt = _amount;
    }

    function setWhiteListMintTotalLimt(uint256 _amount) external onlyOwner {
        whitelistMintTotalLimt = _amount;
    }

    function setMaxSupply(uint256 _amount) external onlyOwner {
        MaxSupply = _amount;
    }

    function readAirdrop(address who) external view returns(uint256) {
        return airdroplist[who];
    }

    function setAirdropAddress(address[] memory who, uint256 amount) external onlyOwner {
        for (uint256 i = 0; i < who.length; i++) airdroplist[who[i]] = amount;
    }

    function setWhiteListAddress(address[] memory who, uint256 amount) external onlyOwner {
        for (uint256 i = 0; i < who.length; i++) whitelist[who[i]] = amount;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(teamWallet).transfer((balance * teamFeePercent) / totalFeeUnitPercent);
        payable(chartiyWallet).transfer((balance * charityFeePercent) / totalFeeUnitPercent);
    }

    function setFee(uint256 _teamFeePercent, uint256 _charityFeePercent, uint256 _royalityMinterFeePercent, uint256 _royalityTeamFeePercent, uint256 _totalFeeUnitPercent) external onlyOwner{
        charityFeePercent = _charityFeePercent;
        teamFeePercent = _teamFeePercent;
        royalityMinterFeePercent = _royalityMinterFeePercent;
        royalityTeamFeePercent = _royalityTeamFeePercent;
        totalFeeUnitPercent = _totalFeeUnitPercent;
    }

    function setWallets(address _teamWallet, address _charityWallet, address _royalityTeamWallet) external onlyOwner{
        teamWallet = _teamWallet;
        chartiyWallet = _charityWallet;
        royalityTeamWallet = _royalityTeamWallet;
    }

    function readAirdropOpen() external view returns (bool) {
        return airdropOpen;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function toggleAirdropOpen() public onlyOwner {
        airdropOpen = !airdropOpen;
    }

    function toggleWhiteListOpen() public onlyOwner {
        whiteListOpen = !whiteListOpen;
    }

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

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setPublicSaleLimit(uint256 newAmount) external onlyOwner {
        publicSaleLimit = newAmount;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function internalMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId);        
    }

    function randomPickId() internal view returns (uint256) {        
        require(totalSupply() < MaxSupply, "Max Supply Limited!");
        uint256 randomId = 0;
        uint loopCount = 0;
        do {
            uint256 temp = (uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, loopCount))) % MaxSupply) + 1;
            loopCount ++;
            if (_exists(temp) != true) {
                randomId = temp;
                break;
            } 
        } while (randomId == 0);
        return randomId;
    }

    function safeMint(address to, uint256 tokenId, string memory _tokenURI) public onlyOwner {
        internalMint(to, tokenId);
        if (bytes(_tokenURI).length > 0) {
            _setTokenURI(tokenId, _tokenURI);
        }
    }

    function mintForWhiteList(uint256 amount) public payable whenNotPaused {                
        require(whiteListOpen == true, "WhiteList is not opened");  
        require(whitelistTotalMinted + amount <= whitelistMintTotalLimt, "WhiteList Mint Amount is limited");      
        uint256 who = whitelist[msg.sender];
        require(who > 0, 'This address is not airdrop for the presale');
        require(whitelistMinted[msg.sender] + amount <= who, "your address whitelist amount limited");
        require(msg.value >= price * amount, 'not enough was paid');                
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
        }
        whitelistMinted[msg.sender] = whitelistMinted[msg.sender] + amount;        
        whitelistTotalMinted = whitelistTotalMinted + amount;
    }

    function airdrop(uint256 amount) public whenNotPaused {                
        require(airdropOpen == true, "Airdrop is not opened");
        require(airdropTotalMinted + amount <= airdropMintTotalLimt, "Airdrop Mint Amount is limited");
        uint256 who = airdroplist[msg.sender];
        require(who > 0, 'this address is not airdrop for the presale');                
        require(airdropMinted[msg.sender] + amount <= who, "Your address airdrop amount limited");        
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
        }
        airdropMinted[msg.sender] = airdropMinted[msg.sender] + amount;      
        airdropTotalMinted = airdropTotalMinted + amount;   
    }

    function mint(uint256 amount) public payable whenNotPaused {
        require(saleOpen == true, "Sale is not Opened");
        require(msg.value >= price * amount, 'not enough was paid');
        require(MintAmountPerPublicAddress[msg.sender] + amount <= publicSaleLimitPerAddress, 'only limited amount per address allowed');
        require(publicSaleMinted + amount <= publicSaleLimit, "Sale Supply Limited!");
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
        }
        MintAmountPerPublicAddress[msg.sender] = MintAmountPerPublicAddress[msg.sender] + amount;        
        publicSaleMinted = publicSaleMinted + amount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MintAmountPerPublicAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropMintTotalLimt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdropMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdroplist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charityFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chartiyWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleLimitPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"readAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"readAirdropOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalityMinterFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royalityTeamFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royalityTeamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setAirdropAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setAirdropMintTotalLimt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFeePercent","type":"uint256"},{"internalType":"uint256","name":"_charityFeePercent","type":"uint256"},{"internalType":"uint256","name":"_royalityMinterFeePercent","type":"uint256"},{"internalType":"uint256","name":"_royalityTeamFeePercent","type":"uint256"},{"internalType":"uint256","name":"_totalFeeUnitPercent","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setPublicSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPublicSaleLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_charityWallet","type":"address"},{"internalType":"address","name":"_royalityTeamWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setWhiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setWhiteListMintTotalLimt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAirdropOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeUnitPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintTotalLimt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526122b8600c819055600d8190556000600e81905566f195a3c4ba0000600f556010805462ffffff19169055603260118190556012556064601381905560016014556005601555601680546001600160a01b03199081167381c695f14672219a88d11454d0bf2b645302fd4c1790915560178054821673835f1afc49805e53b8ec38e6ffe9323de1e1af011790556018805490911673b66b27602475b0dec73f1cb3d7da2788c60c4361179055601a556103786020556021919091556022819055602355348015620000d457600080fd5b50604080518082018252601381527f5468652043726f7020436f6c6c656374697665000000000000000000000000006020808301918252835180850190945260048452632454434360e01b9084015281519192916200013691600091620001c5565b5080516200014c906001906020840190620001c5565b5050600b805460ff1916905550600062000165620001c1565b600b8054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002a8565b3390565b828054620001d3906200026b565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b6002810460018216806200028057607f821691505b60208210811415620002a257634e487b7160e01b600052602260045260246000fd5b50919050565b613c6880620002b86000396000f3fe6080604052600436106104095760003560e01c8063726bc84511610213578063a035b1fe11610123578063b900c44c116100ab578063c9ea16f81161007a578063c9ea16f814610aef578063cd279c7c14610b0f578063e985e9c514610b2f578063efa899e714610b4f578063f2fde38b14610b6457610410565b8063b900c44c14610a85578063bf9ac55714610a9a578063c07d40ef14610aba578063c87b56dd14610acf57610410565b8063a2e00d63116100f2578063a2e00d6314610a06578063a3122c9914610a26578063a666098d14610a3b578063b36c128414610a50578063b88d4fde14610a6557610410565b8063a035b1fe1461099e578063a0712d68146109b3578063a09c7af6146109c6578063a22cb465146109e657610410565b80638da5cb5b116101a657806395d89b411161017557806395d89b411461091457806397dc4a131461092957806398a8cffe1461094957806399288dbb146109695780639b19251a1461097e57610410565b80638da5cb5b146108aa57806391b7f5ed146108bf57806391bf2d78146108df57806392aa8bfb146108ff57610410565b8063813bfa6d116101e2578063813bfa6d1461084d5780638456cb5914610862578063896c7287146108775780638aeacefe1461089757610410565b8063726bc845146107e357806375cb1bd1146107f85780637d8966e414610818578063808c721c1461082d57610410565b806342966c681161031957806359927044116102a15780636c0360eb116102705780636c0360eb146107645780636e3de87c146107795780636f8b44b01461078e57806370a08231146107ae578063715018a6146107ce57610410565b806359927044146107055780635c975abb1461071a5780636352211e1461072f5780636494e9be1461074f57610410565b80634f6ccce7116102e85780634f6ccce71461067b578063513eb6431461069b57806351a5def3146106b057806355f804b3146106d057806359862f3b146106f057610410565b806342966c681461061c57806343ce42451461063c57806348c80d54146106515780634a3c9f601461066657610410565b806321a104221161039c57806339d82c591161036b57806339d82c591461059d5780633b540996146105bd5780633ccfd60b146105d25780633f4ba83a146105e757806342842e0e146105fc57610410565b806321a104221461052857806323b872dd146105485780632f745c5914610568578063346a4b6b1461058857610410565b8063095ea7b3116103d8578063095ea7b3146104c7578063180871d4146104e957806318160ddd146104fe5780631e241ce81461051357610410565b806301ffc9a714610415578063020daf361461044b57806306fdde0314610478578063081812fc1461049a57610410565b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004612fe3565b610b84565b6040516104429190613162565b60405180910390f35b34801561045757600080fd5b5061046b610466366004612d35565b610b97565b6040516104429190613aaf565b34801561048457600080fd5b5061048d610ba9565b604051610442919061316d565b3480156104a657600080fd5b506104ba6104b536600461304e565b610c3b565b6040516104429190613111565b3480156104d357600080fd5b506104e76104e2366004612eb1565b610c87565b005b3480156104f557600080fd5b5061046b610d1f565b34801561050a57600080fd5b5061046b610d25565b34801561051f57600080fd5b5061046b610d2b565b34801561053457600080fd5b5061046b610543366004612d35565b610d31565b34801561055457600080fd5b506104e7610563366004612dc3565b610d43565b34801561057457600080fd5b5061046b610583366004612eb1565b610d7b565b34801561059457600080fd5b5061046b610dcd565b3480156105a957600080fd5b506104e76105b836600461304e565b610dd3565b3480156105c957600080fd5b5061046b610e17565b3480156105de57600080fd5b506104e7610e1d565b3480156105f357600080fd5b506104e7610f0c565b34801561060857600080fd5b506104e7610617366004612dc3565b610f55565b34801561062857600080fd5b506104e761063736600461304e565b610f70565b34801561064857600080fd5b5061046b610fa3565b34801561065d57600080fd5b5061046b610fa9565b34801561067257600080fd5b5061046b610faf565b34801561068757600080fd5b5061046b61069636600461304e565b610fb5565b3480156106a757600080fd5b50610435611010565b3480156106bc57600080fd5b506104e76106cb366004612f2f565b61101e565b3480156106dc57600080fd5b506104e76106eb36600461301b565b6110cd565b3480156106fc57600080fd5b5061043561111f565b34801561071157600080fd5b506104ba61112d565b34801561072657600080fd5b5061043561113c565b34801561073b57600080fd5b506104ba61074a36600461304e565b611145565b34801561075b57600080fd5b506104e761117a565b34801561077057600080fd5b5061048d6111d8565b34801561078557600080fd5b5061046b611266565b34801561079a57600080fd5b506104e76107a936600461304e565b61126c565b3480156107ba57600080fd5b5061046b6107c9366004612d35565b6112b0565b3480156107da57600080fd5b506104e76112f4565b3480156107ef57600080fd5b506104e7611383565b34801561080457600080fd5b506104e7610813366004612d81565b6113df565b34801561082457600080fd5b506104e761145d565b34801561083957600080fd5b5061046b610848366004612d35565b6114b0565b34801561085957600080fd5b506104356114c2565b34801561086e57600080fd5b506104e76114d1565b34801561088357600080fd5b506104e761089236600461304e565b611518565b6104e76108a536600461304e565b61155c565b3480156108b657600080fd5b506104ba6116e7565b3480156108cb57600080fd5b506104e76108da36600461304e565b6116fb565b3480156108eb57600080fd5b506104e76108fa36600461304e565b61173f565b34801561090b57600080fd5b506104ba611783565b34801561092057600080fd5b5061048d611792565b34801561093557600080fd5b506104e761094436600461304e565b6117a1565b34801561095557600080fd5b5061046b610964366004612d35565b6118ff565b34801561097557600080fd5b50610435611911565b34801561098a57600080fd5b5061046b610999366004612d35565b61191a565b3480156109aa57600080fd5b5061046b61192c565b6104e76109c136600461304e565b611932565b3480156109d257600080fd5b506104e76109e136600461304e565b611a8a565b3480156109f257600080fd5b506104e7610a01366004612e77565b611ace565b348015610a1257600080fd5b506104e7610a21366004613066565b611b9c565b348015610a3257600080fd5b5061046b611bf5565b348015610a4757600080fd5b5061046b611bfb565b348015610a5c57600080fd5b5061046b611c01565b348015610a7157600080fd5b506104e7610a80366004612dfe565b611c07565b348015610a9157600080fd5b5061046b611c46565b348015610aa657600080fd5b5061046b610ab5366004612d35565b611c4c565b348015610ac657600080fd5b506104ba611c67565b348015610adb57600080fd5b5061048d610aea36600461304e565b611c76565b348015610afb57600080fd5b506104e7610b0a366004612f2f565b611c81565b348015610b1b57600080fd5b506104e7610b2a366004612eda565b611d30565b348015610b3b57600080fd5b50610435610b4a366004612d4f565b611d8a565b348015610b5b57600080fd5b5061046b611db8565b348015610b7057600080fd5b506104e7610b7f366004612d35565b611dbe565b6000610b8f82611e8a565b90505b919050565b601b6020526000908152604090205481565b606060008054610bb890613b70565b80601f0160208091040260200160405190810160405280929190818152602001828054610be490613b70565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c4682611eaf565b610c6b5760405162461bcd60e51b8152600401610c6290613742565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611145565b9050806001600160a01b0316836001600160a01b03161415610cc65760405162461bcd60e51b8152600401610c62906138f1565b806001600160a01b0316610cd8611ecc565b6001600160a01b03161480610cf45750610cf481610b4a611ecc565b610d105760405162461bcd60e51b8152600401610c629061350d565b610d1a8383611ed0565b505050565b60115481565b60085490565b60135481565b601d6020526000908152604090205481565b610d54610d4e611ecc565b82611f3e565b610d705760405162461bcd60e51b8152600401610c6290613996565b610d1a838383611fc3565b6000610d86836112b0565b8210610da45760405162461bcd60e51b8152600401610c6290613220565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601a5481565b610ddb611ecc565b6001600160a01b0316610dec6116e7565b6001600160a01b031614610e125760405162461bcd60e51b8152600401610c62906137d9565b600d55565b60125481565b610e25611ecc565b6001600160a01b0316610e366116e7565b6001600160a01b031614610e5c5760405162461bcd60e51b8152600401610c62906137d9565b60165460135460115447926001600160a01b0316916108fc91610e7f9085613b0e565b610e899190613afa565b6040518115909202916000818181858888f19350505050158015610eb1573d6000803e3d6000fd5b506017546013546012546001600160a01b03909216916108fc9190610ed69085613b0e565b610ee09190613afa565b6040518115909202916000818181858888f19350505050158015610f08573d6000803e3d6000fd5b5050565b610f14611ecc565b6001600160a01b0316610f256116e7565b6001600160a01b031614610f4b5760405162461bcd60e51b8152600401610c62906137d9565b610f536120f0565b565b610d1a83838360405180602001604052806000815250611c07565b610f7b610d4e611ecc565b610f975760405162461bcd60e51b8152600401610c6290613a5f565b610fa08161215e565b50565b60235481565b60145481565b60215481565b6000610fbf610d25565b8210610fdd5760405162461bcd60e51b8152600401610c62906139e7565b60088281548110610ffe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1690565b611026611ecc565b6001600160a01b03166110376116e7565b6001600160a01b03161461105d5760405162461bcd60e51b8152600401610c62906137d9565b60005b8251811015610d1a5781601c600085848151811061108e57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806110c590613bab565b915050611060565b6110d5611ecc565b6001600160a01b03166110e66116e7565b6001600160a01b03161461110c5760405162461bcd60e51b8152600401610c62906137d9565b8051610f08906019906020840190612bd6565b601054610100900460ff1681565b6016546001600160a01b031681565b600b5460ff1690565b6000818152600260205260408120546001600160a01b031680610b8f5760405162461bcd60e51b8152600401610c62906135b4565b611182611ecc565b6001600160a01b03166111936116e7565b6001600160a01b0316146111b95760405162461bcd60e51b8152600401610c62906137d9565b6010805462ff0000198116620100009182900460ff1615909102179055565b601980546111e590613b70565b80601f016020809104026020016040519081016040528092919081815260200182805461121190613b70565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b505050505081565b600d5481565b611274611ecc565b6001600160a01b03166112856116e7565b6001600160a01b0316146112ab5760405162461bcd60e51b8152600401610c62906137d9565b600c55565b60006001600160a01b0382166112d85760405162461bcd60e51b8152600401610c629061356a565b506001600160a01b031660009081526003602052604090205490565b6112fc611ecc565b6001600160a01b031661130d6116e7565b6001600160a01b0316146113335760405162461bcd60e51b8152600401610c62906137d9565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b61138b611ecc565b6001600160a01b031661139c6116e7565b6001600160a01b0316146113c25760405162461bcd60e51b8152600401610c62906137d9565b6010805461ff001981166101009182900460ff1615909102179055565b6113e7611ecc565b6001600160a01b03166113f86116e7565b6001600160a01b03161461141e5760405162461bcd60e51b8152600401610c62906137d9565b601680546001600160a01b039485166001600160a01b031991821617909155601780549385169382169390931790925560188054919093169116179055565b611465611ecc565b6001600160a01b03166114766116e7565b6001600160a01b03161461149c5760405162461bcd60e51b8152600401610c62906137d9565b6010805460ff19811660ff90911615179055565b601c6020526000908152604090205481565b60105462010000900460ff1681565b6114d9611ecc565b6001600160a01b03166114ea6116e7565b6001600160a01b0316146115105760405162461bcd60e51b8152600401610c62906137d9565b610f53612167565b611520611ecc565b6001600160a01b03166115316116e7565b6001600160a01b0316146115575760405162461bcd60e51b8152600401610c62906137d9565b602055565b61156461113c565b156115815760405162461bcd60e51b8152600401610c62906134e3565b60105462010000900460ff1615156001146115ae5760405162461bcd60e51b8152600401610c62906133e5565b602154816023546115bf9190613ae2565b11156115dd5760405162461bcd60e51b8152600401610c62906133b0565b336000908152601e60205260409020548061160a5760405162461bcd60e51b8152600401610c62906138a6565b336000908152601f60205260409020548190611627908490613ae2565b11156116455760405162461bcd60e51b8152600401610c6290613180565b81600f546116539190613b0e565b3410156116725760405162461bcd60e51b8152600401610c6290613932565b60005b828110156116a65760006116876121c2565b9050611693338261226e565b508061169e81613bab565b915050611675565b50336000908152601f60205260409020546116c2908390613ae2565b336000908152601f60205260409020556023546116e0908390613ae2565b6023555050565b600b5461010090046001600160a01b031690565b611703611ecc565b6001600160a01b03166117146116e7565b6001600160a01b03161461173a5760405162461bcd60e51b8152600401610c62906137d9565b600f55565b611747611ecc565b6001600160a01b03166117586116e7565b6001600160a01b03161461177e5760405162461bcd60e51b8152600401610c62906137d9565b602155565b6017546001600160a01b031681565b606060018054610bb890613b70565b6117a961113c565b156117c65760405162461bcd60e51b8152600401610c62906134e3565b60105460ff6101009091041615156001146117f35760405162461bcd60e51b8152600401610c629061333a565b602054816022546118049190613ae2565b11156118225760405162461bcd60e51b8152600401610c629061395f565b336000908152601c60205260409020548061184f5760405162461bcd60e51b8152600401610c629061378e565b336000908152601d6020526040902054819061186c908490613ae2565b111561188a5760405162461bcd60e51b8152600401610c629061364b565b60005b828110156118be57600061189f6121c2565b90506118ab338261226e565b50806118b681613bab565b91505061188d565b50336000908152601d60205260409020546118da908390613ae2565b336000908152601d60205260409020556022546118f8908390613ae2565b6022555050565b601f6020526000908152604090205481565b60105460ff1681565b601e6020526000908152604090205481565b600f5481565b61193a61113c565b156119575760405162461bcd60e51b8152600401610c62906134e3565b60105460ff16151560011461197e5760405162461bcd60e51b8152600401610c6290613a33565b80600f5461198c9190613b0e565b3410156119ab5760405162461bcd60e51b8152600401610c6290613932565b601a54336000908152601b60205260409020546119c9908390613ae2565b11156119e75760405162461bcd60e51b8152600401610c6290613369565b600d5481600e546119f89190613ae2565b1115611a165760405162461bcd60e51b8152600401610c6290613714565b60005b81811015611a4a576000611a2b6121c2565b9050611a37338261226e565b5080611a4281613bab565b915050611a19565b50336000908152601b6020526040902054611a66908290613ae2565b336000908152601b6020526040902055600e54611a84908290613ae2565b600e5550565b611a92611ecc565b6001600160a01b0316611aa36116e7565b6001600160a01b031614611ac95760405162461bcd60e51b8152600401610c62906137d9565b601a55565b611ad6611ecc565b6001600160a01b0316826001600160a01b03161415611b075760405162461bcd60e51b8152600401610c6290613460565b8060056000611b14611ecc565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b58611ecc565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b909190613162565b60405180910390a35050565b611ba4611ecc565b6001600160a01b0316611bb56116e7565b6001600160a01b031614611bdb5760405162461bcd60e51b8152600401610c62906137d9565b601293909355601193909355601455601591909155601355565b60205481565b600e5481565b600c5481565b611c18611c12611ecc565b83611f3e565b611c345760405162461bcd60e51b8152600401610c6290613996565b611c4084848484612278565b50505050565b60155481565b6001600160a01b03166000908152601c602052604090205490565b6018546001600160a01b031681565b6060610b8f826122ab565b611c89611ecc565b6001600160a01b0316611c9a6116e7565b6001600160a01b031614611cc05760405162461bcd60e51b8152600401610c62906137d9565b60005b8251811015610d1a5781601e6000858481518110611cf157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611d2890613bab565b915050611cc3565b611d38611ecc565b6001600160a01b0316611d496116e7565b6001600160a01b031614611d6f5760405162461bcd60e51b8152600401610c62906137d9565b611d79838361226e565b805115610d1a57610d1a82826123a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60225481565b611dc6611ecc565b6001600160a01b0316611dd76116e7565b6001600160a01b031614611dfd5760405162461bcd60e51b8152600401610c62906137d9565b6001600160a01b038116611e235760405162461bcd60e51b8152600401610c62906132bd565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610b8f5750610b8f826123e5565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f0582611145565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4982611eaf565b611f655760405162461bcd60e51b8152600401610c6290613497565b6000611f7083611145565b9050806001600160a01b0316846001600160a01b03161480611fab5750836001600160a01b0316611fa084610c3b565b6001600160a01b0316145b80611fbb5750611fbb8185611d8a565b949350505050565b826001600160a01b0316611fd682611145565b6001600160a01b031614611ffc5760405162461bcd60e51b8152600401610c629061380e565b6001600160a01b0382166120225760405162461bcd60e51b8152600401610c629061341c565b61202d838383612425565b612038600082611ed0565b6001600160a01b0383166000908152600360205260408120805460019290612061908490613b2d565b90915550506001600160a01b038216600090815260036020526040812080546001929061208f908490613ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6120f861113c565b6121145760405162461bcd60e51b8152600401610c62906131c5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612147611ecc565b6040516121549190613111565b60405180910390a1565b610fa081612455565b61216f61113c565b1561218c5760405162461bcd60e51b8152600401610c62906134e3565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612147611ecc565b6000600c546121cf610d25565b106121ec5760405162461bcd60e51b8152600401610c62906131f3565b6000805b6000600c5444428460405160200161220a939291906130fb565b6040516020818303038152906040528051906020012060001c61222d9190613bc6565b612238906001613ae2565b90508161224481613bab565b92505061225081611eaf565b1515600114612260579150612268565b5081156121f0575b50905090565b610f088282612495565b612283848484611fc3565b61228f848484846124af565b611c405760405162461bcd60e51b8152600401610c629061326b565b60606122b682611eaf565b6122d25760405162461bcd60e51b8152600401610c62906136c3565b6000828152600a6020526040812080546122eb90613b70565b80601f016020809104026020016040519081016040528092919081815260200182805461231790613b70565b80156123645780601f1061233957610100808354040283529160200191612364565b820191906000526020600020905b81548152906001019060200180831161234757829003601f168201915b5050505050905060006123756125ca565b905080516000141561238957509050610b92565b81511561239857509050610b92565b611fbb846125d9565b6123aa82611eaf565b6123c65760405162461bcd60e51b8152600401610c62906135fd565b6000828152600a602090815260409091208251610d1a92840190612bd6565b60006001600160e01b031982166380ac58cd60e01b148061241657506001600160e01b03198216635b5e139f60e01b145b80610b8f5750610b8f8261265c565b61242d61113c565b1561244a5760405162461bcd60e51b8152600401610c62906134e3565b610d1a838383612675565b61245e816126fe565b6000818152600a60205260409020805461247790613b70565b159050610fa0576000818152600a60205260408120610fa091612c5a565b610f088282604051806020016040528060008152506127a5565b60006124c3846001600160a01b03166127d8565b156125bf57836001600160a01b031663150b7a026124df611ecc565b8786866040518563ffffffff1660e01b81526004016125019493929190613125565b602060405180830381600087803b15801561251b57600080fd5b505af192505050801561254b575060408051601f3d908101601f1916820190925261254891810190612fff565b60015b6125a5573d808015612579576040519150601f19603f3d011682016040523d82523d6000602084013e61257e565b606091505b50805161259d5760405162461bcd60e51b8152600401610c629061326b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbb565b506001949350505050565b606060198054610bb890613b70565b60606125e482611eaf565b6126005760405162461bcd60e51b8152600401610c6290613857565b600061260a6125ca565b9050600081511161262a5760405180602001604052806000815250612655565b80612634846127de565b6040516020016126459291906130cc565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b612680838383610d1a565b6001600160a01b03831661269c57612697816128f9565b6126bf565b816001600160a01b0316836001600160a01b0316146126bf576126bf838261293d565b6001600160a01b0382166126db576126d6816129da565b610d1a565b826001600160a01b0316826001600160a01b031614610d1a57610d1a8282612ab3565b600061270982611145565b905061271781600084612425565b612722600083611ed0565b6001600160a01b038116600090815260036020526040812080546001929061274b908490613b2d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6127af8383612af7565b6127bc60008484846124af565b610d1a5760405162461bcd60e51b8152600401610c629061326b565b3b151590565b60608161280357506040805180820190915260018152600360fc1b6020820152610b92565b8160005b811561282d578061281781613bab565b91506128269050600a83613afa565b9150612807565b60008167ffffffffffffffff81111561285657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612880576020820181803683370190505b5090505b8415611fbb57612895600183613b2d565b91506128a2600a86613bc6565b6128ad906030613ae2565b60f81b8183815181106128d057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128f2600a86613afa565b9450612884565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161294a846112b0565b6129549190613b2d565b6000838152600760205260409020549091508082146129a7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129ec90600190613b2d565b60008381526009602052604081205460088054939450909284908110612a2257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612a5157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a9757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612abe836112b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b1d5760405162461bcd60e51b8152600401610c629061368e565b612b2681611eaf565b15612b435760405162461bcd60e51b8152600401610c6290613303565b612b4f60008383612425565b6001600160a01b0382166000908152600360205260408120805460019290612b78908490613ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612be290613b70565b90600052602060002090601f016020900481019282612c045760008555612c4a565b82601f10612c1d57805160ff1916838001178555612c4a565b82800160010185558215612c4a579182015b82811115612c4a578251825591602001919060010190612c2f565b50612c56929150612c92565b5090565b508054612c6690613b70565b6000825580601f10612c785750610fa0565b601f016020900490600052602060002090810190610fa091905b5b80821115612c565760008155600101612c93565b600067ffffffffffffffff831115612cc157612cc1613c06565b612cd4601f8401601f1916602001613ab8565b9050828152838383011115612ce857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610b9257600080fd5b600082601f830112612d26578081fd5b61265583833560208501612ca7565b600060208284031215612d46578081fd5b61265582612cff565b60008060408385031215612d61578081fd5b612d6a83612cff565b9150612d7860208401612cff565b90509250929050565b600080600060608486031215612d95578081fd5b612d9e84612cff565b9250612dac60208501612cff565b9150612dba60408501612cff565b90509250925092565b600080600060608486031215612dd7578283fd5b612de084612cff565b9250612dee60208501612cff565b9150604084013590509250925092565b60008060008060808587031215612e13578081fd5b612e1c85612cff565b9350612e2a60208601612cff565b925060408501359150606085013567ffffffffffffffff811115612e4c578182fd5b8501601f81018713612e5c578182fd5b612e6b87823560208401612ca7565b91505092959194509250565b60008060408385031215612e89578182fd5b612e9283612cff565b915060208301358015158114612ea6578182fd5b809150509250929050565b60008060408385031215612ec3578182fd5b612ecc83612cff565b946020939093013593505050565b600080600060608486031215612eee578283fd5b612ef784612cff565b925060208401359150604084013567ffffffffffffffff811115612f19578182fd5b612f2586828701612d16565b9150509250925092565b60008060408385031215612f41578182fd5b823567ffffffffffffffff80821115612f58578384fd5b818501915085601f830112612f6b578384fd5b8135602082821115612f7f57612f7f613c06565b8082029250612f8f818401613ab8565b8281528181019085830185870184018b1015612fa9578889fd5b8896505b84871015612fd257612fbe81612cff565b835260019690960195918301918301612fad565b509997909101359750505050505050565b600060208284031215612ff4578081fd5b813561265581613c1c565b600060208284031215613010578081fd5b815161265581613c1c565b60006020828403121561302c578081fd5b813567ffffffffffffffff811115613042578182fd5b611fbb84828501612d16565b60006020828403121561305f578081fd5b5035919050565b600080600080600060a0868803121561307d578283fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526130b8816020860160208601613b44565b601f01601f19169290920160200192915050565b600083516130de818460208801613b44565b8351908301906130f2818360208801613b44565b01949350505050565b9283526020830191909152604082015260600190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613158908301846130a0565b9695505050505050565b901515815260200190565b60006020825261265560208301846130a0565b60208082526025908201527f796f757220616464726573732077686974656c69737420616d6f756e74206c696040820152641b5a5d195960da1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601390820152724d617820537570706c79204c696d697465642160681b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260159082015274105a5c991c9bdc081a5cc81b9bdd081bdc195b9959605a1b604082015260600190565b60208082526027908201527f6f6e6c79206c696d6974656420616d6f756e7420706572206164647265737320604082015266185b1b1bddd95960ca1b606082015260800190565b6020808252818101527f57686974654c697374204d696e7420416d6f756e74206973206c696d69746564604082015260600190565b60208082526017908201527f57686974654c697374206973206e6f74206f70656e6564000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526023908201527f596f757220616464726573732061697264726f7020616d6f756e74206c696d696040820152621d195960ea1b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60208082526014908201527353616c6520537570706c79204c696d697465642160601b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f746869732061646472657373206973206e6f742061697264726f7020666f722060408201526a7468652070726573616c6560a81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602b908201527f546869732061646472657373206973206e6f742061697264726f7020666f722060408201526a7468652070726573616c6560a81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601390820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b604082015260600190565b6020808252601e908201527f41697264726f70204d696e7420416d6f756e74206973206c696d697465640000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527114d85b19481a5cc81b9bdd0813dc195b995960721b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715613ada57613ada613c06565b604052919050565b60008219821115613af557613af5613bda565b500190565b600082613b0957613b09613bf0565b500490565b6000816000190483118215151615613b2857613b28613bda565b500290565b600082821015613b3f57613b3f613bda565b500390565b60005b83811015613b5f578181015183820152602001613b47565b83811115611c405750506000910152565b600281046001821680613b8457607f821691505b60208210811415613ba557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613bbf57613bbf613bda565b5060010190565b600082613bd557613bd5613bf0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fa057600080fdfea2646970667358221220cb3740f39bc84cca89e10f73346af4e90ff93cc8d5164d6862809ae8be18bbed64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106104095760003560e01c8063726bc84511610213578063a035b1fe11610123578063b900c44c116100ab578063c9ea16f81161007a578063c9ea16f814610aef578063cd279c7c14610b0f578063e985e9c514610b2f578063efa899e714610b4f578063f2fde38b14610b6457610410565b8063b900c44c14610a85578063bf9ac55714610a9a578063c07d40ef14610aba578063c87b56dd14610acf57610410565b8063a2e00d63116100f2578063a2e00d6314610a06578063a3122c9914610a26578063a666098d14610a3b578063b36c128414610a50578063b88d4fde14610a6557610410565b8063a035b1fe1461099e578063a0712d68146109b3578063a09c7af6146109c6578063a22cb465146109e657610410565b80638da5cb5b116101a657806395d89b411161017557806395d89b411461091457806397dc4a131461092957806398a8cffe1461094957806399288dbb146109695780639b19251a1461097e57610410565b80638da5cb5b146108aa57806391b7f5ed146108bf57806391bf2d78146108df57806392aa8bfb146108ff57610410565b8063813bfa6d116101e2578063813bfa6d1461084d5780638456cb5914610862578063896c7287146108775780638aeacefe1461089757610410565b8063726bc845146107e357806375cb1bd1146107f85780637d8966e414610818578063808c721c1461082d57610410565b806342966c681161031957806359927044116102a15780636c0360eb116102705780636c0360eb146107645780636e3de87c146107795780636f8b44b01461078e57806370a08231146107ae578063715018a6146107ce57610410565b806359927044146107055780635c975abb1461071a5780636352211e1461072f5780636494e9be1461074f57610410565b80634f6ccce7116102e85780634f6ccce71461067b578063513eb6431461069b57806351a5def3146106b057806355f804b3146106d057806359862f3b146106f057610410565b806342966c681461061c57806343ce42451461063c57806348c80d54146106515780634a3c9f601461066657610410565b806321a104221161039c57806339d82c591161036b57806339d82c591461059d5780633b540996146105bd5780633ccfd60b146105d25780633f4ba83a146105e757806342842e0e146105fc57610410565b806321a104221461052857806323b872dd146105485780632f745c5914610568578063346a4b6b1461058857610410565b8063095ea7b3116103d8578063095ea7b3146104c7578063180871d4146104e957806318160ddd146104fe5780631e241ce81461051357610410565b806301ffc9a714610415578063020daf361461044b57806306fdde0314610478578063081812fc1461049a57610410565b3661041057005b600080fd5b34801561042157600080fd5b50610435610430366004612fe3565b610b84565b6040516104429190613162565b60405180910390f35b34801561045757600080fd5b5061046b610466366004612d35565b610b97565b6040516104429190613aaf565b34801561048457600080fd5b5061048d610ba9565b604051610442919061316d565b3480156104a657600080fd5b506104ba6104b536600461304e565b610c3b565b6040516104429190613111565b3480156104d357600080fd5b506104e76104e2366004612eb1565b610c87565b005b3480156104f557600080fd5b5061046b610d1f565b34801561050a57600080fd5b5061046b610d25565b34801561051f57600080fd5b5061046b610d2b565b34801561053457600080fd5b5061046b610543366004612d35565b610d31565b34801561055457600080fd5b506104e7610563366004612dc3565b610d43565b34801561057457600080fd5b5061046b610583366004612eb1565b610d7b565b34801561059457600080fd5b5061046b610dcd565b3480156105a957600080fd5b506104e76105b836600461304e565b610dd3565b3480156105c957600080fd5b5061046b610e17565b3480156105de57600080fd5b506104e7610e1d565b3480156105f357600080fd5b506104e7610f0c565b34801561060857600080fd5b506104e7610617366004612dc3565b610f55565b34801561062857600080fd5b506104e761063736600461304e565b610f70565b34801561064857600080fd5b5061046b610fa3565b34801561065d57600080fd5b5061046b610fa9565b34801561067257600080fd5b5061046b610faf565b34801561068757600080fd5b5061046b61069636600461304e565b610fb5565b3480156106a757600080fd5b50610435611010565b3480156106bc57600080fd5b506104e76106cb366004612f2f565b61101e565b3480156106dc57600080fd5b506104e76106eb36600461301b565b6110cd565b3480156106fc57600080fd5b5061043561111f565b34801561071157600080fd5b506104ba61112d565b34801561072657600080fd5b5061043561113c565b34801561073b57600080fd5b506104ba61074a36600461304e565b611145565b34801561075b57600080fd5b506104e761117a565b34801561077057600080fd5b5061048d6111d8565b34801561078557600080fd5b5061046b611266565b34801561079a57600080fd5b506104e76107a936600461304e565b61126c565b3480156107ba57600080fd5b5061046b6107c9366004612d35565b6112b0565b3480156107da57600080fd5b506104e76112f4565b3480156107ef57600080fd5b506104e7611383565b34801561080457600080fd5b506104e7610813366004612d81565b6113df565b34801561082457600080fd5b506104e761145d565b34801561083957600080fd5b5061046b610848366004612d35565b6114b0565b34801561085957600080fd5b506104356114c2565b34801561086e57600080fd5b506104e76114d1565b34801561088357600080fd5b506104e761089236600461304e565b611518565b6104e76108a536600461304e565b61155c565b3480156108b657600080fd5b506104ba6116e7565b3480156108cb57600080fd5b506104e76108da36600461304e565b6116fb565b3480156108eb57600080fd5b506104e76108fa36600461304e565b61173f565b34801561090b57600080fd5b506104ba611783565b34801561092057600080fd5b5061048d611792565b34801561093557600080fd5b506104e761094436600461304e565b6117a1565b34801561095557600080fd5b5061046b610964366004612d35565b6118ff565b34801561097557600080fd5b50610435611911565b34801561098a57600080fd5b5061046b610999366004612d35565b61191a565b3480156109aa57600080fd5b5061046b61192c565b6104e76109c136600461304e565b611932565b3480156109d257600080fd5b506104e76109e136600461304e565b611a8a565b3480156109f257600080fd5b506104e7610a01366004612e77565b611ace565b348015610a1257600080fd5b506104e7610a21366004613066565b611b9c565b348015610a3257600080fd5b5061046b611bf5565b348015610a4757600080fd5b5061046b611bfb565b348015610a5c57600080fd5b5061046b611c01565b348015610a7157600080fd5b506104e7610a80366004612dfe565b611c07565b348015610a9157600080fd5b5061046b611c46565b348015610aa657600080fd5b5061046b610ab5366004612d35565b611c4c565b348015610ac657600080fd5b506104ba611c67565b348015610adb57600080fd5b5061048d610aea36600461304e565b611c76565b348015610afb57600080fd5b506104e7610b0a366004612f2f565b611c81565b348015610b1b57600080fd5b506104e7610b2a366004612eda565b611d30565b348015610b3b57600080fd5b50610435610b4a366004612d4f565b611d8a565b348015610b5b57600080fd5b5061046b611db8565b348015610b7057600080fd5b506104e7610b7f366004612d35565b611dbe565b6000610b8f82611e8a565b90505b919050565b601b6020526000908152604090205481565b606060008054610bb890613b70565b80601f0160208091040260200160405190810160405280929190818152602001828054610be490613b70565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b6000610c4682611eaf565b610c6b5760405162461bcd60e51b8152600401610c6290613742565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611145565b9050806001600160a01b0316836001600160a01b03161415610cc65760405162461bcd60e51b8152600401610c62906138f1565b806001600160a01b0316610cd8611ecc565b6001600160a01b03161480610cf45750610cf481610b4a611ecc565b610d105760405162461bcd60e51b8152600401610c629061350d565b610d1a8383611ed0565b505050565b60115481565b60085490565b60135481565b601d6020526000908152604090205481565b610d54610d4e611ecc565b82611f3e565b610d705760405162461bcd60e51b8152600401610c6290613996565b610d1a838383611fc3565b6000610d86836112b0565b8210610da45760405162461bcd60e51b8152600401610c6290613220565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b601a5481565b610ddb611ecc565b6001600160a01b0316610dec6116e7565b6001600160a01b031614610e125760405162461bcd60e51b8152600401610c62906137d9565b600d55565b60125481565b610e25611ecc565b6001600160a01b0316610e366116e7565b6001600160a01b031614610e5c5760405162461bcd60e51b8152600401610c62906137d9565b60165460135460115447926001600160a01b0316916108fc91610e7f9085613b0e565b610e899190613afa565b6040518115909202916000818181858888f19350505050158015610eb1573d6000803e3d6000fd5b506017546013546012546001600160a01b03909216916108fc9190610ed69085613b0e565b610ee09190613afa565b6040518115909202916000818181858888f19350505050158015610f08573d6000803e3d6000fd5b5050565b610f14611ecc565b6001600160a01b0316610f256116e7565b6001600160a01b031614610f4b5760405162461bcd60e51b8152600401610c62906137d9565b610f536120f0565b565b610d1a83838360405180602001604052806000815250611c07565b610f7b610d4e611ecc565b610f975760405162461bcd60e51b8152600401610c6290613a5f565b610fa08161215e565b50565b60235481565b60145481565b60215481565b6000610fbf610d25565b8210610fdd5760405162461bcd60e51b8152600401610c62906139e7565b60088281548110610ffe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601054610100900460ff1690565b611026611ecc565b6001600160a01b03166110376116e7565b6001600160a01b03161461105d5760405162461bcd60e51b8152600401610c62906137d9565b60005b8251811015610d1a5781601c600085848151811061108e57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806110c590613bab565b915050611060565b6110d5611ecc565b6001600160a01b03166110e66116e7565b6001600160a01b03161461110c5760405162461bcd60e51b8152600401610c62906137d9565b8051610f08906019906020840190612bd6565b601054610100900460ff1681565b6016546001600160a01b031681565b600b5460ff1690565b6000818152600260205260408120546001600160a01b031680610b8f5760405162461bcd60e51b8152600401610c62906135b4565b611182611ecc565b6001600160a01b03166111936116e7565b6001600160a01b0316146111b95760405162461bcd60e51b8152600401610c62906137d9565b6010805462ff0000198116620100009182900460ff1615909102179055565b601980546111e590613b70565b80601f016020809104026020016040519081016040528092919081815260200182805461121190613b70565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b505050505081565b600d5481565b611274611ecc565b6001600160a01b03166112856116e7565b6001600160a01b0316146112ab5760405162461bcd60e51b8152600401610c62906137d9565b600c55565b60006001600160a01b0382166112d85760405162461bcd60e51b8152600401610c629061356a565b506001600160a01b031660009081526003602052604090205490565b6112fc611ecc565b6001600160a01b031661130d6116e7565b6001600160a01b0316146113335760405162461bcd60e51b8152600401610c62906137d9565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b61138b611ecc565b6001600160a01b031661139c6116e7565b6001600160a01b0316146113c25760405162461bcd60e51b8152600401610c62906137d9565b6010805461ff001981166101009182900460ff1615909102179055565b6113e7611ecc565b6001600160a01b03166113f86116e7565b6001600160a01b03161461141e5760405162461bcd60e51b8152600401610c62906137d9565b601680546001600160a01b039485166001600160a01b031991821617909155601780549385169382169390931790925560188054919093169116179055565b611465611ecc565b6001600160a01b03166114766116e7565b6001600160a01b03161461149c5760405162461bcd60e51b8152600401610c62906137d9565b6010805460ff19811660ff90911615179055565b601c6020526000908152604090205481565b60105462010000900460ff1681565b6114d9611ecc565b6001600160a01b03166114ea6116e7565b6001600160a01b0316146115105760405162461bcd60e51b8152600401610c62906137d9565b610f53612167565b611520611ecc565b6001600160a01b03166115316116e7565b6001600160a01b0316146115575760405162461bcd60e51b8152600401610c62906137d9565b602055565b61156461113c565b156115815760405162461bcd60e51b8152600401610c62906134e3565b60105462010000900460ff1615156001146115ae5760405162461bcd60e51b8152600401610c62906133e5565b602154816023546115bf9190613ae2565b11156115dd5760405162461bcd60e51b8152600401610c62906133b0565b336000908152601e60205260409020548061160a5760405162461bcd60e51b8152600401610c62906138a6565b336000908152601f60205260409020548190611627908490613ae2565b11156116455760405162461bcd60e51b8152600401610c6290613180565b81600f546116539190613b0e565b3410156116725760405162461bcd60e51b8152600401610c6290613932565b60005b828110156116a65760006116876121c2565b9050611693338261226e565b508061169e81613bab565b915050611675565b50336000908152601f60205260409020546116c2908390613ae2565b336000908152601f60205260409020556023546116e0908390613ae2565b6023555050565b600b5461010090046001600160a01b031690565b611703611ecc565b6001600160a01b03166117146116e7565b6001600160a01b03161461173a5760405162461bcd60e51b8152600401610c62906137d9565b600f55565b611747611ecc565b6001600160a01b03166117586116e7565b6001600160a01b03161461177e5760405162461bcd60e51b8152600401610c62906137d9565b602155565b6017546001600160a01b031681565b606060018054610bb890613b70565b6117a961113c565b156117c65760405162461bcd60e51b8152600401610c62906134e3565b60105460ff6101009091041615156001146117f35760405162461bcd60e51b8152600401610c629061333a565b602054816022546118049190613ae2565b11156118225760405162461bcd60e51b8152600401610c629061395f565b336000908152601c60205260409020548061184f5760405162461bcd60e51b8152600401610c629061378e565b336000908152601d6020526040902054819061186c908490613ae2565b111561188a5760405162461bcd60e51b8152600401610c629061364b565b60005b828110156118be57600061189f6121c2565b90506118ab338261226e565b50806118b681613bab565b91505061188d565b50336000908152601d60205260409020546118da908390613ae2565b336000908152601d60205260409020556022546118f8908390613ae2565b6022555050565b601f6020526000908152604090205481565b60105460ff1681565b601e6020526000908152604090205481565b600f5481565b61193a61113c565b156119575760405162461bcd60e51b8152600401610c62906134e3565b60105460ff16151560011461197e5760405162461bcd60e51b8152600401610c6290613a33565b80600f5461198c9190613b0e565b3410156119ab5760405162461bcd60e51b8152600401610c6290613932565b601a54336000908152601b60205260409020546119c9908390613ae2565b11156119e75760405162461bcd60e51b8152600401610c6290613369565b600d5481600e546119f89190613ae2565b1115611a165760405162461bcd60e51b8152600401610c6290613714565b60005b81811015611a4a576000611a2b6121c2565b9050611a37338261226e565b5080611a4281613bab565b915050611a19565b50336000908152601b6020526040902054611a66908290613ae2565b336000908152601b6020526040902055600e54611a84908290613ae2565b600e5550565b611a92611ecc565b6001600160a01b0316611aa36116e7565b6001600160a01b031614611ac95760405162461bcd60e51b8152600401610c62906137d9565b601a55565b611ad6611ecc565b6001600160a01b0316826001600160a01b03161415611b075760405162461bcd60e51b8152600401610c6290613460565b8060056000611b14611ecc565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611b58611ecc565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b909190613162565b60405180910390a35050565b611ba4611ecc565b6001600160a01b0316611bb56116e7565b6001600160a01b031614611bdb5760405162461bcd60e51b8152600401610c62906137d9565b601293909355601193909355601455601591909155601355565b60205481565b600e5481565b600c5481565b611c18611c12611ecc565b83611f3e565b611c345760405162461bcd60e51b8152600401610c6290613996565b611c4084848484612278565b50505050565b60155481565b6001600160a01b03166000908152601c602052604090205490565b6018546001600160a01b031681565b6060610b8f826122ab565b611c89611ecc565b6001600160a01b0316611c9a6116e7565b6001600160a01b031614611cc05760405162461bcd60e51b8152600401610c62906137d9565b60005b8251811015610d1a5781601e6000858481518110611cf157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611d2890613bab565b915050611cc3565b611d38611ecc565b6001600160a01b0316611d496116e7565b6001600160a01b031614611d6f5760405162461bcd60e51b8152600401610c62906137d9565b611d79838361226e565b805115610d1a57610d1a82826123a1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60225481565b611dc6611ecc565b6001600160a01b0316611dd76116e7565b6001600160a01b031614611dfd5760405162461bcd60e51b8152600401610c62906137d9565b6001600160a01b038116611e235760405162461bcd60e51b8152600401610c62906132bd565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610b8f5750610b8f826123e5565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f0582611145565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4982611eaf565b611f655760405162461bcd60e51b8152600401610c6290613497565b6000611f7083611145565b9050806001600160a01b0316846001600160a01b03161480611fab5750836001600160a01b0316611fa084610c3b565b6001600160a01b0316145b80611fbb5750611fbb8185611d8a565b949350505050565b826001600160a01b0316611fd682611145565b6001600160a01b031614611ffc5760405162461bcd60e51b8152600401610c629061380e565b6001600160a01b0382166120225760405162461bcd60e51b8152600401610c629061341c565b61202d838383612425565b612038600082611ed0565b6001600160a01b0383166000908152600360205260408120805460019290612061908490613b2d565b90915550506001600160a01b038216600090815260036020526040812080546001929061208f908490613ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6120f861113c565b6121145760405162461bcd60e51b8152600401610c62906131c5565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612147611ecc565b6040516121549190613111565b60405180910390a1565b610fa081612455565b61216f61113c565b1561218c5760405162461bcd60e51b8152600401610c62906134e3565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612147611ecc565b6000600c546121cf610d25565b106121ec5760405162461bcd60e51b8152600401610c62906131f3565b6000805b6000600c5444428460405160200161220a939291906130fb565b6040516020818303038152906040528051906020012060001c61222d9190613bc6565b612238906001613ae2565b90508161224481613bab565b92505061225081611eaf565b1515600114612260579150612268565b5081156121f0575b50905090565b610f088282612495565b612283848484611fc3565b61228f848484846124af565b611c405760405162461bcd60e51b8152600401610c629061326b565b60606122b682611eaf565b6122d25760405162461bcd60e51b8152600401610c62906136c3565b6000828152600a6020526040812080546122eb90613b70565b80601f016020809104026020016040519081016040528092919081815260200182805461231790613b70565b80156123645780601f1061233957610100808354040283529160200191612364565b820191906000526020600020905b81548152906001019060200180831161234757829003601f168201915b5050505050905060006123756125ca565b905080516000141561238957509050610b92565b81511561239857509050610b92565b611fbb846125d9565b6123aa82611eaf565b6123c65760405162461bcd60e51b8152600401610c62906135fd565b6000828152600a602090815260409091208251610d1a92840190612bd6565b60006001600160e01b031982166380ac58cd60e01b148061241657506001600160e01b03198216635b5e139f60e01b145b80610b8f5750610b8f8261265c565b61242d61113c565b1561244a5760405162461bcd60e51b8152600401610c62906134e3565b610d1a838383612675565b61245e816126fe565b6000818152600a60205260409020805461247790613b70565b159050610fa0576000818152600a60205260408120610fa091612c5a565b610f088282604051806020016040528060008152506127a5565b60006124c3846001600160a01b03166127d8565b156125bf57836001600160a01b031663150b7a026124df611ecc565b8786866040518563ffffffff1660e01b81526004016125019493929190613125565b602060405180830381600087803b15801561251b57600080fd5b505af192505050801561254b575060408051601f3d908101601f1916820190925261254891810190612fff565b60015b6125a5573d808015612579576040519150601f19603f3d011682016040523d82523d6000602084013e61257e565b606091505b50805161259d5760405162461bcd60e51b8152600401610c629061326b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbb565b506001949350505050565b606060198054610bb890613b70565b60606125e482611eaf565b6126005760405162461bcd60e51b8152600401610c6290613857565b600061260a6125ca565b9050600081511161262a5760405180602001604052806000815250612655565b80612634846127de565b6040516020016126459291906130cc565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b612680838383610d1a565b6001600160a01b03831661269c57612697816128f9565b6126bf565b816001600160a01b0316836001600160a01b0316146126bf576126bf838261293d565b6001600160a01b0382166126db576126d6816129da565b610d1a565b826001600160a01b0316826001600160a01b031614610d1a57610d1a8282612ab3565b600061270982611145565b905061271781600084612425565b612722600083611ed0565b6001600160a01b038116600090815260036020526040812080546001929061274b908490613b2d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6127af8383612af7565b6127bc60008484846124af565b610d1a5760405162461bcd60e51b8152600401610c629061326b565b3b151590565b60608161280357506040805180820190915260018152600360fc1b6020820152610b92565b8160005b811561282d578061281781613bab565b91506128269050600a83613afa565b9150612807565b60008167ffffffffffffffff81111561285657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612880576020820181803683370190505b5090505b8415611fbb57612895600183613b2d565b91506128a2600a86613bc6565b6128ad906030613ae2565b60f81b8183815181106128d057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128f2600a86613afa565b9450612884565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161294a846112b0565b6129549190613b2d565b6000838152600760205260409020549091508082146129a7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129ec90600190613b2d565b60008381526009602052604081205460088054939450909284908110612a2257634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612a5157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a9757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612abe836112b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b1d5760405162461bcd60e51b8152600401610c629061368e565b612b2681611eaf565b15612b435760405162461bcd60e51b8152600401610c6290613303565b612b4f60008383612425565b6001600160a01b0382166000908152600360205260408120805460019290612b78908490613ae2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612be290613b70565b90600052602060002090601f016020900481019282612c045760008555612c4a565b82601f10612c1d57805160ff1916838001178555612c4a565b82800160010185558215612c4a579182015b82811115612c4a578251825591602001919060010190612c2f565b50612c56929150612c92565b5090565b508054612c6690613b70565b6000825580601f10612c785750610fa0565b601f016020900490600052602060002090810190610fa091905b5b80821115612c565760008155600101612c93565b600067ffffffffffffffff831115612cc157612cc1613c06565b612cd4601f8401601f1916602001613ab8565b9050828152838383011115612ce857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610b9257600080fd5b600082601f830112612d26578081fd5b61265583833560208501612ca7565b600060208284031215612d46578081fd5b61265582612cff565b60008060408385031215612d61578081fd5b612d6a83612cff565b9150612d7860208401612cff565b90509250929050565b600080600060608486031215612d95578081fd5b612d9e84612cff565b9250612dac60208501612cff565b9150612dba60408501612cff565b90509250925092565b600080600060608486031215612dd7578283fd5b612de084612cff565b9250612dee60208501612cff565b9150604084013590509250925092565b60008060008060808587031215612e13578081fd5b612e1c85612cff565b9350612e2a60208601612cff565b925060408501359150606085013567ffffffffffffffff811115612e4c578182fd5b8501601f81018713612e5c578182fd5b612e6b87823560208401612ca7565b91505092959194509250565b60008060408385031215612e89578182fd5b612e9283612cff565b915060208301358015158114612ea6578182fd5b809150509250929050565b60008060408385031215612ec3578182fd5b612ecc83612cff565b946020939093013593505050565b600080600060608486031215612eee578283fd5b612ef784612cff565b925060208401359150604084013567ffffffffffffffff811115612f19578182fd5b612f2586828701612d16565b9150509250925092565b60008060408385031215612f41578182fd5b823567ffffffffffffffff80821115612f58578384fd5b818501915085601f830112612f6b578384fd5b8135602082821115612f7f57612f7f613c06565b8082029250612f8f818401613ab8565b8281528181019085830185870184018b1015612fa9578889fd5b8896505b84871015612fd257612fbe81612cff565b835260019690960195918301918301612fad565b509997909101359750505050505050565b600060208284031215612ff4578081fd5b813561265581613c1c565b600060208284031215613010578081fd5b815161265581613c1c565b60006020828403121561302c578081fd5b813567ffffffffffffffff811115613042578182fd5b611fbb84828501612d16565b60006020828403121561305f578081fd5b5035919050565b600080600080600060a0868803121561307d578283fd5b505083359560208501359550604085013594606081013594506080013592509050565b600081518084526130b8816020860160208601613b44565b601f01601f19169290920160200192915050565b600083516130de818460208801613b44565b8351908301906130f2818360208801613b44565b01949350505050565b9283526020830191909152604082015260600190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613158908301846130a0565b9695505050505050565b901515815260200190565b60006020825261265560208301846130a0565b60208082526025908201527f796f757220616464726573732077686974656c69737420616d6f756e74206c696040820152641b5a5d195960da1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601390820152724d617820537570706c79204c696d697465642160681b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260159082015274105a5c991c9bdc081a5cc81b9bdd081bdc195b9959605a1b604082015260600190565b60208082526027908201527f6f6e6c79206c696d6974656420616d6f756e7420706572206164647265737320604082015266185b1b1bddd95960ca1b606082015260800190565b6020808252818101527f57686974654c697374204d696e7420416d6f756e74206973206c696d69746564604082015260600190565b60208082526017908201527f57686974654c697374206973206e6f74206f70656e6564000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526023908201527f596f757220616464726573732061697264726f7020616d6f756e74206c696d696040820152621d195960ea1b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b60208082526014908201527353616c6520537570706c79204c696d697465642160601b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602b908201527f746869732061646472657373206973206e6f742061697264726f7020666f722060408201526a7468652070726573616c6560a81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602b908201527f546869732061646472657373206973206e6f742061697264726f7020666f722060408201526a7468652070726573616c6560a81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601390820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b604082015260600190565b6020808252601e908201527f41697264726f70204d696e7420416d6f756e74206973206c696d697465640000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527114d85b19481a5cc81b9bdd0813dc195b995960721b604082015260600190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715613ada57613ada613c06565b604052919050565b60008219821115613af557613af5613bda565b500190565b600082613b0957613b09613bf0565b500490565b6000816000190483118215151615613b2857613b28613bda565b500290565b600082821015613b3f57613b3f613bda565b500390565b60005b83811015613b5f578181015183820152602001613b47565b83811115611c405750506000910152565b600281046001821680613b8457607f821691505b60208210811415613ba557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613bbf57613bbf613bda565b5060010190565b600082613bd557613bd5613bf0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fa057600080fdfea2646970667358221220cb3740f39bc84cca89e10f73346af4e90ff93cc8d5164d6862809ae8be18bbed64736f6c63430008000033

Deployed Bytecode Sourcemap

48101:8625:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56552:171;;;;;;;;;;-1:-1:-1;56552:171:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49060:61;;;;;;;;;;-1:-1:-1;49060:61:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21367:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22778:221::-;;;;;;;;;;-1:-1:-1;22778:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22338:374::-;;;;;;;;;;-1:-1:-1;22338:374:0;;;;;:::i;:::-;;:::i;:::-;;48512:31;;;;;;;;;;;;;:::i;34921:113::-;;;;;;;;;;;;;:::i;48591:37::-;;;;;;;;;;;;;:::i;49185:48::-;;;;;;;;;;-1:-1:-1;49185:48:0;;;;;:::i;:::-;;:::i;23668:339::-;;;;;;;;;;-1:-1:-1;23668:339:0;;;;;:::i;:::-;;:::i;34589:256::-;;;;;;;;;;-1:-1:-1;34589:256:0;;;;;:::i;:::-;;:::i;49007:46::-;;;;;;;;;;;;;:::i;52368:112::-;;;;;;;;;;-1:-1:-1;52368:112:0;;;;;:::i;:::-;;:::i;48550:34::-;;;;;;;;;;;;;:::i;50611:281::-;;;;;;;;;;;;;:::i;51793:65::-;;;;;;;;;;;;;:::i;24078:185::-;;;;;;;;;;-1:-1:-1;24078:185:0;;;;;:::i;:::-;;:::i;46939:245::-;;;;;;;;;;-1:-1:-1;46939:245:0;;;;;:::i;:::-;;:::i;49491:39::-;;;;;;;;;;;;;:::i;48637:40::-;;;;;;;;;;;;;:::i;49396:44::-;;;;;;;;;;;;;:::i;35111:233::-;;;;;;;;;;-1:-1:-1;35111:233:0;;;;;:::i;:::-;;:::i;51623:93::-;;;;;;;;;;;;;:::i;50251:172::-;;;;;;;;;;-1:-1:-1;50251:172:0;;;;;:::i;:::-;;:::i;52156:102::-;;;;;;;;;;-1:-1:-1;52156:102:0;;;;;:::i;:::-;;:::i;48426:31::-;;;;;;;;;;;;;:::i;48735:70::-;;;;;;;;;;;;;:::i;43194:86::-;;;;;;;;;;;;;:::i;21061:239::-;;;;;;;;;;-1:-1:-1;21061:239:0;;;;;:::i;:::-;;:::i;52051:97::-;;;;;;;;;;;;;:::i;48979:21::-;;;;;;;;;;;;;:::i;48255:37::-;;;;;;;;;;;;;:::i;50032:96::-;;;;;;;;;;-1:-1:-1;50032:96:0;;;;;:::i;:::-;;:::i;20791:208::-;;;;;;;;;;-1:-1:-1;20791:208:0;;;;;:::i;:::-;;:::i;46040:148::-;;;;;;;;;;;;;:::i;51952:91::-;;;;;;;;;;;;;:::i;51368:247::-;;;;;;;;;;-1:-1:-1;51368:247:0;;;;;:::i;:::-;;:::i;51866:78::-;;;;;;;;;;;;;:::i;49132:46::-;;;;;;;;;;-1:-1:-1;49132:46:0;;;;;:::i;:::-;;:::i;48468:33::-;;;;;;;;;;;;;:::i;51724:61::-;;;;;;;;;;;;;:::i;49776:118::-;;;;;;;;;;-1:-1:-1;49776:118:0;;;;;:::i;:::-;;:::i;53515:894::-;;;;;;:::i;:::-;;:::i;45389:87::-;;;;;;;;;;;;;:::i;52266:90::-;;;;;;;;;;-1:-1:-1;52266:90:0;;;;;:::i;:::-;;:::i;49902:122::-;;;;;;;;;;-1:-1:-1;49902:122:0;;;;;:::i;:::-;;:::i;48812:73::-;;;;;;;;;;;;;:::i;21536:104::-;;;;;;;;;;;;;:::i;54417:788::-;;;;;;;;;;-1:-1:-1;54417:788:0;;;;;:::i;:::-;;:::i;49291:50::-;;;;;;;;;;-1:-1:-1;49291:50:0;;;;;:::i;:::-;;:::i;48387:28::-;;;;;;;;;;;;;:::i;49240:44::-;;;;;;;;;;-1:-1:-1;49240:44:0;;;;;:::i;:::-;;:::i;48345:34::-;;;;;;;;;;;;;:::i;55213:738::-;;;;;;:::i;:::-;;:::i;49640:128::-;;;;;;;;;;-1:-1:-1;49640:128:0;;;;;:::i;:::-;;:::i;23071:295::-;;;;;;;;;;-1:-1:-1;23071:295:0;;;;;:::i;:::-;;:::i;50900:460::-;;;;;;;;;;-1:-1:-1;50900:460:0;;;;;:::i;:::-;;:::i;49348:41::-;;;;;;;;;;;;;:::i;48299:35::-;;;;;;;;;;;;;:::i;48217:31::-;;;;;;;;;;;;;:::i;24334:328::-;;;;;;;;;;-1:-1:-1;24334:328:0;;;;;:::i;:::-;;:::i;48684:38::-;;;;;;;;;;;;;:::i;50136:107::-;;;;;;;;;;-1:-1:-1;50136:107:0;;;;;:::i;:::-;;:::i;48892:78::-;;;;;;;;;;;;;:::i;56389:155::-;;;;;;;;;;-1:-1:-1;56389:155:0;;;;;:::i;:::-;;:::i;50431:172::-;;;;;;;;;;-1:-1:-1;50431:172:0;;;;;:::i;:::-;;:::i;53272:235::-;;;;;;;;;;-1:-1:-1;53272:235:0;;;;;:::i;:::-;;:::i;23437:164::-;;;;;;;;;;-1:-1:-1;23437:164:0;;;;;:::i;:::-;;:::i;49447:37::-;;;;;;;;;;;;;:::i;46343:244::-;;;;;;;;;;-1:-1:-1;46343:244:0;;;;;:::i;:::-;;:::i;56552:171::-;56655:4;56679:36;56703:11;56679:23;:36::i;:::-;56672:43;;56552:171;;;;:::o;49060:61::-;;;;;;;;;;;;;:::o;21367:100::-;21421:13;21454:5;21447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21367:100;:::o;22778:221::-;22854:7;22882:16;22890:7;22882;:16::i;:::-;22874:73;;;;-1:-1:-1;;;22874:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22967:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22967:24:0;;22778:221::o;22338:374::-;22419:13;22435:23;22450:7;22435:14;:23::i;:::-;22419:39;;22483:5;-1:-1:-1;;;;;22477:11:0;:2;-1:-1:-1;;;;;22477:11:0;;;22469:57;;;;-1:-1:-1;;;22469:57:0;;;;;;;:::i;:::-;22563:5;-1:-1:-1;;;;;22547:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22547:21:0;;:62;;;;22572:37;22589:5;22596:12;:10;:12::i;22572:37::-;22539:131;;;;-1:-1:-1;;;22539:131:0;;;;;;;:::i;:::-;22683:21;22692:2;22696:7;22683:8;:21::i;:::-;22338:374;;;:::o;48512:31::-;;;;:::o;34921:113::-;35009:10;:17;34921:113;:::o;48591:37::-;;;;:::o;49185:48::-;;;;;;;;;;;;;:::o;23668:339::-;23863:41;23882:12;:10;:12::i;:::-;23896:7;23863:18;:41::i;:::-;23855:103;;;;-1:-1:-1;;;23855:103:0;;;;;;;:::i;:::-;23971:28;23981:4;23987:2;23991:7;23971:9;:28::i;34589:256::-;34686:7;34722:23;34739:5;34722:16;:23::i;:::-;34714:5;:31;34706:87;;;;-1:-1:-1;;;34706:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34811:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34589:256::o;49007:46::-;;;;:::o;52368:112::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;52445:15:::1;:27:::0;52368:112::o;48550:34::-;;;;:::o;50611:281::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;50719:10:::1;::::0;50769:19:::1;::::0;50751:14:::1;::::0;50679:21:::1;::::0;-1:-1:-1;;;;;50719:10:0::1;::::0;50711:78:::1;::::0;50741:24:::1;::::0;50679:21;50741:24:::1;:::i;:::-;50740:48;;;;:::i;:::-;50711:78;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50808:13:0::1;::::0;50864:19:::1;::::0;50843:17:::1;::::0;-1:-1:-1;;;;;50808:13:0;;::::1;::::0;50800:84:::1;::::0;50864:19;50833:27:::1;::::0;:7;:27:::1;:::i;:::-;50832:51;;;;:::i;:::-;50800:84;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45680:1;50611:281::o:0;51793:65::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;51840:10:::1;:8;:10::i;:::-;51793:65::o:0;24078:185::-;24216:39;24233:4;24239:2;24243:7;24216:39;;;;;;;;;;;;:16;:39::i;46939:245::-;47057:41;47076:12;:10;:12::i;47057:41::-;47049:102;;;;-1:-1:-1;;;47049:102:0;;;;;;;:::i;:::-;47162:14;47168:7;47162:5;:14::i;:::-;46939:245;:::o;49491:39::-;;;;:::o;48637:40::-;;;;:::o;49396:44::-;;;;:::o;35111:233::-;35186:7;35222:30;:28;:30::i;:::-;35214:5;:38;35206:95;;;;-1:-1:-1;;;35206:95:0;;;;;;;:::i;:::-;35319:10;35330:5;35319:17;;;;;;-1:-1:-1;;;35319:17:0;;;;;;;;;;;;;;;;;35312:24;;35111:233;;;:::o;51623:93::-;51697:11;;;;;;;;51623:93::o;50251:172::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;50351:9:::1;50346:69;50370:3;:10;50366:1;:14;50346:69;;;50409:6;50387:11;:19;50399:3;50403:1;50399:6;;;;;;-1:-1:-1::0;;;50399:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;50387:19:0::1;-1:-1:-1::0;;;;;50387:19:0::1;;;;;;;;;;;;:28;;;;50382:3;;;;;:::i;:::-;;;;50346:69;;52156:102:::0;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;52230:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;48426:31::-:0;;;;;;;;;:::o;48735:70::-;;;-1:-1:-1;;;;;48735:70:0;;:::o;43194:86::-;43265:7;;;;43194:86;:::o;21061:239::-;21133:7;21169:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21169:16:0;21204:19;21196:73;;;;-1:-1:-1;;;21196:73:0;;;;;;;:::i;52051:97::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;52127:13:::1;::::0;;-1:-1:-1;;52110:30:0;::::1;52127:13:::0;;;;::::1;;;52126:14;52110:30:::0;;::::1;;::::0;;52051:97::o;48979:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48255:37::-;;;;:::o;50032:96::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;50101:9:::1;:19:::0;50032:96::o;20791:208::-;20863:7;-1:-1:-1;;;;;20891:19:0;;20883:74;;;;-1:-1:-1;;;20883:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20975:16:0;;;;;:9;:16;;;;;;;20791:208::o;46040:148::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;46131:6:::1;::::0;46110:40:::1;::::0;46147:1:::1;::::0;46131:6:::1;::::0;::::1;-1:-1:-1::0;;;;;46131:6:0::1;::::0;46110:40:::1;::::0;46147:1;;46110:40:::1;46161:6;:19:::0;;-1:-1:-1;;;;;;46161:19:0::1;::::0;;46040:148::o;51952:91::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;52024:11:::1;::::0;;-1:-1:-1;;52009:26:0;::::1;52024:11;::::0;;;::::1;;;52023:12;52009:26:::0;;::::1;;::::0;;51952:91::o;51368:247::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;51491:10:::1;:24:::0;;-1:-1:-1;;;;;51491:24:0;;::::1;-1:-1:-1::0;;;;;;51491:24:0;;::::1;;::::0;;;51526:13:::1;:30:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;51567:18:::1;:40:::0;;;;;::::1;::::0;::::1;;::::0;;51368:247::o;51866:78::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;51928:8:::1;::::0;;-1:-1:-1;;51916:20:0;::::1;51928:8;::::0;;::::1;51927:9;51916:20;::::0;;51866:78::o;49132:46::-;;;;;;;;;;;;;:::o;48468:33::-;;;;;;;;;:::o;51724:61::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;51769:8:::1;:6;:8::i;49776:118::-:0;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;49856:20:::1;:30:::0;49776:118::o;53515:894::-;43520:8;:6;:8::i;:::-;43519:9;43511:38;;;;-1:-1:-1;;;43511:38:0;;;;;;;:::i;:::-;53621:13:::1;::::0;;;::::1;;;:21;;53638:4;53621:21;53613:57;;;;-1:-1:-1::0;;;53613:57:0::1;;;;;;;:::i;:::-;53724:22;;53714:6;53691:20;;:29;;;;:::i;:::-;:55;;53683:100;;;;-1:-1:-1::0;;;53683:100:0::1;;;;;;;:::i;:::-;53824:10;53800:11;53814:21:::0;;;:9:::1;:21;::::0;;;;;53854:7;53846:63:::1;;;;-1:-1:-1::0;;;53846:63:0::1;;;;;;;:::i;:::-;53944:10;53928:27;::::0;;;:15:::1;:27;::::0;;;;;53968:3;;53928:36:::1;::::0;53958:6;;53928:36:::1;:::i;:::-;:43;;53920:93;;;;-1:-1:-1::0;;;53920:93:0::1;;;;;;;:::i;:::-;54053:6;54045:5;;:14;;;;:::i;:::-;54032:9;:27;;54024:59;;;;-1:-1:-1::0;;;54024:59:0::1;;;;;;;:::i;:::-;54115:9;54110:144;54134:6;54130:1;:10;54110:144;;;54162:15;54180:14;:12;:14::i;:::-;54162:32;;54209:33;54222:10;54234:7;54209:12;:33::i;:::-;-1:-1:-1::0;54142:3:0;::::1;::::0;::::1;:::i;:::-;;;;54110:144;;;-1:-1:-1::0;54310:10:0::1;54294:27;::::0;;;:15:::1;:27;::::0;;;;;:36:::1;::::0;54324:6;;54294:36:::1;:::i;:::-;54280:10;54264:27;::::0;;;:15:::1;:27;::::0;;;;:66;54372:20:::1;::::0;:29:::1;::::0;54395:6;;54372:29:::1;:::i;:::-;54349:20;:52:::0;-1:-1:-1;;53515:894:0:o;45389:87::-;45462:6;;;;;-1:-1:-1;;;;;45462:6:0;;45389:87::o;52266:90::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;52332:5:::1;:16:::0;52266:90::o;49902:122::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;49984:22:::1;:32:::0;49902:122::o;48812:73::-;;;-1:-1:-1;;;;;48812:73:0;;:::o;21536:104::-;21592:13;21625:7;21618:14;;;;;:::i;54417:788::-;43520:8;:6;:8::i;:::-;43519:9;43511:38;;;;-1:-1:-1;;;43511:38:0;;;;;;;:::i;:::-;54506:11:::1;::::0;::::1;;::::0;;::::1;;:19;;:11;:19;54498:53;;;;-1:-1:-1::0;;;54498:53:0::1;;;;;;;:::i;:::-;54601:20;;54591:6;54570:18;;:27;;;;:::i;:::-;:51;;54562:94;;;;-1:-1:-1::0;;;54562:94:0::1;;;;;;;:::i;:::-;54693:10;54667:11;54681:23:::0;;;:11:::1;:23;::::0;;;;;54723:7;54715:63:::1;;;;-1:-1:-1::0;;;54715:63:0::1;;;;;;;:::i;:::-;54827:10;54813:25;::::0;;;:13:::1;:25;::::0;;;;;54851:3;;54813:34:::1;::::0;54841:6;;54813:34:::1;:::i;:::-;:41;;54805:89;;;;-1:-1:-1::0;;;54805:89:0::1;;;;;;;:::i;:::-;54918:9;54913:144;54937:6;54933:1;:10;54913:144;;;54965:15;54983:14;:12;:14::i;:::-;54965:32;;55012:33;55025:10;55037:7;55012:12;:33::i;:::-;-1:-1:-1::0;54945:3:0;::::1;::::0;::::1;:::i;:::-;;;;54913:144;;;-1:-1:-1::0;55109:10:0::1;55095:25;::::0;;;:13:::1;:25;::::0;;;;;:34:::1;::::0;55123:6;;55095:34:::1;:::i;:::-;55081:10;55067:25;::::0;;;:13:::1;:25;::::0;;;;:62;55167:18:::1;::::0;:27:::1;::::0;55188:6;;55167:27:::1;:::i;:::-;55146:18;:48:::0;-1:-1:-1;;54417:788:0:o;49291:50::-;;;;;;;;;;;;;:::o;48387:28::-;;;;;;:::o;49240:44::-;;;;;;;;;;;;;:::o;48345:34::-;;;;:::o;55213:738::-;43520:8;:6;:8::i;:::-;43519:9;43511:38;;;;-1:-1:-1;;;43511:38:0;;;;;;;:::i;:::-;55291:8:::1;::::0;::::1;;:16;;:8:::0;:16:::1;55283:47;;;;-1:-1:-1::0;;;55283:47:0::1;;;;;;;:::i;:::-;55370:6;55362:5;;:14;;;;:::i;:::-;55349:9;:27;;55341:59;;;;-1:-1:-1::0;;;55341:59:0::1;;;;;;;:::i;:::-;55470:25;::::0;55446:10:::1;55419:38;::::0;;;:26:::1;:38;::::0;;;;;:47:::1;::::0;55460:6;;55419:47:::1;:::i;:::-;:76;;55411:128;;;;-1:-1:-1::0;;;55411:128:0::1;;;;;;;:::i;:::-;55587:15;;55577:6;55558:16;;:25;;;;:::i;:::-;:44;;55550:77;;;;-1:-1:-1::0;;;55550:77:0::1;;;;;;;:::i;:::-;55643:9;55638:144;55662:6;55658:1;:10;55638:144;;;55690:15;55708:14;:12;:14::i;:::-;55690:32;;55737:33;55750:10;55762:7;55737:12;:33::i;:::-;-1:-1:-1::0;55670:3:0;::::1;::::0;::::1;:::i;:::-;;;;55638:144;;;-1:-1:-1::0;55860:10:0::1;55833:38;::::0;;;:26:::1;:38;::::0;;;;;:47:::1;::::0;55874:6;;55833:47:::1;:::i;:::-;55819:10;55792:38;::::0;;;:26:::1;:38;::::0;;;;:88;55918:16:::1;::::0;:25:::1;::::0;55937:6;;55918:25:::1;:::i;:::-;55899:16;:44:::0;-1:-1:-1;55213:738:0:o;49640:128::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;49725:25:::1;:35:::0;49640:128::o;23071:295::-;23186:12;:10;:12::i;:::-;-1:-1:-1;;;;;23174:24:0;:8;-1:-1:-1;;;;;23174:24:0;;;23166:62;;;;-1:-1:-1;;;23166:62:0;;;;;;;:::i;:::-;23286:8;23241:18;:32;23260:12;:10;:12::i;:::-;-1:-1:-1;;;;;23241:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23241:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23241:53:0;;;;;;;;;;;23325:12;:10;:12::i;:::-;-1:-1:-1;;;;;23310:48:0;;23349:8;23310:48;;;;;;:::i;:::-;;;;;;;;23071:295;;:::o;50900:460::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;51096:17:::1;:38:::0;;;;51145:14:::1;:32:::0;;;;51188:24:::1;:52:::0;51251:22:::1;:48:::0;;;;51310:19:::1;:42:::0;50900:460::o;49348:41::-;;;;:::o;48299:35::-;;;;:::o;48217:31::-;;;;:::o;24334:328::-;24509:41;24528:12;:10;:12::i;:::-;24542:7;24509:18;:41::i;:::-;24501:103;;;;-1:-1:-1;;;24501:103:0;;;;;;;:::i;:::-;24615:39;24629:4;24635:2;24639:7;24648:5;24615:13;:39::i;:::-;24334:328;;;;:::o;48684:38::-;;;;:::o;50136:107::-;-1:-1:-1;;;;;50219:16:0;50192:7;50219:16;;;:11;:16;;;;;;;50136:107::o;48892:78::-;;;-1:-1:-1;;;;;48892:78:0;;:::o;56389:155::-;56480:13;56513:23;56528:7;56513:14;:23::i;50431:172::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;50533:9:::1;50528:67;50552:3;:10;50548:1;:14;50528:67;;;50589:6;50569:9;:17;50579:3;50583:1;50579:6;;;;;;-1:-1:-1::0;;;50579:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;50569:17:0::1;-1:-1:-1::0;;;;;50569:17:0::1;;;;;;;;;;;;:26;;;;50564:3;;;;;:::i;:::-;;;;50528:67;;53272:235:::0;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;53372:25:::1;53385:2;53389:7;53372:12;:25::i;:::-;53412:23:::0;;:27;53408:92:::1;;53456:32;53469:7;53478:9;53456:12;:32::i;23437:164::-:0;-1:-1:-1;;;;;23558:25:0;;;23534:4;23558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23437:164::o;49447:37::-;;;;:::o;46343:244::-;45620:12;:10;:12::i;:::-;-1:-1:-1;;;;;45609:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45609:23:0;;45601:68;;;;-1:-1:-1;;;45601:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46432:22:0;::::1;46424:73;;;;-1:-1:-1::0;;;46424:73:0::1;;;;;;;:::i;:::-;46534:6;::::0;46513:38:::1;::::0;-1:-1:-1;;;;;46513:38:0;;::::1;::::0;46534:6:::1;::::0;::::1;;::::0;46513:38:::1;::::0;;;::::1;46562:6;:17:::0;;-1:-1:-1;;;;;46562:17:0;;::::1;;;-1:-1:-1::0;;;;;;46562:17:0;;::::1;::::0;;;::::1;::::0;;46343:244::o;34281:224::-;34383:4;-1:-1:-1;;;;;;34407:50:0;;-1:-1:-1;;;34407:50:0;;:90;;;34461:36;34485:11;34461:23;:36::i;26172:127::-;26237:4;26261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26261:16:0;:30;;;26172:127::o;15945:98::-;16025:10;15945:98;:::o;30117:174::-;30192:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30192:29:0;-1:-1:-1;;;;;30192:29:0;;;;;;;;:24;;30246:23;30192:24;30246:14;:23::i;:::-;-1:-1:-1;;;;;30237:46:0;;;;;;;;;;;30117:174;;:::o;26466:348::-;26559:4;26584:16;26592:7;26584;:16::i;:::-;26576:73;;;;-1:-1:-1;;;26576:73:0;;;;;;;:::i;:::-;26660:13;26676:23;26691:7;26676:14;:23::i;:::-;26660:39;;26729:5;-1:-1:-1;;;;;26718:16:0;:7;-1:-1:-1;;;;;26718:16:0;;:51;;;;26762:7;-1:-1:-1;;;;;26738:31:0;:20;26750:7;26738:11;:20::i;:::-;-1:-1:-1;;;;;26738:31:0;;26718:51;:87;;;;26773:32;26790:5;26797:7;26773:16;:32::i;:::-;26710:96;26466:348;-1:-1:-1;;;;26466:348:0:o;29421:578::-;29580:4;-1:-1:-1;;;;;29553:31:0;:23;29568:7;29553:14;:23::i;:::-;-1:-1:-1;;;;;29553:31:0;;29545:85;;;;-1:-1:-1;;;29545:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29649:16:0;;29641:65;;;;-1:-1:-1;;;29641:65:0;;;;;;;:::i;:::-;29719:39;29740:4;29746:2;29750:7;29719:20;:39::i;:::-;29823:29;29840:1;29844:7;29823:8;:29::i;:::-;-1:-1:-1;;;;;29865:15:0;;;;;;:9;:15;;;;;:20;;29884:1;;29865:15;:20;;29884:1;;29865:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29896:13:0;;;;;;:9;:13;;;;;:18;;29913:1;;29896:13;:18;;29913:1;;29896:18;:::i;:::-;;;;-1:-1:-1;;29925:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29925:21:0;-1:-1:-1;;;;;29925:21:0;;;;;;;;;29964:27;;29925:16;;29964:27;;;;;;;29421:578;;;:::o;44253:120::-;43797:8;:6;:8::i;:::-;43789:41;;;;-1:-1:-1;;;43789:41:0;;;;;;;:::i;:::-;44312:7:::1;:15:::0;;-1:-1:-1;;44312:15:0::1;::::0;;44343:22:::1;44352:12;:10;:12::i;:::-;44343:22;;;;;;:::i;:::-;;;;;;;;44253:120::o:0;56266:115::-;56353:20;56365:7;56353:11;:20::i;43994:118::-;43520:8;:6;:8::i;:::-;43519:9;43511:38;;;;-1:-1:-1;;;43511:38:0;;;;;;;:::i;:::-;44054:7:::1;:14:::0;;-1:-1:-1;;44054:14:0::1;44064:4;44054:14;::::0;;44084:20:::1;44091:12;:10;:12::i;52717:547::-:0;52764:7;52816:9;;52800:13;:11;:13::i;:::-;:25;52792:57;;;;-1:-1:-1;;;52792:57:0;;;;;;;:::i;:::-;52860:16;52891:14;52920:311;52938:12;53039:9;;52989:16;53007:15;53024:9;52972:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52962:73;;;;;;52954:82;;:94;;;;:::i;:::-;52953:100;;53052:1;52953:100;:::i;:::-;52938:115;-1:-1:-1;53068:12:0;;;;:::i;:::-;;;;53099:13;53107:4;53099:7;:13::i;:::-;:21;;53116:4;53099:21;53095:101;;53152:4;-1:-1:-1;53175:5:0;;53095:101;-1:-1:-1;53216:13:0;;52920:311;;;-1:-1:-1;53248:8:0;-1:-1:-1;52717:547:0;:::o;52600:109::-;52671:22;52681:2;52685:7;52671:9;:22::i;25544:315::-;25701:28;25711:4;25717:2;25721:7;25701:9;:28::i;:::-;25748:48;25771:4;25777:2;25781:7;25790:5;25748:22;:48::i;:::-;25740:111;;;;-1:-1:-1;;;25740:111:0;;;;;;;:::i;40747:647::-;40820:13;40854:16;40862:7;40854;:16::i;:::-;40846:78;;;;-1:-1:-1;;;40846:78:0;;;;;;;:::i;:::-;40937:23;40963:19;;;:10;:19;;;;;40937:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40993:18;41014:10;:8;:10::i;:::-;40993:31;;41106:4;41100:18;41122:1;41100:23;41096:72;;;-1:-1:-1;41147:9:0;-1:-1:-1;41140:16:0;;41096:72;41272:23;;:27;41268:76;;-1:-1:-1;41323:9:0;-1:-1:-1;41316:16:0;;41268:76;41363:23;41378:7;41363:14;:23::i;41550:217::-;41650:16;41658:7;41650;:16::i;:::-;41642:75;;;;-1:-1:-1;;;41642:75:0;;;;;;;:::i;:::-;41728:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;20461:266::-;20563:4;-1:-1:-1;;;;;;20587:40:0;;-1:-1:-1;;;20587:40:0;;:92;;-1:-1:-1;;;;;;;20631:48:0;;-1:-1:-1;;;20631:48:0;20587:92;:132;;;;20683:36;20707:11;20683:23;:36::i;55959:229::-;43520:8;:6;:8::i;:::-;43519:9;43511:38;;;;-1:-1:-1;;;43511:38:0;;;;;;;:::i;:::-;56135:45:::1;56162:4;56168:2;56172:7;56135:26;:45::i;41996:206::-:0;42065:20;42077:7;42065:11;:20::i;:::-;42108:19;;;;:10;:19;;;;;42102:33;;;;;:::i;:::-;:38;;-1:-1:-1;42098:97:0;;42164:19;;;;:10;:19;;;;;42157:26;;;:::i;27156:110::-;27232:26;27242:2;27246:7;27232:26;;;;;;;;;;;;:9;:26::i;30856:872::-;31011:4;31032:15;:2;-1:-1:-1;;;;;31032:13:0;;:15::i;:::-;31028:693;;;31084:2;-1:-1:-1;;;;;31068:36:0;;31105:12;:10;:12::i;:::-;31119:4;31125:7;31134:5;31068:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31068:72:0;;;;;;;;-1:-1:-1;;31068:72:0;;;;;;;;;;;;:::i;:::-;;;31064:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31314:13:0;;31310:341;;31357:60;;-1:-1:-1;;;31357:60:0;;;;;;;:::i;31310:341::-;31601:6;31595:13;31586:6;31582:2;31578:15;31571:38;31064:602;-1:-1:-1;;;;;;31191:55:0;-1:-1:-1;;;31191:55:0;;-1:-1:-1;31184:62:0;;31028:693;-1:-1:-1;31705:4:0;30856:872;;;;;;:::o;52492:100::-;52544:13;52577:7;52570:14;;;;;:::i;21711:334::-;21784:13;21818:16;21826:7;21818;:16::i;:::-;21810:76;;;;-1:-1:-1;;;21810:76:0;;;;;;;:::i;:::-;21899:21;21923:10;:8;:10::i;:::-;21899:34;;21975:1;21957:7;21951:21;:25;:86;;;;;;;;;;;;;;;;;22003:7;22012:18;:7;:16;:18::i;:::-;21986:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21951:86;21944:93;21711:334;-1:-1:-1;;;21711:334:0:o;19070:157::-;-1:-1:-1;;;;;;19179:40:0;;-1:-1:-1;;;19179:40:0;19070:157;;;:::o;35957:589::-;36101:45;36128:4;36134:2;36138:7;36101:26;:45::i;:::-;-1:-1:-1;;;;;36163:18:0;;36159:187;;36198:40;36230:7;36198:31;:40::i;:::-;36159:187;;;36268:2;-1:-1:-1;;;;;36260:10:0;:4;-1:-1:-1;;;;;36260:10:0;;36256:90;;36287:47;36320:4;36326:7;36287:32;:47::i;:::-;-1:-1:-1;;;;;36360:16:0;;36356:183;;36393:45;36430:7;36393:36;:45::i;:::-;36356:183;;;36466:4;-1:-1:-1;;;;;36460:10:0;:2;-1:-1:-1;;;;;36460:10:0;;36456:83;;36487:40;36515:2;36519:7;36487:27;:40::i;28724:360::-;28784:13;28800:23;28815:7;28800:14;:23::i;:::-;28784:39;;28836:48;28857:5;28872:1;28876:7;28836:20;:48::i;:::-;28925:29;28942:1;28946:7;28925:8;:29::i;:::-;-1:-1:-1;;;;;28967:16:0;;;;;;:9;:16;;;;;:21;;28987:1;;28967:16;:21;;28987:1;;28967:21;:::i;:::-;;;;-1:-1:-1;;29006:16:0;;;;:7;:16;;;;;;28999:23;;-1:-1:-1;;;;;;28999:23:0;;;29040:36;29014:7;;29006:16;-1:-1:-1;;;;;29040:36:0;;;;;29006:16;;29040:36;28724:360;;:::o;27493:284::-;27623:18;27629:2;27633:7;27623:5;:18::i;:::-;27660:54;27691:1;27695:2;27699:7;27708:5;27660:22;:54::i;:::-;27652:117;;;;-1:-1:-1;;;27652:117:0;;;;;;;:::i;7826:444::-;8206:20;8254:8;;;7826:444::o;16517:723::-;16573:13;16794:10;16790:53;;-1:-1:-1;16821:10:0;;;;;;;;;;;;-1:-1:-1;;;16821:10:0;;;;;;16790:53;16868:5;16853:12;16909:78;16916:9;;16909:78;;16942:8;;;;:::i;:::-;;-1:-1:-1;16965:10:0;;-1:-1:-1;16973:2:0;16965:10;;:::i;:::-;;;16909:78;;;16997:19;17029:6;17019:17;;;;;;-1:-1:-1;;;17019:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17019:17:0;;16997:39;;17047:154;17054:10;;17047:154;;17081:11;17091:1;17081:11;;:::i;:::-;;-1:-1:-1;17150:10:0;17158:2;17150:5;:10;:::i;:::-;17137:24;;:2;:24;:::i;:::-;17124:39;;17107:6;17114;17107:14;;;;;;-1:-1:-1;;;17107:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17107:56:0;;;;;;;;-1:-1:-1;17178:11:0;17187:2;17178:11;;:::i;:::-;;;17047:154;;37269:164;37373:10;:17;;37346:24;;;;:15;:24;;;;;:44;;;37401:24;;;;;;;;;;;;37269:164::o;38060:988::-;38326:22;38376:1;38351:22;38368:4;38351:16;:22::i;:::-;:26;;;;:::i;:::-;38388:18;38409:26;;;:17;:26;;;;;;38326:51;;-1:-1:-1;38542:28:0;;;38538:328;;-1:-1:-1;;;;;38609:18:0;;38587:19;38609:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38660:30;;;;;;:44;;;38777:30;;:17;:30;;;;;:43;;;38538:328;-1:-1:-1;38962:26:0;;;;:17;:26;;;;;;;;38955:33;;;-1:-1:-1;;;;;39006:18:0;;;;;:12;:18;;;;;:34;;;;;;;38999:41;38060:988::o;39343:1079::-;39621:10;:17;39596:22;;39621:21;;39641:1;;39621:21;:::i;:::-;39653:18;39674:24;;;:15;:24;;;;;;40047:10;:26;;39596:46;;-1:-1:-1;39674:24:0;;39596:46;;40047:26;;;;-1:-1:-1;;;40047:26:0;;;;;;;;;;;;;;;;;40025:48;;40111:11;40086:10;40097;40086:22;;;;;;-1:-1:-1;;;40086:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40191:28;;;:15;:28;;;;;;;:41;;;40363:24;;;;;40356:31;40398:10;:16;;;;;-1:-1:-1;;;40398:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39343:1079;;;;:::o;36847:221::-;36932:14;36949:20;36966:2;36949:16;:20::i;:::-;-1:-1:-1;;;;;36980:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37025:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36847:221:0:o;28113:382::-;-1:-1:-1;;;;;28193:16:0;;28185:61;;;;-1:-1:-1;;;28185:61:0;;;;;;;:::i;:::-;28266:16;28274:7;28266;:16::i;:::-;28265:17;28257:58;;;;-1:-1:-1;;;28257:58:0;;;;;;;:::i;:::-;28328:45;28357:1;28361:2;28365:7;28328:20;:45::i;:::-;-1:-1:-1;;;;;28386:13:0;;;;;;:9;:13;;;;;:18;;28403:1;;28386:13;:18;;28403:1;;28386:18;:::i;:::-;;;;-1:-1:-1;;28415:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28415:21:0;-1:-1:-1;;;;;28415:21:0;;;;;;;;28454:33;;28415:16;;;28454:33;;28415:16;;28454:33;28113:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:233;;706:3;699:4;691:6;687:17;683:27;673:2;;728:5;721;714:20;673:2;754:81;831:3;822:6;809:20;802:4;794:6;790:17;754:81;:::i;846:198::-;;958:2;946:9;937:7;933:23;929:32;926:2;;;979:6;971;964:22;926:2;1007:31;1028:9;1007:31;:::i;1049:274::-;;;1178:2;1166:9;1157:7;1153:23;1149:32;1146:2;;;1199:6;1191;1184:22;1146:2;1227:31;1248:9;1227:31;:::i;:::-;1217:41;;1277:40;1313:2;1302:9;1298:18;1277:40;:::i;:::-;1267:50;;1136:187;;;;;:::o;1328:350::-;;;;1474:2;1462:9;1453:7;1449:23;1445:32;1442:2;;;1495:6;1487;1480:22;1442:2;1523:31;1544:9;1523:31;:::i;:::-;1513:41;;1573:40;1609:2;1598:9;1594:18;1573:40;:::i;:::-;1563:50;;1632:40;1668:2;1657:9;1653:18;1632:40;:::i;:::-;1622:50;;1432:246;;;;;:::o;1683:342::-;;;;1829:2;1817:9;1808:7;1804:23;1800:32;1797:2;;;1850:6;1842;1835:22;1797:2;1878:31;1899:9;1878:31;:::i;:::-;1868:41;;1928:40;1964:2;1953:9;1949:18;1928:40;:::i;:::-;1918:50;;2015:2;2004:9;2000:18;1987:32;1977:42;;1787:238;;;;;:::o;2030:702::-;;;;;2202:3;2190:9;2181:7;2177:23;2173:33;2170:2;;;2224:6;2216;2209:22;2170:2;2252:31;2273:9;2252:31;:::i;:::-;2242:41;;2302:40;2338:2;2327:9;2323:18;2302:40;:::i;:::-;2292:50;;2389:2;2378:9;2374:18;2361:32;2351:42;;2444:2;2433:9;2429:18;2416:32;2471:18;2463:6;2460:30;2457:2;;;2508:6;2500;2493:22;2457:2;2536:22;;2589:4;2581:13;;2577:27;-1:-1:-1;2567:2:1;;2623:6;2615;2608:22;2567:2;2651:75;2718:7;2713:2;2700:16;2695:2;2691;2687:11;2651:75;:::i;:::-;2641:85;;;2160:572;;;;;;;:::o;2737:369::-;;;2863:2;2851:9;2842:7;2838:23;2834:32;2831:2;;;2884:6;2876;2869:22;2831:2;2912:31;2933:9;2912:31;:::i;:::-;2902:41;;2993:2;2982:9;2978:18;2965:32;3040:5;3033:13;3026:21;3019:5;3016:32;3006:2;;3067:6;3059;3052:22;3006:2;3095:5;3085:15;;;2821:285;;;;;:::o;3111:266::-;;;3240:2;3228:9;3219:7;3215:23;3211:32;3208:2;;;3261:6;3253;3246:22;3208:2;3289:31;3310:9;3289:31;:::i;:::-;3279:41;3367:2;3352:18;;;;3339:32;;-1:-1:-1;;;3198:179:1:o;3382:488::-;;;;3538:2;3526:9;3517:7;3513:23;3509:32;3506:2;;;3559:6;3551;3544:22;3506:2;3587:31;3608:9;3587:31;:::i;:::-;3577:41;;3665:2;3654:9;3650:18;3637:32;3627:42;;3720:2;3709:9;3705:18;3692:32;3747:18;3739:6;3736:30;3733:2;;;3784:6;3776;3769:22;3733:2;3812:52;3856:7;3847:6;3836:9;3832:22;3812:52;:::i;:::-;3802:62;;;3496:374;;;;;:::o;3875:1080::-;;;4029:2;4017:9;4008:7;4004:23;4000:32;3997:2;;;4050:6;4042;4035:22;3997:2;4095:9;4082:23;4124:18;4165:2;4157:6;4154:14;4151:2;;;4186:6;4178;4171:22;4151:2;4229:6;4218:9;4214:22;4204:32;;4274:7;4267:4;4263:2;4259:13;4255:27;4245:2;;4301:6;4293;4286:22;4245:2;4342;4329:16;4364:4;4387:2;4383;4380:10;4377:2;;;4393:18;;:::i;:::-;4440:2;4436;4432:11;4422:21;;4463:27;4486:2;4482;4478:11;4463:27;:::i;:::-;4524:15;;;4555:12;;;;4587:11;;;4617;;;4613:20;;4610:33;-1:-1:-1;4607:2:1;;;4661:6;4653;4646:22;4607:2;4688:6;4679:15;;4703:171;4717:2;4714:1;4711:9;4703:171;;;4774:25;4795:3;4774:25;:::i;:::-;4762:38;;4735:1;4728:9;;;;;4820:12;;;;4852;;4703:171;;;-1:-1:-1;4893:5:1;4930:18;;;;4917:32;;-1:-1:-1;;;;;;;3987:968:1:o;4960:257::-;;5071:2;5059:9;5050:7;5046:23;5042:32;5039:2;;;5092:6;5084;5077:22;5039:2;5136:9;5123:23;5155:32;5181:5;5155:32;:::i;5222:261::-;;5344:2;5332:9;5323:7;5319:23;5315:32;5312:2;;;5365:6;5357;5350:22;5312:2;5402:9;5396:16;5421:32;5447:5;5421:32;:::i;5488:344::-;;5610:2;5598:9;5589:7;5585:23;5581:32;5578:2;;;5631:6;5623;5616:22;5578:2;5676:9;5663:23;5709:18;5701:6;5698:30;5695:2;;;5746:6;5738;5731:22;5695:2;5774:52;5818:7;5809:6;5798:9;5794:22;5774:52;:::i;5837:190::-;;5949:2;5937:9;5928:7;5924:23;5920:32;5917:2;;;5970:6;5962;5955:22;5917:2;-1:-1:-1;5998:23:1;;5907:120;-1:-1:-1;5907:120:1:o;6032:464::-;;;;;;6212:3;6200:9;6191:7;6187:23;6183:33;6180:2;;;6234:6;6226;6219:22;6180:2;-1:-1:-1;;6262:23:1;;;6332:2;6317:18;;6304:32;;-1:-1:-1;6383:2:1;6368:18;;6355:32;;6434:2;6419:18;;6406:32;;-1:-1:-1;6485:3:1;6470:19;6457:33;;-1:-1:-1;6170:326:1;-1:-1:-1;6170:326:1:o;6501:259::-;;6582:5;6576:12;6609:6;6604:3;6597:19;6625:63;6681:6;6674:4;6669:3;6665:14;6658:4;6651:5;6647:16;6625:63;:::i;:::-;6742:2;6721:15;-1:-1:-1;;6717:29:1;6708:39;;;;6749:4;6704:50;;6552:208;-1:-1:-1;;6552:208:1:o;6765:470::-;;6982:6;6976:13;6998:53;7044:6;7039:3;7032:4;7024:6;7020:17;6998:53;:::i;:::-;7114:13;;7073:16;;;;7136:57;7114:13;7073:16;7170:4;7158:17;;7136:57;:::i;:::-;7209:20;;6952:283;-1:-1:-1;;;;6952:283:1:o;7240:312::-;7425:19;;;7469:2;7460:12;;7453:28;;;;7506:2;7497:12;;7490:28;7543:2;7534:12;;7415:137::o;7557:203::-;-1:-1:-1;;;;;7721:32:1;;;;7703:51;;7691:2;7676:18;;7658:102::o;7765:490::-;-1:-1:-1;;;;;8034:15:1;;;8016:34;;8086:15;;8081:2;8066:18;;8059:43;8133:2;8118:18;;8111:34;;;8181:3;8176:2;8161:18;;8154:31;;;7765:490;;8202:47;;8229:19;;8221:6;8202:47;:::i;:::-;8194:55;7968:287;-1:-1:-1;;;;;;7968:287:1:o;8260:187::-;8425:14;;8418:22;8400:41;;8388:2;8373:18;;8355:92::o;8452:221::-;;8601:2;8590:9;8583:21;8621:46;8663:2;8652:9;8648:18;8640:6;8621:46;:::i;8678:401::-;8880:2;8862:21;;;8919:2;8899:18;;;8892:30;8958:34;8953:2;8938:18;;8931:62;-1:-1:-1;;;9024:2:1;9009:18;;9002:35;9069:3;9054:19;;8852:227::o;9084:344::-;9286:2;9268:21;;;9325:2;9305:18;;;9298:30;-1:-1:-1;;;9359:2:1;9344:18;;9337:50;9419:2;9404:18;;9258:170::o;9433:343::-;9635:2;9617:21;;;9674:2;9654:18;;;9647:30;-1:-1:-1;;;9708:2:1;9693:18;;9686:49;9767:2;9752:18;;9607:169::o;9781:407::-;9983:2;9965:21;;;10022:2;10002:18;;;9995:30;10061:34;10056:2;10041:18;;10034:62;-1:-1:-1;;;10127:2:1;10112:18;;10105:41;10178:3;10163:19;;9955:233::o;10193:414::-;10395:2;10377:21;;;10434:2;10414:18;;;10407:30;10473:34;10468:2;10453:18;;10446:62;-1:-1:-1;;;10539:2:1;10524:18;;10517:48;10597:3;10582:19;;10367:240::o;10612:402::-;10814:2;10796:21;;;10853:2;10833:18;;;10826:30;10892:34;10887:2;10872:18;;10865:62;-1:-1:-1;;;10958:2:1;10943:18;;10936:36;11004:3;10989:19;;10786:228::o;11019:352::-;11221:2;11203:21;;;11260:2;11240:18;;;11233:30;11299;11294:2;11279:18;;11272:58;11362:2;11347:18;;11193:178::o;11376:345::-;11578:2;11560:21;;;11617:2;11597:18;;;11590:30;-1:-1:-1;;;11651:2:1;11636:18;;11629:51;11712:2;11697:18;;11550:171::o;11726:403::-;11928:2;11910:21;;;11967:2;11947:18;;;11940:30;12006:34;12001:2;11986:18;;11979:62;-1:-1:-1;;;12072:2:1;12057:18;;12050:37;12119:3;12104:19;;11900:229::o;12134:356::-;12336:2;12318:21;;;12355:18;;;12348:30;12414:34;12409:2;12394:18;;12387:62;12481:2;12466:18;;12308:182::o;12495:347::-;12697:2;12679:21;;;12736:2;12716:18;;;12709:30;12775:25;12770:2;12755:18;;12748:53;12833:2;12818:18;;12669:173::o;12847:400::-;13049:2;13031:21;;;13088:2;13068:18;;;13061:30;13127:34;13122:2;13107:18;;13100:62;-1:-1:-1;;;13193:2:1;13178:18;;13171:34;13237:3;13222:19;;13021:226::o;13252:349::-;13454:2;13436:21;;;13493:2;13473:18;;;13466:30;13532:27;13527:2;13512:18;;13505:55;13592:2;13577:18;;13426:175::o;13606:408::-;13808:2;13790:21;;;13847:2;13827:18;;;13820:30;13886:34;13881:2;13866:18;;13859:62;-1:-1:-1;;;13952:2:1;13937:18;;13930:42;14004:3;13989:19;;13780:234::o;14019:340::-;14221:2;14203:21;;;14260:2;14240:18;;;14233:30;-1:-1:-1;;;14294:2:1;14279:18;;14272:46;14350:2;14335:18;;14193:166::o;14364:420::-;14566:2;14548:21;;;14605:2;14585:18;;;14578:30;14644:34;14639:2;14624:18;;14617:62;14715:26;14710:2;14695:18;;14688:54;14774:3;14759:19;;14538:246::o;14789:406::-;14991:2;14973:21;;;15030:2;15010:18;;;15003:30;15069:34;15064:2;15049:18;;15042:62;-1:-1:-1;;;15135:2:1;15120:18;;15113:40;15185:3;15170:19;;14963:232::o;15200:405::-;15402:2;15384:21;;;15441:2;15421:18;;;15414:30;15480:34;15475:2;15460:18;;15453:62;-1:-1:-1;;;15546:2:1;15531:18;;15524:39;15595:3;15580:19;;15374:231::o;15610:410::-;15812:2;15794:21;;;15851:2;15831:18;;;15824:30;15890:34;15885:2;15870:18;;15863:62;-1:-1:-1;;;15956:2:1;15941:18;;15934:44;16010:3;15995:19;;15784:236::o;16025:399::-;16227:2;16209:21;;;16266:2;16246:18;;;16239:30;16305:34;16300:2;16285:18;;16278:62;-1:-1:-1;;;16371:2:1;16356:18;;16349:33;16414:3;16399:19;;16199:225::o;16429:356::-;16631:2;16613:21;;;16650:18;;;16643:30;16709:34;16704:2;16689:18;;16682:62;16776:2;16761:18;;16603:182::o;16790:413::-;16992:2;16974:21;;;17031:2;17011:18;;;17004:30;17070:34;17065:2;17050:18;;17043:62;-1:-1:-1;;;17136:2:1;17121:18;;17114:47;17193:3;17178:19;;16964:239::o;17208:344::-;17410:2;17392:21;;;17449:2;17429:18;;;17422:30;-1:-1:-1;;;17483:2:1;17468:18;;17461:50;17543:2;17528:18;;17382:170::o;17557:408::-;17759:2;17741:21;;;17798:2;17778:18;;;17771:30;17837:34;17832:2;17817:18;;17810:62;-1:-1:-1;;;17903:2:1;17888:18;;17881:42;17955:3;17940:19;;17731:234::o;17970:407::-;18172:2;18154:21;;;18211:2;18191:18;;;18184:30;18250:34;18245:2;18230:18;;18223:62;-1:-1:-1;;;18316:2:1;18301:18;;18294:41;18367:3;18352:19;;18144:233::o;18382:356::-;18584:2;18566:21;;;18603:18;;;18596:30;18662:34;18657:2;18642:18;;18635:62;18729:2;18714:18;;18556:182::o;18743:405::-;18945:2;18927:21;;;18984:2;18964:18;;;18957:30;19023:34;19018:2;19003:18;;18996:62;-1:-1:-1;;;19089:2:1;19074:18;;19067:39;19138:3;19123:19;;18917:231::o;19153:411::-;19355:2;19337:21;;;19394:2;19374:18;;;19367:30;19433:34;19428:2;19413:18;;19406:62;-1:-1:-1;;;19499:2:1;19484:18;;19477:45;19554:3;19539:19;;19327:237::o;19569:407::-;19771:2;19753:21;;;19810:2;19790:18;;;19783:30;19849:34;19844:2;19829:18;;19822:62;-1:-1:-1;;;19915:2:1;19900:18;;19893:41;19966:3;19951:19;;19743:233::o;19981:397::-;20183:2;20165:21;;;20222:2;20202:18;;;20195:30;20261:34;20256:2;20241:18;;20234:62;-1:-1:-1;;;20327:2:1;20312:18;;20305:31;20368:3;20353:19;;20155:223::o;20383:343::-;20585:2;20567:21;;;20624:2;20604:18;;;20597:30;-1:-1:-1;;;20658:2:1;20643:18;;20636:49;20717:2;20702:18;;20557:169::o;20731:354::-;20933:2;20915:21;;;20972:2;20952:18;;;20945:30;21011:32;21006:2;20991:18;;20984:60;21076:2;21061:18;;20905:180::o;21090:413::-;21292:2;21274:21;;;21331:2;21311:18;;;21304:30;21370:34;21365:2;21350:18;;21343:62;-1:-1:-1;;;21436:2:1;21421:18;;21414:47;21493:3;21478:19;;21264:239::o;21508:408::-;21710:2;21692:21;;;21749:2;21729:18;;;21722:30;21788:34;21783:2;21768:18;;21761:62;-1:-1:-1;;;21854:2:1;21839:18;;21832:42;21906:3;21891:19;;21682:234::o;21921:342::-;22123:2;22105:21;;;22162:2;22142:18;;;22135:30;-1:-1:-1;;;22196:2:1;22181:18;;22174:48;22254:2;22239:18;;22095:168::o;22268:412::-;22470:2;22452:21;;;22509:2;22489:18;;;22482:30;22548:34;22543:2;22528:18;;22521:62;-1:-1:-1;;;22614:2:1;22599:18;;22592:46;22670:3;22655:19;;22442:238::o;22685:177::-;22831:25;;;22819:2;22804:18;;22786:76::o;22867:251::-;22937:2;22931:9;22967:17;;;23014:18;22999:34;;23035:22;;;22996:62;22993:2;;;23061:18;;:::i;:::-;23097:2;23090:22;22911:207;;-1:-1:-1;22911:207:1:o;23123:128::-;;23194:1;23190:6;23187:1;23184:13;23181:2;;;23200:18;;:::i;:::-;-1:-1:-1;23236:9:1;;23171:80::o;23256:120::-;;23322:1;23312:2;;23327:18;;:::i;:::-;-1:-1:-1;23361:9:1;;23302:74::o;23381:168::-;;23487:1;23483;23479:6;23475:14;23472:1;23469:21;23464:1;23457:9;23450:17;23446:45;23443:2;;;23494:18;;:::i;:::-;-1:-1:-1;23534:9:1;;23433:116::o;23554:125::-;;23622:1;23619;23616:8;23613:2;;;23627:18;;:::i;:::-;-1:-1:-1;23664:9:1;;23603:76::o;23684:258::-;23756:1;23766:113;23780:6;23777:1;23774:13;23766:113;;;23856:11;;;23850:18;23837:11;;;23830:39;23802:2;23795:10;23766:113;;;23897:6;23894:1;23891:13;23888:2;;;-1:-1:-1;;23932:1:1;23914:16;;23907:27;23737:205::o;23947:380::-;24032:1;24022:12;;24079:1;24069:12;;;24090:2;;24144:4;24136:6;24132:17;24122:27;;24090:2;24197;24189:6;24186:14;24166:18;24163:38;24160:2;;;24243:10;24238:3;24234:20;24231:1;24224:31;24278:4;24275:1;24268:15;24306:4;24303:1;24296:15;24160:2;;24002:325;;;:::o;24332:135::-;;-1:-1:-1;;24392:17:1;;24389:2;;;24412:18;;:::i;:::-;-1:-1:-1;24459:1:1;24448:13;;24379:88::o;24472:112::-;;24530:1;24520:2;;24535:18;;:::i;:::-;-1:-1:-1;24569:9:1;;24510:74::o;24589:127::-;24650:10;24645:3;24641:20;24638:1;24631:31;24681:4;24678:1;24671:15;24705:4;24702:1;24695:15;24721:127;24782:10;24777:3;24773:20;24770:1;24763:31;24813:4;24810:1;24803:15;24837:4;24834:1;24827:15;24853:127;24914:10;24909:3;24905:20;24902:1;24895:31;24945:4;24942:1;24935:15;24969:4;24966:1;24959:15;24985:133;-1:-1:-1;;;;;;25061:32:1;;25051:43;;25041:2;;25108:1;25105;25098:12

Swarm Source

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