ETH Price: $3,468.54 (+4.04%)
Gas: 5 Gwei

Token

Sand Vegas Casino Club (SVCC)
 

Overview

Max Total Supply

11,111 SVCC

Holders

3,207

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
14 SVCC
0x0ada25cc9e9be50ff8ad29799ed653e9b3dc6928
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SandVegasCasinoClub is a Collection of 11,111 unique Gamblers generated from 200+ different traits. Holders will fund & own Casinos in Decentraland & Sandbox

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SVCC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 19 of 19: SVCC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";
import "./MerkleProof.sol";

contract SVCC is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;
	
	uint256 public MAX_NFT = 11111;
	uint256 public RESERVED_NFT = 334;
	uint256 public SALE_NFT = MAX_NFT.sub(RESERVED_NFT);
	
	uint256 public MAX_BY_MINT_PRESALE = SALE_NFT;
	uint256 public MAX_BY_MINT_SALE = SALE_NFT;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 3;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 15;
	uint256 public WHALE_PASS_LIMIT = 200;
	
	uint256 public RESERVED_MINTED;
	uint256 public PRESALE_MINTED;
	uint256 public SALE_MINTED;
	
	uint256 public PRESALE_PRICE = 777 * 10**14;
	uint256 public SALE_PRICE = 777 * 10**14;
	
    string public baseTokenURI;
	bytes32 public merkleRoot;
	
	mapping (address => bool) public isWhalePass;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	
	mapping (address => User) public users;
	
	bool public presaleEnable = false;
	bool public saleEnable = false;
	
    event CreateSVCC(uint256 indexed id);
	
    constructor(string memory baseURI) ERC721("Sand Vegas Casino Club", "SVCC") {
		setBaseURI(baseURI);
        pause(true);
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
	function mintGiveawayNFT(uint256 _count) public saleIsOpen onlyOwner{
        uint256 total = RESERVED_MINTED;
        require(
			total.add(_count) <= RESERVED_NFT, 
			"Exceeds max giveaway limit"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			RESERVED_MINTED++;
        }
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable saleIsOpen {
        uint256 total = PRESALE_MINTED.add(SALE_MINTED);
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			total.add(_count) <= SALE_NFT, 
			"Exceeds max pre-sale limit"
		);
		if(isWhalePass[msg.sender])
		{
		    require(
				_count <= WHALE_PASS_LIMIT,
				"Exceeds max mint limit per transaction"
		    );
		}
		else
		{
		   require(
				_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
				"Exceeds max mint limit per transaction"
		   );
		}
		require(
			users[msg.sender].presalemint.add(_count) <= MAX_BY_MINT_PRESALE, 
			"Exceeds max mint limit per wallet"
		);
		require(
			msg.value >= PRESALE_PRICE.mul(_count),
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			PRESALE_MINTED++;
        }
		users[msg.sender].presalemint = users[msg.sender].presalemint.add(_count);
    }
	
	function mintSaleNFT(uint256 _count) public payable saleIsOpen {
        uint256 total = PRESALE_MINTED.add(SALE_MINTED);
		require(
			saleEnable, 
			"Sale is not enable"
		);
		if(isWhalePass[msg.sender])
		{
		    require(
				_count <= WHALE_PASS_LIMIT,
				"Exceeds max mint limit per transaction"
		    );
		}
		else
		{
		   require(
				_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
				"Exceeds max mint limit per transaction"
		   );
		}
		require(
			users[msg.sender].salemint.add(_count) <= MAX_BY_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			total.add(_count) <= SALE_NFT, 
			"Exceeds max sale limit"
		);
		require(
			msg.value >= SALE_PRICE.mul(_count),
			"Value below price"
		);
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(msg.sender);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint.add(_count);
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateSVCC(id);
    }
   
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
	
    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }
	
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }

    function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function setPreSaleStatus(bool _status) public onlyOwner {
	   require(presaleEnable != _status);
       presaleEnable = _status;
    }
	
	function setSaleStatus(bool _status) public onlyOwner {
        require(saleEnable != _status);
		saleEnable = _status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateWhalePassLimit(uint256 newLimit) external onlyOwner {
        WHALE_PASS_LIMIT = newLimit;
    }
	
	function updateReservedLimit(uint256 newLimit) external onlyOwner {
	    require(RESERVED_MINTED <= newLimit, "Incorrect value");
		require(MAX_NFT >= PRESALE_MINTED.add(SALE_MINTED).add(newLimit), "Incorrect value");
        RESERVED_NFT = newLimit;
    }
	
	function updateSupply(uint256 newSupply) external onlyOwner {
		require(newSupply >= RESERVED_NFT.add(SALE_MINTED).add(PRESALE_MINTED), "Incorrect value");
        MAX_NFT = newSupply;
    }
	
	function updateWhaleAddress(address account, bool status) public onlyOwner {
        isWhalePass[account] = status;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
}

File 1 of 19: Address.sol
// SPDX-License-Identifier: MIT

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

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

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

File 2 of 19: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 19: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 19: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 19: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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(to).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 {}
}

File 6 of 19: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

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

File 7 of 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 19: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
	 
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 9 of 19: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 19: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 19: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 19: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 13 of 19: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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

File 14 of 19: MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 15 of 19: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

File 16 of 19: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

