ETH Price: $3,463.89 (+3.90%)
Gas: 5 Gwei

Token

GOONY (GOON)
 

Overview

Max Total Supply

1,428 GOON

Holders

357

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 GOON
0xd6aacb647584229cf56b502594d9e72b1c53898c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Goony

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 8 of 18: GOONY.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ECDSA.sol";
import "./EIP712.sol";
import "./Payment.sol";

contract Goony is ERC721A, EIP712, Payment, Ownable {  
    using Strings for uint256;
    string public _baseURIextended;

    //signature
    string private constant SINGING_DOMAIN = "GOONY";
    string private constant SIGNATURE_VERSION = "1";

    //settings
  	uint256 public maxSupply = 6555;
	bool public presaleStatus = false;
	bool public expressStatus = false;
    bool public publicStatus = false;
	uint256 private price = 0.1 ether;
	uint256 private presaleSupply = 3090;
	uint256 private expressSupply = 1650;
	uint256 private publicSupply = 1650;
	uint256 private adminminting = 155; //155 presale
	uint256 private adminminting2 = 10; // 10 at end
	uint256 private maxMintPerTxPresale = 2;
    uint256 private maxMintPerWalletPresale = 2;
	uint256 private maxMintPerTxExpress = 2; 
    uint256 private maxMintPerWalletExpress = 2; 
	uint256 private maxMintPerTxPublic= 5; 
    
    //shares
	address[] private addressList = [
	0xE584197e8feD912e22BbcB880a8dAC6949ccb990,
	0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5,
	0xFF755FAfD67F65Ae9Cc9E3bE755323503deb5D34,
	0x20b2ea382e9C6d82673fc276543Db0574DcB510C,
	0xB3B85E05B35514963Bc441BEcA39b7E19179FD80,
	0x417D8FDA9cc2F83415FDa095457ADFd6Bdc0d7ca
	];

	uint[] private shareList = [
	52,
	16,
	12,
	10,
	5,
	5
	];

	//mappings
    mapping(address => uint256) private mintCountMapPresale;
    mapping(address => uint256) public allowedMintCountMapPresale;
    mapping(address => uint256) private mintCountMapExpress;
    mapping(address => uint256) public allowedMintCountMapExpress;
	
	constructor(
        	string memory _name,
			string memory _symbol,
			string memory _uri
			    ) 
   			ERC721A(_name, _symbol) 
    		EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) 
   			Payment(addressList, shareList)
			   {
		    setBaseURI(_uri); 
   		 }

 	function mintPresale(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
  	    uint256 s = totalSupply();
       require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(presaleStatus,"Presale sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= (maxSupply - adminminting2), "Mint less");
		require(_tokenAmount <= maxMintPerTxPresale);
		require(s + _tokenAmount <= (presaleSupply + adminminting),"Presale is sold out");
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountPresale(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);
	   updateMintCountPresale(msg.sender, _tokenAmount);
    }

 	function mintExpress(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
  		uint256 s = totalSupply();
        require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(expressStatus,"Express sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	   	require(_tokenAmount <= maxMintPerTxExpress);
	    require(s + _tokenAmount <= (maxSupply - adminminting2), "Mint less");
		require(s + _tokenAmount <= (expressSupply + presaleSupply + adminminting),"Express is sold out");
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountExpress(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);
		updateMintCountExpress(msg.sender, _tokenAmount);
	}

 	function mintPublic(uint256 _tokenAmount) public payable {
		uint256 s = totalSupply();
	    require(publicStatus,"Public sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(_tokenAmount <= maxMintPerTxPublic);
		require( s + _tokenAmount <= (maxSupply - adminminting2), "Mint less");
	    require(msg.value >= price * _tokenAmount, "ETH input is wrong");
		require(tx.origin == msg.sender);  //stop contract buying
       _safeMint(msg.sender, _tokenAmount);

    }

    // admin minting
	function reserve(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
	    require(s + _tokenAmount <= maxSupply, "Mint less");
            _safeMint(addr, _tokenAmount);
    }

	function updateMintCountPresale(address minter, uint256 count) private {
    mintCountMapPresale[minter] += count;
    }

    function allowedMintCountPresale(address minter) public view returns (uint256) {
    return maxMintPerWalletPresale - mintCountMapPresale[minter];
    }

	function updateMintCountExpress(address minter, uint256 count) private {
    mintCountMapExpress[minter] += count;
    }

    function allowedMintCountExpress(address minter) public view returns (uint256) {
    return maxMintPerWalletExpress - mintCountMapExpress[minter];
    }

    function check(string memory name, bytes memory signature) public view returns (address) {
        return _verify( name, signature);
    }

    function _verify(string memory name, bytes memory signature) internal view returns (address) {
        bytes32 digest = _hash(name);
        return ECDSA.recover(digest, signature);
    }

    function _hash(string memory name) internal view returns (bytes32) {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("Web3Struct(string name)"),
            keccak256(bytes(name))
        )));
    }

    //price switch
	function setPrice(uint256 _newPrice) public onlyOwner {
		price = _newPrice;
	}

    //onoff switch
	function setPresale(bool _status) public onlyOwner {
		presaleStatus = _status;
	}
	function setExpress(bool _status) public onlyOwner {
		expressStatus = _status;
	}
	function setPublic(bool _status) public onlyOwner {
		publicStatus = _status;
	}

	//write metadata
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }

	//max switches
	function setMaxPerWalletPresale(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletPresale = _newMaxMintAmount;
	}
	function setMaxPerTxPresale(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxPresale = _newMaxAmount;
	}
	function setMaxPerWalletExpress(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletExpress = _newMaxMintAmount;
	}
	function setMaxPerTxExpress(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxExpress = _newMaxAmount;
	}
	function setMaxPerTxPublic(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxPublic= _newMaxAmount;
	}

    function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

