ETH Price: $2,878.99 (-5.65%)
Gas: 2 Gwei

Token

Coalition Crew (CC)
 

Overview

Max Total Supply

1,010 CC

Holders

495

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdelta.eth
Balance
3 CC
0x9ceb581fa80de113d1afd7560d7270c08be84e46
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PHASE 1 SOLD OUT (Only 1010 avail). PHASE 2 BEGINS JAN 26. Welcome to the Coalition Crew! An NFT project with a mission + real world utility.  Our holders will get exclusive access to Peter Voogd’s Forbes featured Game Changers Academy (GameChangersMovement.com) which is the W...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoalitionCrew

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @dev 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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity ^0.8.0;


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}pragma solidity ^0.8.0;


contract CoalitionCrew is Ownable, ERC721 {
    uint constant phase2_tokenPrice = 0.11 ether;
    uint constant phase1_tokenPrice = 0.09 ether;
    uint constant presale_tokenPrice = 0.08 ether;
    uint public maxSupply = 7080;
    
    uint public totalSupply = 0;

    uint public first_phase_limit = 1000;

    uint public phase2_startTime = 1643220000;    
    uint public phase1_startTime = 1638813600;
    uint public presale_startTime = 1638640800;                  //1638640800;
    bool public pause_sale = false;

    string public baseURI = "https://www.ccrewnft.com/api/nft/";
    mapping(address => uint) private presaleList;
    mapping(address => uint) private phase1_List;
    mapping(address => uint) public mint_Count;

    constructor() ERC721("Coalition Crew", "CC"){}

   function buy_phase1(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 3, "Max 3 Nfts Per Transaction Allowed.");
        require(totalSupply + _count <= first_phase_limit, "Not enough tokens left");
        require(msg.value == phase1_tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= phase1_startTime,"Sale not Started Yet.");
        require(pause_sale == false, "Sale is Paused.");
        require(mint_Count[msg.sender] + _count <= 3, "Max 3 Nft Per Wallet Allowed.");
        require(check_phase1_List() == 1, "You are not whitelisted.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
            mint_Count[msg.sender] += _count;
    }
   function buy_phase2(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 3, "Max 3 Nfts Per Transaction Allowed.");
        // require(totalSupply + _count <= first_phase_limit, "Not enough tokens left");
        require(msg.value == phase2_tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= phase2_startTime,"Sale not Started Yet.");
        require(pause_sale == false, "Sale is Paused.");
        require(mint_Count[msg.sender] + _count <= 3, "Max 3 Nft Per Wallet Allowed.");
        
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
            mint_Count[msg.sender] += _count;
    }
   function buy_Presale(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 3, "Max 3 Nfts Per Transaction Allowed.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == presale_tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Presale have not started yet.");
        require(block.timestamp < phase1_startTime,"Presale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(checkPresale() == 1, "You are not whitelisted.");
        require(mint_Count[msg.sender] + _count <= 3, "Max 3 Nft Per Wallet Allowed.");
        
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
            mint_Count[msg.sender] += _count;
    }
    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }

    function addPresaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = 1;
    }
    function addphase1_List(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            phase1_List[_wallets[i]] = 1;
    }
    function check_phase1_List() public view returns(uint){
        return phase1_List[msg.sender];
    }    
    function checkPresale() public view returns(uint){
        return presaleList[msg.sender];
    }
    
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function setPauseSale(bool temp) external onlyOwner {
        pause_sale = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function set_presale_startTime(uint time) external onlyOwner{
        presale_startTime = time;
    }
    function set_phase1_startTime(uint time) external onlyOwner{
        phase1_startTime = time;
    }
    function set_phase2_startTime(uint time) external onlyOwner{
        phase2_startTime = time;
    }
    function set_first_phase_limit(uint _limit) external onlyOwner{
        first_phase_limit = _limit;
    }
    function set_max_supply(uint _limit) external onlyOwner{
        maxSupply = _limit;
    }
    
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addphase1_List","outputs":[],"stateMutability":"nonpayable","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":"_count","type":"uint256"}],"name":"buy_Presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_phase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_phase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"checkPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"check_phase1_List","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"first_phase_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mint_Count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase1_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"set_first_phase_limit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"set_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_phase1_startTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_phase2_startTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_presale_startTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

611ba860075560006008556103e86009556361f18c20600a556361ae4fa0600b556361abaca0600c55600d805460ff1916905560e06040526021608081815290620029c660a03980516200005c91600e916020909101906200014f565b503480156200006a57600080fd5b506040518060400160405280600e81526020016d436f616c6974696f6e204372657760901b81525060405180604001604052806002815260200161434360f01b815250620000c7620000c1620000fb60201b60201c565b620000ff565b8151620000dc9060019060208501906200014f565b508051620000f29060029060208401906200014f565b50505062000232565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b61278480620002426000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063c5c873b71161007a578063c5c873b71461066a578063c87b56dd1461068a578063d5abeb01146106aa578063e985e9c5146106c0578063ebb3151014610709578063f2fde38b1461072957600080fd5b8063a22cb465146105da578063aa29e23f146105fa578063add0980c1461061a578063b88d4fde14610630578063c1580cb31461065057600080fd5b80638aa328a2116100fd5780638aa328a2146105545780638da5cb5b1461056757806395d89b41146105855780639fc105ec1461059a578063a0bcfc7f146105ba57600080fd5b806370a08231146104cc578063715018a6146104ec5780637c8255db14610501578063869dab47146105215780638a938f2f1461053457600080fd5b80633ccfd60b116101c7578063533d80e71161018b578063533d80e71461044e57806354e1e26c146104645780636352211e146104775780636c0360eb146104975780636d11a834146104ac57600080fd5b80633ccfd60b146103b657806342842e0e146103cb57806348b625cb146103eb5780634b4baa1714610401578063501da5eb1461042e57600080fd5b8063095ea7b31161020e578063095ea7b31461032857806318160ddd146103485780632228e8171461035e57806323b872dd146103745780632c73c7d71461039457600080fd5b806301ffc9a71461024b578063026896631461028057806306ccde4c146102ac57806306fdde03146102ce578063081812fc146102f0575b600080fd5b34801561025757600080fd5b5061026b61026636600461228e565b610749565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50336000908152600f60205260409020545b604051908152602001610277565b3480156102b857600080fd5b506102cc6102c73660046121bf565b61079b565b005b3480156102da57600080fd5b506102e3610835565b60405161027791906123c2565b3480156102fc57600080fd5b5061031061030b366004612311565b6108c7565b6040516001600160a01b039091168152602001610277565b34801561033457600080fd5b506102cc610343366004612195565b61095c565b34801561035457600080fd5b5061029e60085481565b34801561036a57600080fd5b5061029e600b5481565b34801561038057600080fd5b506102cc61038f3660046120b3565b610a72565b3480156103a057600080fd5b503360009081526010602052604090205461029e565b3480156103c257600080fd5b506102cc610aa3565b3480156103d757600080fd5b506102cc6103e63660046120b3565b610b0a565b3480156103f757600080fd5b5061029e600a5481565b34801561040d57600080fd5b5061029e61041c366004612065565b60116020526000908152604090205481565b34801561043a57600080fd5b506102cc610449366004612311565b610b25565b34801561045a57600080fd5b5061029e600c5481565b6102cc610472366004612311565b610b54565b34801561048357600080fd5b50610310610492366004612311565b610d9f565b3480156104a357600080fd5b506102e3610e16565b3480156104b857600080fd5b506102cc6104c7366004612311565b610ea4565b3480156104d857600080fd5b5061029e6104e7366004612065565b610ed3565b3480156104f857600080fd5b506102cc610f5a565b34801561050d57600080fd5b506102cc61051c3660046121bf565b610f90565b6102cc61052f366004612311565b611072565b34801561054057600080fd5b506102cc61054f366004612311565b6111bd565b6102cc610562366004612311565b6111ec565b34801561057357600080fd5b506000546001600160a01b0316610310565b34801561059157600080fd5b506102e3611433565b3480156105a657600080fd5b506102cc6105b5366004612311565b611442565b3480156105c657600080fd5b506102cc6105d53660046122c8565b611471565b3480156105e657600080fd5b506102cc6105f536600461216b565b6114ae565b34801561060657600080fd5b506102cc610615366004612273565b611573565b34801561062657600080fd5b5061029e60095481565b34801561063c57600080fd5b506102cc61064b3660046120ef565b6115b0565b34801561065c57600080fd5b50600d5461026b9060ff1681565b34801561067657600080fd5b506102cc610685366004612311565b6115e8565b34801561069657600080fd5b506102e36106a5366004612311565b611617565b3480156106b657600080fd5b5061029e60075481565b3480156106cc57600080fd5b5061026b6106db366004612080565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561071557600080fd5b506102cc6107243660046121bf565b6116f2565b34801561073557600080fd5b506102cc610744366004612065565b61177f565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146107ce5760405162461bcd60e51b81526004016107c590612457565b60405180910390fd5b60005b8151811015610831576001601060008484815181106107f2576107f261270c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610829906126b1565b9150506107d1565b5050565b60606001805461084490612676565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612676565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b506000908152600560205260409020546001600160a01b031690565b600061096782610d9f565b9050806001600160a01b0316836001600160a01b031614156109d55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b03821614806109f157506109f181336106db565b610a635760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b610a6d8383611817565b505050565b610a7c3382611885565b610a985760405162461bcd60e51b81526004016107c5906124cf565b610a6d83838361197c565b6000546001600160a01b03163314610acd5760405162461bcd60e51b81526004016107c590612457565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b07573d6000803e3d6000fd5b50565b610a6d838383604051806020016040528060008152506115b0565b6000546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016107c590612457565b600c55565b60008111610b745760405162461bcd60e51b81526004016107c590612520565b6003811115610b955760405162461bcd60e51b81526004016107c59061248c565b60095481600854610ba691906125e8565b1115610bed5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b610bff8167013fbe85edc90000612614565b3414610c1d5760405162461bcd60e51b81526004016107c590612427565b600b54421015610c675760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016107c5565b600d5460ff1615610c8a5760405162461bcd60e51b81526004016107c59061258e565b33600090815260116020526040902054600390610ca89083906125e8565b1115610cc65760405162461bcd60e51b81526004016107c590612557565b33600090815260106020526040902054600114610d205760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b60448201526064016107c5565b60005b81811015610d6057610d4e33826008546001610d3f91906125e8565b610d4991906125e8565b611b1c565b80610d58816126b1565b915050610d23565b508060086000828254610d7391906125e8565b90915550503360009081526011602052604081208054839290610d979084906125e8565b909155505050565b6000818152600360205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b600e8054610e2390612676565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90612676565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b6000546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107c590612457565b600955565b60006001600160a01b038216610f3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f845760405162461bcd60e51b81526004016107c590612457565b610f8e6000611b36565b565b6000546001600160a01b03163314610fba5760405162461bcd60e51b81526004016107c590612457565b6007548151600854610fcc91906125e8565b11156110135760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b60005b815181101561105e5761104c8282815181106110345761103461270c565b6020026020010151826008546001610d3f91906125e8565b80611056816126b1565b915050611016565b50805160086000828254610d9791906125e8565b600081116110925760405162461bcd60e51b81526004016107c590612520565b60038111156110b35760405162461bcd60e51b81526004016107c59061248c565b6110c581670186cc6acd4b0000612614565b34146110e35760405162461bcd60e51b81526004016107c590612427565b600a5442101561112d5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016107c5565b600d5460ff16156111505760405162461bcd60e51b81526004016107c59061258e565b3360009081526011602052604090205460039061116e9083906125e8565b111561118c5760405162461bcd60e51b81526004016107c590612557565b60005b81811015610d60576111ab33826008546001610d3f91906125e8565b806111b5816126b1565b91505061118f565b6000546001600160a01b031633146111e75760405162461bcd60e51b81526004016107c590612457565b600755565b6000811161120c5760405162461bcd60e51b81526004016107c590612520565b600381111561122d5760405162461bcd60e51b81526004016107c59061248c565b6007548160085461123e91906125e8565b11156112855760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b6112978167011c37937e080000612614565b34146112b55760405162461bcd60e51b81526004016107c590612427565b600c544210156113075760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e00000060448201526064016107c5565b600b5442106113495760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b60448201526064016107c5565b600d5460ff161561136c5760405162461bcd60e51b81526004016107c59061258e565b336000908152600f60205260409020546001146113c65760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b60448201526064016107c5565b336000908152601160205260409020546003906113e49083906125e8565b11156114025760405162461bcd60e51b81526004016107c590612557565b60005b81811015610d605761142133826008546001610d3f91906125e8565b8061142b816126b1565b915050611405565b60606002805461084490612676565b6000546001600160a01b0316331461146c5760405162461bcd60e51b81526004016107c590612457565b600a55565b6000546001600160a01b0316331461149b5760405162461bcd60e51b81526004016107c590612457565b805161083190600e906020840190611f48565b6001600160a01b0382163314156115075760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461159d5760405162461bcd60e51b81526004016107c590612457565b600d805460ff1916911515919091179055565b6115ba3383611885565b6115d65760405162461bcd60e51b81526004016107c5906124cf565b6115e284848484611b86565b50505050565b6000546001600160a01b031633146116125760405162461bcd60e51b81526004016107c590612457565b600b55565b6000818152600360205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b60006116a0611bb9565b905060008151116116c057604051806020016040528060008152506116eb565b806116ca84611bc8565b6040516020016116db929190612356565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461171c5760405162461bcd60e51b81526004016107c590612457565b60005b8151811015610831576001600f60008484815181106117405761174061270c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611777906126b1565b91505061171f565b6000546001600160a01b031633146117a95760405162461bcd60e51b81526004016107c590612457565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b610b0781611b36565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061184c82610d9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166118fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061190983610d9f565b9050806001600160a01b0316846001600160a01b031614806119445750836001600160a01b0316611939846108c7565b6001600160a01b0316145b8061197457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661198f82610d9f565b6001600160a01b0316146119f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b038216611a595760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b611a64600082611817565b6001600160a01b0383166000908152600460205260408120805460019290611a8d908490612633565b90915550506001600160a01b0382166000908152600460205260408120805460019290611abb9084906125e8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610831828260405180602001604052806000815250611cc6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611b9184848461197c565b611b9d84848484611cf9565b6115e25760405162461bcd60e51b81526004016107c5906123d5565b6060600e805461084490612676565b606081611bec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c165780611c00816126b1565b9150611c0f9050600a83612600565b9150611bf0565b60008167ffffffffffffffff811115611c3157611c31612722565b6040519080825280601f01601f191660200182016040528015611c5b576020820181803683370190505b5090505b841561197457611c70600183612633565b9150611c7d600a866126cc565b611c889060306125e8565b60f81b818381518110611c9d57611c9d61270c565b60200101906001600160f81b031916908160001a905350611cbf600a86612600565b9450611c5f565b611cd08383611e06565b611cdd6000848484611cf9565b610a6d5760405162461bcd60e51b81526004016107c5906123d5565b60006001600160a01b0384163b15611dfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d3d903390899088908890600401612385565b602060405180830381600087803b158015611d5757600080fd5b505af1925050508015611d87575060408051601f3d908101601f19168201909252611d84918101906122ab565b60015b611de1573d808015611db5576040519150601f19603f3d011682016040523d82523d6000602084013e611dba565b606091505b508051611dd95760405162461bcd60e51b81526004016107c5906123d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611974565b506001949350505050565b6001600160a01b038216611e5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600360205260409020546001600160a01b031615611ec15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b6001600160a01b0382166000908152600460205260408120805460019290611eea9084906125e8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f5490612676565b90600052602060002090601f016020900481019282611f765760008555611fbc565b82601f10611f8f57805160ff1916838001178555611fbc565b82800160010185558215611fbc579182015b82811115611fbc578251825591602001919060010190611fa1565b50611fc8929150611fcc565b5090565b5b80821115611fc85760008155600101611fcd565b600067ffffffffffffffff831115611ffb57611ffb612722565b61200e601f8401601f19166020016125b7565b905082815283838301111561202257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461205057600080fd5b919050565b8035801515811461205057600080fd5b60006020828403121561207757600080fd5b6116eb82612039565b6000806040838503121561209357600080fd5b61209c83612039565b91506120aa60208401612039565b90509250929050565b6000806000606084860312156120c857600080fd5b6120d184612039565b92506120df60208501612039565b9150604084013590509250925092565b6000806000806080858703121561210557600080fd5b61210e85612039565b935061211c60208601612039565b925060408501359150606085013567ffffffffffffffff81111561213f57600080fd5b8501601f8101871361215057600080fd5b61215f87823560208401611fe1565b91505092959194509250565b6000806040838503121561217e57600080fd5b61218783612039565b91506120aa60208401612055565b600080604083850312156121a857600080fd5b6121b183612039565b946020939093013593505050565b600060208083850312156121d257600080fd5b823567ffffffffffffffff808211156121ea57600080fd5b818501915085601f8301126121fe57600080fd5b81358181111561221057612210612722565b8060051b91506122218483016125b7565b8181528481019084860184860187018a101561223c57600080fd5b600095505b838610156122665761225281612039565b835260019590950194918601918601612241565b5098975050505050505050565b60006020828403121561228557600080fd5b6116eb82612055565b6000602082840312156122a057600080fd5b81356116eb81612738565b6000602082840312156122bd57600080fd5b81516116eb81612738565b6000602082840312156122da57600080fd5b813567ffffffffffffffff8111156122f157600080fd5b8201601f8101841361230257600080fd5b61197484823560208401611fe1565b60006020828403121561232357600080fd5b5035919050565b6000815180845261234281602086016020860161264a565b601f01601f19169290920160200192915050565b6000835161236881846020880161264a565b83519083019061237c81836020880161264a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b89083018461232a565b9695505050505050565b6020815260006116eb602083018461232a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f4d61782033204e66747320506572205472616e73616374696f6e20416c6c6f7760408201526232b21760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b6020808252601d908201527f4d61782033204e6674205065722057616c6c657420416c6c6f7765642e000000604082015260600190565b6020808252600f908201526e29b0b6329034b9902830bab9b2b21760891b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156125e0576125e0612722565b604052919050565b600082198211156125fb576125fb6126e0565b500190565b60008261260f5761260f6126f6565b500490565b600081600019048311821515161561262e5761262e6126e0565b500290565b600082821015612645576126456126e0565b500390565b60005b8381101561266557818101518382015260200161264d565b838111156115e25750506000910152565b600181811c9082168061268a57607f821691505b602082108114156126ab57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126c5576126c56126e0565b5060010190565b6000826126db576126db6126f6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0757600080fdfea2646970667358221220cd75f2b24ba4df97a9f8e86dd1338eb11171136878dcd55a6363260d602d5e4464736f6c6343000807003368747470733a2f2f7777772e63637265776e66742e636f6d2f6170692f6e66742f

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063c5c873b71161007a578063c5c873b71461066a578063c87b56dd1461068a578063d5abeb01146106aa578063e985e9c5146106c0578063ebb3151014610709578063f2fde38b1461072957600080fd5b8063a22cb465146105da578063aa29e23f146105fa578063add0980c1461061a578063b88d4fde14610630578063c1580cb31461065057600080fd5b80638aa328a2116100fd5780638aa328a2146105545780638da5cb5b1461056757806395d89b41146105855780639fc105ec1461059a578063a0bcfc7f146105ba57600080fd5b806370a08231146104cc578063715018a6146104ec5780637c8255db14610501578063869dab47146105215780638a938f2f1461053457600080fd5b80633ccfd60b116101c7578063533d80e71161018b578063533d80e71461044e57806354e1e26c146104645780636352211e146104775780636c0360eb146104975780636d11a834146104ac57600080fd5b80633ccfd60b146103b657806342842e0e146103cb57806348b625cb146103eb5780634b4baa1714610401578063501da5eb1461042e57600080fd5b8063095ea7b31161020e578063095ea7b31461032857806318160ddd146103485780632228e8171461035e57806323b872dd146103745780632c73c7d71461039457600080fd5b806301ffc9a71461024b578063026896631461028057806306ccde4c146102ac57806306fdde03146102ce578063081812fc146102f0575b600080fd5b34801561025757600080fd5b5061026b61026636600461228e565b610749565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50336000908152600f60205260409020545b604051908152602001610277565b3480156102b857600080fd5b506102cc6102c73660046121bf565b61079b565b005b3480156102da57600080fd5b506102e3610835565b60405161027791906123c2565b3480156102fc57600080fd5b5061031061030b366004612311565b6108c7565b6040516001600160a01b039091168152602001610277565b34801561033457600080fd5b506102cc610343366004612195565b61095c565b34801561035457600080fd5b5061029e60085481565b34801561036a57600080fd5b5061029e600b5481565b34801561038057600080fd5b506102cc61038f3660046120b3565b610a72565b3480156103a057600080fd5b503360009081526010602052604090205461029e565b3480156103c257600080fd5b506102cc610aa3565b3480156103d757600080fd5b506102cc6103e63660046120b3565b610b0a565b3480156103f757600080fd5b5061029e600a5481565b34801561040d57600080fd5b5061029e61041c366004612065565b60116020526000908152604090205481565b34801561043a57600080fd5b506102cc610449366004612311565b610b25565b34801561045a57600080fd5b5061029e600c5481565b6102cc610472366004612311565b610b54565b34801561048357600080fd5b50610310610492366004612311565b610d9f565b3480156104a357600080fd5b506102e3610e16565b3480156104b857600080fd5b506102cc6104c7366004612311565b610ea4565b3480156104d857600080fd5b5061029e6104e7366004612065565b610ed3565b3480156104f857600080fd5b506102cc610f5a565b34801561050d57600080fd5b506102cc61051c3660046121bf565b610f90565b6102cc61052f366004612311565b611072565b34801561054057600080fd5b506102cc61054f366004612311565b6111bd565b6102cc610562366004612311565b6111ec565b34801561057357600080fd5b506000546001600160a01b0316610310565b34801561059157600080fd5b506102e3611433565b3480156105a657600080fd5b506102cc6105b5366004612311565b611442565b3480156105c657600080fd5b506102cc6105d53660046122c8565b611471565b3480156105e657600080fd5b506102cc6105f536600461216b565b6114ae565b34801561060657600080fd5b506102cc610615366004612273565b611573565b34801561062657600080fd5b5061029e60095481565b34801561063c57600080fd5b506102cc61064b3660046120ef565b6115b0565b34801561065c57600080fd5b50600d5461026b9060ff1681565b34801561067657600080fd5b506102cc610685366004612311565b6115e8565b34801561069657600080fd5b506102e36106a5366004612311565b611617565b3480156106b657600080fd5b5061029e60075481565b3480156106cc57600080fd5b5061026b6106db366004612080565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561071557600080fd5b506102cc6107243660046121bf565b6116f2565b34801561073557600080fd5b506102cc610744366004612065565b61177f565b60006001600160e01b031982166380ac58cd60e01b148061077a57506001600160e01b03198216635b5e139f60e01b145b8061079557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146107ce5760405162461bcd60e51b81526004016107c590612457565b60405180910390fd5b60005b8151811015610831576001601060008484815181106107f2576107f261270c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610829906126b1565b9150506107d1565b5050565b60606001805461084490612676565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612676565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b506000908152600560205260409020546001600160a01b031690565b600061096782610d9f565b9050806001600160a01b0316836001600160a01b031614156109d55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b03821614806109f157506109f181336106db565b610a635760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b610a6d8383611817565b505050565b610a7c3382611885565b610a985760405162461bcd60e51b81526004016107c5906124cf565b610a6d83838361197c565b6000546001600160a01b03163314610acd5760405162461bcd60e51b81526004016107c590612457565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b07573d6000803e3d6000fd5b50565b610a6d838383604051806020016040528060008152506115b0565b6000546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016107c590612457565b600c55565b60008111610b745760405162461bcd60e51b81526004016107c590612520565b6003811115610b955760405162461bcd60e51b81526004016107c59061248c565b60095481600854610ba691906125e8565b1115610bed5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b610bff8167013fbe85edc90000612614565b3414610c1d5760405162461bcd60e51b81526004016107c590612427565b600b54421015610c675760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016107c5565b600d5460ff1615610c8a5760405162461bcd60e51b81526004016107c59061258e565b33600090815260116020526040902054600390610ca89083906125e8565b1115610cc65760405162461bcd60e51b81526004016107c590612557565b33600090815260106020526040902054600114610d205760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b60448201526064016107c5565b60005b81811015610d6057610d4e33826008546001610d3f91906125e8565b610d4991906125e8565b611b1c565b80610d58816126b1565b915050610d23565b508060086000828254610d7391906125e8565b90915550503360009081526011602052604081208054839290610d979084906125e8565b909155505050565b6000818152600360205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b600e8054610e2390612676565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90612676565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b6000546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107c590612457565b600955565b60006001600160a01b038216610f3e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610f845760405162461bcd60e51b81526004016107c590612457565b610f8e6000611b36565b565b6000546001600160a01b03163314610fba5760405162461bcd60e51b81526004016107c590612457565b6007548151600854610fcc91906125e8565b11156110135760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b60005b815181101561105e5761104c8282815181106110345761103461270c565b6020026020010151826008546001610d3f91906125e8565b80611056816126b1565b915050611016565b50805160086000828254610d9791906125e8565b600081116110925760405162461bcd60e51b81526004016107c590612520565b60038111156110b35760405162461bcd60e51b81526004016107c59061248c565b6110c581670186cc6acd4b0000612614565b34146110e35760405162461bcd60e51b81526004016107c590612427565b600a5442101561112d5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016107c5565b600d5460ff16156111505760405162461bcd60e51b81526004016107c59061258e565b3360009081526011602052604090205460039061116e9083906125e8565b111561118c5760405162461bcd60e51b81526004016107c590612557565b60005b81811015610d60576111ab33826008546001610d3f91906125e8565b806111b5816126b1565b91505061118f565b6000546001600160a01b031633146111e75760405162461bcd60e51b81526004016107c590612457565b600755565b6000811161120c5760405162461bcd60e51b81526004016107c590612520565b600381111561122d5760405162461bcd60e51b81526004016107c59061248c565b6007548160085461123e91906125e8565b11156112855760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107c5565b6112978167011c37937e080000612614565b34146112b55760405162461bcd60e51b81526004016107c590612427565b600c544210156113075760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e00000060448201526064016107c5565b600b5442106113495760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b60448201526064016107c5565b600d5460ff161561136c5760405162461bcd60e51b81526004016107c59061258e565b336000908152600f60205260409020546001146113c65760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b60448201526064016107c5565b336000908152601160205260409020546003906113e49083906125e8565b11156114025760405162461bcd60e51b81526004016107c590612557565b60005b81811015610d605761142133826008546001610d3f91906125e8565b8061142b816126b1565b915050611405565b60606002805461084490612676565b6000546001600160a01b0316331461146c5760405162461bcd60e51b81526004016107c590612457565b600a55565b6000546001600160a01b0316331461149b5760405162461bcd60e51b81526004016107c590612457565b805161083190600e906020840190611f48565b6001600160a01b0382163314156115075760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461159d5760405162461bcd60e51b81526004016107c590612457565b600d805460ff1916911515919091179055565b6115ba3383611885565b6115d65760405162461bcd60e51b81526004016107c5906124cf565b6115e284848484611b86565b50505050565b6000546001600160a01b031633146116125760405162461bcd60e51b81526004016107c590612457565b600b55565b6000818152600360205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b60006116a0611bb9565b905060008151116116c057604051806020016040528060008152506116eb565b806116ca84611bc8565b6040516020016116db929190612356565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461171c5760405162461bcd60e51b81526004016107c590612457565b60005b8151811015610831576001600f60008484815181106117405761174061270c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611777906126b1565b91505061171f565b6000546001600160a01b031633146117a95760405162461bcd60e51b81526004016107c590612457565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b610b0781611b36565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061184c82610d9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166118fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061190983610d9f565b9050806001600160a01b0316846001600160a01b031614806119445750836001600160a01b0316611939846108c7565b6001600160a01b0316145b8061197457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661198f82610d9f565b6001600160a01b0316146119f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b038216611a595760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b611a64600082611817565b6001600160a01b0383166000908152600460205260408120805460019290611a8d908490612633565b90915550506001600160a01b0382166000908152600460205260408120805460019290611abb9084906125e8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610831828260405180602001604052806000815250611cc6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611b9184848461197c565b611b9d84848484611cf9565b6115e25760405162461bcd60e51b81526004016107c5906123d5565b6060600e805461084490612676565b606081611bec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c165780611c00816126b1565b9150611c0f9050600a83612600565b9150611bf0565b60008167ffffffffffffffff811115611c3157611c31612722565b6040519080825280601f01601f191660200182016040528015611c5b576020820181803683370190505b5090505b841561197457611c70600183612633565b9150611c7d600a866126cc565b611c889060306125e8565b60f81b818381518110611c9d57611c9d61270c565b60200101906001600160f81b031916908160001a905350611cbf600a86612600565b9450611c5f565b611cd08383611e06565b611cdd6000848484611cf9565b610a6d5760405162461bcd60e51b81526004016107c5906123d5565b60006001600160a01b0384163b15611dfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d3d903390899088908890600401612385565b602060405180830381600087803b158015611d5757600080fd5b505af1925050508015611d87575060408051601f3d908101601f19168201909252611d84918101906122ab565b60015b611de1573d808015611db5576040519150601f19603f3d011682016040523d82523d6000602084013e611dba565b606091505b508051611dd95760405162461bcd60e51b81526004016107c5906123d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611974565b506001949350505050565b6001600160a01b038216611e5c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600360205260409020546001600160a01b031615611ec15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b6001600160a01b0382166000908152600460205260408120805460019290611eea9084906125e8565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f5490612676565b90600052602060002090601f016020900481019282611f765760008555611fbc565b82601f10611f8f57805160ff1916838001178555611fbc565b82800160010185558215611fbc579182015b82811115611fbc578251825591602001919060010190611fa1565b50611fc8929150611fcc565b5090565b5b80821115611fc85760008155600101611fcd565b600067ffffffffffffffff831115611ffb57611ffb612722565b61200e601f8401601f19166020016125b7565b905082815283838301111561202257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461205057600080fd5b919050565b8035801515811461205057600080fd5b60006020828403121561207757600080fd5b6116eb82612039565b6000806040838503121561209357600080fd5b61209c83612039565b91506120aa60208401612039565b90509250929050565b6000806000606084860312156120c857600080fd5b6120d184612039565b92506120df60208501612039565b9150604084013590509250925092565b6000806000806080858703121561210557600080fd5b61210e85612039565b935061211c60208601612039565b925060408501359150606085013567ffffffffffffffff81111561213f57600080fd5b8501601f8101871361215057600080fd5b61215f87823560208401611fe1565b91505092959194509250565b6000806040838503121561217e57600080fd5b61218783612039565b91506120aa60208401612055565b600080604083850312156121a857600080fd5b6121b183612039565b946020939093013593505050565b600060208083850312156121d257600080fd5b823567ffffffffffffffff808211156121ea57600080fd5b818501915085601f8301126121fe57600080fd5b81358181111561221057612210612722565b8060051b91506122218483016125b7565b8181528481019084860184860187018a101561223c57600080fd5b600095505b838610156122665761225281612039565b835260019590950194918601918601612241565b5098975050505050505050565b60006020828403121561228557600080fd5b6116eb82612055565b6000602082840312156122a057600080fd5b81356116eb81612738565b6000602082840312156122bd57600080fd5b81516116eb81612738565b6000602082840312156122da57600080fd5b813567ffffffffffffffff8111156122f157600080fd5b8201601f8101841361230257600080fd5b61197484823560208401611fe1565b60006020828403121561232357600080fd5b5035919050565b6000815180845261234281602086016020860161264a565b601f01601f19169290920160200192915050565b6000835161236881846020880161264a565b83519083019061237c81836020880161264a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b89083018461232a565b9695505050505050565b6020815260006116eb602083018461232a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f4d61782033204e66747320506572205472616e73616374696f6e20416c6c6f7760408201526232b21760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b6020808252601d908201527f4d61782033204e6674205065722057616c6c657420416c6c6f7765642e000000604082015260600190565b6020808252600f908201526e29b0b6329034b9902830bab9b2b21760891b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156125e0576125e0612722565b604052919050565b600082198211156125fb576125fb6126e0565b500190565b60008261260f5761260f6126f6565b500490565b600081600019048311821515161561262e5761262e6126e0565b500290565b600082821015612645576126456126e0565b500390565b60005b8381101561266557818101518382015260200161264d565b838111156115e25750506000910152565b600181811c9082168061268a57607f821691505b602082108114156126ab57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126c5576126c56126e0565b5060010190565b6000826126db576126db6126f6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0757600080fdfea2646970667358221220cd75f2b24ba4df97a9f8e86dd1338eb11171136878dcd55a6363260d602d5e4464736f6c63430008070033

Deployed Bytecode Sourcemap

34498:5268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22350:305;;;;;;;;;;-1:-1:-1;22350:305:0;;;;;:::i;:::-;;:::i;:::-;;;6646:14:1;;6639:22;6621:41;;6609:2;6594:18;22350:305:0;;;;;;;;38695:98;;;;;;;;;;-1:-1:-1;38774:10:0;38739:4;38762:23;;;:11;:23;;;;;;38695:98;;;17340:25:1;;;17328:2;17313:18;38695:98:0;17194:177:1;38411:165:0;;;;;;;;;;-1:-1:-1;38411:165:0;;;;;:::i;:::-;;:::i;:::-;;23295:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24854:221::-;;;;;;;;;;-1:-1:-1;24854:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5944:32:1;;;5926:51;;5914:2;5899:18;24854:221:0;5780:203:1;24377:411:0;;;;;;;;;;-1:-1:-1;24377:411:0;;;;;:::i;:::-;;:::i;34742:27::-;;;;;;;;;;;;;;;;34875:41;;;;;;;;;;;;;;;;25744:339;;;;;;;;;;-1:-1:-1;25744:339:0;;;;;:::i;:::-;;:::i;38582:103::-;;;;;;;;;;-1:-1:-1;38666:10:0;38631:4;38654:23;;;:11;:23;;;;;;38582:103;;39657:106;;;;;;;;;;;;;:::i;26154:185::-;;;;;;;;;;-1:-1:-1;26154:185:0;;;;;:::i;:::-;;:::i;34823:41::-;;;;;;;;;;;;;;;;35210:42;;;;;;;;;;-1:-1:-1;35210:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;39117:103;;;;;;;;;;-1:-1:-1;39117:103:0;;;;;:::i;:::-;;:::i;34923:42::-;;;;;;;;;;;;;;;;35314:858;;;;;;:::i;:::-;;:::i;22989:239::-;;;;;;;;;;-1:-1:-1;22989:239:0;;;;;:::i;:::-;;:::i;35042:59::-;;;;;;;;;;;;;:::i;39440:107::-;;;;;;;;;;-1:-1:-1;39440:107:0;;;;;:::i;:::-;;:::i;22719:208::-;;;;;;;;;;-1:-1:-1;22719:208:0;;;;;:::i;:::-;;:::i;14197:94::-;;;;;;;;;;;;;:::i;37924:308::-;;;;;;;;;;-1:-1:-1;37924:308:0;;;;;:::i;:::-;;:::i;36177:799::-;;;;;;:::i;:::-;;:::i;39553:92::-;;;;;;;;;;-1:-1:-1;39553:92:0;;;;;:::i;:::-;;:::i;36981:937::-;;;;;;:::i;:::-;;:::i;13546:87::-;;;;;;;;;;-1:-1:-1;13592:7:0;13619:6;-1:-1:-1;;;;;13619:6:0;13546:87;;23464:104;;;;;;;;;;;;;:::i;39333:101::-;;;;;;;;;;-1:-1:-1;39333:101:0;;;;;:::i;:::-;;:::i;38805:92::-;;;;;;;;;;-1:-1:-1;38805:92:0;;;;;:::i;:::-;;:::i;25147:295::-;;;;;;;;;;-1:-1:-1;25147:295:0;;;;;:::i;:::-;;:::i;38903:88::-;;;;;;;;;;-1:-1:-1;38903:88:0;;;;;:::i;:::-;;:::i;34778:36::-;;;;;;;;;;;;;;;;26410:328;;;;;;;;;;-1:-1:-1;26410:328:0;;;;;:::i;:::-;;:::i;35003:30::-;;;;;;;;;;-1:-1:-1;35003:30:0;;;;;;;;39226:101;;;;;;;;;;-1:-1:-1;39226:101:0;;;;;:::i;:::-;;:::i;23639:334::-;;;;;;;;;;-1:-1:-1;23639:334:0;;;;;:::i;:::-;;:::i;34701:28::-;;;;;;;;;;;;;;;;25513:164;;;;;;;;;;-1:-1:-1;25513:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25634:25:0;;;25610:4;25634:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25513:164;38240:165;;;;;;;;;;-1:-1:-1;38240:165:0;;;;;:::i;:::-;;:::i;14446:192::-;;;;;;;;;;-1:-1:-1;14446:192:0;;;;;:::i;:::-;;:::i;22350:305::-;22452:4;-1:-1:-1;;;;;;22489:40:0;;-1:-1:-1;;;22489:40:0;;:105;;-1:-1:-1;;;;;;;22546:48:0;;-1:-1:-1;;;22546:48:0;22489:105;:158;;;-1:-1:-1;;;;;;;;;;15660:40:0;;;22611:36;22469:178;22350:305;-1:-1:-1;;22350:305:0:o;38411:165::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;;;;;;;;;38493:6:::1;38489:79;38505:8;:15;38501:1;:19;38489:79;;;38567:1;38540:11;:24;38552:8;38561:1;38552:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;38540:24:0::1;-1:-1:-1::0;;;;;38540:24:0::1;;;;;;;;;;;;:28;;;;38522:3;;;;;:::i;:::-;;;;38489:79;;;;38411:165:::0;:::o;23295:100::-;23349:13;23382:5;23375:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23295:100;:::o;24854:221::-;24930:7;28337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28337:16:0;24950:73;;;;-1:-1:-1;;;24950:73:0;;11763:2:1;24950:73:0;;;11745:21:1;11802:2;11782:18;;;11775:30;11841:34;11821:18;;;11814:62;-1:-1:-1;;;11892:18:1;;;11885:42;11944:19;;24950:73:0;11561:408:1;24950:73:0;-1:-1:-1;25043:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25043:24:0;;24854:221::o;24377:411::-;24458:13;24474:23;24489:7;24474:14;:23::i;:::-;24458:39;;24522:5;-1:-1:-1;;;;;24516:11:0;:2;-1:-1:-1;;;;;24516:11:0;;;24508:57;;;;-1:-1:-1;;;24508:57:0;;14071:2:1;24508:57:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:31;14241:19;;24508:57:0;13869:397:1;24508:57:0;766:10;-1:-1:-1;;;;;24600:21:0;;;;:62;;-1:-1:-1;24625:37:0;24642:5;766:10;25513:164;:::i;24625:37::-;24578:168;;;;-1:-1:-1;;;24578:168:0;;9805:2:1;24578:168:0;;;9787:21:1;9844:2;9824:18;;;9817:30;9883:34;9863:18;;;9856:62;9954:26;9934:18;;;9927:54;9998:19;;24578:168:0;9603:420:1;24578:168:0;24759:21;24768:2;24772:7;24759:8;:21::i;:::-;24447:341;24377:411;;:::o;25744:339::-;25939:41;766:10;25972:7;25939:18;:41::i;:::-;25931:103;;;;-1:-1:-1;;;25931:103:0;;;;;;;:::i;:::-;26047:28;26057:4;26063:2;26067:7;26047:9;:28::i;39657:106::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;13592:7;13619:6;;39707:48:::1;::::0;-1:-1:-1;;;;;13619:6:0;;;;39733:21:::1;39707:48:::0;::::1;;;::::0;39733:21;;39707:48;13592:7;39707:48;39733:21;13619:6;39707:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39657:106::o:0;26154:185::-;26292:39;26309:4;26315:2;26319:7;26292:39;;;;;;;;;;;;:16;:39::i;39117:103::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;39188:17:::1;:24:::0;39117:103::o;35314:858::-;35389:1;35380:6;:10;35372:46;;;;-1:-1:-1;;;35372:46:0;;;;;;;:::i;:::-;35447:1;35437:6;:11;;35429:59;;;;-1:-1:-1;;;35429:59:0;;;;;;;:::i;:::-;35531:17;;35521:6;35507:11;;:20;;;;:::i;:::-;:41;;35499:76;;;;-1:-1:-1;;;35499:76:0;;11051:2:1;35499:76:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:52;11171:18;;35499:76:0;10849:346:1;35499:76:0;35607:26;35627:6;34632:10;35607:26;:::i;:::-;35594:9;:39;35586:74;;;;-1:-1:-1;;;35586:74:0;;;;;;;:::i;:::-;35698:16;;35679:15;:35;;35671:68;;;;-1:-1:-1;;;35671:68:0;;12895:2:1;35671:68:0;;;12877:21:1;12934:2;12914:18;;;12907:30;-1:-1:-1;;;12953:18:1;;;12946:51;13014:18;;35671:68:0;12693:345:1;35671:68:0;35758:10;;;;:19;35750:47;;;;-1:-1:-1;;;35750:47:0;;;;;;;:::i;:::-;35827:10;35816:22;;;;:10;:22;;;;;;35851:1;;35816:31;;35841:6;;35816:31;:::i;:::-;:36;;35808:78;;;;-1:-1:-1;;;35808:78:0;;;;;;;:::i;:::-;38666:10;38631:4;38654:23;;;:11;:23;;;;;;35928:1;35905:24;35897:61;;;;-1:-1:-1;;;35897:61:0;;14877:2:1;35897:61:0;;;14859:21:1;14916:2;14896:18;;;14889:30;-1:-1:-1;;;14935:18:1;;;14928:54;14999:18;;35897:61:0;14675:348:1;35897:61:0;35983:6;35979:88;35999:6;35995:1;:10;35979:88;;;36025:42;36035:10;36065:1;36047:11;;36061:1;36047:15;;;;:::i;:::-;:19;;;;:::i;:::-;36025:9;:42::i;:::-;36007:3;;;;:::i;:::-;;;;35979:88;;;;36111:6;36096:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;36143:10:0;36132:22;;;;:10;:22;;;;;:32;;36158:6;;36132:22;:32;;36158:6;;36132:32;:::i;:::-;;;;-1:-1:-1;;;35314:858:0:o;22989:239::-;23061:7;23097:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23097:16:0;23132:19;23124:73;;;;-1:-1:-1;;;23124:73:0;;10641:2:1;23124:73:0;;;10623:21:1;10680:2;10660:18;;;10653:30;10719:34;10699:18;;;10692:62;-1:-1:-1;;;10770:18:1;;;10763:39;10819:19;;23124:73:0;10439:405:1;35042:59:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39440:107::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;39513:17:::1;:26:::0;39440:107::o;22719:208::-;22791:7;-1:-1:-1;;;;;22819:19:0;;22811:74;;;;-1:-1:-1;;;22811:74:0;;10230:2:1;22811:74:0;;;10212:21:1;10269:2;10249:18;;;10242:30;10308:34;10288:18;;;10281:62;-1:-1:-1;;;10359:18:1;;;10352:40;10409:19;;22811:74:0;10028:406:1;22811:74:0;-1:-1:-1;;;;;;22903:16:0;;;;;:9;:16;;;;;;;22719:208::o;14197:94::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;14262:21:::1;14280:1;14262:9;:21::i;:::-;14197:94::o:0;37924:308::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;38038:9:::1;;38019:8;:15;38005:11;;:29;;;;:::i;:::-;:42;;37997:77;;;::::0;-1:-1:-1;;;37997:77:0;;16701:2:1;37997:77:0::1;::::0;::::1;16683:21:1::0;16740:2;16720:18;;;16713:30;-1:-1:-1;;;16759:18:1;;;16752:52;16821:18;;37997:77:0::1;16499:346:1::0;37997:77:0::1;38089:6;38085:98;38105:8;:15;38101:1;:19;38085:98;;;38140:43;38150:8;38159:1;38150:11;;;;;;;;:::i;:::-;;;;;;;38181:1;38163:11;;38177:1;38163:15;;;;:::i;38140:43::-;38122:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38085:98;;;;38209:8;:15;38194:11;;:30;;;;;;;:::i;36177:799::-:0;36252:1;36243:6;:10;36235:46;;;;-1:-1:-1;;;36235:46:0;;;;;;;:::i;:::-;36310:1;36300:6;:11;;36292:59;;;;-1:-1:-1;;;36292:59:0;;;;;;;:::i;:::-;36473:26;36493:6;34581:10;36473:26;:::i;:::-;36460:9;:39;36452:74;;;;-1:-1:-1;;;36452:74:0;;;;;;;:::i;:::-;36564:16;;36545:15;:35;;36537:68;;;;-1:-1:-1;;;36537:68:0;;12895:2:1;36537:68:0;;;12877:21:1;12934:2;12914:18;;;12907:30;-1:-1:-1;;;12953:18:1;;;12946:51;13014:18;;36537:68:0;12693:345:1;36537:68:0;36624:10;;;;:19;36616:47;;;;-1:-1:-1;;;36616:47:0;;;;;;;:::i;:::-;36693:10;36682:22;;;;:10;:22;;;;;;36717:1;;36682:31;;36707:6;;36682:31;:::i;:::-;:36;;36674:78;;;;-1:-1:-1;;;36674:78:0;;;;;;;:::i;:::-;36787:6;36783:88;36803:6;36799:1;:10;36783:88;;;36829:42;36839:10;36869:1;36851:11;;36865:1;36851:15;;;;:::i;36829:42::-;36811:3;;;;:::i;:::-;;;;36783:88;;39553:92;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;39619:9:::1;:18:::0;39553:92::o;36981:937::-;37057:1;37048:6;:10;37040:46;;;;-1:-1:-1;;;37040:46:0;;;;;;;:::i;:::-;37115:1;37105:6;:11;;37097:59;;;;-1:-1:-1;;;37097:59:0;;;;;;;:::i;:::-;37199:9;;37189:6;37175:11;;:20;;;;:::i;:::-;:33;;37167:68;;;;-1:-1:-1;;;37167:68:0;;11051:2:1;37167:68:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:52;11171:18;;37167:68:0;10849:346:1;37167:68:0;37267:27;37288:6;34684:10;37267:27;:::i;:::-;37254:9;:40;37246:75;;;;-1:-1:-1;;;37246:75:0;;;;;;;:::i;:::-;37359:17;;37340:15;:36;;37332:77;;;;-1:-1:-1;;;37332:77:0;;12537:2:1;37332:77:0;;;12519:21:1;12576:2;12556:18;;;12549:30;12615:31;12595:18;;;12588:59;12664:18;;37332:77:0;12335:353:1;37332:77:0;37446:16;;37428:15;:34;37420:60;;;;-1:-1:-1;;;37420:60:0;;15230:2:1;37420:60:0;;;15212:21:1;15269:2;15249:18;;;15242:30;-1:-1:-1;;;15288:18:1;;;15281:44;15342:18;;37420:60:0;15028:338:1;37420:60:0;37499:10;;;;:19;37491:47;;;;-1:-1:-1;;;37491:47:0;;;;;;;:::i;:::-;38774:10;38739:4;38762:23;;;:11;:23;;;;;;37575:1;37557:19;37549:56;;;;-1:-1:-1;;;37549:56:0;;14877:2:1;37549:56:0;;;14859:21:1;14916:2;14896:18;;;14889:30;-1:-1:-1;;;14935:18:1;;;14928:54;14999:18;;37549:56:0;14675:348:1;37549:56:0;37635:10;37624:22;;;;:10;:22;;;;;;37659:1;;37624:31;;37649:6;;37624:31;:::i;:::-;:36;;37616:78;;;;-1:-1:-1;;;37616:78:0;;;;;;;:::i;:::-;37729:6;37725:88;37745:6;37741:1;:10;37725:88;;;37771:42;37781:10;37811:1;37793:11;;37807:1;37793:15;;;;:::i;37771:42::-;37753:3;;;;:::i;:::-;;;;37725:88;;23464:104;23520:13;23553:7;23546:14;;;;;:::i;39333:101::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;39403:16:::1;:23:::0;39333:101::o;38805:92::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;38875:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;25147:295::-:0;-1:-1:-1;;;;;25250:24:0;;766:10;25250:24;;25242:62;;;;-1:-1:-1;;;25242:62:0;;8687:2:1;25242:62:0;;;8669:21:1;8726:2;8706:18;;;8699:30;8765:27;8745:18;;;8738:55;8810:18;;25242:62:0;8485:349:1;25242:62:0;766:10;25317:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25317:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25317:53:0;;;;;;;;;;25386:48;;6621:41:1;;;25317:42:0;;766:10;25386:48;;6594:18:1;25386:48:0;;;;;;;25147:295;;:::o;38903:88::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;38966:10:::1;:17:::0;;-1:-1:-1;;38966:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38903:88::o;26410:328::-;26585:41;766:10;26618:7;26585:18;:41::i;:::-;26577:103;;;;-1:-1:-1;;;26577:103:0;;;;;;;:::i;:::-;26691:39;26705:4;26711:2;26715:7;26724:5;26691:13;:39::i;:::-;26410:328;;;;:::o;39226:101::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;39296:16:::1;:23:::0;39226:101::o;23639:334::-;28313:4;28337:16;;;:7;:16;;;;;;23712:13;;-1:-1:-1;;;;;28337:16:0;23738:76;;;;-1:-1:-1;;;23738:76:0;;13655:2:1;23738:76:0;;;13637:21:1;13694:2;13674:18;;;13667:30;13733:34;13713:18;;;13706:62;-1:-1:-1;;;13784:18:1;;;13777:45;13839:19;;23738:76:0;13453:411:1;23738:76:0;23827:21;23851:10;:8;:10::i;:::-;23827:34;;23903:1;23885:7;23879:21;:25;:86;;;;;;;;;;;;;;;;;23931:7;23940:18;:7;:16;:18::i;:::-;23914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23879:86;23872:93;23639:334;-1:-1:-1;;;23639:334:0:o;38240:165::-;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;38322:6:::1;38318:79;38334:8;:15;38330:1;:19;38318:79;;;38396:1;38369:11;:24;38381:8;38390:1;38381:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;38369:24:0::1;-1:-1:-1::0;;;;;38369:24:0::1;;;;;;;;;;;;:28;;;;38351:3;;;;;:::i;:::-;;;;38318:79;;14446:192:::0;13592:7;13619:6;-1:-1:-1;;;;;13619:6:0;766:10;13766:23;13758:68;;;;-1:-1:-1;;;13758:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14535:22:0;::::1;14527:73;;;::::0;-1:-1:-1;;;14527:73:0;;7518:2:1;14527:73:0::1;::::0;::::1;7500:21:1::0;7557:2;7537:18;;;7530:30;7596:34;7576:18;;;7569:62;-1:-1:-1;;;7647:18:1;;;7640:36;7693:19;;14527:73:0::1;7316:402:1::0;14527:73:0::1;14611:19;14621:8;14611:9;:19::i;32230:174::-:0;32305:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32305:29:0;-1:-1:-1;;;;;32305:29:0;;;;;;;;:24;;32359:23;32305:24;32359:14;:23::i;:::-;-1:-1:-1;;;;;32350:46:0;;;;;;;;;;;32230:174;;:::o;28542:348::-;28635:4;28337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28337:16:0;28652:73;;;;-1:-1:-1;;;28652:73:0;;9041:2:1;28652:73:0;;;9023:21:1;9080:2;9060:18;;;9053:30;9119:34;9099:18;;;9092:62;-1:-1:-1;;;9170:18:1;;;9163:42;9222:19;;28652:73:0;8839:408:1;28652:73:0;28736:13;28752:23;28767:7;28752:14;:23::i;:::-;28736:39;;28805:5;-1:-1:-1;;;;;28794:16:0;:7;-1:-1:-1;;;;;28794:16:0;;:51;;;;28838:7;-1:-1:-1;;;;;28814:31:0;:20;28826:7;28814:11;:20::i;:::-;-1:-1:-1;;;;;28814:31:0;;28794:51;:87;;;-1:-1:-1;;;;;;25634:25:0;;;25610:4;25634:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28849:32;28786:96;28542:348;-1:-1:-1;;;;28542:348:0:o;31534:578::-;31693:4;-1:-1:-1;;;;;31666:31:0;:23;31681:7;31666:14;:23::i;:::-;-1:-1:-1;;;;;31666:31:0;;31658:85;;;;-1:-1:-1;;;31658:85:0;;13245:2:1;31658:85:0;;;13227:21:1;13284:2;13264:18;;;13257:30;13323:34;13303:18;;;13296:62;-1:-1:-1;;;13374:18:1;;;13367:39;13423:19;;31658:85:0;13043:405:1;31658:85:0;-1:-1:-1;;;;;31762:16:0;;31754:65;;;;-1:-1:-1;;;31754:65:0;;8282:2:1;31754:65:0;;;8264:21:1;8321:2;8301:18;;;8294:30;8360:34;8340:18;;;8333:62;-1:-1:-1;;;8411:18:1;;;8404:34;8455:19;;31754:65:0;8080:400:1;31754:65:0;31936:29;31953:1;31957:7;31936:8;:29::i;:::-;-1:-1:-1;;;;;31978:15:0;;;;;;:9;:15;;;;;:20;;31997:1;;31978:15;:20;;31997:1;;31978:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32009:13:0;;;;;;:9;:13;;;;;:18;;32026:1;;32009:13;:18;;32026:1;;32009:18;:::i;:::-;;;;-1:-1:-1;;32038:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32038:21:0;-1:-1:-1;;;;;32038:21:0;;;;;;;;;32077:27;;32038:16;;32077:27;;;;;;;31534:578;;;:::o;29232:110::-;29308:26;29318:2;29322:7;29308:26;;;;;;;;;;;;:9;:26::i;14646:173::-;14702:16;14721:6;;-1:-1:-1;;;;;14738:17:0;;;-1:-1:-1;;;;;;14738:17:0;;;;;;14771:40;;14721:6;;;;;;;14771:40;;14702:16;14771:40;14691:128;14646:173;:::o;27620:315::-;27777:28;27787:4;27793:2;27797:7;27777:9;:28::i;:::-;27824:48;27847:4;27853:2;27857:7;27866:5;27824:22;:48::i;:::-;27816:111;;;;-1:-1:-1;;;27816:111:0;;;;;;;:::i;39003:108::-;39063:13;39096:7;39089:14;;;;;:::i;1151:723::-;1207:13;1428:10;1424:53;;-1:-1:-1;;1455:10:0;;;;;;;;;;;;-1:-1:-1;;;1455:10:0;;;;;1151:723::o;1424:53::-;1502:5;1487:12;1543:78;1550:9;;1543:78;;1576:8;;;;:::i;:::-;;-1:-1:-1;1599:10:0;;-1:-1:-1;1607:2:0;1599:10;;:::i;:::-;;;1543:78;;;1631:19;1663:6;1653:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1653:17:0;;1631:39;;1681:154;1688:10;;1681:154;;1715:11;1725:1;1715:11;;:::i;:::-;;-1:-1:-1;1784:10:0;1792:2;1784:5;:10;:::i;:::-;1771:24;;:2;:24;:::i;:::-;1758:39;;1741:6;1748;1741:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1741:56:0;;;;;;;;-1:-1:-1;1812:11:0;1821:2;1812:11;;:::i;:::-;;;1681:154;;29569:321;29699:18;29705:2;29709:7;29699:5;:18::i;:::-;29750:54;29781:1;29785:2;29789:7;29798:5;29750:22;:54::i;:::-;29728:154;;;;-1:-1:-1;;;29728:154:0;;;;;;;:::i;32969:799::-;33124:4;-1:-1:-1;;;;;33145:13:0;;3939:20;3987:8;33141:620;;33181:72;;-1:-1:-1;;;33181:72:0;;-1:-1:-1;;;;;33181:36:0;;;;;:72;;766:10;;33232:4;;33238:7;;33247:5;;33181:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33181:72:0;;;;;;;;-1:-1:-1;;33181:72:0;;;;;;;;;;;;:::i;:::-;;;33177:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33423:13:0;;33419:272;;33466:60;;-1:-1:-1;;;33466:60:0;;;;;;;:::i;33419:272::-;33641:6;33635:13;33626:6;33622:2;33618:15;33611:38;33177:529;-1:-1:-1;;;;;;33304:51:0;-1:-1:-1;;;33304:51:0;;-1:-1:-1;33297:58:0;;33141:620;-1:-1:-1;33745:4:0;32969:799;;;;;;:::o;30226:382::-;-1:-1:-1;;;;;30306:16:0;;30298:61;;;;-1:-1:-1;;;30298:61:0;;11402:2:1;30298:61:0;;;11384:21:1;;;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;11532:18;;30298:61:0;11200:356:1;30298:61:0;28313:4;28337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28337:16:0;:30;30370:58;;;;-1:-1:-1;;;30370:58:0;;7925:2:1;30370:58:0;;;7907:21:1;7964:2;7944:18;;;7937:30;8003;7983:18;;;7976:58;8051:18;;30370:58:0;7723:352:1;30370:58:0;-1:-1:-1;;;;;30499:13:0;;;;;;:9;:13;;;;;:18;;30516:1;;30499:13;:18;;30516:1;;30499:18;:::i;:::-;;;;-1:-1:-1;;30528:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30528:21:0;-1:-1:-1;;;;;30528:21:0;;;;;;;;30567:33;;30528:16;;;30567:33;;30528:16;;30567:33;30226:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:470::-;5484:3;5522:6;5516:13;5538:53;5584:6;5579:3;5572:4;5564:6;5560:17;5538:53;:::i;:::-;5654:13;;5613:16;;;;5676:57;5654:13;5613:16;5710:4;5698:17;;5676:57;:::i;:::-;5749:20;;5305:470;-1:-1:-1;;;;5305:470:1:o;5988:488::-;-1:-1:-1;;;;;6257:15:1;;;6239:34;;6309:15;;6304:2;6289:18;;6282:43;6356:2;6341:18;;6334:34;;;6404:3;6399:2;6384:18;;6377:31;;;6182:4;;6425:45;;6450:19;;6442:6;6425:45;:::i;:::-;6417:53;5988:488;-1:-1:-1;;;;;;5988:488:1:o;6673:219::-;6822:2;6811:9;6804:21;6785:4;6842:44;6882:2;6871:9;6867:18;6859:6;6842:44;:::i;6897:414::-;7099:2;7081:21;;;7138:2;7118:18;;;7111:30;7177:34;7172:2;7157:18;;7150:62;-1:-1:-1;;;7243:2:1;7228:18;;7221:48;7301:3;7286:19;;6897:414::o;9252:346::-;9454:2;9436:21;;;9493:2;9473:18;;;9466:30;-1:-1:-1;;;9527:2:1;9512:18;;9505:52;9589:2;9574:18;;9252:346::o;11974:356::-;12176:2;12158:21;;;12195:18;;;12188:30;12254:34;12249:2;12234:18;;12227:62;12321:2;12306:18;;11974:356::o;14271:399::-;14473:2;14455:21;;;14512:2;14492:18;;;14485:30;14551:34;14546:2;14531:18;;14524:62;-1:-1:-1;;;14617:2:1;14602:18;;14595:33;14660:3;14645:19;;14271:399::o;15371:413::-;15573:2;15555:21;;;15612:2;15592:18;;;15585:30;15651:34;15646:2;15631:18;;15624:62;-1:-1:-1;;;15717:2:1;15702:18;;15695:47;15774:3;15759:19;;15371:413::o;15789:347::-;15991:2;15973:21;;;16030:2;16010:18;;;16003:30;16069:25;16064:2;16049:18;;16042:53;16127:2;16112:18;;15789:347::o;16141:353::-;16343:2;16325:21;;;16382:2;16362:18;;;16355:30;16421:31;16416:2;16401:18;;16394:59;16485:2;16470:18;;16141:353::o;16850:339::-;17052:2;17034:21;;;17091:2;17071:18;;;17064:30;-1:-1:-1;;;17125:2:1;17110:18;;17103:45;17180:2;17165:18;;16850:339::o;17376:275::-;17447:2;17441:9;17512:2;17493:13;;-1:-1:-1;;17489:27:1;17477:40;;17547:18;17532:34;;17568:22;;;17529:62;17526:88;;;17594:18;;:::i;:::-;17630:2;17623:22;17376:275;;-1:-1:-1;17376:275:1:o;17656:128::-;17696:3;17727:1;17723:6;17720:1;17717:13;17714:39;;;17733:18;;:::i;:::-;-1:-1:-1;17769:9:1;;17656:128::o;17789:120::-;17829:1;17855;17845:35;;17860:18;;:::i;:::-;-1:-1:-1;17894:9:1;;17789:120::o;17914:168::-;17954:7;18020:1;18016;18012:6;18008:14;18005:1;18002:21;17997:1;17990:9;17983:17;17979:45;17976:71;;;18027:18;;:::i;:::-;-1:-1:-1;18067:9:1;;17914:168::o;18087:125::-;18127:4;18155:1;18152;18149:8;18146:34;;;18160:18;;:::i;:::-;-1:-1:-1;18197:9:1;;18087:125::o;18217:258::-;18289:1;18299:113;18313:6;18310:1;18307:13;18299:113;;;18389:11;;;18383:18;18370:11;;;18363:39;18335:2;18328:10;18299:113;;;18430:6;18427:1;18424:13;18421:48;;;-1:-1:-1;;18465:1:1;18447:16;;18440:27;18217:258::o;18480:380::-;18559:1;18555:12;;;;18602;;;18623:61;;18677:4;18669:6;18665:17;18655:27;;18623:61;18730:2;18722:6;18719:14;18699:18;18696:38;18693:161;;;18776:10;18771:3;18767:20;18764:1;18757:31;18811:4;18808:1;18801:15;18839:4;18836:1;18829:15;18693:161;;18480:380;;;:::o;18865:135::-;18904:3;-1:-1:-1;;18925:17:1;;18922:43;;;18945:18;;:::i;:::-;-1:-1:-1;18992:1:1;18981:13;;18865:135::o;19005:112::-;19037:1;19063;19053:35;;19068:18;;:::i;:::-;-1:-1:-1;19102:9:1;;19005:112::o;19122:127::-;19183:10;19178:3;19174:20;19171:1;19164:31;19214:4;19211:1;19204:15;19238:4;19235:1;19228:15;19254:127;19315:10;19310:3;19306:20;19303:1;19296:31;19346:4;19343:1;19336:15;19370:4;19367:1;19360:15;19386:127;19447:10;19442:3;19438:20;19435:1;19428:31;19478:4;19475:1;19468:15;19502:4;19499:1;19492:15;19518:127;19579:10;19574:3;19570:20;19567:1;19560:31;19610:4;19607:1;19600:15;19634:4;19631:1;19624:15;19650:131;-1:-1:-1;;;;;;19724:32:1;;19714:43;;19704:71;;19771:1;19768;19761:12

Swarm Source

ipfs://cd75f2b24ba4df97a9f8e86dd1338eb11171136878dcd55a6363260d602d5e44
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.