File 17 of 19: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 18 of 19: Strings.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateSVCC","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHALE_PASS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhalePass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateReservedLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateWhaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateWhalePassLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612b67600c5561014e600d556200002e600d54600c546200015660201b62001e2e1790919060201c565b600e819055600f818155601091909155600360115560125560c86013556701140bbd030c40006017819055601855601d805461ffff191690553480156200007457600080fd5b5060405162003f7138038062003f7183398101604081905262000097916200043f565b604080518082018252601681527f53616e6420566567617320436173696e6f20436c7562000000000000000000006020808301918252835180850190945260048452635356434360e01b908401528151919291620000f89160009162000399565b5080516200010e90600190602084019062000399565b5050506200012b620001256200016b60201b60201c565b6200016f565b600a805460ff60a01b191690556200014381620001c1565b6200014f600162000229565b506200062f565b6000620001648284620005b8565b9392505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001cb6200016b565b6001600160a01b0316620001de62000298565b6001600160a01b031614620002105760405162461bcd60e51b8152600401620002079062000583565b60405180910390fd5b80516200022590601990602084019062000399565b5050565b620002336200016b565b6001600160a01b03166200024662000298565b6001600160a01b0316146200026f5760405162461bcd60e51b8152600401620002079062000583565b600181151514156200028b5762000285620002a7565b62000295565b6200029562000328565b50565b600a546001600160a01b031690565b620002b162000389565b15620002d15760405162461bcd60e51b8152600401620002079062000559565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200030f6200016b565b6040516200031e91906200050e565b60405180910390a1565b6200033262000389565b620003515760405162461bcd60e51b8152600401620002079062000522565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200030f6200016b565b600a54600160a01b900460ff1690565b828054620003a790620005dc565b90600052602060002090601f016020900481019282620003cb576000855562000416565b82601f10620003e657805160ff191683800117855562000416565b8280016001018555821562000416579182015b8281111562000416578251825591602001919060010190620003f9565b506200042492915062000428565b5090565b5b8082111562000424576000815560010162000429565b6000602080838503121562000452578182fd5b82516001600160401b038082111562000469578384fd5b818501915085601f8301126200047d578384fd5b81518181111562000492576200049262000619565b604051601f8201601f1916810185018381118282101715620004b857620004b862000619565b6040528181528382018501881015620004cf578586fd5b8592505b81831015620004f25783830185015181840186015291840191620004d3565b818311156200050357858583830101525b979650505050505050565b6001600160a01b0391909116815260200190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015620005d757634e487b7160e01b81526011600452602481fd5b500390565b600281046001821680620005f157607f821691505b602082108114156200061357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613932806200063f6000396000f3fe6080604052600436106103975760003560e01c8063715018a6116101dc578063b88d4fde11610102578063e0c81131116100a0578063f2fde38b1161006f578063f2fde38b146109f5578063f921d83f14610a15578063fad71db414610a2a578063fe4ca84714610a3f57610397565b8063e0c8113114610980578063e60400b4146109a0578063e985e9c5146109b5578063f176baaa146109d557610397565b8063ccfb63a4116100dc578063ccfb63a414610921578063d4bba0e914610936578063d547cfb71461094b578063d897833e1461096057610397565b8063b88d4fde146108c1578063bd640ca7146108e1578063c87b56dd1461090157610397565b8063945242c61161017a578063a5da504211610149578063a5da50421461084b578063a87430ba14610860578063a95268621461088e578063abf4ae79146108a157610397565b8063945242c6146107ee57806395d89b4114610801578063995b8ef614610816578063a22cb4651461082b57610397565b80637f205a74116101b65780637f205a74146107845780638302bf61146107995780638da5cb5b146107b9578063941e79fc146107ce57610397565b8063715018a61461073a5780637ec0912e1461074f5780637ec18cf61461076f57610397565b806342966c68116102c157806362dc6e211161025f5780636bd080491161022e5780636bd08049146106d05780636fdaddf1146106f057806370a0823114610705578063711cc2ae1461072557610397565b806362dc6e211461065b5780636352211e1461067057806365fccb52146106905780636a371542146106b057610397565b80634f6ccce71161029b5780634f6ccce7146105e657806355f804b3146106065780635c975abb146106265780635e326b921461063b57610397565b806342966c6814610579578063438b6300146105995780634783f0ef146105c657610397565b806318160ddd11610339578063305004d911610308578063305004d9146105045780633ccfd60b146105245780633e2e2a801461053957806342842e0e1461055957610397565b806318160ddd1461049a57806323b872dd146104af5780632eb4a7ab146104cf5780632f745c59146104e457610397565b8063081812fc11610375578063081812fc1461041657806308e5e45b14610443578063095ea7b3146104655780630990e5341461048557610397565b806301ffc9a71461039c57806302329a29146103d257806306fdde03146103f4575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612d4b565b610a54565b6040516103c99190612f5d565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612d19565b610a67565b005b34801561040057600080fd5b50610409610ad2565b6040516103c99190612f71565b34801561042257600080fd5b50610436610431366004612d33565b610b64565b6040516103c99190612ec8565b34801561044f57600080fd5b50610458610ba7565b6040516103c99190612f68565b34801561047157600080fd5b506103f2610480366004612cf0565b610bad565b34801561049157600080fd5b50610458610c45565b3480156104a657600080fd5b50610458610c4b565b3480156104bb57600080fd5b506103f26104ca366004612c13565b610c51565b3480156104db57600080fd5b50610458610c89565b3480156104f057600080fd5b506104586104ff366004612cf0565b610c8f565b34801561051057600080fd5b506103f261051f366004612d33565b610ce1565b34801561053057600080fd5b506103f2610d47565b34801561054557600080fd5b506103f2610554366004612d33565b610db9565b34801561056557600080fd5b506103f2610574366004612c13565b610e1f565b34801561058557600080fd5b506103f2610594366004612d33565b610e3a565b3480156105a557600080fd5b506105b96105b4366004612bc7565b610e6a565b6040516103c99190612f19565b3480156105d257600080fd5b506103f26105e1366004612d33565b610f28565b3480156105f257600080fd5b50610458610601366004612d33565b610f6c565b34801561061257600080fd5b506103f2610621366004612d83565b610fc7565b34801561063257600080fd5b506103bc611019565b34801561064757600080fd5b506103f2610656366004612d19565b611029565b34801561066757600080fd5b50610458611091565b34801561067c57600080fd5b5061043661068b366004612d33565b611097565b34801561069c57600080fd5b506103f26106ab366004612d33565b6110cc565b3480156106bc57600080fd5b506103f26106cb366004612d33565b611110565b3480156106dc57600080fd5b506103f26106eb366004612d33565b6111b8565b3480156106fc57600080fd5b50610458611238565b34801561071157600080fd5b50610458610720366004612bc7565b61123e565b34801561073157600080fd5b50610458611282565b34801561074657600080fd5b506103f2611288565b34801561075b57600080fd5b506103f261076a366004612d33565b6112d3565b34801561077b57600080fd5b506103bc611317565b34801561079057600080fd5b50610458611320565b3480156107a557600080fd5b506103f26107b4366004612d33565b611326565b3480156107c557600080fd5b5061043661136a565b3480156107da57600080fd5b506103f26107e9366004612d33565b611379565b6103f26107fc366004612dc9565b6113df565b34801561080d57600080fd5b5061040961167d565b34801561082257600080fd5b5061045861168c565b34801561083757600080fd5b506103f2610846366004612cc7565b611692565b34801561085757600080fd5b50610458611760565b34801561086c57600080fd5b5061088061087b366004612bc7565b611766565b6040516103c9929190612e8b565b6103f261089c366004612d33565b61177f565b3480156108ad57600080fd5b506103bc6108bc366004612bc7565b61199e565b3480156108cd57600080fd5b506103f26108dc366004612c4e565b6119b3565b3480156108ed57600080fd5b506103f26108fc366004612cc7565b6119f2565b34801561090d57600080fd5b5061040961091c366004612d33565b611a5c565b34801561092d57600080fd5b50610458611adf565b34801561094257600080fd5b50610458611ae5565b34801561095757600080fd5b50610409611aeb565b34801561096c57600080fd5b506103f261097b366004612d19565b611b79565b34801561098c57600080fd5b506103f261099b366004612d33565b611bee565b3480156109ac57600080fd5b50610458611d0c565b3480156109c157600080fd5b506103bc6109d0366004612be1565b611d12565b3480156109e157600080fd5b506103f26109f0366004612d33565b611d40565b348015610a0157600080fd5b506103f2610a10366004612bc7565b611da6565b348015610a2157600080fd5b50610458611e14565b348015610a3657600080fd5b50610458611e1a565b348015610a4b57600080fd5b506103bc611e20565b6000610a5f82611e3a565b90505b919050565b610a6f611e5f565b6001600160a01b0316610a8061136a565b6001600160a01b031614610aaf5760405162461bcd60e51b8152600401610aa690613461565b60405180910390fd5b60018115151415610ac757610ac2611e63565b610acf565b610acf611edb565b50565b606060008054610ae19061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d9061383a565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f82611f35565b610b8b5760405162461bcd60e51b8152600401610aa6906133ec565b506000908152600460205260409020546001600160a01b031690565b60105481565b6000610bb882611097565b9050806001600160a01b0316836001600160a01b03161415610bec5760405162461bcd60e51b8152600401610aa690613590565b806001600160a01b0316610bfe611e5f565b6001600160a01b03161480610c1a5750610c1a816109d0611e5f565b610c365760405162461bcd60e51b8152600401610aa6906132a5565b610c408383611f52565b505050565b60165481565b60085490565b610c62610c5c611e5f565b82611fc0565b610c7e5760405162461bcd60e51b8152600401610aa6906135d1565b610c40838383612045565b601a5481565b6000610c9a8361123e565b8210610cb85760405162461bcd60e51b8152600401610aa690612ffd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ce9611e5f565b6001600160a01b0316610cfa61136a565b6001600160a01b031614610d205760405162461bcd60e51b8152600401610aa690613461565b80600e541015610d425760405162461bcd60e51b8152600401610aa690613438565b601155565b610d4f611e5f565b6001600160a01b0316610d6061136a565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610aa690613461565b6040514790339082156108fc029083906000818181858888f19350505050158015610db5573d6000803e3d6000fd5b5050565b610dc1611e5f565b6001600160a01b0316610dd261136a565b6001600160a01b031614610df85760405162461bcd60e51b8152600401610aa690613461565b80600e541015610e1a5760405162461bcd60e51b8152600401610aa690613438565b601255565b610c40838383604051806020016040528060008152506119b3565b610e45610c5c611e5f565b610e615760405162461bcd60e51b8152600401610aa690613725565b610acf81612172565b60606000610e778361123e565b905060008167ffffffffffffffff811115610ea257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ecb578160200160208202803683370190505b50905060005b82811015610f2057610ee38582610c8f565b828281518110610f0357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f1881613875565b915050610ed1565b509392505050565b610f30611e5f565b6001600160a01b0316610f4161136a565b6001600160a01b031614610f675760405162461bcd60e51b8152600401610aa690613461565b601a55565b6000610f76610c4b565b8210610f945760405162461bcd60e51b8152600401610aa690613663565b60088281548110610fb557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610fcf611e5f565b6001600160a01b0316610fe061136a565b6001600160a01b0316146110065760405162461bcd60e51b8152600401610aa690613461565b8051610db5906019906020840190612a97565b600a54600160a01b900460ff1690565b611031611e5f565b6001600160a01b031661104261136a565b6001600160a01b0316146110685760405162461bcd60e51b8152600401610aa690613461565b601d5460ff161515811515141561107e57600080fd5b601d805460ff1916911515919091179055565b60175481565b6000818152600260205260408120546001600160a01b031680610a5f5760405162461bcd60e51b8152600401610aa69061334c565b6110d4611e5f565b6001600160a01b03166110e561136a565b6001600160a01b03161461110b5760405162461bcd60e51b8152600401610aa690613461565b601755565b611118611e5f565b6001600160a01b031661112961136a565b6001600160a01b03161461114f5760405162461bcd60e51b8152600401610aa690613461565b8060145411156111715760405162461bcd60e51b8152600401610aa690613438565b6111928161118c60165460155461221990919063ffffffff16565b90612219565b600c5410156111b35760405162461bcd60e51b8152600401610aa690613438565b600d55565b6111c0611e5f565b6001600160a01b03166111d161136a565b6001600160a01b0316146111f75760405162461bcd60e51b8152600401610aa690613461565b61121460155461118c601654600d5461221990919063ffffffff16565b8110156112335760405162461bcd60e51b8152600401610aa690613438565b600c55565b600c5481565b60006001600160a01b0382166112665760405162461bcd60e51b8152600401610aa690613302565b506001600160a01b031660009081526003602052604090205490565b60125481565b611290611e5f565b6001600160a01b03166112a161136a565b6001600160a01b0316146112c75760405162461bcd60e51b8152600401610aa690613461565b6112d16000612225565b565b6112db611e5f565b6001600160a01b03166112ec61136a565b6001600160a01b0316146113125760405162461bcd60e51b8152600401610aa690613461565b601855565b601d5460ff1681565b60185481565b61132e611e5f565b6001600160a01b031661133f61136a565b6001600160a01b0316146113655760405162461bcd60e51b8152600401610aa690613461565b601355565b600a546001600160a01b031690565b611381611e5f565b6001600160a01b031661139261136a565b6001600160a01b0316146113b85760405162461bcd60e51b8152600401610aa690613461565b80600e5410156113da5760405162461bcd60e51b8152600401610aa690613438565b600f55565b600c546113ea612277565b11156114085760405162461bcd60e51b8152600401610aa6906133ca565b61141061136a565b6001600160a01b0316611421611e5f565b6001600160a01b03161461145457611437611019565b156114545760405162461bcd60e51b8152600401610aa69061323a565b600061146d60165460155461221990919063ffffffff16565b90506000336040516020016114829190612e6e565b60408051601f198184030181529190528051602090910120601d5490915060ff166114bf5760405162461bcd60e51b8152600401610aa69061320a565b61150084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612288565b61151c5760405162461bcd60e51b8152600401610aa690613264565b600e546115298387612219565b11156115475760405162461bcd60e51b8152600401610aa690613775565b336000908152601b602052604090205460ff1615611586576013548511156115815760405162461bcd60e51b8152600401610aa6906136df565b6115a8565b6011548511156115a85760405162461bcd60e51b8152600401610aa6906136df565b600f54336000908152601c60205260409020546115c59087612219565b11156115e35760405162461bcd60e51b8152600401610aa690613622565b6017546115f09086612343565b34101561160f5760405162461bcd60e51b8152600401610aa690613565565b60005b8581101561164b576116233361234f565b6015805490600061163383613875565b9190505550808061164390613875565b915050611612565b50336000908152601c60205260409020546116669086612219565b336000908152601c60205260409020555050505050565b606060018054610ae19061383a565b600e5481565b61169a611e5f565b6001600160a01b0316826001600160a01b031614156116cb5760405162461bcd60e51b8152600401610aa69061315b565b80600560006116d8611e5f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561171c611e5f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117549190612f5d565b60405180910390a35050565b60135481565b601c602052600090815260409020805460019091015482565b600c5461178a612277565b11156117a85760405162461bcd60e51b8152600401610aa6906133ca565b6117b061136a565b6001600160a01b03166117c1611e5f565b6001600160a01b0316146117f4576117d7611019565b156117f45760405162461bcd60e51b8152600401610aa69061323a565b600061180d60165460155461221990919063ffffffff16565b601d54909150610100900460ff166118375760405162461bcd60e51b8152600401610aa690613192565b336000908152601b602052604090205460ff1615611876576013548211156118715760405162461bcd60e51b8152600401610aa6906136df565b611898565b6012548211156118985760405162461bcd60e51b8152600401610aa6906136df565b601054336000908152601c60205260409020600101546118b89084612219565b11156118d65760405162461bcd60e51b8152600401610aa690613622565b600e546118e38284612219565b11156119015760405162461bcd60e51b8152600401610aa6906136af565b60185461190e9083612343565b34101561192d5760405162461bcd60e51b8152600401610aa690613565565b60005b82811015611969576119413361234f565b6016805490600061195183613875565b9190505550808061196190613875565b915050611930565b50336000908152601c60205260409020600101546119879083612219565b336000908152601c60205260409020600101555050565b601b6020526000908152604090205460ff1681565b6119c46119be611e5f565b83611fc0565b6119e05760405162461bcd60e51b8152600401610aa6906135d1565b6119ec8484848461239e565b50505050565b6119fa611e5f565b6001600160a01b0316611a0b61136a565b6001600160a01b031614611a315760405162461bcd60e51b8152600401610aa690613461565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6060611a6782611f35565b611a835760405162461bcd60e51b8152600401610aa6906134df565b6000611a8d6123d1565b90506000815111611aad5760405180602001604052806000815250611ad8565b80611ab7846123e0565b604051602001611ac8929190612e99565b6040516020818303038152906040525b9392505050565b60115481565b600d5481565b60198054611af89061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b249061383a565b8015611b715780601f10611b4657610100808354040283529160200191611b71565b820191906000526020600020905b815481529060010190602001808311611b5457829003601f168201915b505050505081565b611b81611e5f565b6001600160a01b0316611b9261136a565b6001600160a01b031614611bb85760405162461bcd60e51b8152600401610aa690613461565b601d5460ff6101009091041615158115151415611bd457600080fd5b601d80549115156101000261ff0019909216919091179055565b600c54611bf9612277565b1115611c175760405162461bcd60e51b8152600401610aa6906133ca565b611c1f61136a565b6001600160a01b0316611c30611e5f565b6001600160a01b031614611c6357611c46611019565b15611c635760405162461bcd60e51b8152600401610aa69061323a565b611c6b611e5f565b6001600160a01b0316611c7c61136a565b6001600160a01b031614611ca25760405162461bcd60e51b8152600401610aa690613461565b601454600d54611cb28284612219565b1115611cd05760405162461bcd60e51b8152600401610aa69061352e565b60005b82811015610c4057611ce43361234f565b60148054906000611cf483613875565b91905055508080611d0490613875565b915050611cd3565b60155481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d48611e5f565b6001600160a01b0316611d5961136a565b6001600160a01b031614611d7f5760405162461bcd60e51b8152600401610aa690613461565b80600e541015611da15760405162461bcd60e51b8152600401610aa690613438565b601055565b611dae611e5f565b6001600160a01b0316611dbf61136a565b6001600160a01b031614611de55760405162461bcd60e51b8152600401610aa690613461565b6001600160a01b038116611e0b5760405162461bcd60e51b8152600401610aa69061309a565b610acf81612225565b60145481565b600f5481565b601d54610100900460ff1681565b6000611ad882846137f7565b60006001600160e01b0319821663780e9d6360e01b1480610a5f5750610a5f826124fb565b3390565b611e6b611019565b15611e885760405162461bcd60e51b8152600401610aa69061323a565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ec4611e5f565b604051611ed19190612ec8565b60405180910390a1565b611ee3611019565b611eff5760405162461bcd60e51b8152600401610aa690612fcf565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ec4611e5f565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f8782611097565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fcb82611f35565b611fe75760405162461bcd60e51b8152600401610aa6906131be565b6000611ff283611097565b9050806001600160a01b0316846001600160a01b0316148061202d5750836001600160a01b031661202284610b64565b6001600160a01b0316145b8061203d575061203d8185611d12565b949350505050565b826001600160a01b031661205882611097565b6001600160a01b03161461207e5760405162461bcd60e51b8152600401610aa690613496565b6001600160a01b0382166120a45760405162461bcd60e51b8152600401610aa690613117565b6120af83838361253b565b6120ba600082611f52565b6001600160a01b03831660009081526003602052604081208054600192906120e39084906137f7565b90915550506001600160a01b03821660009081526003602052604081208054600192906121119084906137ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061217d82611097565b905061218b8160008461253b565b612196600083611f52565b6001600160a01b03811660009081526003602052604081208054600192906121bf9084906137f7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611ad882846137ac565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612283600b612546565b905090565b600081815b85518110156123385760008682815181106122b857634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116122f95782816040516020016122dc929190612e8b565b604051602081830303815290604052805190602001209250612325565b808360405160200161230c929190612e8b565b6040516020818303038152906040528051906020012092505b508061233081613875565b91505061228d565b509092149392505050565b6000611ad882846137d8565b6000612359612277565b9050612365600b61254a565b61236f8282612553565b60405181907f94967b4062e43c28f94fa1d70e13c47f3cecd354b43539126be0bc8d5e61a11c90600090a25050565b6123a9848484612045565b6123b58484848461256d565b6119ec5760405162461bcd60e51b8152600401610aa690613048565b606060198054610ae19061383a565b60608161240557506040805180820190915260018152600360fc1b6020820152610a62565b8160005b811561242f578061241981613875565b91506124289050600a836137c4565b9150612409565b60008167ffffffffffffffff81111561245857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612482576020820181803683370190505b5090505b841561203d576124976001836137f7565b91506124a4600a86613890565b6124af9060306137ac565b60f81b8183815181106124d257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124f4600a866137c4565b9450612486565b60006001600160e01b031982166380ac58cd60e01b148061252c57506001600160e01b03198216635b5e139f60e01b145b80610a5f5750610a5f82612688565b610c408383836126a1565b5490565b80546001019055565b610db58282604051806020016040528060008152506126f8565b6000612581846001600160a01b031661272b565b1561267d57836001600160a01b031663150b7a0261259d611e5f565b8786866040518563ffffffff1660e01b81526004016125bf9493929190612edc565b602060405180830381600087803b1580156125d957600080fd5b505af1925050508015612609575060408051601f3d908101601f1916820190925261260691810190612d67565b60015b612663573d808015612637576040519150601f19603f3d011682016040523d82523d6000602084013e61263c565b606091505b50805161265b5760405162461bcd60e51b8152600401610aa690613048565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203d565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6126ac838383612731565b6126b461136a565b6001600160a01b03166126c5611e5f565b6001600160a01b031614610c40576126db611019565b15610c405760405162461bcd60e51b8152600401610aa690612f84565b61270283836127ba565b61270f600084848461256d565b610c405760405162461bcd60e51b8152600401610aa690613048565b3b151590565b61273c838383610c40565b6001600160a01b0383166127585761275381612899565b61277b565b816001600160a01b0316836001600160a01b03161461277b5761277b83826128dd565b6001600160a01b038216612797576127928161297a565b610c40565b826001600160a01b0316826001600160a01b031614610c4057610c408282612a53565b6001600160a01b0382166127e05760405162461bcd60e51b8152600401610aa690613395565b6127e981611f35565b156128065760405162461bcd60e51b8152600401610aa6906130e0565b6128126000838361253b565b6001600160a01b038216600090815260036020526040812080546001929061283b9084906137ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016128ea8461123e565b6128f491906137f7565b600083815260076020526040902054909150808214612947576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061298c906001906137f7565b600083815260096020526040812054600880549394509092849081106129c257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129f157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a3757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a5e8361123e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612aa39061383a565b90600052602060002090601f016020900481019282612ac55760008555612b0b565b82601f10612ade57805160ff1916838001178555612b0b565b82800160010185558215612b0b579182015b82811115612b0b578251825591602001919060010190612af0565b50612b17929150612b1b565b5090565b5b80821115612b175760008155600101612b1c565b600067ffffffffffffffff80841115612b4b57612b4b6138d0565b604051601f8501601f191681016020018281118282101715612b6f57612b6f6138d0565b604052848152915081838501861015612b8757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610a6257600080fd5b80358015158114610a6257600080fd5b600060208284031215612bd8578081fd5b611ad882612ba0565b60008060408385031215612bf3578081fd5b612bfc83612ba0565b9150612c0a60208401612ba0565b90509250929050565b600080600060608486031215612c27578081fd5b612c3084612ba0565b9250612c3e60208501612ba0565b9150604084013590509250925092565b60008060008060808587031215612c63578081fd5b612c6c85612ba0565b9350612c7a60208601612ba0565b925060408501359150606085013567ffffffffffffffff811115612c9c578182fd5b8501601f81018713612cac578182fd5b612cbb87823560208401612b30565b91505092959194509250565b60008060408385031215612cd9578182fd5b612ce283612ba0565b9150612c0a60208401612bb7565b60008060408385031215612d02578182fd5b612d0b83612ba0565b946020939093013593505050565b600060208284031215612d2a578081fd5b611ad882612bb7565b600060208284031215612d44578081fd5b5035919050565b600060208284031215612d5c578081fd5b8135611ad8816138e6565b600060208284031215612d78578081fd5b8151611ad8816138e6565b600060208284031215612d94578081fd5b813567ffffffffffffffff811115612daa578182fd5b8201601f81018413612dba578182fd5b61203d84823560208401612b30565b600080600060408486031215612ddd578283fd5b83359250602084013567ffffffffffffffff80821115612dfb578384fd5b818601915086601f830112612e0e578384fd5b813581811115612e1c578485fd5b8760208083028501011115612e2f578485fd5b6020830194508093505050509250925092565b60008151808452612e5a81602086016020860161380e565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612eab81846020880161380e565b835190830190612ebf81836020880161380e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0f90830184612e42565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f5157835183529284019291840191600101612f35565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611ad86020830184612e42565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f45786365656473206d6178206769766561776179206c696d6974000000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260169082015275115e18d959591cc81b585e081cd85b19481b1a5b5a5d60521b604082015260600190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b6020808252601a908201527f45786365656473206d6178207072652d73616c65206c696d6974000000000000604082015260600190565b600082198211156137bf576137bf6138a4565b500190565b6000826137d3576137d36138ba565b500490565b60008160001904831182151516156137f2576137f26138a4565b500290565b600082821015613809576138096138a4565b500390565b60005b83811015613829578181015183820152602001613811565b838111156119ec5750506000910152565b60028104600182168061384e57607f821691505b6020821081141561386f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613889576138896138a4565b5060010190565b60008261389f5761389f6138ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acf57600080fdfea2646970667358221220d2e07ce1fa164ee4d4cec739b5312ffba60973cc21845eb4cdab936b6e45827d64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5172724c6a4e78594356644458596e525663797637746444446d46646953614d4d3458784d665970786d69322f00000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c8063715018a6116101dc578063b88d4fde11610102578063e0c81131116100a0578063f2fde38b1161006f578063f2fde38b146109f5578063f921d83f14610a15578063fad71db414610a2a578063fe4ca84714610a3f57610397565b8063e0c8113114610980578063e60400b4146109a0578063e985e9c5146109b5578063f176baaa146109d557610397565b8063ccfb63a4116100dc578063ccfb63a414610921578063d4bba0e914610936578063d547cfb71461094b578063d897833e1461096057610397565b8063b88d4fde146108c1578063bd640ca7146108e1578063c87b56dd1461090157610397565b8063945242c61161017a578063a5da504211610149578063a5da50421461084b578063a87430ba14610860578063a95268621461088e578063abf4ae79146108a157610397565b8063945242c6146107ee57806395d89b4114610801578063995b8ef614610816578063a22cb4651461082b57610397565b80637f205a74116101b65780637f205a74146107845780638302bf61146107995780638da5cb5b146107b9578063941e79fc146107ce57610397565b8063715018a61461073a5780637ec0912e1461074f5780637ec18cf61461076f57610397565b806342966c68116102c157806362dc6e211161025f5780636bd080491161022e5780636bd08049146106d05780636fdaddf1146106f057806370a0823114610705578063711cc2ae1461072557610397565b806362dc6e211461065b5780636352211e1461067057806365fccb52146106905780636a371542146106b057610397565b80634f6ccce71161029b5780634f6ccce7146105e657806355f804b3146106065780635c975abb146106265780635e326b921461063b57610397565b806342966c6814610579578063438b6300146105995780634783f0ef146105c657610397565b806318160ddd11610339578063305004d911610308578063305004d9146105045780633ccfd60b146105245780633e2e2a801461053957806342842e0e1461055957610397565b806318160ddd1461049a57806323b872dd146104af5780632eb4a7ab146104cf5780632f745c59146104e457610397565b8063081812fc11610375578063081812fc1461041657806308e5e45b14610443578063095ea7b3146104655780630990e5341461048557610397565b806301ffc9a71461039c57806302329a29146103d257806306fdde03146103f4575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612d4b565b610a54565b6040516103c99190612f5d565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612d19565b610a67565b005b34801561040057600080fd5b50610409610ad2565b6040516103c99190612f71565b34801561042257600080fd5b50610436610431366004612d33565b610b64565b6040516103c99190612ec8565b34801561044f57600080fd5b50610458610ba7565b6040516103c99190612f68565b34801561047157600080fd5b506103f2610480366004612cf0565b610bad565b34801561049157600080fd5b50610458610c45565b3480156104a657600080fd5b50610458610c4b565b3480156104bb57600080fd5b506103f26104ca366004612c13565b610c51565b3480156104db57600080fd5b50610458610c89565b3480156104f057600080fd5b506104586104ff366004612cf0565b610c8f565b34801561051057600080fd5b506103f261051f366004612d33565b610ce1565b34801561053057600080fd5b506103f2610d47565b34801561054557600080fd5b506103f2610554366004612d33565b610db9565b34801561056557600080fd5b506103f2610574366004612c13565b610e1f565b34801561058557600080fd5b506103f2610594366004612d33565b610e3a565b3480156105a557600080fd5b506105b96105b4366004612bc7565b610e6a565b6040516103c99190612f19565b3480156105d257600080fd5b506103f26105e1366004612d33565b610f28565b3480156105f257600080fd5b50610458610601366004612d33565b610f6c565b34801561061257600080fd5b506103f2610621366004612d83565b610fc7565b34801561063257600080fd5b506103bc611019565b34801561064757600080fd5b506103f2610656366004612d19565b611029565b34801561066757600080fd5b50610458611091565b34801561067c57600080fd5b5061043661068b366004612d33565b611097565b34801561069c57600080fd5b506103f26106ab366004612d33565b6110cc565b3480156106bc57600080fd5b506103f26106cb366004612d33565b611110565b3480156106dc57600080fd5b506103f26106eb366004612d33565b6111b8565b3480156106fc57600080fd5b50610458611238565b34801561071157600080fd5b50610458610720366004612bc7565b61123e565b34801561073157600080fd5b50610458611282565b34801561074657600080fd5b506103f2611288565b34801561075b57600080fd5b506103f261076a366004612d33565b6112d3565b34801561077b57600080fd5b506103bc611317565b34801561079057600080fd5b50610458611320565b3480156107a557600080fd5b506103f26107b4366004612d33565b611326565b3480156107c557600080fd5b5061043661136a565b3480156107da57600080fd5b506103f26107e9366004612d33565b611379565b6103f26107fc366004612dc9565b6113df565b34801561080d57600080fd5b5061040961167d565b34801561082257600080fd5b5061045861168c565b34801561083757600080fd5b506103f2610846366004612cc7565b611692565b34801561085757600080fd5b50610458611760565b34801561086c57600080fd5b5061088061087b366004612bc7565b611766565b6040516103c9929190612e8b565b6103f261089c366004612d33565b61177f565b3480156108ad57600080fd5b506103bc6108bc366004612bc7565b61199e565b3480156108cd57600080fd5b506103f26108dc366004612c4e565b6119b3565b3480156108ed57600080fd5b506103f26108fc366004612cc7565b6119f2565b34801561090d57600080fd5b5061040961091c366004612d33565b611a5c565b34801561092d57600080fd5b50610458611adf565b34801561094257600080fd5b50610458611ae5565b34801561095757600080fd5b50610409611aeb565b34801561096c57600080fd5b506103f261097b366004612d19565b611b79565b34801561098c57600080fd5b506103f261099b366004612d33565b611bee565b3480156109ac57600080fd5b50610458611d0c565b3480156109c157600080fd5b506103bc6109d0366004612be1565b611d12565b3480156109e157600080fd5b506103f26109f0366004612d33565b611d40565b348015610a0157600080fd5b506103f2610a10366004612bc7565b611da6565b348015610a2157600080fd5b50610458611e14565b348015610a3657600080fd5b50610458611e1a565b348015610a4b57600080fd5b506103bc611e20565b6000610a5f82611e3a565b90505b919050565b610a6f611e5f565b6001600160a01b0316610a8061136a565b6001600160a01b031614610aaf5760405162461bcd60e51b8152600401610aa690613461565b60405180910390fd5b60018115151415610ac757610ac2611e63565b610acf565b610acf611edb565b50565b606060008054610ae19061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d9061383a565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f82611f35565b610b8b5760405162461bcd60e51b8152600401610aa6906133ec565b506000908152600460205260409020546001600160a01b031690565b60105481565b6000610bb882611097565b9050806001600160a01b0316836001600160a01b03161415610bec5760405162461bcd60e51b8152600401610aa690613590565b806001600160a01b0316610bfe611e5f565b6001600160a01b03161480610c1a5750610c1a816109d0611e5f565b610c365760405162461bcd60e51b8152600401610aa6906132a5565b610c408383611f52565b505050565b60165481565b60085490565b610c62610c5c611e5f565b82611fc0565b610c7e5760405162461bcd60e51b8152600401610aa6906135d1565b610c40838383612045565b601a5481565b6000610c9a8361123e565b8210610cb85760405162461bcd60e51b8152600401610aa690612ffd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610ce9611e5f565b6001600160a01b0316610cfa61136a565b6001600160a01b031614610d205760405162461bcd60e51b8152600401610aa690613461565b80600e541015610d425760405162461bcd60e51b8152600401610aa690613438565b601155565b610d4f611e5f565b6001600160a01b0316610d6061136a565b6001600160a01b031614610d865760405162461bcd60e51b8152600401610aa690613461565b6040514790339082156108fc029083906000818181858888f19350505050158015610db5573d6000803e3d6000fd5b5050565b610dc1611e5f565b6001600160a01b0316610dd261136a565b6001600160a01b031614610df85760405162461bcd60e51b8152600401610aa690613461565b80600e541015610e1a5760405162461bcd60e51b8152600401610aa690613438565b601255565b610c40838383604051806020016040528060008152506119b3565b610e45610c5c611e5f565b610e615760405162461bcd60e51b8152600401610aa690613725565b610acf81612172565b60606000610e778361123e565b905060008167ffffffffffffffff811115610ea257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ecb578160200160208202803683370190505b50905060005b82811015610f2057610ee38582610c8f565b828281518110610f0357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f1881613875565b915050610ed1565b509392505050565b610f30611e5f565b6001600160a01b0316610f4161136a565b6001600160a01b031614610f675760405162461bcd60e51b8152600401610aa690613461565b601a55565b6000610f76610c4b565b8210610f945760405162461bcd60e51b8152600401610aa690613663565b60088281548110610fb557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610fcf611e5f565b6001600160a01b0316610fe061136a565b6001600160a01b0316146110065760405162461bcd60e51b8152600401610aa690613461565b8051610db5906019906020840190612a97565b600a54600160a01b900460ff1690565b611031611e5f565b6001600160a01b031661104261136a565b6001600160a01b0316146110685760405162461bcd60e51b8152600401610aa690613461565b601d5460ff161515811515141561107e57600080fd5b601d805460ff1916911515919091179055565b60175481565b6000818152600260205260408120546001600160a01b031680610a5f5760405162461bcd60e51b8152600401610aa69061334c565b6110d4611e5f565b6001600160a01b03166110e561136a565b6001600160a01b03161461110b5760405162461bcd60e51b8152600401610aa690613461565b601755565b611118611e5f565b6001600160a01b031661112961136a565b6001600160a01b03161461114f5760405162461bcd60e51b8152600401610aa690613461565b8060145411156111715760405162461bcd60e51b8152600401610aa690613438565b6111928161118c60165460155461221990919063ffffffff16565b90612219565b600c5410156111b35760405162461bcd60e51b8152600401610aa690613438565b600d55565b6111c0611e5f565b6001600160a01b03166111d161136a565b6001600160a01b0316146111f75760405162461bcd60e51b8152600401610aa690613461565b61121460155461118c601654600d5461221990919063ffffffff16565b8110156112335760405162461bcd60e51b8152600401610aa690613438565b600c55565b600c5481565b60006001600160a01b0382166112665760405162461bcd60e51b8152600401610aa690613302565b506001600160a01b031660009081526003602052604090205490565b60125481565b611290611e5f565b6001600160a01b03166112a161136a565b6001600160a01b0316146112c75760405162461bcd60e51b8152600401610aa690613461565b6112d16000612225565b565b6112db611e5f565b6001600160a01b03166112ec61136a565b6001600160a01b0316146113125760405162461bcd60e51b8152600401610aa690613461565b601855565b601d5460ff1681565b60185481565b61132e611e5f565b6001600160a01b031661133f61136a565b6001600160a01b0316146113655760405162461bcd60e51b8152600401610aa690613461565b601355565b600a546001600160a01b031690565b611381611e5f565b6001600160a01b031661139261136a565b6001600160a01b0316146113b85760405162461bcd60e51b8152600401610aa690613461565b80600e5410156113da5760405162461bcd60e51b8152600401610aa690613438565b600f55565b600c546113ea612277565b11156114085760405162461bcd60e51b8152600401610aa6906133ca565b61141061136a565b6001600160a01b0316611421611e5f565b6001600160a01b03161461145457611437611019565b156114545760405162461bcd60e51b8152600401610aa69061323a565b600061146d60165460155461221990919063ffffffff16565b90506000336040516020016114829190612e6e565b60408051601f198184030181529190528051602090910120601d5490915060ff166114bf5760405162461bcd60e51b8152600401610aa69061320a565b61150084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a549150849050612288565b61151c5760405162461bcd60e51b8152600401610aa690613264565b600e546115298387612219565b11156115475760405162461bcd60e51b8152600401610aa690613775565b336000908152601b602052604090205460ff1615611586576013548511156115815760405162461bcd60e51b8152600401610aa6906136df565b6115a8565b6011548511156115a85760405162461bcd60e51b8152600401610aa6906136df565b600f54336000908152601c60205260409020546115c59087612219565b11156115e35760405162461bcd60e51b8152600401610aa690613622565b6017546115f09086612343565b34101561160f5760405162461bcd60e51b8152600401610aa690613565565b60005b8581101561164b576116233361234f565b6015805490600061163383613875565b9190505550808061164390613875565b915050611612565b50336000908152601c60205260409020546116669086612219565b336000908152601c60205260409020555050505050565b606060018054610ae19061383a565b600e5481565b61169a611e5f565b6001600160a01b0316826001600160a01b031614156116cb5760405162461bcd60e51b8152600401610aa69061315b565b80600560006116d8611e5f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561171c611e5f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117549190612f5d565b60405180910390a35050565b60135481565b601c602052600090815260409020805460019091015482565b600c5461178a612277565b11156117a85760405162461bcd60e51b8152600401610aa6906133ca565b6117b061136a565b6001600160a01b03166117c1611e5f565b6001600160a01b0316146117f4576117d7611019565b156117f45760405162461bcd60e51b8152600401610aa69061323a565b600061180d60165460155461221990919063ffffffff16565b601d54909150610100900460ff166118375760405162461bcd60e51b8152600401610aa690613192565b336000908152601b602052604090205460ff1615611876576013548211156118715760405162461bcd60e51b8152600401610aa6906136df565b611898565b6012548211156118985760405162461bcd60e51b8152600401610aa6906136df565b601054336000908152601c60205260409020600101546118b89084612219565b11156118d65760405162461bcd60e51b8152600401610aa690613622565b600e546118e38284612219565b11156119015760405162461bcd60e51b8152600401610aa6906136af565b60185461190e9083612343565b34101561192d5760405162461bcd60e51b8152600401610aa690613565565b60005b82811015611969576119413361234f565b6016805490600061195183613875565b9190505550808061196190613875565b915050611930565b50336000908152601c60205260409020600101546119879083612219565b336000908152601c60205260409020600101555050565b601b6020526000908152604090205460ff1681565b6119c46119be611e5f565b83611fc0565b6119e05760405162461bcd60e51b8152600401610aa6906135d1565b6119ec8484848461239e565b50505050565b6119fa611e5f565b6001600160a01b0316611a0b61136a565b6001600160a01b031614611a315760405162461bcd60e51b8152600401610aa690613461565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6060611a6782611f35565b611a835760405162461bcd60e51b8152600401610aa6906134df565b6000611a8d6123d1565b90506000815111611aad5760405180602001604052806000815250611ad8565b80611ab7846123e0565b604051602001611ac8929190612e99565b6040516020818303038152906040525b9392505050565b60115481565b600d5481565b60198054611af89061383a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b249061383a565b8015611b715780601f10611b4657610100808354040283529160200191611b71565b820191906000526020600020905b815481529060010190602001808311611b5457829003601f168201915b505050505081565b611b81611e5f565b6001600160a01b0316611b9261136a565b6001600160a01b031614611bb85760405162461bcd60e51b8152600401610aa690613461565b601d5460ff6101009091041615158115151415611bd457600080fd5b601d80549115156101000261ff0019909216919091179055565b600c54611bf9612277565b1115611c175760405162461bcd60e51b8152600401610aa6906133ca565b611c1f61136a565b6001600160a01b0316611c30611e5f565b6001600160a01b031614611c6357611c46611019565b15611c635760405162461bcd60e51b8152600401610aa69061323a565b611c6b611e5f565b6001600160a01b0316611c7c61136a565b6001600160a01b031614611ca25760405162461bcd60e51b8152600401610aa690613461565b601454600d54611cb28284612219565b1115611cd05760405162461bcd60e51b8152600401610aa69061352e565b60005b82811015610c4057611ce43361234f565b60148054906000611cf483613875565b91905055508080611d0490613875565b915050611cd3565b60155481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611d48611e5f565b6001600160a01b0316611d5961136a565b6001600160a01b031614611d7f5760405162461bcd60e51b8152600401610aa690613461565b80600e541015611da15760405162461bcd60e51b8152600401610aa690613438565b601055565b611dae611e5f565b6001600160a01b0316611dbf61136a565b6001600160a01b031614611de55760405162461bcd60e51b8152600401610aa690613461565b6001600160a01b038116611e0b5760405162461bcd60e51b8152600401610aa69061309a565b610acf81612225565b60145481565b600f5481565b601d54610100900460ff1681565b6000611ad882846137f7565b60006001600160e01b0319821663780e9d6360e01b1480610a5f5750610a5f826124fb565b3390565b611e6b611019565b15611e885760405162461bcd60e51b8152600401610aa69061323a565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ec4611e5f565b604051611ed19190612ec8565b60405180910390a1565b611ee3611019565b611eff5760405162461bcd60e51b8152600401610aa690612fcf565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ec4611e5f565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f8782611097565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fcb82611f35565b611fe75760405162461bcd60e51b8152600401610aa6906131be565b6000611ff283611097565b9050806001600160a01b0316846001600160a01b0316148061202d5750836001600160a01b031661202284610b64565b6001600160a01b0316145b8061203d575061203d8185611d12565b949350505050565b826001600160a01b031661205882611097565b6001600160a01b03161461207e5760405162461bcd60e51b8152600401610aa690613496565b6001600160a01b0382166120a45760405162461bcd60e51b8152600401610aa690613117565b6120af83838361253b565b6120ba600082611f52565b6001600160a01b03831660009081526003602052604081208054600192906120e39084906137f7565b90915550506001600160a01b03821660009081526003602052604081208054600192906121119084906137ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061217d82611097565b905061218b8160008461253b565b612196600083611f52565b6001600160a01b03811660009081526003602052604081208054600192906121bf9084906137f7565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611ad882846137ac565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612283600b612546565b905090565b600081815b85518110156123385760008682815181106122b857634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116122f95782816040516020016122dc929190612e8b565b604051602081830303815290604052805190602001209250612325565b808360405160200161230c929190612e8b565b6040516020818303038152906040528051906020012092505b508061233081613875565b91505061228d565b509092149392505050565b6000611ad882846137d8565b6000612359612277565b9050612365600b61254a565b61236f8282612553565b60405181907f94967b4062e43c28f94fa1d70e13c47f3cecd354b43539126be0bc8d5e61a11c90600090a25050565b6123a9848484612045565b6123b58484848461256d565b6119ec5760405162461bcd60e51b8152600401610aa690613048565b606060198054610ae19061383a565b60608161240557506040805180820190915260018152600360fc1b6020820152610a62565b8160005b811561242f578061241981613875565b91506124289050600a836137c4565b9150612409565b60008167ffffffffffffffff81111561245857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612482576020820181803683370190505b5090505b841561203d576124976001836137f7565b91506124a4600a86613890565b6124af9060306137ac565b60f81b8183815181106124d257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506124f4600a866137c4565b9450612486565b60006001600160e01b031982166380ac58cd60e01b148061252c57506001600160e01b03198216635b5e139f60e01b145b80610a5f5750610a5f82612688565b610c408383836126a1565b5490565b80546001019055565b610db58282604051806020016040528060008152506126f8565b6000612581846001600160a01b031661272b565b1561267d57836001600160a01b031663150b7a0261259d611e5f565b8786866040518563ffffffff1660e01b81526004016125bf9493929190612edc565b602060405180830381600087803b1580156125d957600080fd5b505af1925050508015612609575060408051601f3d908101601f1916820190925261260691810190612d67565b60015b612663573d808015612637576040519150601f19603f3d011682016040523d82523d6000602084013e61263c565b606091505b50805161265b5760405162461bcd60e51b8152600401610aa690613048565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203d565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6126ac838383612731565b6126b461136a565b6001600160a01b03166126c5611e5f565b6001600160a01b031614610c40576126db611019565b15610c405760405162461bcd60e51b8152600401610aa690612f84565b61270283836127ba565b61270f600084848461256d565b610c405760405162461bcd60e51b8152600401610aa690613048565b3b151590565b61273c838383610c40565b6001600160a01b0383166127585761275381612899565b61277b565b816001600160a01b0316836001600160a01b03161461277b5761277b83826128dd565b6001600160a01b038216612797576127928161297a565b610c40565b826001600160a01b0316826001600160a01b031614610c4057610c408282612a53565b6001600160a01b0382166127e05760405162461bcd60e51b8152600401610aa690613395565b6127e981611f35565b156128065760405162461bcd60e51b8152600401610aa6906130e0565b6128126000838361253b565b6001600160a01b038216600090815260036020526040812080546001929061283b9084906137ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016128ea8461123e565b6128f491906137f7565b600083815260076020526040902054909150808214612947576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061298c906001906137f7565b600083815260096020526040812054600880549394509092849081106129c257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106129f157634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a3757634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a5e8361123e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612aa39061383a565b90600052602060002090601f016020900481019282612ac55760008555612b0b565b82601f10612ade57805160ff1916838001178555612b0b565b82800160010185558215612b0b579182015b82811115612b0b578251825591602001919060010190612af0565b50612b17929150612b1b565b5090565b5b80821115612b175760008155600101612b1c565b600067ffffffffffffffff80841115612b4b57612b4b6138d0565b604051601f8501601f191681016020018281118282101715612b6f57612b6f6138d0565b604052848152915081838501861015612b8757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b0381168114610a6257600080fd5b80358015158114610a6257600080fd5b600060208284031215612bd8578081fd5b611ad882612ba0565b60008060408385031215612bf3578081fd5b612bfc83612ba0565b9150612c0a60208401612ba0565b90509250929050565b600080600060608486031215612c27578081fd5b612c3084612ba0565b9250612c3e60208501612ba0565b9150604084013590509250925092565b60008060008060808587031215612c63578081fd5b612c6c85612ba0565b9350612c7a60208601612ba0565b925060408501359150606085013567ffffffffffffffff811115612c9c578182fd5b8501601f81018713612cac578182fd5b612cbb87823560208401612b30565b91505092959194509250565b60008060408385031215612cd9578182fd5b612ce283612ba0565b9150612c0a60208401612bb7565b60008060408385031215612d02578182fd5b612d0b83612ba0565b946020939093013593505050565b600060208284031215612d2a578081fd5b611ad882612bb7565b600060208284031215612d44578081fd5b5035919050565b600060208284031215612d5c578081fd5b8135611ad8816138e6565b600060208284031215612d78578081fd5b8151611ad8816138e6565b600060208284031215612d94578081fd5b813567ffffffffffffffff811115612daa578182fd5b8201601f81018413612dba578182fd5b61203d84823560208401612b30565b600080600060408486031215612ddd578283fd5b83359250602084013567ffffffffffffffff80821115612dfb578384fd5b818601915086601f830112612e0e578384fd5b813581811115612e1c578485fd5b8760208083028501011115612e2f578485fd5b6020830194508093505050509250925092565b60008151808452612e5a81602086016020860161380e565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612eab81846020880161380e565b835190830190612ebf81836020880161380e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0f90830184612e42565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f5157835183529284019291840191600101612f35565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611ad86020830184612e42565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f45786365656473206d6178206769766561776179206c696d6974000000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260169082015275115e18d959591cc81b585e081cd85b19481b1a5b5a5d60521b604082015260600190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b6020808252601a908201527f45786365656473206d6178207072652d73616c65206c696d6974000000000000604082015260600190565b600082198211156137bf576137bf6138a4565b500190565b6000826137d3576137d36138ba565b500490565b60008160001904831182151516156137f2576137f26138a4565b500290565b600082821015613809576138096138a4565b500390565b60005b83811015613829578181015183820152602001613811565b838111156119ec5750506000910152565b60028104600182168061384e57607f821691505b6020821081141561386f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613889576138896138a4565b5060010190565b60008261389f5761389f6138ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acf57600080fdfea2646970667358221220d2e07ce1fa164ee4d4cec739b5312ffba60973cc21845eb4cdab936b6e45827d64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5172724c6a4e78594356644458596e525663797637746444446d46646953614d4d3458784d665970786d69322f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmQrrLjNxYCVdDXYnRVcyv7tdDDmFdiSaMM4XxMfYpxmi2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5172724c6a4e78594356644458596e5256637976377464
Arg [3] : 44446d46646953614d4d3458784d665970786d69322f00000000000000000000