File 1 of 18: 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 18: 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 18: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 18: EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 5 of 18: 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 6 of 18: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	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));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 18: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 9 of 18: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract Guard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier noRentry() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 10 of 18: 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 11 of 18: 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 12 of 18: 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 13 of 18: 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 14 of 18: 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 15 of 18: 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 18: Payment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 17 of 18: 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 18: 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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","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":"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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURIextended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountExpress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedMintCountMapExpress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedMintCountMapPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPresale","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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expressStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintExpress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","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":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"setExpress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxExpress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletExpress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61199b600e55600f805462ffffff1916905567016345785d8a0000601055610c126011556106726012819055601355609b601455600a60155560026016819055601781905560188190556019556005601a5561020060405273e584197e8fed912e22bbcb880a8dac6949ccb99061014090815273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b56101605273ff755fafd67f65ae9cc9e3be755323503deb5d34610180527320b2ea382e9c6d82673fc276543db0574dcb510c6101a05273b3b85e05b35514963bc441beca39b7e19179fd806101c05273417d8fda9cc2f83415fda095457adfd6bdc0d7ca6101e052620000ff90601b90600662000739565b506040805160c0810182526034815260106020820152600c91810191909152600a606082015260056080820181905260a08201526200014390601c906006620007a3565b503480156200015157600080fd5b5060405162004cc838038062004cc8833981016040819052620001749162000947565b601b805480602002602001604051908101604052809291908181526020018280548015620001cc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001ad575b5050505050601c8054806020026020016040519081016040528092919081815260200182805480156200021f57602002820191906000526020600020905b8154815260200190600101908083116200020a575b505050505060405180604001604052806005815260200164474f4f4e5960d81b815250604051806040016040528060018152602001603160f81b8152508686816001908051906020019062000276929190620007e6565b5080516200028c906002906020840190620007e6565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c09485019091528151919096012090529290925261012052508051825114620003905760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003e35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000387565b60005b82518110156200044f576200043a838281518110620004095762000409620009d8565b6020026020010151838381518110620004265762000426620009d8565b60200260200101516200048060201b60201c565b80620004468162000a04565b915050620003e6565b5050506200046c620004666200066e60201b60201c565b62000672565b6200047781620006c4565b50505062000a7a565b6001600160a01b038216620004ed5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000387565b600081116200053f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000387565b6001600160a01b03821660009081526009602052604090205415620005bb5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000387565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b03841690811790915560009081526009602052604090208190556007546200062590829062000a22565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c546001600160a01b03163314620007205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000387565b80516200073590600d906020840190620007e6565b5050565b82805482825590600052602060002090810192821562000791579160200282015b828111156200079157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200075a565b506200079f92915062000863565b5090565b82805482825590600052602060002090810192821562000791579160200282015b8281111562000791578251829060ff16905591602001919060010190620007c4565b828054620007f49062000a3d565b90600052602060002090601f01602090048101928262000818576000855562000791565b82601f106200083357805160ff191683800117855562000791565b8280016001018555821562000791579182015b828111156200079157825182559160200191906001019062000846565b5b808211156200079f576000815560010162000864565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008a257600080fd5b81516001600160401b0380821115620008bf57620008bf6200087a565b604051601f8301601f19908116603f01168101908282118183101715620008ea57620008ea6200087a565b816040528381526020925086838588010111156200090757600080fd5b600091505b838210156200092b57858201830151818301840152908201906200090c565b838211156200093d5760008385830101525b9695505050505050565b6000806000606084860312156200095d57600080fd5b83516001600160401b03808211156200097557600080fd5b620009838783880162000890565b945060208601519150808211156200099a57600080fd5b620009a88783880162000890565b93506040860151915080821115620009bf57600080fd5b50620009ce8682870162000890565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000a1b5762000a1b620009ee565b5060010190565b6000821982111562000a385762000a38620009ee565b500190565b600181811c9082168062000a5257607f821691505b6020821081141562000a7457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516141fe62000aca600039600061381701526000613866015260006138410152600061379a015260006137c4015260006137ee01526141fe6000f3fe60806040526004361061032d5760003560e01c80638da5cb5b116101a5578063bd472b5f116100ec578063e33b7de311610095578063f2fde38b1161006f578063f2fde38b1461099e578063f452472e146109be578063f852a6da146109de578063f91798b1146109fe57600080fd5b8063e33b7de314610920578063e985e9c514610935578063efd0cbf91461098b57600080fd5b8063c87b56dd116100c6578063c87b56dd146108a7578063ce7c2ac2146108c7578063d5abeb011461090a57600080fd5b8063bd472b5f14610854578063c54e73e314610867578063c65645341461088757600080fd5b8063a69578b81161014e578063b569ce9b11610128578063b569ce9b14610802578063b88d4fde14610815578063ba2ad1c11461083557600080fd5b8063a69578b81461079c578063acfb2355146107bc578063b00a0e22146107d657600080fd5b806395d89b411161017f57806395d89b41146107245780639852595c14610739578063a22cb4651461077c57600080fd5b80638da5cb5b146106b95780638dea88da146106e457806391b7f5ed1461070457600080fd5b80633ccfd60b116102745780635cbcec4e1161021d57806370a08231116101f757806370a0823114610644578063715018a61461066457806389ebb273146106795780638b83209b1461069957600080fd5b80635cbcec4e146105d75780636352211e146105f7578063662d48011461061757600080fd5b80634e43d2881161024e5780634e43d288146105775780634f6ccce71461059757806355f804b3146105b757600080fd5b80633ccfd60b1461052f57806342842e0e1461053757806348808c101461055757600080fd5b80630fab6da8116102d657806323b872dd116102b057806323b872dd146104da5780632f745c59146104fa5780633a98ef391461051a57600080fd5b80630fab6da81461047b57806318160ddd1461049b57806319165587146104ba57600080fd5b8063081812fc11610307578063081812fc146104015780630928fc2214610446578063095ea7b31461045b57600080fd5b806301ffc9a71461038857806303339bcb146103bd57806306fdde03146103df57600080fd5b36610383577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561039457600080fd5b506103a86103a3366004613adc565b610a1e565b60405190151581526020015b60405180910390f35b3480156103c957600080fd5b506103dd6103d8366004613b1b565b610b4f565b005b3480156103eb57600080fd5b506103f4610c28565b6040516103b49190613bc1565b34801561040d57600080fd5b5061042161041c366004613bd4565b610cba565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103b4565b34801561045257600080fd5b506103f4610d62565b34801561046757600080fd5b506103dd610476366004613bed565b610df0565b34801561048757600080fd5b506103dd610496366004613bd4565b610f45565b3480156104a757600080fd5b506000545b6040519081526020016103b4565b3480156104c657600080fd5b506103dd6104d5366004613c19565b610fb1565b3480156104e657600080fd5b506103dd6104f5366004613c36565b6111ec565b34801561050657600080fd5b506104ac610515366004613bed565b6111f7565b34801561052657600080fd5b506007546104ac565b6103dd6113b6565b34801561054357600080fd5b506103dd610552366004613c36565b611475565b34801561056357600080fd5b50610421610572366004613d51565b611490565b34801561058357600080fd5b506103dd610592366004613bd4565b6114a3565b3480156105a357600080fd5b506104ac6105b2366004613bd4565b61150f565b3480156105c357600080fd5b506103dd6105d2366004613db5565b61158b565b3480156105e357600080fd5b506103dd6105f2366004613dff565b611609565b34801561060357600080fd5b50610421610612366004613bd4565b6116a8565b34801561062357600080fd5b506104ac610632366004613c19565b601e6020526000908152604090205481565b34801561065057600080fd5b506104ac61065f366004613c19565b6116ba565b34801561067057600080fd5b506103dd611780565b34801561068557600080fd5b506104ac610694366004613c19565b6117f3565b3480156106a557600080fd5b506104216106b4366004613bd4565b611826565b3480156106c557600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff16610421565b3480156106f057600080fd5b506104ac6106ff366004613c19565b611863565b34801561071057600080fd5b506103dd61071f366004613bd4565b611896565b34801561073057600080fd5b506103f4611902565b34801561074557600080fd5b506104ac610754366004613c19565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561078857600080fd5b506103dd610797366004613e1a565b611911565b3480156107a857600080fd5b506103dd6107b7366004613dff565b611a0e565b3480156107c857600080fd5b50600f546103a89060ff1681565b3480156107e257600080fd5b506104ac6107f1366004613c19565b602080526000908152604090205481565b6103dd610810366004613e4f565b611aac565b34801561082157600080fd5b506103dd610830366004613ebc565b611d8b565b34801561084157600080fd5b50600f546103a890610100900460ff1681565b6103dd610862366004613e4f565b611e14565b34801561087357600080fd5b506103dd610882366004613dff565b6120db565b34801561089357600080fd5b506103dd6108a2366004613bd4565b612173565b3480156108b357600080fd5b506103f46108c2366004613bd4565b6121df565b3480156108d357600080fd5b506104ac6108e2366004613c19565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561091657600080fd5b506104ac600e5481565b34801561092c57600080fd5b506008546104ac565b34801561094157600080fd5b506103a8610950366004613f28565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103dd610999366004613bd4565b6122ba565b3480156109aa57600080fd5b506103dd6109b9366004613c19565b61244f565b3480156109ca57600080fd5b506103dd6109d9366004613bd4565b612548565b3480156109ea57600080fd5b506103dd6109f9366004613bd4565b6125b4565b348015610a0a57600080fd5b50600f546103a89062010000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ab157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610afd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b4957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610bbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600054600e54610bcb8483613f85565b1115610c195760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b610c238284612620565b505050565b606060018054610c3790613f9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390613f9d565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc7826000541190565b610d395760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610bb2565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610d6f90613f9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b90613f9d565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000610dfb826116a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b3373ffffffffffffffffffffffffffffffffffffffff82161480610ec85750610ec88133610950565b610f3a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb2565b610c2383838361263a565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610fac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601755565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110495760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bb2565b6000600854476110599190613f85565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261109d9085613ff1565b6110a7919061405d565b6110b19190614071565b9050806111265760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902054611157908290613f85565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205560085461118b908290613f85565b60085561119883826126bb565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c238383836127e1565b6000611202836116ba565b82106112765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b600080549080805b838110156113475760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156112ef57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133e578684141561133757509350610b4992505050565b6001909301925b5060010161127e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610bb2565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461141d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b604051600090339047908381818185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b505090508061147257600080fd5b50565b610c2383838360405180602001604052806000815250611d8b565b600061149c8383612c13565b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461150a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601855565b6000805482106115875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b805161160590600d906020840190613a1e565b5050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60006116b382612c33565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff82166117455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610bb2565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b6117f16000612d59565b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601d6020526040812054601754610b499190614071565b6000600b828154811061183b5761183b614088565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601f6020526040812054601954610b499190614071565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146118fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601055565b606060028054610c3790613f9d565b73ffffffffffffffffffffffffffffffffffffffff82163314156119775760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb2565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60005433611aba8484611490565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610bb2565b600f54610100900460ff16611b745760405162461bcd60e51b815260206004820152601a60248201527f457870726573732073616c65206973206e6f74206163746976650000000000006044820152606401610bb2565b60008411611bc45760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601854841115611bd357600080fd5b601554600e54611be39190614071565b611bed8583613f85565b1115611c3b5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b601454601154601254611c4e9190613f85565b611c589190613f85565b611c628583613f85565b1115611cb05760405162461bcd60e51b815260206004820152601360248201527f4578707265737320697320736f6c64206f7574000000000000000000000000006044820152606401610bb2565b83601054611cbe9190613ff1565b341015611d0d5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b83611d1733611863565b1015611d655760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610bb2565b323314611d7157600080fd5b611d7b3385612620565b611d853385612dd0565b50505050565b611d968484846127e1565b611da284848484612e0e565b611d855760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b60005433611e228484611490565b73ffffffffffffffffffffffffffffffffffffffff1614611e855760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610bb2565b600f5460ff16611ed75760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610bb2565b60008411611f275760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601554600e54611f379190614071565b611f418583613f85565b1115611f8f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b601654841115611f9e57600080fd5b601454601154611fae9190613f85565b611fb88583613f85565b11156120065760405162461bcd60e51b815260206004820152601360248201527f50726573616c6520697320736f6c64206f7574000000000000000000000000006044820152606401610bb2565b836010546120149190613ff1565b3410156120635760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b8361206d336117f3565b10156120bb5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610bb2565b3233146120c757600080fd5b6120d13385612620565b611d853385612fe4565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601955565b60606121ec826000541190565b61225e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610bb2565b6000612268613019565b9050805160001415612289576040518060200160405280600081525061149c565b8061229384613028565b6040516020016122a49291906140b7565b6040516020818303038152906040529392505050565b600054600f5462010000900460ff166123155760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610bb2565b600082116123655760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601a5482111561237457600080fd5b601554600e546123849190614071565b61238e8383613f85565b11156123dc5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b816010546123ea9190613ff1565b3410156124395760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b32331461244557600080fd5b6116053383612620565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146124b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b73ffffffffffffffffffffffffffffffffffffffff811661253f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bb2565b61147281612d59565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601a55565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461261b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601655565b61160582826040518060200160405280600081525061315a565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b8047101561270b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bb2565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612765576040519150601f19603f3d011682016040523d82523d6000602084013e61276a565b606091505b5050905080610c235760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bb2565b60006127ec82612c33565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061284a57503361283284610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285c5750815161285c9033610950565b9050806128d15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610bb2565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129765760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff84166129ff5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bb2565b612a0f600084846000015161263a565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612baf57612b2c816000541190565b15612baf578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612c1f84613167565b9050612c2b81846131ca565b949350505050565b6040805180820190915260008082526020820152612c52826000541190565b612cc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610bb2565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612d31579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612cc6565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604081208054839290612e05908490613f85565b90915550505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612fd9576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612e859033908990889088906004016140e6565b6020604051808303816000875af1925050508015612ede575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612edb9181019061412f565b60015b612f8e573d808015612f0c576040519150601f19603f3d011682016040523d82523d6000602084013e612f11565b606091505b508051612f865760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612c2b565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601d602052604081208054839290612e05908490613f85565b6060600d8054610c3790613f9d565b60608161306857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613092578061307c8161414c565b915061308b9050600a8361405d565b915061306c565b60008167ffffffffffffffff8111156130ad576130ad613c77565b6040519080825280601f01601f1916602001820160405280156130d7576020820181803683370190505b5090505b8415612c2b576130ec600183614071565b91506130f9600a86614185565b613104906030613f85565b60f81b81838151811061311957613119614088565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613153600a8661405d565b94506130db565b610c2383838360016131ee565b6000610b497f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c83805190602001206040516020016131af929190918252602082015260400190565b604051602081830303815290604052805190602001206134b6565b60008060006131d9858561351f565b915091506131e68161358f565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff851661327a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b836132ed5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156134ad57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156134a15761342f6000888488612e0e565b6134a15760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b600191820191016133cf565b50600055612c0c565b6000610b496134c3613780565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156135565760208301516040840151606085015160001a61354a878285856138b4565b94509450505050613588565b82516040141561358057602083015160408401516135758683836139cc565b935093505050613588565b506000905060025b9250929050565b60008160048111156135a3576135a3614199565b14156135ac5750565b60018160048111156135c0576135c0614199565b141561360e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bb2565b600281600481111561362257613622614199565b14156136705760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bb2565b600381600481111561368457613684614199565b14156136f85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b600481600481111561370c5761370c614199565b14156114725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156137e657507f000000000000000000000000000000000000000000000000000000000000000046145b1561381057507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138eb57506000905060036139c3565b8460ff16601b1415801561390357508460ff16601c14155b1561391457506000905060046139c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613968573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166139bc576000600192509250506139c3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613a0260ff86901c601b613f85565b9050613a10878288856138b4565b935093505050935093915050565b828054613a2a90613f9d565b90600052602060002090601f016020900481019282613a4c5760008555613a92565b82601f10613a6557805160ff1916838001178555613a92565b82800160010185558215613a92579182015b82811115613a92578251825591602001919060010190613a77565b506115879291505b808211156115875760008155600101613a9a565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461147257600080fd5b600060208284031215613aee57600080fd5b813561149c81613aae565b73ffffffffffffffffffffffffffffffffffffffff8116811461147257600080fd5b60008060408385031215613b2e57600080fd5b823591506020830135613b4081613af9565b809150509250929050565b60005b83811015613b66578181015183820152602001613b4e565b83811115611d855750506000910152565b60008151808452613b8f816020860160208601613b4b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061149c6020830184613b77565b600060208284031215613be657600080fd5b5035919050565b60008060408385031215613c0057600080fd5b8235613c0b81613af9565b946020939093013593505050565b600060208284031215613c2b57600080fd5b813561149c81613af9565b600080600060608486031215613c4b57600080fd5b8335613c5681613af9565b92506020840135613c6681613af9565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613cb757600080fd5b813567ffffffffffffffff80821115613cd257613cd2613c77565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613d1857613d18613c77565b81604052838152866020858801011115613d3157600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613d6457600080fd5b823567ffffffffffffffff80821115613d7c57600080fd5b613d8886838701613ca6565b93506020850135915080821115613d9e57600080fd5b50613dab85828601613ca6565b9150509250929050565b600060208284031215613dc757600080fd5b813567ffffffffffffffff811115613dde57600080fd5b612c2b84828501613ca6565b80358015158114613dfa57600080fd5b919050565b600060208284031215613e1157600080fd5b61149c82613dea565b60008060408385031215613e2d57600080fd5b8235613e3881613af9565b9150613e4660208401613dea565b90509250929050565b600080600060608486031215613e6457600080fd5b83359250602084013567ffffffffffffffff80821115613e8357600080fd5b613e8f87838801613ca6565b93506040860135915080821115613ea557600080fd5b50613eb286828701613ca6565b9150509250925092565b60008060008060808587031215613ed257600080fd5b8435613edd81613af9565b93506020850135613eed81613af9565b925060408501359150606085013567ffffffffffffffff811115613f1057600080fd5b613f1c87828801613ca6565b91505092959194509250565b60008060408385031215613f3b57600080fd5b8235613f4681613af9565b91506020830135613b4081613af9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613f9857613f98613f56565b500190565b600181811c90821680613fb157607f821691505b60208210811415613feb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402957614029613f56565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261406c5761406c61402e565b500490565b60008282101561408357614083613f56565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600083516140c9818460208801613b4b565b8351908301906140dd818360208801613b4b565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526141256080830184613b77565b9695505050505050565b60006020828403121561414157600080fd5b815161149c81613aae565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417e5761417e613f56565b5060010190565b6000826141945761419461402e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220201876dc8d2181b642513cce6732225f66a8a17748ed54b289aab4219fefcb7a64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005474f4f4e590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f4f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61744e6f687375586769376d7678366554486d333561434a6832473847363162414861746245457641696e592f00000000000000000000