Deployed Bytecode Sourcemap

292:7699:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5728:179;;;;;;;;;;-1:-1:-1;5728:179:16;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5166:154;;;;;;;;;;-1:-1:-1;5166:154:16;;;;;:::i;:::-;;:::i;:::-;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;674:42:16:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3508:411:4:-;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;943:26:16:-;;;;;;;;;;;;;:::i;1577:113:6:-;;;;;;;;;;;;;:::i;4875:339:4:-;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;1103:25:16:-;;;;;;;;;;;;;:::i;1245:256:6:-;;;;;;;;;;-1:-1:-1;1245:256:6;;;;;:::i;:::-;;:::i;6769:203:16:-;;;;;;;;;;-1:-1:-1;6769:203:16;;;;;:::i;:::-;;:::i;5329:143::-;;;;;;;;;;;;;:::i;6978:197::-;;;;;;;;;;-1:-1:-1;6978:197:16;;;;;:::i;:::-;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;456:245:5:-;;;;;;;;;;-1:-1:-1;456:245:5;;;;;:::i;:::-;;:::i;4809:349:16:-;;;;;;;;;;-1:-1:-1;4809:349:16;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7894:94::-;;;;;;;;;;-1:-1:-1;7894:94:16;;;;;:::i;:::-;;:::i;1767:233:6:-;;;;;;;;;;-1:-1:-1;1767:233:6;;;;;:::i;:::-;;:::i;4699:101:16:-;;;;;;;;;;-1:-1:-1;4699:101:16;;;;;:::i;:::-;;:::i;1072:86:15:-;;;;;;;;;;;;;:::i;6137:138:16:-;;;;;;;;;;-1:-1:-1;6137:138:16;;;;;:::i;:::-;;:::i;976:43::-;;;;;;;;;;;;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;5913:108:16:-;;;;;;;;;;-1:-1:-1;5913:108:16;;;;;:::i;:::-;;:::i;7300:260::-;;;;;;;;;;-1:-1:-1;7300:260:16;;;;;:::i;:::-;;:::i;7566:193::-;;;;;;;;;;-1:-1:-1;7566:193:16;;;;;:::i;:::-;;:::i;496:30::-;;;;;;;;;;;;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;777:51:16:-;;;;;;;;;;;;;:::i;1650:94:14:-;;;;;;;;;;;;;:::i;6029:102:16:-;;;;;;;;;;-1:-1:-1;6029:102:16;;;;;:::i;:::-;;:::i;1302:33::-;;;;;;;;;;;;;:::i;1023:40::-;;;;;;;;;;;;;:::i;7181:113::-;;;;;;;;;;-1:-1:-1;7181:113:16;;;;;:::i;:::-;;:::i;999:87:14:-;;;;;;;;;;;;;:::i;6589:174:16:-;;;;;;;;;;-1:-1:-1;6589:174:16;;;;;:::i;:::-;;:::i;2228:1191::-;;;;;;:::i;:::-;;:::i;2595:104:4:-;;;;;;;;;;;;;:::i;567:51:16:-;;;;;;;;;;;;;:::i;4278:295:4:-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;832:37:16:-;;;;;;;;;;;;;:::i;1257:38::-;;;;;;;;;;-1:-1:-1;1257:38:16;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3425:950::-;;;;;;:::i;:::-;;:::i;1135:44::-;;;;;;;;;;-1:-1:-1;1135:44:16;;;;;:::i;:::-;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;7765:123:16:-;;;;;;;;;;-1:-1:-1;7765:123:16;;;;;:::i;:::-;;:::i;2770:334:4:-;;;;;;;;;;-1:-1:-1;2770:334:4;;;;;:::i;:::-;;:::i;720:53:16:-;;;;;;;;;;;;;:::i;530:33::-;;;;;;;;;;;;;:::i;1073:26::-;;;;;;;;;;;;;:::i;6281:128::-;;;;;;;;;;-1:-1:-1;6281:128:16;;;;;:::i;:::-;;:::i;1884:338::-;;;;;;;;;;-1:-1:-1;1884:338:16;;;;;:::i;:::-;;:::i;910:29::-;;;;;;;;;;;;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;;:::i;6415:168:16:-;;;;;;;;;;-1:-1:-1;6415:168:16;;;;;:::i;:::-;;:::i;1899:192:14:-;;;;;;;;;;-1:-1:-1;1899:192:14;;;;;:::i;:::-;;:::i;876:30:16:-;;;;;;;;;;;;;:::i;625:45::-;;;;;;;;;;;;;:::i;1339:30::-;;;;;;;;;;;;;:::i;5728:179::-;5839:4;5863:36;5887:11;5863:23;:36::i;:::-;5856:43;;5728:179;;;;:::o;5166:154::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;;;;;;;;;5230:4:16::1;5223:11:::0;::::1;;;5219:73;;;5251:8;:6;:8::i;:::-;5274:7;;5219:73;5302:10;:8;:10::i;:::-;5166:154:::0;:::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;-1:-1:-1;;;4081:73:4;;;;;;;:::i;:::-;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;674:42:16:-;;;;:::o;3508:411:4:-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;;;;;;:::i;:::-;3747:5;-1:-1:-1;;;;;3731:21:4;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3731:21:4;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;;;;;;:::i;:::-;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3508:411;;;:::o;943:26:16:-;;;;:::o;1577:113:6:-;1665:10;:17;1577:113;:::o;4875:339:4:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;1103:25:16:-;;;;:::o;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;;1467:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;6769:203:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6880:8:16::1;6868;;:20;;6860:48;;;;-1:-1:-1::0;;;6860:48:16::1;;;;;;;:::i;:::-;6919:34;:45:::0;6769:203::o;5329:143::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;5427:37:16::1;::::0;5395:21:::1;::::0;5435:10:::1;::::0;5427:37;::::1;;;::::0;5395:21;;5377:15:::1;5427:37:::0;5377:15;5427:37;5395:21;5435:10;5427:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:14;5329:143:16:o:0;6978:197::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;7086:8:16::1;7074;;:20;;7066:48;;;;-1:-1:-1::0;;;7066:48:16::1;;;;;;;:::i;:::-;7125:31;:42:::0;6978:197::o;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;456:245:5:-;574:41;593:12;:10;:12::i;574:41::-;566:102;;;;-1:-1:-1;;;566:102:5;;;;;;;:::i;:::-;679:14;685:7;679:5;:14::i;4809:349:16:-;4871:16;4900:18;4921:17;4931:6;4921:9;:17::i;:::-;4900:38;;4949:25;4991:10;4977:25;;;;;;-1:-1:-1;;;4977:25:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4977:25:16;;4949:53;;5018:9;5013:112;5037:10;5033:1;:14;5013:112;;;5083:30;5103:6;5111:1;5083:19;:30::i;:::-;5069:8;5078:1;5069:11;;;;;;-1:-1:-1;;;5069:11:16;;;;;;;;;;;;;;;;;;:44;5049:3;;;;:::i;:::-;;;;5013:112;;;-1:-1:-1;5142:8:16;4809:349;-1:-1:-1;;;4809:349:16:o;7894:94::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;7963:10:16::1;:20:::0;7894:94::o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:6;;;;;;;:::i;:::-;1975:10;1986:5;1975:17;;;;;;-1:-1:-1;;;1975:17:6;;;;;;;;;;;;;;;;;1968:24;;1767:233;;;:::o;4699:101:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;4770:22:16;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;1072:86:15:-:0;1143:7;;-1:-1:-1;;;1143:7:15;;;;;1072:86::o;6137:138:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6209:13:16::1;::::0;::::1;;:24;;::::0;::::1;;;;6201:33;;;::::0;::::1;;6244:13;:23:::0;;-1:-1:-1;;6244:23:16::1;::::0;::::1;;::::0;;;::::1;::::0;;6137:138::o;976:43::-;;;;:::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;;;;;;:::i;5913:108:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;5989:13:16::1;:24:::0;5913:108::o;7300:260::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;7401:8:16::1;7382:15;;:27;;7374:55;;;;-1:-1:-1::0;;;7374:55:16::1;;;;;;;:::i;:::-;7453:45;7489:8;7453:31;7472:11;;7453:14;;:18;;:31;;;;:::i;:::-;:35:::0;::::1;:45::i;:::-;7442:7;;:56;;7434:84;;;;-1:-1:-1::0;;;7434:84:16::1;;;;;;;:::i;:::-;7529:12;:23:::0;7300:260::o;7566:193::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;7652:49:16::1;7686:14;;7652:29;7669:11;;7652:12;;:16;;:29;;;;:::i;:49::-;7639:9;:62;;7631:90;;;;-1:-1:-1::0;;;7631:90:16::1;;;;;;;:::i;:::-;7732:7;:19:::0;7566:193::o;496:30::-;;;;:::o;1850:208:4:-;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;777:51:16:-;;;;:::o;1650:94:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;6029:102:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6102:10:16::1;:21:::0;6029:102::o;1302:33::-;;;;;;:::o;1023:40::-;;;;:::o;7181:113::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;7259:16:16::1;:27:::0;7181:113::o;999:87:14:-;1072:6;;-1:-1:-1;;;;;1072:6:14;999:87;:::o;6589:174:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6686:8:16::1;6674;;:20;;6666:48;;;;-1:-1:-1::0;;;6666:48:16::1;;;;;;;:::i;:::-;6725:19;:30:::0;6589:174::o;2228:1191::-;1621:7;;1603:14;:12;:14::i;:::-;:25;;1595:46;;;;-1:-1:-1;;;1595:46:16;;;;;;;:::i;:::-;1672:7;:5;:7::i;:::-;-1:-1:-1;;;;;1656:23:16;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1656:23:16;;1652:94;;1705:8;:6;:8::i;:::-;1704:9;1696:38;;;;-1:-1:-1;;;1696:38:16;;;;;;;:::i;:::-;2337:13:::1;2353:31;2372:11;;2353:14;;:18;;:31;;;;:::i;:::-;2337:47;;2389:12;2431:10;2414:28;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;2414:28:16;;::::1;::::0;;;;;;2404:39;;2414:28:::1;2404:39:::0;;::::1;::::0;2461:13:::1;::::0;2404:39;;-1:-1:-1;2461:13:16::1;;2448:62;;;;-1:-1:-1::0;;;2448:62:16::1;;;;;;;:::i;:::-;2528:49;2547:11;;2528:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;2560:10:16::1;::::0;;-1:-1:-1;2572:4:16;;-1:-1:-1;2528:18:16::1;:49::i;:::-;2515:109;;;;-1:-1:-1::0;;;2515:109:16::1;;;;;;;:::i;:::-;2663:8;::::0;2642:17:::1;:5:::0;2652:6;2642:9:::1;:17::i;:::-;:29;;2629:82;;;;-1:-1:-1::0;;;2629:82:16::1;;;;;;;:::i;:::-;2731:10;2719:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;2716:281;;;2780:16;;2770:6;:26;;2756:96;;;;-1:-1:-1::0;;;2756:96:16::1;;;;;;;:::i;:::-;2716:281;;;2902:34;;2892:6;:44;;2878:113;;;;-1:-1:-1::0;;;2878:113:16::1;;;;;;;:::i;:::-;3059:19;::::0;3020:10:::1;3014:17;::::0;;;:5:::1;:17;::::0;;;;:29;:41:::1;::::0;3048:6;3014:33:::1;:41::i;:::-;:64;;3001:124;;;;-1:-1:-1::0;;;3001:124:16::1;;;;;;;:::i;:::-;3156:13;::::0;:25:::1;::::0;3174:6;3156:17:::1;:25::i;:::-;3143:9;:38;;3130:81;;;;-1:-1:-1::0;;;3130:81:16::1;;;;;;;:::i;:::-;3227:9;3222:112;3246:6;3242:1;:10;3222:112;;;3274:26;3289:10;3274:14;:26::i;:::-;3306:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;3254:3;;;;;:::i;:::-;;;;3222:112;;;-1:-1:-1::0;3376:10:16::1;3370:17;::::0;;;:5:::1;:17;::::0;;;;:29;:41:::1;::::0;3404:6;3370:33:::1;:41::i;:::-;3344:10;3338:17;::::0;;;:5:::1;:17;::::0;;;;:73;-1:-1:-1;;;;;2228:1191:16:o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;567:51:16:-;;;;:::o;4278:295:4:-;4393:12;:10;:12::i;:::-;-1:-1:-1;;;;;4381:24:4;:8;-1:-1:-1;;;;;4381:24:4;;;4373:62;;;;-1:-1:-1;;;4373:62:4;;;;;;;:::i;:::-;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;-1:-1:-1;;;;;4448:32:4;;;;;;;;;;;;;;;;;-1:-1:-1;4448:32:4;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;;4532:12;:10;:12::i;:::-;-1:-1:-1;;;;;4517:48:4;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;832:37:16:-;;;;:::o;1257:38::-;;;;;;;;;;;;;;;;;;;:::o;3425:950::-;1621:7;;1603:14;:12;:14::i;:::-;:25;;1595:46;;;;-1:-1:-1;;;1595:46:16;;;;;;;:::i;:::-;1672:7;:5;:7::i;:::-;-1:-1:-1;;;;;1656:23:16;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1656:23:16;;1652:94;;1705:8;:6;:8::i;:::-;1704:9;1696:38;;;;-1:-1:-1;;;1696:38:16;;;;;;;:::i;:::-;3499:13:::1;3515:31;3534:11;;3515:14;;:18;;:31;;;;:::i;:::-;3564:10;::::0;3499:47;;-1:-1:-1;3564:10:16::1;::::0;::::1;;;3551:55;;;;-1:-1:-1::0;;;3551:55:16::1;;;;;;;:::i;:::-;3626:10;3614:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;3611:278;;;3675:16;;3665:6;:26;;3651:96;;;;-1:-1:-1::0;;;3651:96:16::1;;;;;;;:::i;:::-;3611:278;;;3797:31;;3787:6;:41;;3773:110;;;;-1:-1:-1::0;;;3773:110:16::1;;;;;;;:::i;:::-;3948:16;::::0;3912:10:::1;3906:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:38:::1;::::0;3937:6;3906:30:::1;:38::i;:::-;:58;;3893:117;;;;-1:-1:-1::0;;;3893:117:16::1;;;;;;;:::i;:::-;4049:8;::::0;4028:17:::1;:5:::0;4038:6;4028:9:::1;:17::i;:::-;:29;;4015:78;;;;-1:-1:-1::0;;;4015:78:16::1;;;;;;;:::i;:::-;4124:10;::::0;:22:::1;::::0;4139:6;4124:14:::1;:22::i;:::-;4111:9;:35;;4098:78;;;;-1:-1:-1::0;;;4098:78:16::1;;;;;;;:::i;:::-;4192:9;4187:109;4211:6;4207:1;:10;4187:109;;;4239:26;4254:10;4239:14;:26::i;:::-;4271:11;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;4219:3;;;;;:::i;:::-;;;;4187:109;;;-1:-1:-1::0;4335:10:16::1;4329:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;::::0;:38:::1;::::0;4360:6;4329:30:::1;:38::i;:::-;4306:10;4300:17;::::0;;;:5:::1;:17;::::0;;;;:26:::1;;:67:::0;-1:-1:-1;;3425:950:16:o;1135:44::-;;;;;;;;;;;;;;;:::o;5541:328:4:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;7765:123:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;7851:20:16;;;::::1;;::::0;;;:11:::1;:20;::::0;;;;:29;;-1:-1:-1;;7851:29:16::1;::::0;::::1;;::::0;;;::::1;::::0;;7765:123::o;2770:334:4:-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;-1:-1:-1;;;2869:76:4;;;;;;;:::i;:::-;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:4:o;720:53:16:-;;;;:::o;530:33::-;;;;:::o;1073:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6281:128::-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6354:10:16::1;::::0;::::1;;::::0;;::::1;;:21;;::::0;::::1;;;;6346:30;;;::::0;::::1;;6381:10;:20:::0;;;::::1;;;;-1:-1:-1::0;;6381:20:16;;::::1;::::0;;;::::1;::::0;;6281:128::o;1884:338::-;1621:7;;1603:14;:12;:14::i;:::-;:25;;1595:46;;;;-1:-1:-1;;;1595:46:16;;;;;;;:::i;:::-;1672:7;:5;:7::i;:::-;-1:-1:-1;;;;;1656:23:16;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1656:23:16;;1652:94;;1705:8;:6;:8::i;:::-;1704:9;1696:38;;;;-1:-1:-1;;;1696:38:16;;;;;;;:::i;:::-;1230:12:14::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1219:23:14::1;:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;1219:23:14::1;;1211:68;;;;-1:-1:-1::0;;;1211:68:14::1;;;;;;;:::i;:::-;1979:15:16::2;::::0;2039:12:::2;::::0;2018:17:::2;1979:15:::0;2028:6;2018:9:::2;:17::i;:::-;:33;;2005:86;;;;-1:-1:-1::0;;;2005:86:16::2;;;;;;;:::i;:::-;2107:9;2102:113;2126:6;2122:1;:10;2102:113;;;2154:26;2169:10;2154:14;:26::i;:::-;2186:15;:17:::0;;;:15:::2;:17;::::0;::::2;:::i;:::-;;;;;;2134:3;;;;;:::i;:::-;;;;2102:113;;910:29:::0;;;;:::o;4644:164:4:-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164::o;6415:168:16:-;1230:12:14;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;6509:8:16::1;6497;;:20;;6489:48;;;;-1:-1:-1::0;;;6489:48:16::1;;;;;;;:::i;:::-;6548:16;:27:::0;6415:168::o;1899:192:14:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:14;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:14;;1211:68;;;;-1:-1:-1;;;1211:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:14;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:14::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;876:30:16:-:0;;;;:::o;625:45::-;;;;:::o;1339:30::-;;;;;;;;;:::o;3144:98:17:-;3202:7;3229:5;3233:1;3229;:5;:::i;937:224:6:-;1039:4;-1:-1:-1;;;;;;1063:50:6;;-1:-1:-1;;;1063:50:6;;:90;;;1117:36;1141:11;1117:23;:36::i;601:98:1:-;681:10;601:98;:::o;1872:118:15:-;1398:8;:6;:8::i;:::-;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:15;;;;;;;:::i;:::-;1932:7:::1;:14:::0;;-1:-1:-1;;;;1932:14:15::1;-1:-1:-1::0;;;1932:14:15::1;::::0;;1962:20:::1;1969:12;:10;:12::i;:::-;1962:20;;;;;;:::i;:::-;;;;;;;;1872:118::o:0;2131:120::-;1675:8;:6;:8::i;:::-;1667:41;;;;-1:-1:-1;;;1667:41:15;;;;;;;:::i;:::-;2190:7:::1;:15:::0;;-1:-1:-1;;;;2190:15:15::1;::::0;;2221:22:::1;2230:12;:10;:12::i;7379:127:4:-:0;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;;;7379:127::o;11361:174::-;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;-1:-1:-1;;;7783:73:4;;;;;;;:::i;:::-;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;;;;;;:::i;:::-;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:4;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:4;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:4;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:4;;;;;10250:16;;10284:36;9968:360;;:::o;2763:98:17:-;2821:7;2848:5;2852:1;2848;:5;:::i;2099:173:14:-;2174:6;;;-1:-1:-1;;;;;2191:17:14;;;-1:-1:-1;;;;;;2191:17:14;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;1774:104:16:-;1821:4;1845:25;:15;:23;:25::i;:::-;1838:32;;1774:104;:::o;797:830:13:-;922:4;962;922;979:525;1003:5;:12;999:1;:16;979:525;;;1037:20;1060:5;1066:1;1060:8;;;;;;-1:-1:-1;;;1060:8:13;;;;;;;;;;;;;;;1037:31;;1105:12;1089;:28;1085:408;;1259:12;1273;1242:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1232:55;;;;;;1217:70;;1085:408;;;1449:12;1463;1432:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1422:55;;;;;;1407:70;;1085:408;-1:-1:-1;1017:3:13;;;;:::i;:::-;;;;979:525;;;-1:-1:-1;1599:20:13;;;;797:830;-1:-1:-1;;;797:830:13:o;3501:98:17:-;3559:7;3586:5;3590:1;3586;:5;:::i;4384:185:16:-;4440:7;4450:14;:12;:14::i;:::-;4440:24;;4475:27;:15;:25;:27::i;:::-;4513:18;4523:3;4528:2;4513:9;:18::i;:::-;4547:14;;4558:2;;4547:14;;;;;4384:185;;:::o;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;4580:113:16:-;4640:13;4673:12;4666:19;;;;;:::i;288:723:18:-;344:13;565:10;561:53;;-1:-1:-1;592:10:18;;;;;;;;;;;;-1:-1:-1;;;592:10:18;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:18;;-1:-1:-1;744:2:18;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:18;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:18;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:18;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:18;;;;;;;;-1:-1:-1;949:11:18;958:2;949:11;;:::i;:::-;;;818:154;;1481:305:4;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;5481:239:16:-;5667:45;5694:4;5700:2;5704:7;5667:26;:45::i;793:114:2:-;885:14;;793:114::o;915:127::-;1004:19;;1022:1;1004:19;;;915:127::o;8363:110:4:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;12100:803::-;12255:4;12276:15;:2;-1:-1:-1;;;;;12276:13:4;;:15::i;:::-;12272:624;;;12328:2;-1:-1:-1;;;;;12312:36:4;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:4;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:4;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:4;-1:-1:-1;;;12435:55:4;;-1:-1:-1;12428:62:4;;12272:624;-1:-1:-1;12880:4:4;12100:803;;;;;;:::o;787:157:3:-;-1:-1:-1;;;;;;896:40:3;;-1:-1:-1;;;896:40:3;787:157;;;:::o;637:328:7:-;781:45;808:4;814:2;818:7;781:26;:45::i;:::-;857:7;:5;:7::i;:::-;-1:-1:-1;;;;;841:23:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;841:23:7;;837:121;;890:8;:6;:8::i;:::-;889:9;881:65;;;;-1:-1:-1;;;881:65:7;;;;;;;:::i;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;;;;;;:::i;743:387:0:-;1066:20;1114:8;;;743:387::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;-1:-1:-1;;;;;2819:18:6;;2815:187;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:6;:4;-1:-1:-1;;;;;2916:10:6;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:6;;3012:183;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;-1:-1:-1;;;;;3116:10:6;:2;-1:-1:-1;;;;;3116:10:6;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;;;;;;:::i;:::-;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;-1:-1:-1;;;9501:58:4;;;;;;;:::i;:::-;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;3925:164:6:-;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:6;;;5194:328;;-1:-1:-1;;;;;5265:18:6;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:6;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:6;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:6;;6252:46;;6703:26;;;;-1:-1:-1;;;6703:26:6;;;;;;;;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;-1:-1:-1;;;6742:22:6;;;;;;;;;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;-1:-1:-1;;;7054:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;5999:1079;;;;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:19;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:19;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:19;473:16;;;470:25;-1:-1:-1;467:2:19;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:19;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:19;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:19:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:190::-;;3362:2;3350:9;3341:7;3337:23;3333:32;3330:2;;;3383:6;3375;3368:22;3330:2;-1:-1:-1;3411:23:19;;3320:120;-1:-1:-1;3320:120:19:o;3445:257::-;;3556:2;3544:9;3535:7;3531:23;3527:32;3524:2;;;3577:6;3569;3562:22;3524:2;3621:9;3608:23;3640:32;3666:5;3640:32;:::i;3707:261::-;;3829:2;3817:9;3808:7;3804:23;3800:32;3797:2;;;3850:6;3842;3835:22;3797:2;3887:9;3881:16;3906:32;3932:5;3906:32;:::i;3973:482::-;;4095:2;4083:9;4074:7;4070:23;4066:32;4063:2;;;4116:6;4108;4101:22;4063:2;4161:9;4148:23;4194:18;4186:6;4183:30;4180:2;;;4231:6;4223;4216:22;4180:2;4259:22;;4312:4;4304:13;;4300:27;-1:-1:-1;4290:2:19;;4346:6;4338;4331:22;4290:2;4374:75;4441:7;4436:2;4423:16;4418:2;4414;4410:11;4374:75;:::i;4655:734::-;;;;4819:2;4807:9;4798:7;4794:23;4790:32;4787:2;;;4840:6;4832;4825:22;4787:2;4881:9;4868:23;4858:33;;4942:2;4931:9;4927:18;4914:32;4965:18;5006:2;4998:6;4995:14;4992:2;;;5027:6;5019;5012:22;4992:2;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:2;;5142:6;5134;5127:22;5086:2;5187;5174:16;5213:2;5205:6;5202:14;5199:2;;;5234:6;5226;5219:22;5199:2;5293:7;5288:2;5282;5274:6;5270:15;5266:2;5262:24;5258:33;5255:46;5252:2;;;5319:6;5311;5304:22;5252:2;5355;5351;5347:11;5337:21;;5377:6;5367:16;;;;;4777:612;;;;;:::o;5394:259::-;;5475:5;5469:12;5502:6;5497:3;5490:19;5518:63;5574:6;5567:4;5562:3;5558:14;5551:4;5544:5;5540:16;5518:63;:::i;:::-;5635:2;5614:15;-1:-1:-1;;5610:29:19;5601:39;;;;5642:4;5597:50;;5445:208;-1:-1:-1;;5445:208:19:o;5658:229::-;5807:2;5803:15;;;;-1:-1:-1;;5799:53:19;5787:66;;5878:2;5869:12;;5777:110::o;5892:247::-;6049:19;;;6093:2;6084:12;;6077:28;6130:2;6121:12;;6039:100::o;6144:470::-;;6361:6;6355:13;6377:53;6423:6;6418:3;6411:4;6403:6;6399:17;6377:53;:::i;:::-;6493:13;;6452:16;;;;6515:57;6493:13;6452:16;6549:4;6537:17;;6515:57;:::i;:::-;6588:20;;6331:283;-1:-1:-1;;;;6331:283:19:o;6619:203::-;-1:-1:-1;;;;;6783:32:19;;;;6765:51;;6753:2;6738:18;;6720:102::o;6827:490::-;-1:-1:-1;;;;;7096:15:19;;;7078:34;;7148:15;;7143:2;7128:18;;7121:43;7195:2;7180:18;;7173:34;;;7243:3;7238:2;7223:18;;7216:31;;;6827:490;;7264:47;;7291:19;;7283:6;7264:47;:::i;:::-;7256:55;7030:287;-1:-1:-1;;;;;;7030:287:19:o;7322:635::-;7493:2;7545:21;;;7615:13;;7518:18;;;7637:22;;;7322:635;;7493:2;7716:15;;;;7690:2;7675:18;;;7322:635;7762:169;7776:6;7773:1;7770:13;7762:169;;;7837:13;;7825:26;;7906:15;;;;7871:12;;;;7798:1;7791:9;7762:169;;;-1:-1:-1;7948:3:19;;7473:484;-1:-1:-1;;;;;;7473:484:19:o;7962:187::-;8127:14;;8120:22;8102:41;;8090:2;8075:18;;8057:92::o;8154:177::-;8300:25;;;8288:2;8273:18;;8255:76::o;8336:221::-;;8485:2;8474:9;8467:21;8505:46;8547:2;8536:9;8532:18;8524:6;8505:46;:::i;8562:407::-;8764:2;8746:21;;;8803:2;8783:18;;;8776:30;8842:34;8837:2;8822:18;;8815:62;-1:-1:-1;;;8908:2:19;8893:18;;8886:41;8959:3;8944:19;;8736:233::o;8974:344::-;9176:2;9158:21;;;9215:2;9195:18;;;9188:30;-1:-1:-1;;;9249:2:19;9234:18;;9227:50;9309:2;9294:18;;9148:170::o;9323:407::-;9525:2;9507:21;;;9564:2;9544:18;;;9537:30;9603:34;9598:2;9583:18;;9576:62;-1:-1:-1;;;9669:2:19;9654:18;;9647:41;9720:3;9705:19;;9497:233::o;9735:414::-;9937:2;9919:21;;;9976:2;9956:18;;;9949:30;10015:34;10010:2;9995:18;;9988:62;-1:-1:-1;;;10081:2:19;10066:18;;10059:48;10139:3;10124:19;;9909:240::o;10154:402::-;10356:2;10338:21;;;10395:2;10375:18;;;10368:30;10434:34;10429:2;10414:18;;10407:62;-1:-1:-1;;;10500:2:19;10485:18;;10478:36;10546:3;10531:19;;10328:228::o;10561:352::-;10763:2;10745:21;;;10802:2;10782:18;;;10775:30;10841;10836:2;10821:18;;10814:58;10904:2;10889:18;;10735:178::o;10918:400::-;11120:2;11102:21;;;11159:2;11139:18;;;11132:30;11198:34;11193:2;11178:18;;11171:62;-1:-1:-1;;;11264:2:19;11249:18;;11242:34;11308:3;11293:19;;11092:226::o;11323:349::-;11525:2;11507:21;;;11564:2;11544:18;;;11537:30;11603:27;11598:2;11583:18;;11576:55;11663:2;11648:18;;11497:175::o;11677:342::-;11879:2;11861:21;;;11918:2;11898:18;;;11891:30;-1:-1:-1;;;11952:2:19;11937:18;;11930:48;12010:2;11995:18;;11851:168::o;12024:408::-;12226:2;12208:21;;;12265:2;12245:18;;;12238:30;12304:34;12299:2;12284:18;;12277:62;-1:-1:-1;;;12370:2:19;12355:18;;12348:42;12422:3;12407:19;;12198:234::o;12437:346::-;12639:2;12621:21;;;12678:2;12658:18;;;12651:30;-1:-1:-1;;;12712:2:19;12697:18;;12690:52;12774:2;12759:18;;12611:172::o;12788:340::-;12990:2;12972:21;;;13029:2;13009:18;;;13002:30;-1:-1:-1;;;13063:2:19;13048:18;;13041:46;13119:2;13104:18;;12962:166::o;13133:397::-;13335:2;13317:21;;;13374:2;13354:18;;;13347:30;13413:34;13408:2;13393:18;;13386:62;-1:-1:-1;;;13479:2:19;13464:18;;13457:31;13520:3;13505:19;;13307:223::o;13535:420::-;13737:2;13719:21;;;13776:2;13756:18;;;13749:30;13815:34;13810:2;13795:18;;13788:62;13886:26;13881:2;13866:18;;13859:54;13945:3;13930:19;;13709:246::o;13960:406::-;14162:2;14144:21;;;14201:2;14181:18;;;14174:30;14240:34;14235:2;14220:18;;14213:62;-1:-1:-1;;;14306:2:19;14291:18;;14284:40;14356:3;14341:19;;14134:232::o;14371:405::-;14573:2;14555:21;;;14612:2;14592:18;;;14585:30;14651:34;14646:2;14631:18;;14624:62;-1:-1:-1;;;14717:2:19;14702:18;;14695:39;14766:3;14751:19;;14545:231::o;14781:356::-;14983:2;14965:21;;;15002:18;;;14995:30;15061:34;15056:2;15041:18;;15034:62;15128:2;15113:18;;14955:182::o;15142:331::-;15344:2;15326:21;;;15383:1;15363:18;;;15356:29;-1:-1:-1;;;15416:2:19;15401:18;;15394:38;15464:2;15449:18;;15316:157::o;15478:408::-;15680:2;15662:21;;;15719:2;15699:18;;;15692:30;15758:34;15753:2;15738:18;;15731:62;-1:-1:-1;;;15824:2:19;15809:18;;15802:42;15876:3;15861:19;;15652:234::o;15891:339::-;16093:2;16075:21;;;16132:2;16112:18;;;16105:30;-1:-1:-1;;;16166:2:19;16151:18;;16144:45;16221:2;16206:18;;16065:165::o;16235:356::-;16437:2;16419:21;;;16456:18;;;16449:30;16515:34;16510:2;16495:18;;16488:62;16582:2;16567:18;;16409:182::o;16596:405::-;16798:2;16780:21;;;16837:2;16817:18;;;16810:30;16876:34;16871:2;16856:18;;16849:62;-1:-1:-1;;;16942:2:19;16927:18;;16920:39;16991:3;16976:19;;16770:231::o;17006:411::-;17208:2;17190:21;;;17247:2;17227:18;;;17220:30;17286:34;17281:2;17266:18;;17259:62;-1:-1:-1;;;17352:2:19;17337:18;;17330:45;17407:3;17392:19;;17180:237::o;17422:350::-;17624:2;17606:21;;;17663:2;17643:18;;;17636:30;17702:28;17697:2;17682:18;;17675:56;17763:2;17748:18;;17596:176::o;17777:341::-;17979:2;17961:21;;;18018:2;17998:18;;;17991:30;-1:-1:-1;;;18052:2:19;18037:18;;18030:47;18109:2;18094:18;;17951:167::o;18123:397::-;18325:2;18307:21;;;18364:2;18344:18;;;18337:30;18403:34;18398:2;18383:18;;18376:62;-1:-1:-1;;;18469:2:19;18454:18;;18447:31;18510:3;18495:19;;18297:223::o;18525:413::-;18727:2;18709:21;;;18766:2;18746:18;;;18739:30;18805:34;18800:2;18785:18;;18778:62;-1:-1:-1;;;18871:2:19;18856:18;;18849:47;18928:3;18913:19;;18699:239::o;18943:397::-;19145:2;19127:21;;;19184:2;19164:18;;;19157:30;19223:34;19218:2;19203:18;;19196:62;-1:-1:-1;;;19289:2:19;19274:18;;19267:31;19330:3;19315:19;;19117:223::o;19345:408::-;19547:2;19529:21;;;19586:2;19566:18;;;19559:30;19625:34;19620:2;19605:18;;19598:62;-1:-1:-1;;;19691:2:19;19676:18;;19669:42;19743:3;19728:19;;19519:234::o;19758:346::-;19960:2;19942:21;;;19999:2;19979:18;;;19972:30;-1:-1:-1;;;20033:2:19;20018:18;;20011:52;20095:2;20080:18;;19932:172::o;20109:402::-;20311:2;20293:21;;;20350:2;20330:18;;;20323:30;20389:34;20384:2;20369:18;;20362:62;-1:-1:-1;;;20455:2:19;20440:18;;20433:36;20501:3;20486:19;;20283:228::o;20516:412::-;20718:2;20700:21;;;20757:2;20737:18;;;20730:30;20796:34;20791:2;20776:18;;20769:62;-1:-1:-1;;;20862:2:19;20847:18;;20840:46;20918:3;20903:19;;20690:238::o;20933:350::-;21135:2;21117:21;;;21174:2;21154:18;;;21147:30;21213:28;21208:2;21193:18;;21186:56;21274:2;21259:18;;21107:176::o;21723:128::-;;21794:1;21790:6;21787:1;21784:13;21781:2;;;21800:18;;:::i;:::-;-1:-1:-1;21836:9:19;;21771:80::o;21856:120::-;;21922:1;21912:2;;21927:18;;:::i;:::-;-1:-1:-1;21961:9:19;;21902:74::o;21981:168::-;;22087:1;22083;22079:6;22075:14;22072:1;22069:21;22064:1;22057:9;22050:17;22046:45;22043:2;;;22094:18;;:::i;:::-;-1:-1:-1;22134:9:19;;22033:116::o;22154:125::-;;22222:1;22219;22216:8;22213:2;;;22227:18;;:::i;:::-;-1:-1:-1;22264:9:19;;22203:76::o;22284:258::-;22356:1;22366:113;22380:6;22377:1;22374:13;22366:113;;;22456:11;;;22450:18;22437:11;;;22430:39;22402:2;22395:10;22366:113;;;22497:6;22494:1;22491:13;22488:2;;;-1:-1:-1;;22532:1:19;22514:16;;22507:27;22337:205::o;22547:380::-;22632:1;22622:12;;22679:1;22669:12;;;22690:2;;22744:4;22736:6;22732:17;22722:27;;22690:2;22797;22789:6;22786:14;22766:18;22763:38;22760:2;;;22843:10;22838:3;22834:20;22831:1;22824:31;22878:4;22875:1;22868:15;22906:4;22903:1;22896:15;22760:2;;22602:325;;;:::o;22932:135::-;;-1:-1:-1;;22992:17:19;;22989:2;;;23012:18;;:::i;:::-;-1:-1:-1;23059:1:19;23048:13;;22979:88::o;23072:112::-;;23130:1;23120:2;;23135:18;;:::i;:::-;-1:-1:-1;23169:9:19;;23110:74::o;23189:127::-;23250:10;23245:3;23241:20;23238:1;23231:31;23281:4;23278:1;23271:15;23305:4;23302:1;23295:15;23321:127;23382:10;23377:3;23373:20;23370:1;23363:31;23413:4;23410:1;23403:15;23437:4;23434:1;23427:15;23453:127;23514:10;23509:3;23505:20;23502:1;23495:31;23545:4;23542:1;23535:15;23569:4;23566:1;23559:15;23585:133;-1:-1:-1;;;;;;23661:32:19;;23651:43;;23641:2;;23708:1;23705;23698:12

Swarm Source

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