Deployed Bytecode

0x60806040526004361061032d5760003560e01c80638da5cb5b116101a5578063bd472b5f116100ec578063e33b7de311610095578063f2fde38b1161006f578063f2fde38b1461099e578063f452472e146109be578063f852a6da146109de578063f91798b1146109fe57600080fd5b8063e33b7de314610920578063e985e9c514610935578063efd0cbf91461098b57600080fd5b8063c87b56dd116100c6578063c87b56dd146108a7578063ce7c2ac2146108c7578063d5abeb011461090a57600080fd5b8063bd472b5f14610854578063c54e73e314610867578063c65645341461088757600080fd5b8063a69578b81161014e578063b569ce9b11610128578063b569ce9b14610802578063b88d4fde14610815578063ba2ad1c11461083557600080fd5b8063a69578b81461079c578063acfb2355146107bc578063b00a0e22146107d657600080fd5b806395d89b411161017f57806395d89b41146107245780639852595c14610739578063a22cb4651461077c57600080fd5b80638da5cb5b146106b95780638dea88da146106e457806391b7f5ed1461070457600080fd5b80633ccfd60b116102745780635cbcec4e1161021d57806370a08231116101f757806370a0823114610644578063715018a61461066457806389ebb273146106795780638b83209b1461069957600080fd5b80635cbcec4e146105d75780636352211e146105f7578063662d48011461061757600080fd5b80634e43d2881161024e5780634e43d288146105775780634f6ccce71461059757806355f804b3146105b757600080fd5b80633ccfd60b1461052f57806342842e0e1461053757806348808c101461055757600080fd5b80630fab6da8116102d657806323b872dd116102b057806323b872dd146104da5780632f745c59146104fa5780633a98ef391461051a57600080fd5b80630fab6da81461047b57806318160ddd1461049b57806319165587146104ba57600080fd5b8063081812fc11610307578063081812fc146104015780630928fc2214610446578063095ea7b31461045b57600080fd5b806301ffc9a71461038857806303339bcb146103bd57806306fdde03146103df57600080fd5b36610383577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561039457600080fd5b506103a86103a3366004613adc565b610a1e565b60405190151581526020015b60405180910390f35b3480156103c957600080fd5b506103dd6103d8366004613b1b565b610b4f565b005b3480156103eb57600080fd5b506103f4610c28565b6040516103b49190613bc1565b34801561040d57600080fd5b5061042161041c366004613bd4565b610cba565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103b4565b34801561045257600080fd5b506103f4610d62565b34801561046757600080fd5b506103dd610476366004613bed565b610df0565b34801561048757600080fd5b506103dd610496366004613bd4565b610f45565b3480156104a757600080fd5b506000545b6040519081526020016103b4565b3480156104c657600080fd5b506103dd6104d5366004613c19565b610fb1565b3480156104e657600080fd5b506103dd6104f5366004613c36565b6111ec565b34801561050657600080fd5b506104ac610515366004613bed565b6111f7565b34801561052657600080fd5b506007546104ac565b6103dd6113b6565b34801561054357600080fd5b506103dd610552366004613c36565b611475565b34801561056357600080fd5b50610421610572366004613d51565b611490565b34801561058357600080fd5b506103dd610592366004613bd4565b6114a3565b3480156105a357600080fd5b506104ac6105b2366004613bd4565b61150f565b3480156105c357600080fd5b506103dd6105d2366004613db5565b61158b565b3480156105e357600080fd5b506103dd6105f2366004613dff565b611609565b34801561060357600080fd5b50610421610612366004613bd4565b6116a8565b34801561062357600080fd5b506104ac610632366004613c19565b601e6020526000908152604090205481565b34801561065057600080fd5b506104ac61065f366004613c19565b6116ba565b34801561067057600080fd5b506103dd611780565b34801561068557600080fd5b506104ac610694366004613c19565b6117f3565b3480156106a557600080fd5b506104216106b4366004613bd4565b611826565b3480156106c557600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff16610421565b3480156106f057600080fd5b506104ac6106ff366004613c19565b611863565b34801561071057600080fd5b506103dd61071f366004613bd4565b611896565b34801561073057600080fd5b506103f4611902565b34801561074557600080fd5b506104ac610754366004613c19565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561078857600080fd5b506103dd610797366004613e1a565b611911565b3480156107a857600080fd5b506103dd6107b7366004613dff565b611a0e565b3480156107c857600080fd5b50600f546103a89060ff1681565b3480156107e257600080fd5b506104ac6107f1366004613c19565b602080526000908152604090205481565b6103dd610810366004613e4f565b611aac565b34801561082157600080fd5b506103dd610830366004613ebc565b611d8b565b34801561084157600080fd5b50600f546103a890610100900460ff1681565b6103dd610862366004613e4f565b611e14565b34801561087357600080fd5b506103dd610882366004613dff565b6120db565b34801561089357600080fd5b506103dd6108a2366004613bd4565b612173565b3480156108b357600080fd5b506103f46108c2366004613bd4565b6121df565b3480156108d357600080fd5b506104ac6108e2366004613c19565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561091657600080fd5b506104ac600e5481565b34801561092c57600080fd5b506008546104ac565b34801561094157600080fd5b506103a8610950366004613f28565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103dd610999366004613bd4565b6122ba565b3480156109aa57600080fd5b506103dd6109b9366004613c19565b61244f565b3480156109ca57600080fd5b506103dd6109d9366004613bd4565b612548565b3480156109ea57600080fd5b506103dd6109f9366004613bd4565b6125b4565b348015610a0a57600080fd5b50600f546103a89062010000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ab157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610afd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b4957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610bbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600054600e54610bcb8483613f85565b1115610c195760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b610c238284612620565b505050565b606060018054610c3790613f9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390613f9d565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc7826000541190565b610d395760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610bb2565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610d6f90613f9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b90613f9d565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000610dfb826116a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b3373ffffffffffffffffffffffffffffffffffffffff82161480610ec85750610ec88133610950565b610f3a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bb2565b610c2383838361263a565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610fac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601755565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110495760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bb2565b6000600854476110599190613f85565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261109d9085613ff1565b6110a7919061405d565b6110b19190614071565b9050806111265760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902054611157908290613f85565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205560085461118b908290613f85565b60085561119883826126bb565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c238383836127e1565b6000611202836116ba565b82106112765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b600080549080805b838110156113475760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156112ef57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561133e578684141561133757509350610b4992505050565b6001909301925b5060010161127e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610bb2565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461141d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b604051600090339047908381818185875af1925050503d806000811461145f576040519150601f19603f3d011682016040523d82523d6000602084013e611464565b606091505b505090508061147257600080fd5b50565b610c2383838360405180602001604052806000815250611d8b565b600061149c8383612c13565b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461150a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601855565b6000805482106115875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146115f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b805161160590600d906020840190613a1e565b5050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60006116b382612c33565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff82166117455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610bb2565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b6117f16000612d59565b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601d6020526040812054601754610b499190614071565b6000600b828154811061183b5761183b614088565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601f6020526040812054601954610b499190614071565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146118fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601055565b606060028054610c3790613f9d565b73ffffffffffffffffffffffffffffffffffffffff82163314156119775760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bb2565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60005433611aba8484611490565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610bb2565b600f54610100900460ff16611b745760405162461bcd60e51b815260206004820152601a60248201527f457870726573732073616c65206973206e6f74206163746976650000000000006044820152606401610bb2565b60008411611bc45760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601854841115611bd357600080fd5b601554600e54611be39190614071565b611bed8583613f85565b1115611c3b5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b601454601154601254611c4e9190613f85565b611c589190613f85565b611c628583613f85565b1115611cb05760405162461bcd60e51b815260206004820152601360248201527f4578707265737320697320736f6c64206f7574000000000000000000000000006044820152606401610bb2565b83601054611cbe9190613ff1565b341015611d0d5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b83611d1733611863565b1015611d655760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610bb2565b323314611d7157600080fd5b611d7b3385612620565b611d853385612dd0565b50505050565b611d968484846127e1565b611da284848484612e0e565b611d855760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b60005433611e228484611490565b73ffffffffffffffffffffffffffffffffffffffff1614611e855760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610bb2565b600f5460ff16611ed75760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610bb2565b60008411611f275760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601554600e54611f379190614071565b611f418583613f85565b1115611f8f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b601654841115611f9e57600080fd5b601454601154611fae9190613f85565b611fb88583613f85565b11156120065760405162461bcd60e51b815260206004820152601360248201527f50726573616c6520697320736f6c64206f7574000000000000000000000000006044820152606401610bb2565b836010546120149190613ff1565b3410156120635760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b8361206d336117f3565b10156120bb5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610bb2565b3233146120c757600080fd5b6120d13385612620565b611d853385612fe4565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146121da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601955565b60606121ec826000541190565b61225e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610bb2565b6000612268613019565b9050805160001415612289576040518060200160405280600081525061149c565b8061229384613028565b6040516020016122a49291906140b7565b6040516020818303038152906040529392505050565b600054600f5462010000900460ff166123155760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610bb2565b600082116123655760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610bb2565b601a5482111561237457600080fd5b601554600e546123849190614071565b61238e8383613f85565b11156123dc5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610bb2565b816010546123ea9190613ff1565b3410156124395760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610bb2565b32331461244557600080fd5b6116053383612620565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146124b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b73ffffffffffffffffffffffffffffffffffffffff811661253f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bb2565b61147281612d59565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601a55565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461261b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b601655565b61160582826040518060200160405280600081525061315a565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b8047101561270b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bb2565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612765576040519150601f19603f3d011682016040523d82523d6000602084013e61276a565b606091505b5050905080610c235760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bb2565b60006127ec82612c33565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061284a57503361283284610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b8061285c5750815161285c9033610950565b9050806128d15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610bb2565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129765760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff84166129ff5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bb2565b612a0f600084846000015161263a565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612baf57612b2c816000541190565b15612baf578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612c1f84613167565b9050612c2b81846131ca565b949350505050565b6040805180820190915260008082526020820152612c52826000541190565b612cc45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610bb2565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612d31579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612cc6565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604081208054839290612e05908490613f85565b90915550505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612fd9576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612e859033908990889088906004016140e6565b6020604051808303816000875af1925050508015612ede575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612edb9181019061412f565b60015b612f8e573d808015612f0c576040519150601f19603f3d011682016040523d82523d6000602084013e612f11565b606091505b508051612f865760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612c2b565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601d602052604081208054839290612e05908490613f85565b6060600d8054610c3790613f9d565b60608161306857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613092578061307c8161414c565b915061308b9050600a8361405d565b915061306c565b60008167ffffffffffffffff8111156130ad576130ad613c77565b6040519080825280601f01601f1916602001820160405280156130d7576020820181803683370190505b5090505b8415612c2b576130ec600183614071565b91506130f9600a86614185565b613104906030613f85565b60f81b81838151811061311957613119614088565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613153600a8661405d565b94506130db565b610c2383838360016131ee565b6000610b497f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c83805190602001206040516020016131af929190918252602082015260400190565b604051602081830303815290604052805190602001206134b6565b60008060006131d9858561351f565b915091506131e68161358f565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff851661327a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b836132ed5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610bb2565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156134ad57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156134a15761342f6000888488612e0e565b6134a15760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bb2565b600191820191016133cf565b50600055612c0c565b6000610b496134c3613780565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156135565760208301516040840151606085015160001a61354a878285856138b4565b94509450505050613588565b82516040141561358057602083015160408401516135758683836139cc565b935093505050613588565b506000905060025b9250929050565b60008160048111156135a3576135a3614199565b14156135ac5750565b60018160048111156135c0576135c0614199565b141561360e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bb2565b600281600481111561362257613622614199565b14156136705760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bb2565b600381600481111561368457613684614199565b14156136f85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b600481600481111561370c5761370c614199565b14156114725760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bb2565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000cf60b4657d1537066c90035cf138c75c578f7313161480156137e657507f000000000000000000000000000000000000000000000000000000000000000146145b1561381057507fea2d958d59741bf5f02e6f557ece98de9a1dd5c987e45b3301793acba936da0590565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f2fbf5274fdb4d616dc4bdde79ae6e90733653577fc28f2b040c0c38532d590c3828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138eb57506000905060036139c3565b8460ff16601b1415801561390357508460ff16601c14155b1561391457506000905060046139c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613968573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166139bc576000600192509250506139c3565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613a0260ff86901c601b613f85565b9050613a10878288856138b4565b935093505050935093915050565b828054613a2a90613f9d565b90600052602060002090601f016020900481019282613a4c5760008555613a92565b82601f10613a6557805160ff1916838001178555613a92565b82800160010185558215613a92579182015b82811115613a92578251825591602001919060010190613a77565b506115879291505b808211156115875760008155600101613a9a565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461147257600080fd5b600060208284031215613aee57600080fd5b813561149c81613aae565b73ffffffffffffffffffffffffffffffffffffffff8116811461147257600080fd5b60008060408385031215613b2e57600080fd5b823591506020830135613b4081613af9565b809150509250929050565b60005b83811015613b66578181015183820152602001613b4e565b83811115611d855750506000910152565b60008151808452613b8f816020860160208601613b4b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061149c6020830184613b77565b600060208284031215613be657600080fd5b5035919050565b60008060408385031215613c0057600080fd5b8235613c0b81613af9565b946020939093013593505050565b600060208284031215613c2b57600080fd5b813561149c81613af9565b600080600060608486031215613c4b57600080fd5b8335613c5681613af9565b92506020840135613c6681613af9565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613cb757600080fd5b813567ffffffffffffffff80821115613cd257613cd2613c77565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613d1857613d18613c77565b81604052838152866020858801011115613d3157600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215613d6457600080fd5b823567ffffffffffffffff80821115613d7c57600080fd5b613d8886838701613ca6565b93506020850135915080821115613d9e57600080fd5b50613dab85828601613ca6565b9150509250929050565b600060208284031215613dc757600080fd5b813567ffffffffffffffff811115613dde57600080fd5b612c2b84828501613ca6565b80358015158114613dfa57600080fd5b919050565b600060208284031215613e1157600080fd5b61149c82613dea565b60008060408385031215613e2d57600080fd5b8235613e3881613af9565b9150613e4660208401613dea565b90509250929050565b600080600060608486031215613e6457600080fd5b83359250602084013567ffffffffffffffff80821115613e8357600080fd5b613e8f87838801613ca6565b93506040860135915080821115613ea557600080fd5b50613eb286828701613ca6565b9150509250925092565b60008060008060808587031215613ed257600080fd5b8435613edd81613af9565b93506020850135613eed81613af9565b925060408501359150606085013567ffffffffffffffff811115613f1057600080fd5b613f1c87828801613ca6565b91505092959194509250565b60008060408385031215613f3b57600080fd5b8235613f4681613af9565b91506020830135613b4081613af9565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613f9857613f98613f56565b500190565b600181811c90821680613fb157607f821691505b60208210811415613feb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402957614029613f56565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261406c5761406c61402e565b500490565b60008282101561408357614083613f56565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600083516140c9818460208801613b4b565b8351908301906140dd818360208801613b4b565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526141256080830184613b77565b9695505050505050565b60006020828403121561414157600080fd5b815161149c81613aae565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561417e5761417e613f56565b5060010190565b6000826141945761419461402e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220201876dc8d2181b642513cce6732225f66a8a17748ed54b289aab4219fefcb7a64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005474f4f4e590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f4f4e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61744e6f687375586769376d7678366554486d333561434a6832473847363162414861746245457641696e592f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GOONY
Arg [1] : _symbol (string): GOON
Arg [2] : _uri (string): ipfs://QmatNohsuXgi7mvx6eTHm35aCJh2G8G61bAHatbEEvAinY/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 474f4f4e59000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 474f4f4e00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d61744e6f687375586769376d7678366554486d33356143
Arg [9] : 4a6832473847363162414861746245457641696e592f00000000000000000000


Deployed Bytecode Sourcemap

175:6846:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:1;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;175:6846:7;;;;;3282:372:6;;;;;;;;;;-1:-1:-1;3282:372:6;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;3282:372:6;;;;;;;;4294:212:7;;;;;;;;;;-1:-1:-1;4294:212:7;;;;;:::i;:::-;;:::i;:::-;;5168:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6730:214::-;;;;;;;;;;-1:-1:-1;6730:214:6;;;;;:::i;:::-;;:::i;:::-;;;2590:42:18;2578:55;;;2560:74;;2548:2;2533:18;6730:214:6;2414:226:18;266:30:7;;;;;;;;;;;;;:::i;6251:413:6:-;;;;;;;;;;-1:-1:-1;6251:413:6;;;;;:::i;:::-;;:::i;6277:126:7:-;;;;;;;;;;-1:-1:-1;6277:126:7;;;;;:::i;:::-;;:::i;1539:100:6:-;;;;;;;;;;-1:-1:-1;1592:7:6;1619:12;1539:100;;;3111:25:18;;;3099:2;3084:18;1539:100:6;2965:177:18;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;7606:162:6:-;;;;;;;;;;-1:-1:-1;7606:162:6;;;;;:::i;:::-;;:::i;2203:1007::-;;;;;;;;;;-1:-1:-1;2203:1007:6;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;6870:149:7;;;:::i;7839:177:6:-;;;;;;;;;;-1:-1:-1;7839:177:6;;;;;:::i;:::-;;:::i;5074:138:7:-;;;;;;;;;;-1:-1:-1;5074:138:7;;;;;:::i;:::-;;:::i;6645:110::-;;;;;;;;;;-1:-1:-1;6645:110:7;;;;;:::i;:::-;;:::i;1716:187:6:-;;;;;;;;;;-1:-1:-1;1716:187:6;;;;;:::i;:::-;;:::i;6032:105:7:-;;;;;;;;;;-1:-1:-1;6032:105:7;;;;;:::i;:::-;;:::i;5928:80::-;;;;;;;;;;-1:-1:-1;5928:80:7;;;;;:::i;:::-;;:::i;4977:124:6:-;;;;;;;;;;-1:-1:-1;4977:124:6;;;;;:::i;:::-;;:::i;1528:61:7:-;;;;;;;;;;-1:-1:-1;1528:61:7;;;;;:::i;:::-;;;;;;;;;;;;;;3718:221:6;;;;;;;;;;-1:-1:-1;3718:221:6;;;;;:::i;:::-;;:::i;1648:94:14:-;;;;;;;;;;;;;:::i;4635:152:7:-;;;;;;;;;;-1:-1:-1;4635:152:7;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;997:87:14:-;;;;;;;;;;-1:-1:-1;1070:6:14;;;;997:87;;4916:152:7;;;;;;;;;;-1:-1:-1;4916:152:7;;;;;:::i;:::-;;:::i;5659:79::-;;;;;;;;;;-1:-1:-1;5659:79:7;;;;;:::i;:::-;;:::i;5337:104:6:-;;;;;;;;;;;;;:::i;3306:107:15:-;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;7016:288:6;;;;;;;;;;-1:-1:-1;7016:288:6;;;;;:::i;:::-;;:::i;5844:82:7:-;;;;;;;;;;-1:-1:-1;5844:82:7;;;;;:::i;:::-;;:::i;475:33::-;;;;;;;;;;-1:-1:-1;475:33:7;;;;;;;;1656:61;;;;;;;;;;-1:-1:-1;1656:61:7;;;;;:::i;:::-;;;;;;;;;;;;;;2869:892;;;;;;:::i;:::-;;:::i;8087:355:6:-;;;;;;;;;;-1:-1:-1;8087:355:6;;;;;:::i;:::-;;:::i;511:33:7:-;;;;;;;;;;-1:-1:-1;511:33:7;;;;;;;;;;;1985:880;;;;;;:::i;:::-;;:::i;5760:82::-;;;;;;;;;;-1:-1:-1;5760:82:7;;;;;:::i;:::-;;:::i;6517:126::-;;;;;;;;;;-1:-1:-1;6517:126:7;;;;;:::i;:::-;;:::i;5512:335:6:-;;;;;;;;;;-1:-1:-1;5512:335:6;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;441:31:7;;;;;;;;;;;;;;;;2930:93:15;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;7375:164:6;;;;;;;;;;-1:-1:-1;7375:164:6;;;;;:::i;:::-;7496:25;;;;7472:4;7496:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7375:164;3765:505:7;;;;;;:::i;:::-;;:::i;1897:192:14:-;;;;;;;;;;-1:-1:-1;1897:192:14;;;;;:::i;:::-;;:::i;6757:107:7:-;;;;;;;;;;-1:-1:-1;6757:107:7;;;;;:::i;:::-;;:::i;6405:110::-;;;;;;;;;;-1:-1:-1;6405:110:7;;;;;:::i;:::-;;:::i;550:32::-;;;;;;;;;;-1:-1:-1;550:32:7;;;;;;;;;;;3282:372:6;3384:4;3421:40;;;3436:25;3421:40;;:105;;-1:-1:-1;3478:48:6;;;3493:33;3478:48;3421:105;:172;;;-1:-1:-1;3543:50:6;;;3558:35;3543:50;3421:172;:225;;;-1:-1:-1;886:25:4;871:40;;;;3610:36:6;3401:245;3282:372;-1:-1:-1;;3282:372:6:o;4294:212:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;;;;;;;;;4373:9:7::1;1619:12:6::0;4433:9:7::1;::::0;4413:16:::1;4417:12:::0;1619::6;4413:16:7::1;:::i;:::-;:29;;4405:51;;;::::0;-1:-1:-1;;;4405:51:7;;9200:2:18;4405:51:7::1;::::0;::::1;9182:21:18::0;9239:1;9219:18;;;9212:29;9277:11;9257:18;;;9250:39;9306:18;;4405:51:7::1;8998:332:18::0;4405:51:7::1;4470:29;4480:4;4486:12;4470:9;:29::i;:::-;4364:142;4294:212:::0;;:::o;5168:100:6:-;5222:13;5255:5;5248:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5168:100;:::o;6730:214::-;6798:7;6826:16;6834:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;6826:16;6818:74;;;;-1:-1:-1;;;6818:74:6;;9979:2:18;6818:74:6;;;9961:21:18;10018:2;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;10128:15;10108:18;;;10101:43;10161:19;;6818:74:6;9777:409:18;6818:74:6;-1:-1:-1;6912:24:6;;;;:15;:24;;;;;;;;;6730:214::o;266:30:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6251:413:6:-;6324:13;6340:24;6356:7;6340:15;:24::i;:::-;6324:40;;6389:5;6383:11;;:2;:11;;;;6375:58;;;;-1:-1:-1;;;6375:58:6;;10393:2:18;6375:58:6;;;10375:21:18;10432:2;10412:18;;;10405:30;10471:34;10451:18;;;10444:62;10542:4;10522:18;;;10515:32;10564:19;;6375:58:6;10191:398:18;6375:58:6;682:10:1;6468:21:6;;;;;:62;;-1:-1:-1;6493:37:6;6510:5;682:10:1;7375:164:6;:::i;6493:37::-;6446:169;;;;-1:-1:-1;;;6446:169:6;;10796:2:18;6446:169:6;;;10778:21:18;10835:2;10815:18;;;10808:30;10874:34;10854:18;;;10847:62;10945:27;10925:18;;;10918:55;10990:19;;6446:169:6;10594:421:18;6446:169:6;6628:28;6637:2;6641:7;6650:5;6628:8;:28::i;6277:126:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6356:23:7::1;:43:::0;6277:126::o;3791:600:15:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:15;;11222:2:18;3858:71:15;;;11204:21:18;11261:2;11241:18;;;11234:30;11300:34;11280:18;;;11273:62;11371:8;11351:18;;;11344:36;11397:19;;3858:71:15;11020:402:18;3858:71:15;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:15;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:15;4111:68;;;;-1:-1:-1;;;4111:68:15;;12306:2:18;4111:68:15;;;12288:21:18;12345:2;12325:18;;;12318:30;12384:34;12364:18;;;12357:62;12455:13;12435:18;;;12428:41;12486:19;;4111:68:15;12104:407:18;4111:68:15;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:15;;161:18:18;4351:33:15;;;;;;;3848:543;;3791:600;:::o;7606:162:6:-;7732:28;7742:4;7748:2;7752:7;7732:9;:28::i;2203:1007::-;2292:7;2328:16;2338:5;2328:9;:16::i;:::-;2320:5;:24;2312:71;;;;-1:-1:-1;;;2312:71:6;;13028:2:18;2312:71:6;;;13010:21:18;13067:2;13047:18;;;13040:30;13106:34;13086:18;;;13079:62;13177:4;13157:18;;;13150:32;13199:19;;2312:71:6;12826:398:18;2312:71:6;2394:22;1619:12;;;2394:22;;2657:466;2677:14;2673:1;:18;2657:466;;;2717:31;2751:14;;;:11;:14;;;;;;;;;2717:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;2788:28;2784:111;;2861:14;;;-1:-1:-1;2784:111:6;2938:5;2917:26;;:17;:26;;;2913:195;;;2987:5;2972:11;:20;2968:85;;;-1:-1:-1;3028:1:6;-1:-1:-1;3021:8:6;;-1:-1:-1;;;3021:8:6;2968:85;3075:13;;;;;2913:195;-1:-1:-1;2693:3:6;;2657:466;;;-1:-1:-1;3146:56:6;;-1:-1:-1;;;3146:56:6;;13431:2:18;3146:56:6;;;13413:21:18;13470:2;13450:18;;;13443:30;13509:34;13489:18;;;13482:62;13580:16;13560:18;;;13553:44;13614:19;;3146:56:6;13229:410:18;6870:149:7;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6937:58:7::1;::::0;6919:12:::1;::::0;6945:10:::1;::::0;6969:21:::1;::::0;6919:12;6937:58;6919:12;6937:58;6969:21;6945:10;6937:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6918:77;;;7007:7;6999:16;;;::::0;::::1;;6915:104;6870:149::o:0;7839:177:6:-;7969:39;7986:4;7992:2;7996:7;7969:39;;;;;;;;;;;;:16;:39::i;5074:138:7:-;5154:7;5180:25;5189:4;5195:9;5180:7;:25::i;:::-;5173:32;5074:138;-1:-1:-1;;;5074:138:7:o;6645:110::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6716:19:7::1;:35:::0;6645:110::o;1716:187:6:-;1783:7;1619:12;;1811:5;:21;1803:69;;;;-1:-1:-1;;;1803:69:6;;14056:2:18;1803:69:6;;;14038:21:18;14095:2;14075:18;;;14068:30;14134:34;14114:18;;;14107:62;14205:5;14185:18;;;14178:33;14228:19;;1803:69:6;13854:399:18;1803:69:6;-1:-1:-1;1890:5:6;1716:187::o;6032:105:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6103:27:7;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;6032:105:::0;:::o;5928:80::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;5982:12:7::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;5928:80::o;4977:124:6:-;5041:7;5068:20;5080:7;5068:11;:20::i;:::-;:25;;4977:124;-1:-1:-1;;4977:124:6:o;3718:221::-;3782:7;3810:19;;;3802:75;;;;-1:-1:-1;;;3802:75:6;;14460:2:18;3802:75:6;;;14442:21:18;14499:2;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14609:13;14589:18;;;14582:41;14640:19;;3802:75:6;14258:407:18;3802:75:6;-1:-1:-1;3903:19:6;;;;;;:12;:19;;;;;:27;;;;3718:221::o;1648:94:14:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;4635:152:7:-;4753:27;;;4705:7;4753:27;;;:19;:27;;;;;;4727:23;;:53;;4753:27;4727:53;:::i;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;4916:152:7:-;5034:27;;;4986:7;5034:27;;;:19;:27;;;;;;5008:23;;:53;;5034:27;5008:53;:::i;5659:79::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;5717:5:7::1;:17:::0;5659:79::o;5337:104:6:-;5393:13;5426:7;5419:14;;;;;:::i;7016:288::-;7111:24;;;682:10:1;7111:24:6;;7103:63;;;;-1:-1:-1;;;7103:63:6;;15061:2:18;7103:63:6;;;15043:21:18;15100:2;15080:18;;;15073:30;15139:28;15119:18;;;15112:56;15185:18;;7103:63:6;14859:350:18;7103:63:6;682:10:1;7179:32:6;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;7248:48;;888:41:18;;;7179:42:6;;682:10:1;7248:48:6;;861:18:18;7248:48:6;;;;;;;7016:288;;:::o;5844:82:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;5899:13:7::1;:23:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;5844:82::o;2869:892::-;2977:9;1619:12:6;3046:10:7;3020:22;3026:4;3032:9;3020:5;:22::i;:::-;:36;;;3012:66;;;;-1:-1:-1;;;3012:66:7;;15416:2:18;3012:66:7;;;15398:21:18;15455:2;15435:18;;;15428:30;15494:19;15474:18;;;15467:47;15531:18;;3012:66:7;15214:341:18;3012:66:7;3117:13;;;;;;;3109:51;;;;-1:-1:-1;;;3109:51:7;;15762:2:18;3109:51:7;;;15744:21:18;15801:2;15781:18;;;15774:30;15840:28;15820:18;;;15813:56;15886:18;;3109:51:7;15560:350:18;3109:51:7;3193:1;3178:12;:16;3170:46;;;;-1:-1:-1;;;3170:46:7;;16117:2:18;3170:46:7;;;16099:21:18;16156:2;16136:18;;;16129:30;16195:18;16175;;;16168:46;16231:18;;3170:46:7;15915:340:18;3170:46:7;3247:19;;3231:12;:35;;3223:44;;;;;;3315:13;;3303:9;;:25;;;;:::i;:::-;3282:16;3286:12;3282:1;:16;:::i;:::-;:47;;3274:69;;;;-1:-1:-1;;;3274:69:7;;9200:2:18;3274:69:7;;;9182:21:18;9239:1;9219:18;;;9212:29;9277:11;9257:18;;;9250:39;9306:18;;3274:69:7;8998:332:18;3274:69:7;3408:12;;3392:13;;3376;;:29;;;;:::i;:::-;:44;;;;:::i;:::-;3355:16;3359:12;3355:1;:16;:::i;:::-;:66;;3347:97;;;;-1:-1:-1;;;3347:97:7;;16462:2:18;3347:97:7;;;16444:21:18;16501:2;16481:18;;;16474:30;16540:21;16520:18;;;16513:49;16579:18;;3347:97:7;16260:343:18;3347:97:7;3480:12;3472:5;;:20;;;;:::i;:::-;3459:9;:33;;3451:64;;;;-1:-1:-1;;;3451:64:7;;16810:2:18;3451:64:7;;;16792:21:18;16849:2;16829:18;;;16822:30;16888:20;16868:18;;;16861:48;16926:18;;3451:64:7;16608:342:18;3451:64:7;3566:12;3527:35;3551:10;3527:23;:35::i;:::-;:51;;3519:82;;;;-1:-1:-1;;;3519:82:7;;17157:2:18;3519:82:7;;;17139:21:18;17196:2;17176:18;;;17169:30;17235:21;17215:18;;;17208:49;17274:18;;3519:82:7;16955:343:18;3519:82:7;3613:9;3626:10;3613:23;3605:32;;;;;;3670:35;3680:10;3692:12;3670:9;:35::i;:::-;3709:48;3732:10;3744:12;3709:22;:48::i;:::-;2971:790;2869:892;;;:::o;8087:355:6:-;8246:28;8256:4;8262:2;8266:7;8246:9;:28::i;:::-;8307:48;8330:4;8336:2;8340:7;8349:5;8307:22;:48::i;:::-;8285:149;;;;-1:-1:-1;;;8285:149:6;;17505:2:18;8285:149:6;;;17487:21:18;17544:2;17524:18;;;17517:30;17583:34;17563:18;;;17556:62;17654:21;17634:18;;;17627:49;17693:19;;8285:149:6;17303:415:18;1985:880:7;2096:9;1619:12:6;2164:10:7;2138:22;2144:4;2150:9;2138:5;:22::i;:::-;:36;;;2130:66;;;;-1:-1:-1;;;2130:66:7;;15416:2:18;2130:66:7;;;15398:21:18;15455:2;15435:18;;;15428:30;15494:19;15474:18;;;15467:47;15531:18;;2130:66:7;15214:341:18;2130:66:7;2235:13;;;;2227:51;;;;-1:-1:-1;;;2227:51:7;;17925:2:18;2227:51:7;;;17907:21:18;17964:2;17944:18;;;17937:30;18003:28;17983:18;;;17976:56;18049:18;;2227:51:7;17723:350:18;2227:51:7;2311:1;2296:12;:16;2288:46;;;;-1:-1:-1;;;2288:46:7;;16117:2:18;2288:46:7;;;16099:21:18;16156:2;16136:18;;;16129:30;16195:18;16175;;;16168:46;16231:18;;2288:46:7;15915:340:18;2288:46:7;2382:13;;2370:9;;:25;;;;:::i;:::-;2349:16;2353:12;2349:1;:16;:::i;:::-;:47;;2341:69;;;;-1:-1:-1;;;2341:69:7;;9200:2:18;2341:69:7;;;9182:21:18;9239:1;9219:18;;;9212:29;9277:11;9257:18;;;9250:39;9306:18;;2341:69:7;8998:332:18;2341:69:7;2438:19;;2422:12;:35;;2414:44;;;;;;2507:12;;2491:13;;:28;;;;:::i;:::-;2470:16;2474:12;2470:1;:16;:::i;:::-;:50;;2462:81;;;;-1:-1:-1;;;2462:81:7;;18280:2:18;2462:81:7;;;18262:21:18;18319:2;18299:18;;;18292:30;18358:21;18338:18;;;18331:49;18397:18;;2462:81:7;18078:343:18;2462:81:7;2579:12;2571:5;;:20;;;;:::i;:::-;2558:9;:33;;2550:64;;;;-1:-1:-1;;;2550:64:7;;16810:2:18;2550:64:7;;;16792:21:18;16849:2;16829:18;;;16822:30;16888:20;16868:18;;;16861:48;16926:18;;2550:64:7;16608:342:18;2550:64:7;2665:12;2626:35;2650:10;2626:23;:35::i;:::-;:51;;2618:82;;;;-1:-1:-1;;;2618:82:7;;17157:2:18;2618:82:7;;;17139:21:18;17196:2;17176:18;;;17169:30;17235:21;17215:18;;;17208:49;17274:18;;2618:82:7;16955:343:18;2618:82:7;2712:9;2725:10;2712:23;2704:32;;;;;;2769:35;2779:10;2791:12;2769:9;:35::i;:::-;2810:48;2833:10;2845:12;2810:22;:48::i;5760:82::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;5815:13:7::1;:23:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;5760:82::o;6517:126::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6596:23:7::1;:43:::0;6517:126::o;5512:335:6:-;5585:13;5619:16;5627:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;5619:16;5611:76;;;;-1:-1:-1;;;5611:76:6;;18628:2:18;5611:76:6;;;18610:21:18;18667:2;18647:18;;;18640:30;18706:34;18686:18;;;18679:62;18777:17;18757:18;;;18750:45;18812:19;;5611:76:6;18426:411:18;5611:76:6;5700:21;5724:10;:8;:10::i;:::-;5700:34;;5758:7;5752:21;5777:1;5752:26;;:87;;;;;;;;;;;;;;;;;5805:7;5814:18;:7;:16;:18::i;:::-;5788:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5745:94;5512:335;-1:-1:-1;;;5512:335:6:o;3765:505:7:-;3826:9;1619:12:6;3866::7;;;;;;;3858:49;;;;-1:-1:-1;;;3858:49:7;;19519:2:18;3858:49:7;;;19501:21:18;19558:2;19538:18;;;19531:30;19597:27;19577:18;;;19570:55;19642:18;;3858:49:7;19317:349:18;3858:49:7;3940:1;3925:12;:16;3917:46;;;;-1:-1:-1;;;3917:46:7;;16117:2:18;3917:46:7;;;16099:21:18;16156:2;16136:18;;;16129:30;16195:18;16175;;;16168:46;16231:18;;3917:46:7;15915:340:18;3917:46:7;3994:18;;3978:12;:34;;3970:43;;;;;;4059:13;;4047:9;;:25;;;;:::i;:::-;4026:16;4030:12;4026:1;:16;:::i;:::-;:47;;4017:70;;;;-1:-1:-1;;;4017:70:7;;9200:2:18;4017:70:7;;;9182:21:18;9239:1;9219:18;;;9212:29;9277:11;9257:18;;;9250:39;9306:18;;4017:70:7;8998:332:18;4017:70:7;4123:12;4115:5;;:20;;;;:::i;:::-;4102:9;:33;;4094:64;;;;-1:-1:-1;;;4094:64:7;;16810:2:18;4094:64:7;;;16792:21:18;16849:2;16829:18;;;16822:30;16888:20;16868:18;;;16861:48;16926:18;;4094:64:7;16608:342:18;4094:64:7;4170:9;4183:10;4170:23;4162:32;;;;;;4227:35;4237:10;4249:12;4227:9;:35::i;1897:192:14:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:14;;19873:2:18;1978:73:14::1;::::0;::::1;19855:21:18::0;19912:2;19892:18;;;19885:30;19951:34;19931:18;;;19924:62;20022:8;20002:18;;;19995:36;20048:19;;1978:73:14::1;19671:402:18::0;1978:73:14::1;2062:19;2072:8;2062:9;:19::i;6757:107:7:-:0;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6827:18:7::1;:33:::0;6757:107::o;6405:110::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;8517:2:18;1209:68:14;;;8499:21:18;;;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8647:18;;1209:68:14;8315:356:18;1209:68:14;6476:19:7::1;:35:::0;6405:110::o;8816:104:6:-;8885:27;8895:2;8899:8;8885:27;;;;;;;;;;;;:9;:27::i;13617:196::-;13732:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;13777:28;;13732:24;;13777:28;;;;;;;13617:196;;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;20280:2:18;2147:73:0;;;20262:21:18;20319:2;20299:18;;;20292:30;20358:31;20338:18;;;20331:59;20407:18;;2147:73:0;20078:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;20638:2:18;2296:78:0;;;20620:21:18;20677:2;20657:18;;;20650:30;20716:34;20696:18;;;20689:62;20787:28;20767:18;;;20760:56;20833:19;;2296:78:0;20436:422:18;11497:2002:6;11612:35;11650:20;11662:7;11650:11;:20::i;:::-;11725:18;;11612:58;;-1:-1:-1;11683:22:6;;11709:34;;682:10:1;11709:34:6;;;:87;;;-1:-1:-1;682:10:1;11760:20:6;11772:7;11760:11;:20::i;:::-;:36;;;11709:87;:154;;;-1:-1:-1;11830:18:6;;11813:50;;682:10:1;7375:164:6;:::i;11813:50::-;11683:181;;11885:17;11877:80;;;;-1:-1:-1;;;11877:80:6;;21065:2:18;11877:80:6;;;21047:21:18;21104:2;21084:18;;;21077:30;21143:34;21123:18;;;21116:62;21214:20;21194:18;;;21187:48;21252:19;;11877:80:6;20863:414:18;11877:80:6;12000:4;11978:26;;:13;:18;;;:26;;;11970:77;;;;-1:-1:-1;;;11970:77:6;;21484:2:18;11970:77:6;;;21466:21:18;21523:2;21503:18;;;21496:30;21562:34;21542:18;;;21535:62;21633:8;21613:18;;;21606:36;21659:19;;11970:77:6;21282:402:18;11970:77:6;12066:16;;;12058:66;;;;-1:-1:-1;;;12058:66:6;;21891:2:18;12058:66:6;;;21873:21:18;21930:2;21910:18;;;21903:30;21969:34;21949:18;;;21942:62;22040:7;22020:18;;;22013:35;22065:19;;12058:66:6;21689:401:18;12058:66:6;12245:49;12262:1;12266:7;12275:13;:18;;;12245:8;:49::i;:::-;12590:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;12636:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;12636:29:6;;;;;;;;;;;;;12682:20;;;:11;:20;;;;;;:30;;12727:61;;;;;;12772:15;12727:61;;;;;;13062:11;;;13092:24;;;;;:29;13062:11;;13092:29;13088:295;;13160:20;13168:11;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;13160:20;13156:212;;;13237:18;;;13205:24;;;:11;:24;;;;;;;;:50;;13320:28;;;;13278:70;;;;;;;;13205:50;;;;13278:70;;;;;;;13156:212;12565:829;13430:7;13426:2;13411:27;;13420:4;13411:27;;;;;;;;;;;;13449:42;11601:1898;;11497:2002;;;:::o;5218:187:7:-;5302:7;5321:14;5338:11;5344:4;5338:5;:11::i;:::-;5321:28;;5366:32;5380:6;5388:9;5366:13;:32::i;:::-;5359:39;5218:187;-1:-1:-1;;;;5218:187:7:o;4378:537:6:-;-1:-1:-1;;;;;;;;;;;;;;;;;4481:16:6;4489:7;8754:4;8788:12;-1:-1:-1;8778:22:6;8697:111;4481:16;4473:71;;;;-1:-1:-1;;;4473:71:6;;22297:2:18;4473:71:6;;;22279:21:18;22336:2;22316:18;;;22309:30;22375:34;22355:18;;;22348:62;22446:12;22426:18;;;22419:40;22476:19;;4473:71:6;22095:406:18;4473:71:6;4602:7;4582:245;4649:31;4683:17;;;:11;:17;;;;;;;;;4649:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;4723:28;4719:93;;4783:9;4378:537;-1:-1:-1;;;4378:537:6:o;4719:93::-;-1:-1:-1;4622:6:6;;4582:245;;2097:173:14;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;4790:120:7:-;4867:27;;;;;;;:19;:27;;;;;:36;;4898:5;;4867:27;:36;;4898:5;;4867:36;:::i;:::-;;;;-1:-1:-1;;;;4790:120:7:o;14378:804:6:-;14533:4;14554:13;;;1066:20:0;1114:8;14550:625:6;;14590:72;;;;;:36;;;;;;:72;;682:10:1;;14641:4:6;;14647:7;;14656:5;;14590:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14590:72:6;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14586:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14836:13:6;;14832:273;;14879:61;;-1:-1:-1;;;14879:61:6;;17505:2:18;14879:61:6;;;17487:21:18;17544:2;17524:18;;;17517:30;17583:34;17563:18;;;17556:62;17654:21;17634:18;;;17627:49;17693:19;;14879:61:6;17303:415:18;14832:273:6;15055:6;15049:13;15040:6;15036:2;15032:15;15025:38;14586:534;14713:55;;14723:45;14713:55;;-1:-1:-1;14706:62:6;;14550:625;-1:-1:-1;15159:4:6;14378:804;;;;;;:::o;4509:120:7:-;4586:27;;;;;;;:19;:27;;;;;:36;;4617:5;;4586:27;:36;;4617:5;;4586:36;:::i;6143:115::-;6203:13;6235:16;6228:23;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:17;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;9283:163:6;9406:32;9412:2;9416:8;9426:5;9433:4;9406:5;:32::i;5411:226:7:-;5469:7;5495:135;5546:36;5612:4;5596:22;;;;;;5522:106;;;;;;;;24184:25:18;;;24240:2;24225:18;;24218:34;24172:2;24157:18;;24010:248;5522:106:7;;;;;;;;;;;;;5512:117;;;;;;5495:16;:135::i;4393:231:2:-;4471:7;4492:17;4511:18;4533:27;4544:4;4550:9;4533:10;:27::i;:::-;4491:69;;;;4571:18;4583:5;4571:11;:18::i;:::-;-1:-1:-1;4607:9:2;4393:231;-1:-1:-1;;;4393:231:2:o;9705:1538:6:-;9844:20;9867:12;9898:16;;;9890:62;;;;-1:-1:-1;;;9890:62:6;;24465:2:18;9890:62:6;;;24447:21:18;24504:2;24484:18;;;24477:30;24543:34;24523:18;;;24516:62;24614:3;24594:18;;;24587:31;24635:19;;9890:62:6;24263:397:18;9890:62:6;9971:13;9963:66;;;;-1:-1:-1;;;9963:66:6;;24867:2:18;9963:66:6;;;24849:21:18;24906:2;24886:18;;;24879:30;24945:34;24925:18;;;24918:62;25016:10;24996:18;;;24989:38;25044:19;;9963:66:6;24665:404:18;9963:66:6;10381:16;;;;;;;:12;:16;;;;;;;;:45;;10441:50;10381:45;;;;;;;;;;;;;;10441:50;;;;;;;;;;;;;;10508:25;;;:11;:25;;;;;:35;;10558:66;;;;;;10608:15;10558:66;;;;;;;10508:25;;10693:415;10713:8;10709:1;:12;10693:415;;;10752:38;;10777:12;;10752:38;;;;10769:1;;10752:38;;10769:1;;10752:38;10813:4;10809:249;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10842:196;;;;-1:-1:-1;;;10842:196:6;;17505:2:18;10842:196:6;;;17487:21:18;17544:2;17524:18;;;17517:30;17583:34;17563:18;;;17556:62;17654:21;17634:18;;;17627:49;17693:19;;10842:196:6;17303:415:18;10842:196:6;11078:14;;;;;10723:3;10693:415;;;-1:-1:-1;11124:12:6;:27;11175:60;2869:892:7;4439:167:3;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:2;;27052:66:18;9437:57:2;;;27040:79:18;27135:11;;;27128:27;;;27171:12;;;27164:28;;;9400:7:2;;27208:12:18;;9437:57:2;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;;2283:1308;2364:7;2373:12;2598:9;:16;2618:2;2598:22;2594:990;;;2894:4;2879:20;;2873:27;2944:4;2929:20;;2923:27;3002:4;2987:20;;2981:27;2637:9;2973:36;3045:25;3056:4;2973:36;2873:27;2923;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3092:9;:16;3112:2;3092:22;3088:496;;;3367:4;3352:20;;3346:27;3418:4;3403:20;;3397:27;3460:23;3471:4;3346:27;3397;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;-1:-1:-1;3532:1:2;;-1:-1:-1;3536:35:2;3088:496;2283:1308;;;;;:::o;554:643::-;632:20;623:5;:29;;;;;;;;:::i;:::-;;619:571;;;554:643;:::o;619:571::-;730:29;721:5;:38;;;;;;;;:::i;:::-;;717:473;;;776:34;;-1:-1:-1;;;776:34:2;;25465:2:18;776:34:2;;;25447:21:18;25504:2;25484:18;;;25477:30;25543:26;25523:18;;;25516:54;25587:18;;776:34:2;25263:348:18;717:473:2;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:2;;25818:2:18;893:41:2;;;25800:21:18;25857:2;25837:18;;;25830:30;25896:33;25876:18;;;25869:61;25947:18;;893:41:2;25616:355:18;828:362:2;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:2;;26178:2:18;1012:44:2;;;26160:21:18;26217:2;26197:18;;;26190:30;26256:34;26236:18;;;26229:62;26327:4;26307:18;;;26300:32;26349:19;;1012:44:2;25976:398:18;952:238:2;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:2;;26581:2:18;1134:44:2;;;26563:21:18;26620:2;26600:18;;;26593:30;26659:34;26639:18;;;26632:62;26730:4;26710:18;;;26703:32;26752:19;;1134:44:2;26379:398:18;3212:314:3;3265:7;3297:4;3289:29;3306:12;3289:29;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;-1:-1:-1;3379:24:3;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:3;;;3465:10;3715:73;;;;27893:25:18;;;;3477:12:3;27934:18:18;;;27927:34;3491:15:3;27977:18:18;;;27970:34;3759:13:3;28020:18:18;;;28013:34;3782:4:3;28063:19:18;;;;28056:84;;;;3715:73:3;;;;;;;;;;27865:19:18;;;;3715:73:3;;;3705:84;;;;;;3212:314::o;5845:1632:2:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:2;;-1:-1:-1;7013:30:2;6993:51;;6893:163;7070:1;:7;;7075:2;7070:7;;:18;;;;;7081:1;:7;;7086:2;7081:7;;7070:18;7066:102;;;-1:-1:-1;7121:1:2;;-1:-1:-1;7125:30:2;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;27458:25:18;;;27531:4;27519:17;;27499:18;;;27492:45;;;;27553:18;;;27546:34;;;27596:18;;;27589:34;;;7282:24:2;;27430:19:18;;7282:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:2;;;;;;-1:-1:-1;;7321:20:2;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:2;;-1:-1:-1;5845:1632:2;;;;;;;;:::o;4887:344::-;5001:7;;5060:66;5047:80;;5001:7;5154:25;5170:3;5155:18;;;5177:2;5154:25;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:154::-;1026:42;1019:5;1015:54;1008:5;1005:65;995:93;;1084:1;1081;1074:12;1099:315;1167:6;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:52;;;1244:1;1241;1234:12;1196:52;1280:9;1267:23;1257:33;;1340:2;1329:9;1325:18;1312:32;1353:31;1378:5;1353:31;:::i;:::-;1403:5;1393:15;;;1099:315;;;;;:::o;1419:258::-;1491:1;1501:113;1515:6;1512:1;1509:13;1501:113;;;1591:11;;;1585:18;1572:11;;;1565:39;1537:2;1530:10;1501:113;;;1632:6;1629:1;1626:13;1623:48;;;-1:-1:-1;;1667:1:18;1649:16;;1642:27;1419:258::o;1682:317::-;1724:3;1762:5;1756:12;1789:6;1784:3;1777:19;1805:63;1861:6;1854:4;1849:3;1845:14;1838:4;1831:5;1827:16;1805:63;:::i;:::-;1913:2;1901:15;1918:66;1897:88;1888:98;;;;1988:4;1884:109;;1682:317;-1:-1:-1;;1682:317:18:o;2004:220::-;2153:2;2142:9;2135:21;2116:4;2173:45;2214:2;2203:9;2199:18;2191:6;2173:45;:::i;2229:180::-;2288:6;2341:2;2329:9;2320:7;2316:23;2312:32;2309:52;;;2357:1;2354;2347:12;2309:52;-1:-1:-1;2380:23:18;;2229:180;-1:-1:-1;2229:180:18:o;2645:315::-;2713:6;2721;2774:2;2762:9;2753:7;2749:23;2745:32;2742:52;;;2790:1;2787;2780:12;2742:52;2829:9;2816:23;2848:31;2873:5;2848:31;:::i;:::-;2898:5;2950:2;2935:18;;;;2922:32;;-1:-1:-1;;;2645:315:18:o;3147:255::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:31;3366:5;3341:31;:::i;3407:456::-;3484:6;3492;3500;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3608:9;3595:23;3627:31;3652:5;3627:31;:::i;:::-;3677:5;-1:-1:-1;3734:2:18;3719:18;;3706:32;3747:33;3706:32;3747:33;:::i;:::-;3407:456;;3799:7;;-1:-1:-1;;;3853:2:18;3838:18;;;;3825:32;;3407:456::o;3868:184::-;3920:77;3917:1;3910:88;4017:4;4014:1;4007:15;4041:4;4038:1;4031:15;4057:778;4100:5;4153:3;4146:4;4138:6;4134:17;4130:27;4120:55;;4171:1;4168;4161:12;4120:55;4207:6;4194:20;4233:18;4270:2;4266;4263:10;4260:36;;;4276:18;;:::i;:::-;4410:2;4404:9;4472:4;4464:13;;4315:66;4460:22;;;4484:2;4456:31;4452:40;4440:53;;;4508:18;;;4528:22;;;4505:46;4502:72;;;4554:18;;:::i;:::-;4594:10;4590:2;4583:22;4629:2;4621:6;4614:18;4675:3;4668:4;4663:2;4655:6;4651:15;4647:26;4644:35;4641:55;;;4692:1;4689;4682:12;4641:55;4756:2;4749:4;4741:6;4737:17;4730:4;4722:6;4718:17;4705:54;4803:1;4796:4;4791:2;4783:6;4779:15;4775:26;4768:37;4823:6;4814:15;;;;;;4057:778;;;;:::o;4840:542::-;4927:6;4935;4988:2;4976:9;4967:7;4963:23;4959:32;4956:52;;;5004:1;5001;4994:12;4956:52;5044:9;5031:23;5073:18;5114:2;5106:6;5103:14;5100:34;;;5130:1;5127;5120:12;5100:34;5153:50;5195:7;5186:6;5175:9;5171:22;5153:50;:::i;:::-;5143:60;;5256:2;5245:9;5241:18;5228:32;5212:48;;5285:2;5275:8;5272:16;5269:36;;;5301:1;5298;5291:12;5269:36;;5324:52;5368:7;5357:8;5346:9;5342:24;5324:52;:::i;:::-;5314:62;;;4840:542;;;;;:::o;5387:322::-;5456:6;5509:2;5497:9;5488:7;5484:23;5480:32;5477:52;;;5525:1;5522;5515:12;5477:52;5565:9;5552:23;5598:18;5590:6;5587:30;5584:50;;;5630:1;5627;5620:12;5584:50;5653;5695:7;5686:6;5675:9;5671:22;5653:50;:::i;5714:160::-;5779:20;;5835:13;;5828:21;5818:32;;5808:60;;5864:1;5861;5854:12;5808:60;5714:160;;;:::o;5879:180::-;5935:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:52;;;6004:1;6001;5994:12;5956:52;6027:26;6043:9;6027:26;:::i;6316:315::-;6381:6;6389;6442:2;6430:9;6421:7;6417:23;6413:32;6410:52;;;6458:1;6455;6448:12;6410:52;6497:9;6484:23;6516:31;6541:5;6516:31;:::i;:::-;6566:5;-1:-1:-1;6590:35:18;6621:2;6606:18;;6590:35;:::i;:::-;6580:45;;6316:315;;;;;:::o;6636:610::-;6732:6;6740;6748;6801:2;6789:9;6780:7;6776:23;6772:32;6769:52;;;6817:1;6814;6807:12;6769:52;6853:9;6840:23;6830:33;;6914:2;6903:9;6899:18;6886:32;6937:18;6978:2;6970:6;6967:14;6964:34;;;6994:1;6991;6984:12;6964:34;7017:50;7059:7;7050:6;7039:9;7035:22;7017:50;:::i;:::-;7007:60;;7120:2;7109:9;7105:18;7092:32;7076:48;;7149:2;7139:8;7136:16;7133:36;;;7165:1;7162;7155:12;7133:36;;7188:52;7232:7;7221:8;7210:9;7206:24;7188:52;:::i;:::-;7178:62;;;6636:610;;;;;:::o;7251:666::-;7346:6;7354;7362;7370;7423:3;7411:9;7402:7;7398:23;7394:33;7391:53;;;7440:1;7437;7430:12;7391:53;7479:9;7466:23;7498:31;7523:5;7498:31;:::i;:::-;7548:5;-1:-1:-1;7605:2:18;7590:18;;7577:32;7618:33;7577:32;7618:33;:::i;:::-;7670:7;-1:-1:-1;7724:2:18;7709:18;;7696:32;;-1:-1:-1;7779:2:18;7764:18;;7751:32;7806:18;7795:30;;7792:50;;;7838:1;7835;7828:12;7792:50;7861;7903:7;7894:6;7883:9;7879:22;7861:50;:::i;:::-;7851:60;;;7251:666;;;;;;;:::o;7922:388::-;7990:6;7998;8051:2;8039:9;8030:7;8026:23;8022:32;8019:52;;;8067:1;8064;8057:12;8019:52;8106:9;8093:23;8125:31;8150:5;8125:31;:::i;:::-;8175:5;-1:-1:-1;8232:2:18;8217:18;;8204:32;8245:33;8204:32;8245:33;:::i;8676:184::-;8728:77;8725:1;8718:88;8825:4;8822:1;8815:15;8849:4;8846:1;8839:15;8865:128;8905:3;8936:1;8932:6;8929:1;8926:13;8923:39;;;8942:18;;:::i;:::-;-1:-1:-1;8978:9:18;;8865:128::o;9335:437::-;9414:1;9410:12;;;;9457;;;9478:61;;9532:4;9524:6;9520:17;9510:27;;9478:61;9585:2;9577:6;9574:14;9554:18;9551:38;9548:218;;;9622:77;9619:1;9612:88;9723:4;9720:1;9713:15;9751:4;9748:1;9741:15;9548:218;;9335:437;;;:::o;11427:228::-;11467:7;11593:1;11525:66;11521:74;11518:1;11515:81;11510:1;11503:9;11496:17;11492:105;11489:131;;;11600:18;;:::i;:::-;-1:-1:-1;11640:9:18;;11427:228::o;11660:184::-;11712:77;11709:1;11702:88;11809:4;11806:1;11799:15;11833:4;11830:1;11823:15;11849:120;11889:1;11915;11905:35;;11920:18;;:::i;:::-;-1:-1:-1;11954:9:18;;11849:120::o;11974:125::-;12014:4;12042:1;12039;12036:8;12033:34;;;12047:18;;:::i;:::-;-1:-1:-1;12084:9:18;;11974:125::o;14670:184::-;14722:77;14719:1;14712:88;14819:4;14816:1;14809:15;14843:4;14840:1;14833:15;18842:470;19021:3;19059:6;19053:13;19075:53;19121:6;19116:3;19109:4;19101:6;19097:17;19075:53;:::i;:::-;19191:13;;19150:16;;;;19213:57;19191:13;19150:16;19247:4;19235:17;;19213:57;:::i;:::-;19286:20;;18842:470;-1:-1:-1;;;;18842:470:18:o;22922:512::-;23116:4;23145:42;23226:2;23218:6;23214:15;23203:9;23196:34;23278:2;23270:6;23266:15;23261:2;23250:9;23246:18;23239:43;;23318:6;23313:2;23302:9;23298:18;23291:34;23361:3;23356:2;23345:9;23341:18;23334:31;23382:46;23423:3;23412:9;23408:19;23400:6;23382:46;:::i;:::-;23374:54;22922:512;-1:-1:-1;;;;;;22922:512:18:o;23439:249::-;23508:6;23561:2;23549:9;23540:7;23536:23;23532:32;23529:52;;;23577:1;23574;23567:12;23529:52;23609:9;23603:16;23628:30;23652:5;23628:30;:::i;23693:195::-;23732:3;23763:66;23756:5;23753:77;23750:103;;;23833:18;;:::i;:::-;-1:-1:-1;23880:1:18;23869:13;;23693:195::o;23893:112::-;23925:1;23951;23941:35;;23956:18;;:::i;:::-;-1:-1:-1;23990:9:18;;23893:112::o;25074:184::-;25126:77;25123:1;25116:88;25223:4;25220:1;25213:15;25247:4;25244:1;25237:15

Swarm Source

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