Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
555 HYPERIUM
Holders
284
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HYPERIUMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CodeHyperium
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// 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 CodeHyperium is ERC721A, EIP712, Payment, Ownable { using Strings for uint256; string public _baseURIextended; //signature string private constant SINGING_DOMAIN = "HYPERIUM"; string private constant SIGNATURE_VERSION = "1"; //settings uint256 public maxSupply = 555; bool public phase1Status = false; bool public phase2Status = false; bool public publicStatus = false; uint256 private price = 0.077 ether; uint256 private adminminting = 55; uint256 private maxMintPerTxPhase1 = 2; uint256 private maxMintPerWalletPhase1 = 2; uint256 private maxMintPerTxPhase2 = 1; uint256 private maxMintPerWalletPhase2 = 1; uint256 private maxMintPerTxPublic= 2; //shares address[] private addressList = [ 0xeE07d159f065bB02A98Aca2055Ce4A9ebBBE2C8A, 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5, 0xd1462980eB0028318e0F0646c8bB8fBcF74d1A56, 0xE815C8c1fD64C06367649a749EA8DAbf681e48BA ]; uint[] private shareList = [ 70, 20, 7, 3 ]; //mappings mapping(address => uint256) private mintCountMapPhase1; mapping(address => uint256) public allowedMintCountMapPhase1; mapping(address => uint256) private mintCountMapPhase2; mapping(address => uint256) public allowedMintCountMapPhase2; constructor( string memory _name, string memory _symbol, string memory _uri ) ERC721A(_name, _symbol) EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) Payment(addressList, shareList) { setBaseURI(_uri); } function mintPhase1(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(phase1Status,"Presale sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(s + _tokenAmount <= maxSupply, "Mint less"); require(_tokenAmount <= maxMintPerTxPhase1); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); require(allowedMintCountPhase1(msg.sender) >= _tokenAmount,"You minted too many"); require(tx.origin == msg.sender); //stop contract buying _safeMint(msg.sender, _tokenAmount); updateMintCountPhase1(msg.sender, _tokenAmount); } function mintPhase2(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(phase2Status,"Presale sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(s + _tokenAmount <= maxSupply, "Mint less"); require(_tokenAmount <= maxMintPerTxPhase2); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); require(allowedMintCountPhase2(msg.sender) >= _tokenAmount,"You minted too many"); require(tx.origin == msg.sender); //stop contract buying _safeMint(msg.sender, _tokenAmount); updateMintCountPhase2(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 , "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 updateMintCountPhase1(address minter, uint256 count) private { mintCountMapPhase1[minter] += count; } function allowedMintCountPhase1(address minter) public view returns (uint256) { return maxMintPerWalletPhase1 - mintCountMapPhase1[minter]; } function updateMintCountPhase2(address minter, uint256 count) private { mintCountMapPhase2[minter] += count; } function allowedMintCountPhase2(address minter) public view returns (uint256) { return maxMintPerWalletPhase2 - mintCountMapPhase2[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 setPhase1(bool _status) public onlyOwner { phase1Status = _status; } function setPhase2(bool _status) public onlyOwner { phase2Status = _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 setMaxPerWalletPhase1(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletPhase1 = _newMaxMintAmount; } function setMaxPerTxPhase1(uint256 _newMaxAmount) public onlyOwner { maxMintPerTxPhase1 = _newMaxAmount; } function setMaxPerWalletPhase2(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletPhase2 = _newMaxMintAmount; } function setMaxPerTxPhase2(uint256 _newMaxAmount) public onlyOwner { maxMintPerTxPhase2 = _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); } }
// 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); } } } }
// 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; } }
// 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)); } }
// 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); } }
// 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; } }
// 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 {} }
// 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; } }
// 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); }
// 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; }
// 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); }
// 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); }
// 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); }
// 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); } }
// 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_); } }
// 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; } } }
// 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","type":"address"}],"name":"allowedMintCountMapPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedMintCountMapPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPhase2","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":[{"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":"mintPhase1","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":"mintPhase2","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":"phase1Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Status","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":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxPhase2","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":"setMaxPerWalletPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase2","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"}]
Contract Creation Code
61022b600e55600f805462ffffff191690556701118f178fb480006010556037601155600260128190556013819055600160148190556015556016556101c060405273ee07d159f065bb02a98aca2055ce4a9ebbbe2c8a61014090815273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b56101605273d1462980eb0028318e0f0646c8bb8fbcf74d1a566101805273e815c8c1fd64c06367649a749ea8dabf681e48ba6101a052620000b7906017906004620006ed565b5060408051608081018252604681526014602082015260079181019190915260036060820152620000ed90601890600462000757565b50348015620000fb57600080fd5b5060405162004b8a38038062004b8a8339810160408190526200011e91620008e5565b60178054806020026020016040519081016040528092919081815260200182805480156200017657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000157575b50505050506018805480602002602001604051908101604052809291908181526020018280548015620001c957602002820191906000526020600020905b815481526020019060010190808311620001b4575b505050505060405180604001604052806008815260200167485950455249554d60c01b815250604051806040016040528060018152602001603160f81b81525086868160019080519060200190620002239291906200079a565b508051620002399060029060208401906200079a565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c052610120525050825184511491506200034490505760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003975760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200033b565b60005b82518110156200040357620003ee838281518110620003bd57620003bd62000a02565b6020026020010151838381518110620003da57620003da62000a02565b60200260200101516200043460201b60201c565b80620003fa81620009ce565b9150506200039a565b505050620004206200041a6200062260201b60201c565b62000626565b6200042b8162000678565b50505062000a2e565b6001600160a01b038216620004a15760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200033b565b60008111620004f35760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200033b565b6001600160a01b038216600090815260096020526040902054156200056f5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200033b565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620005d990829062000976565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c546001600160a01b03163314620006d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200033b565b8051620006e990600d9060208401906200079a565b5050565b82805482825590600052602060002090810192821562000745579160200282015b828111156200074557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200070e565b506200075392915062000817565b5090565b82805482825590600052602060002090810192821562000745579160200282015b8281111562000745578251829060ff1690559160200191906001019062000778565b828054620007a89062000991565b90600052602060002090601f016020900481019282620007cc576000855562000745565b82601f10620007e757805160ff191683800117855562000745565b8280016001018555821562000745579182015b8281111562000745578251825591602001919060010190620007fa565b5b8082111562000753576000815560010162000818565b600082601f8301126200084057600080fd5b81516001600160401b03808211156200085d576200085d62000a18565b604051601f8301601f19908116603f0116810190828211818310171562000888576200088862000a18565b81604052838152602092508683858801011115620008a557600080fd5b600091505b83821015620008c95785820183015181830184015290820190620008aa565b83821115620008db5760008385830101525b9695505050505050565b600080600060608486031215620008fb57600080fd5b83516001600160401b03808211156200091357600080fd5b62000921878388016200082e565b945060208601519150808211156200093857600080fd5b62000946878388016200082e565b935060408601519150808211156200095d57600080fd5b506200096c868287016200082e565b9150509250925092565b600082198211156200098c576200098c620009ec565b500190565b600181811c90821680620009a657607f821691505b60208210811415620009c857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620009e557620009e5620009ec565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e051610100516101205161410962000a816000396000613722015260006137710152600061374c015260006136a5015260006136cf015260006136f901526141096000f3fe60806040526004361061032c5760003560e01c8063715018a6116101a5578063c87b56dd116100ec578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610991578063f452472e146109b1578063f4b01842146109d1578063f91798b1146109fe57600080fd5b8063e985e9c514610908578063efd0cbf91461095e578063f05e47df1461097157600080fd5b8063dedb78e3116100c6578063dedb78e3146108c1578063e1efe4d4146108e0578063e33b7de3146108f357600080fd5b8063c87b56dd14610848578063ce7c2ac214610868578063d5abeb01146108ab57600080fd5b80639997d82d1161014e578063b88d4fde11610128578063b88d4fde146107db578063be8dfe76146107fb578063c50bbc431461082857600080fd5b80639997d82d1461077b578063a22cb4651461079b578063a2a3fc71146107bb57600080fd5b806391b7f5ed1161017f57806391b7f5ed1461070357806395d89b41146107235780639852595c1461073857600080fd5b8063715018a6146106a35780638b83209b146106b85780638da5cb5b146106d857600080fd5b80632f745c59116102745780634b21839e1161021d578063587d3861116101f7578063587d3861146106235780635cbcec4e146106435780636352211e1461066357806370a082311461068357600080fd5b80634b21839e146105c35780634f6ccce7146105e357806355f804b31461060357600080fd5b806342842e0e1161024e57806342842e0e14610563578063462fed141461058357806348808c10146105a357600080fd5b80632f745c59146105265780633a98ef39146105465780633ccfd60b1461055b57600080fd5b8063095ea7b3116102d657806319165587116102b057806319165587146104d357806320b86474146104f357806323b872dd1461050657600080fd5b8063095ea7b31461047a5780630a6fd7ba1461049a57806318160ddd146104b457600080fd5b806306fdde031161030757806306fdde03146103fe578063081812fc146104205780630928fc221461046557600080fd5b8062d86a511461038757806301ffc9a7146103a957806303339bcb146103de57600080fd5b36610382577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561039357600080fd5b506103a76103a2366004613ccb565b610a1e565b005b3480156103b557600080fd5b506103c96103c4366004613bf8565b610a8f565b60405190151581526020015b60405180910390f35b3480156103ea57600080fd5b506103a76103f9366004613ce4565b610bc0565b34801561040a57600080fd5b50610413610c94565b6040516103d59190613e38565b34801561042c57600080fd5b5061044061043b366004613ccb565b610d26565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103d5565b34801561047157600080fd5b50610413610dce565b34801561048657600080fd5b506103a7610495366004613bb1565b610e5c565b3480156104a657600080fd5b50600f546103c99060ff1681565b3480156104c057600080fd5b506000545b6040519081526020016103d5565b3480156104df57600080fd5b506103a76104ee366004613a79565b610fb1565b6103a7610501366004613d09565b6111ec565b34801561051257600080fd5b506103a7610521366004613acf565b611444565b34801561053257600080fd5b506104c5610541366004613bb1565b61144f565b34801561055257600080fd5b506007546104c5565b6103a761160e565b34801561056f57600080fd5b506103a761057e366004613acf565b6116cd565b34801561058f57600080fd5b506103a761059e366004613ccb565b6116e8565b3480156105af57600080fd5b506104406105be366004613c67565b611754565b3480156105cf57600080fd5b506103a76105de366004613ccb565b611767565b3480156105ef57600080fd5b506104c56105fe366004613ccb565b6117d3565b34801561060f57600080fd5b506103a761061e366004613c32565b61184f565b34801561062f57600080fd5b506103a761063e366004613bdd565b6118cd565b34801561064f57600080fd5b506103a761065e366004613bdd565b611965565b34801561066f57600080fd5b5061044061067e366004613ccb565b611a04565b34801561068f57600080fd5b506104c561069e366004613a79565b611a16565b3480156106af57600080fd5b506103a7611adc565b3480156106c457600080fd5b506104406106d3366004613ccb565b611b4f565b3480156106e457600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff16610440565b34801561070f57600080fd5b506103a761071e366004613ccb565b611b8c565b34801561072f57600080fd5b50610413611bf8565b34801561074457600080fd5b506104c5610753366004613a79565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561078757600080fd5b506103a7610796366004613bdd565b611c07565b3480156107a757600080fd5b506103a76107b6366004613b7c565b611ca5565b3480156107c757600080fd5b506103a76107d6366004613ccb565b611da2565b3480156107e757600080fd5b506103a76107f6366004613b10565b611e0e565b34801561080757600080fd5b506104c5610816366004613a79565b601c6020526000908152604090205481565b34801561083457600080fd5b506104c5610843366004613a79565b611e97565b34801561085457600080fd5b50610413610863366004613ccb565b611eca565b34801561087457600080fd5b506104c5610883366004613a79565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b3480156108b757600080fd5b506104c5600e5481565b3480156108cd57600080fd5b50600f546103c990610100900460ff1681565b6103a76108ee366004613d09565b611fa5565b3480156108ff57600080fd5b506008546104c5565b34801561091457600080fd5b506103c9610923366004613a96565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103a761096c366004613ccb565b6121fc565b34801561097d57600080fd5b506104c561098c366004613a79565b612384565b34801561099d57600080fd5b506103a76109ac366004613a79565b6123b7565b3480156109bd57600080fd5b506103a76109cc366004613ccb565b6124b0565b3480156109dd57600080fd5b506104c56109ec366004613a79565b601a6020526000908152604090205481565b348015610a0a57600080fd5b50600f546103c99062010000900460ff1681565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610a8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601255565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610b2257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b6e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610bba57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610c275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600054600e54610c378483613e4b565b1115610c855760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b610c8f828461251c565b505050565b606060018054610ca390613ef7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccf90613ef7565b8015610d1c5780601f10610cf157610100808354040283529160200191610d1c565b820191906000526020600020905b815481529060010190602001808311610cff57829003601f168201915b5050505050905090565b6000610d33826000541190565b610da55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a81565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610ddb90613ef7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790613ef7565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b6000610e6782611a04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f345750610f348133610923565b610fa65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a81565b610c8f838383612536565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110495760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a81565b6000600854476110599190613e4b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261109d9085613e77565b6110a79190613e63565b6110b19190613eb4565b9050806111265760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902054611157908290613e4b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205560085461118b908290613e4b565b60085561119883826125b7565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600054336111fa8484611754565b73ffffffffffffffffffffffffffffffffffffffff161461125d5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a81565b600f5460ff166112af5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610a81565b600084116112ff5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b600e5461130c8583613e4b565b111561135a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b60125484111561136957600080fd5b836010546113779190613e77565b3410156113c65760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b836113d033612384565b101561141e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a81565b32331461142a57600080fd5b611434338561251c565b61143e33856126dd565b50505050565b610c8f83838361271b565b600061145a83611a16565b82106114ce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b600080549080805b8381101561159f5760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561154757805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611596578684141561158f57509350610bba92505050565b6001909301925b506001016114d6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610a81565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b604051600090339047908381818185875af1925050503d80600081146116b7576040519150601f19603f3d011682016040523d82523d6000602084013e6116bc565b606091505b50509050806116ca57600080fd5b50565b610c8f83838360405180602001604052806000815250611e0e565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461174f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601555565b60006117608383612b4d565b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601355565b60008054821061184b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a81565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146118b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b80516118c990600d906020840190613929565b5050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146119345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146119cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6000611a0f82612b6d565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611aa15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a81565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b611b4d6000612c93565b565b6000600b8281548110611b6457611b64614025565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611bf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601055565b606060028054610ca390613ef7565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216331415611d0b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a81565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611e095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601455565b611e1984848461271b565b611e2584848484612d0a565b61143e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601b6020526040812054601554610bba9190613eb4565b6060611ed7826000541190565b611f495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a81565b6000611f53612eef565b9050805160001415611f745760405180602001604052806000815250611760565b80611f7e84612efe565b604051602001611f8f929190613dc0565b6040516020818303038152906040529392505050565b60005433611fb38484611754565b73ffffffffffffffffffffffffffffffffffffffff16146120165760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a81565b600f54610100900460ff1661206d5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610a81565b600084116120bd5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b600e546120ca8583613e4b565b11156121185760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b60145484111561212757600080fd5b836010546121359190613e77565b3410156121845760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b8361218e33611e97565b10156121dc5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a81565b3233146121e857600080fd5b6121f2338561251c565b61143e3385613030565b600054600f5462010000900460ff166122575760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a81565b600082116122a75760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b6016548211156122b657600080fd5b600e546122c38383613e4b565b11156123115760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b8160105461231f9190613e77565b34101561236e5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b32331461237a57600080fd5b6118c9338361251c565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260196020526040812054601354610bba9190613eb4565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461241e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b73ffffffffffffffffffffffffffffffffffffffff81166124a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a81565b6116ca81612c93565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601655565b6118c9828260405180602001604052806000815250613065565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156126075760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a81565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b5050905080610c8f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604081208054839290612712908490613e4b565b90915550505050565b600061272682612b6d565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061278457503361276c84610d26565b73ffffffffffffffffffffffffffffffffffffffff16145b80612796575081516127969033610923565b90508061280b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a81565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128b05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff84166129395760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a81565b6129496000848460000151612536565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612ae957612a66816000541190565b15612ae9578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612b5984613072565b9050612b6581846130d5565b949350505050565b6040805180820190915260008082526020820152612b8c826000541190565b612bfe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a81565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612c6b579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612c00565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612ee4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612d81903390899088908890600401613def565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612de9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612de691810190613c15565b60015b612e99573d808015612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b508051612e915760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b65565b506001949350505050565b6060600d8054610ca390613ef7565b606081612f3e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f685780612f5281613f4b565b9150612f619050600a83613e63565b9150612f42565b60008167ffffffffffffffff811115612f8357612f83614054565b6040519080825280601f01601f191660200182016040528015612fad576020820181803683370190505b5090505b8415612b6557612fc2600183613eb4565b9150612fcf600a86613f84565b612fda906030613e4b565b60f81b818381518110612fef57612fef614025565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613029600a86613e63565b9450612fb1565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604081208054839290612712908490613e4b565b610c8f83838360016130f9565b6000610bba7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c83805190602001206040516020016130ba929190918252602082015260400190565b604051602081830303815290604052805190602001206133c1565b60008060006130e4858561342a565b915091506130f18161349a565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff85166131855760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b836131f85760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156133b857604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156133ac5761333a6000888488612d0a565b6133ac5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b600191820191016132da565b50600055612b46565b6000610bba6133ce61368b565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156134615760208301516040840151606085015160001a613455878285856137bf565b94509450505050613493565b82516040141561348b57602083015160408401516134808683836138d7565b935093505050613493565b506000905060025b9250929050565b60008160048111156134ae576134ae613ff6565b14156134b75750565b60018160048111156134cb576134cb613ff6565b14156135195760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a81565b600281600481111561352d5761352d613ff6565b141561357b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a81565b600381600481111561358f5761358f613ff6565b14156136035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b600481600481111561361757613617613ff6565b14156116ca5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156136f157507f000000000000000000000000000000000000000000000000000000000000000046145b1561371b57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137f657506000905060036138ce565b8460ff16601b1415801561380e57508460ff16601c14155b1561381f57506000905060046138ce565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613873573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166138c7576000600192509250506138ce565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161390d60ff86901c601b613e4b565b905061391b878288856137bf565b935093505050935093915050565b82805461393590613ef7565b90600052602060002090601f016020900481019282613957576000855561399d565b82601f1061397057805160ff191683800117855561399d565b8280016001018555821561399d579182015b8281111561399d578251825591602001919060010190613982565b5061184b9291505b8082111561184b57600081556001016139a5565b803580151581146139c957600080fd5b919050565b600082601f8301126139df57600080fd5b813567ffffffffffffffff808211156139fa576139fa614054565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a4057613a40614054565b81604052838152866020858801011115613a5957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215613a8b57600080fd5b813561176081614083565b60008060408385031215613aa957600080fd5b8235613ab481614083565b91506020830135613ac481614083565b809150509250929050565b600080600060608486031215613ae457600080fd5b8335613aef81614083565b92506020840135613aff81614083565b929592945050506040919091013590565b60008060008060808587031215613b2657600080fd5b8435613b3181614083565b93506020850135613b4181614083565b925060408501359150606085013567ffffffffffffffff811115613b6457600080fd5b613b70878288016139ce565b91505092959194509250565b60008060408385031215613b8f57600080fd5b8235613b9a81614083565b9150613ba8602084016139b9565b90509250929050565b60008060408385031215613bc457600080fd5b8235613bcf81614083565b946020939093013593505050565b600060208284031215613bef57600080fd5b611760826139b9565b600060208284031215613c0a57600080fd5b8135611760816140a5565b600060208284031215613c2757600080fd5b8151611760816140a5565b600060208284031215613c4457600080fd5b813567ffffffffffffffff811115613c5b57600080fd5b612b65848285016139ce565b60008060408385031215613c7a57600080fd5b823567ffffffffffffffff80821115613c9257600080fd5b613c9e868387016139ce565b93506020850135915080821115613cb457600080fd5b50613cc1858286016139ce565b9150509250929050565b600060208284031215613cdd57600080fd5b5035919050565b60008060408385031215613cf757600080fd5b823591506020830135613ac481614083565b600080600060608486031215613d1e57600080fd5b83359250602084013567ffffffffffffffff80821115613d3d57600080fd5b613d49878388016139ce565b93506040860135915080821115613d5f57600080fd5b50613d6c868287016139ce565b9150509250925092565b60008151808452613d8e816020860160208601613ecb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613dd2818460208801613ecb565b835190830190613de6818360208801613ecb565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e2e6080830184613d76565b9695505050505050565b6020815260006117606020830184613d76565b60008219821115613e5e57613e5e613f98565b500190565b600082613e7257613e72613fc7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eaf57613eaf613f98565b500290565b600082821015613ec657613ec6613f98565b500390565b60005b83811015613ee6578181015183820152602001613ece565b8381111561143e5750506000910152565b600181811c90821680613f0b57607f821691505b60208210811415613f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f7d57613f7d613f98565b5060010190565b600082613f9357613f93613fc7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146116ca57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116ca57600080fdfea26469706673582212204c96c8104a569f1bcb8008710cab635f2e1ab6ab3164bab9aa4516b6182b4edb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436f6465487970657269756d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008485950455249554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576e664878756b585a4647616d5a59784644564463344b314e5675427a414d54713155725a38355765776f562f00000000000000000000
Deployed Bytecode
0x60806040526004361061032c5760003560e01c8063715018a6116101a5578063c87b56dd116100ec578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610991578063f452472e146109b1578063f4b01842146109d1578063f91798b1146109fe57600080fd5b8063e985e9c514610908578063efd0cbf91461095e578063f05e47df1461097157600080fd5b8063dedb78e3116100c6578063dedb78e3146108c1578063e1efe4d4146108e0578063e33b7de3146108f357600080fd5b8063c87b56dd14610848578063ce7c2ac214610868578063d5abeb01146108ab57600080fd5b80639997d82d1161014e578063b88d4fde11610128578063b88d4fde146107db578063be8dfe76146107fb578063c50bbc431461082857600080fd5b80639997d82d1461077b578063a22cb4651461079b578063a2a3fc71146107bb57600080fd5b806391b7f5ed1161017f57806391b7f5ed1461070357806395d89b41146107235780639852595c1461073857600080fd5b8063715018a6146106a35780638b83209b146106b85780638da5cb5b146106d857600080fd5b80632f745c59116102745780634b21839e1161021d578063587d3861116101f7578063587d3861146106235780635cbcec4e146106435780636352211e1461066357806370a082311461068357600080fd5b80634b21839e146105c35780634f6ccce7146105e357806355f804b31461060357600080fd5b806342842e0e1161024e57806342842e0e14610563578063462fed141461058357806348808c10146105a357600080fd5b80632f745c59146105265780633a98ef39146105465780633ccfd60b1461055b57600080fd5b8063095ea7b3116102d657806319165587116102b057806319165587146104d357806320b86474146104f357806323b872dd1461050657600080fd5b8063095ea7b31461047a5780630a6fd7ba1461049a57806318160ddd146104b457600080fd5b806306fdde031161030757806306fdde03146103fe578063081812fc146104205780630928fc221461046557600080fd5b8062d86a511461038757806301ffc9a7146103a957806303339bcb146103de57600080fd5b36610382577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561039357600080fd5b506103a76103a2366004613ccb565b610a1e565b005b3480156103b557600080fd5b506103c96103c4366004613bf8565b610a8f565b60405190151581526020015b60405180910390f35b3480156103ea57600080fd5b506103a76103f9366004613ce4565b610bc0565b34801561040a57600080fd5b50610413610c94565b6040516103d59190613e38565b34801561042c57600080fd5b5061044061043b366004613ccb565b610d26565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103d5565b34801561047157600080fd5b50610413610dce565b34801561048657600080fd5b506103a7610495366004613bb1565b610e5c565b3480156104a657600080fd5b50600f546103c99060ff1681565b3480156104c057600080fd5b506000545b6040519081526020016103d5565b3480156104df57600080fd5b506103a76104ee366004613a79565b610fb1565b6103a7610501366004613d09565b6111ec565b34801561051257600080fd5b506103a7610521366004613acf565b611444565b34801561053257600080fd5b506104c5610541366004613bb1565b61144f565b34801561055257600080fd5b506007546104c5565b6103a761160e565b34801561056f57600080fd5b506103a761057e366004613acf565b6116cd565b34801561058f57600080fd5b506103a761059e366004613ccb565b6116e8565b3480156105af57600080fd5b506104406105be366004613c67565b611754565b3480156105cf57600080fd5b506103a76105de366004613ccb565b611767565b3480156105ef57600080fd5b506104c56105fe366004613ccb565b6117d3565b34801561060f57600080fd5b506103a761061e366004613c32565b61184f565b34801561062f57600080fd5b506103a761063e366004613bdd565b6118cd565b34801561064f57600080fd5b506103a761065e366004613bdd565b611965565b34801561066f57600080fd5b5061044061067e366004613ccb565b611a04565b34801561068f57600080fd5b506104c561069e366004613a79565b611a16565b3480156106af57600080fd5b506103a7611adc565b3480156106c457600080fd5b506104406106d3366004613ccb565b611b4f565b3480156106e457600080fd5b50600c5473ffffffffffffffffffffffffffffffffffffffff16610440565b34801561070f57600080fd5b506103a761071e366004613ccb565b611b8c565b34801561072f57600080fd5b50610413611bf8565b34801561074457600080fd5b506104c5610753366004613a79565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561078757600080fd5b506103a7610796366004613bdd565b611c07565b3480156107a757600080fd5b506103a76107b6366004613b7c565b611ca5565b3480156107c757600080fd5b506103a76107d6366004613ccb565b611da2565b3480156107e757600080fd5b506103a76107f6366004613b10565b611e0e565b34801561080757600080fd5b506104c5610816366004613a79565b601c6020526000908152604090205481565b34801561083457600080fd5b506104c5610843366004613a79565b611e97565b34801561085457600080fd5b50610413610863366004613ccb565b611eca565b34801561087457600080fd5b506104c5610883366004613a79565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b3480156108b757600080fd5b506104c5600e5481565b3480156108cd57600080fd5b50600f546103c990610100900460ff1681565b6103a76108ee366004613d09565b611fa5565b3480156108ff57600080fd5b506008546104c5565b34801561091457600080fd5b506103c9610923366004613a96565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6103a761096c366004613ccb565b6121fc565b34801561097d57600080fd5b506104c561098c366004613a79565b612384565b34801561099d57600080fd5b506103a76109ac366004613a79565b6123b7565b3480156109bd57600080fd5b506103a76109cc366004613ccb565b6124b0565b3480156109dd57600080fd5b506104c56109ec366004613a79565b601a6020526000908152604090205481565b348015610a0a57600080fd5b50600f546103c99062010000900460ff1681565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610a8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601255565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610b2257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b6e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610bba57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314610c275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600054600e54610c378483613e4b565b1115610c855760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b610c8f828461251c565b505050565b606060018054610ca390613ef7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccf90613ef7565b8015610d1c5780601f10610cf157610100808354040283529160200191610d1c565b820191906000526020600020905b815481529060010190602001808311610cff57829003601f168201915b5050505050905090565b6000610d33826000541190565b610da55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a81565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610ddb90613ef7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0790613ef7565b8015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b505050505081565b6000610e6782611a04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f345750610f348133610923565b610fa65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a81565b610c8f838383612536565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546110495760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a81565b6000600854476110599190613e4b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020908152604080832054600754600990935290832054939450919261109d9085613e77565b6110a79190613e63565b6110b19190613eb4565b9050806111265760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a6020526040902054611157908290613e4b565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205560085461118b908290613e4b565b60085561119883826125b7565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600054336111fa8484611754565b73ffffffffffffffffffffffffffffffffffffffff161461125d5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a81565b600f5460ff166112af5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610a81565b600084116112ff5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b600e5461130c8583613e4b565b111561135a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b60125484111561136957600080fd5b836010546113779190613e77565b3410156113c65760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b836113d033612384565b101561141e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a81565b32331461142a57600080fd5b611434338561251c565b61143e33856126dd565b50505050565b610c8f83838361271b565b600061145a83611a16565b82106114ce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b600080549080805b8381101561159f5760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561154757805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611596578684141561158f57509350610bba92505050565b6001909301925b506001016114d6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610a81565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146116755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b604051600090339047908381818185875af1925050503d80600081146116b7576040519150601f19603f3d011682016040523d82523d6000602084013e6116bc565b606091505b50509050806116ca57600080fd5b50565b610c8f83838360405180602001604052806000815250611e0e565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461174f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601555565b60006117608383612b4d565b9392505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146117ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601355565b60008054821061184b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a81565b5090565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146118b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b80516118c990600d906020840190613929565b5050565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146119345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146119cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6000611a0f82612b6d565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611aa15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a81565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b611b4d6000612c93565b565b6000600b8281548110611b6457611b64614025565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611bf35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601055565b606060028054610ca390613ef7565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8216331415611d0b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a81565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5473ffffffffffffffffffffffffffffffffffffffff163314611e095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601455565b611e1984848461271b565b611e2584848484612d0a565b61143e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601b6020526040812054601554610bba9190613eb4565b6060611ed7826000541190565b611f495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a81565b6000611f53612eef565b9050805160001415611f745760405180602001604052806000815250611760565b80611f7e84612efe565b604051602001611f8f929190613dc0565b6040516020818303038152906040529392505050565b60005433611fb38484611754565b73ffffffffffffffffffffffffffffffffffffffff16146120165760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a81565b600f54610100900460ff1661206d5760405162461bcd60e51b815260206004820152601a60248201527f50726573616c652073616c65206973206e6f74206163746976650000000000006044820152606401610a81565b600084116120bd5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b600e546120ca8583613e4b565b11156121185760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b60145484111561212757600080fd5b836010546121359190613e77565b3410156121845760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b8361218e33611e97565b10156121dc5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a81565b3233146121e857600080fd5b6121f2338561251c565b61143e3385613030565b600054600f5462010000900460ff166122575760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a81565b600082116122a75760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a81565b6016548211156122b657600080fd5b600e546122c38383613e4b565b11156123115760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a81565b8160105461231f9190613e77565b34101561236e5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a81565b32331461237a57600080fd5b6118c9338361251c565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260196020526040812054601354610bba9190613eb4565b600c5473ffffffffffffffffffffffffffffffffffffffff16331461241e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b73ffffffffffffffffffffffffffffffffffffffff81166124a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a81565b6116ca81612c93565b600c5473ffffffffffffffffffffffffffffffffffffffff1633146125175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a81565b601655565b6118c9828260405180602001604052806000815250613065565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156126075760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a81565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b5050905080610c8f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604081208054839290612712908490613e4b565b90915550505050565b600061272682612b6d565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061278457503361276c84610d26565b73ffffffffffffffffffffffffffffffffffffffff16145b80612796575081516127969033610923565b90508061280b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a81565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128b05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff84166129395760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a81565b6129496000848460000151612536565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612ae957612a66816000541190565b15612ae9578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612b5984613072565b9050612b6581846130d5565b949350505050565b6040805180820190915260008082526020820152612b8c826000541190565b612bfe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a81565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612c6b579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612c00565b600c805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612ee4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612d81903390899088908890600401613def565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612de9575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612de691810190613c15565b60015b612e99573d808015612e17576040519150601f19603f3d011682016040523d82523d6000602084013e612e1c565b606091505b508051612e915760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b65565b506001949350505050565b6060600d8054610ca390613ef7565b606081612f3e57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f685780612f5281613f4b565b9150612f619050600a83613e63565b9150612f42565b60008167ffffffffffffffff811115612f8357612f83614054565b6040519080825280601f01601f191660200182016040528015612fad576020820181803683370190505b5090505b8415612b6557612fc2600183613eb4565b9150612fcf600a86613f84565b612fda906030613e4b565b60f81b818381518110612fef57612fef614025565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613029600a86613e63565b9450612fb1565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604081208054839290612712908490613e4b565b610c8f83838360016130f9565b6000610bba7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c83805190602001206040516020016130ba929190918252602082015260400190565b604051602081830303815290604052805190602001206133c1565b60008060006130e4858561342a565b915091506130f18161349a565b509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff85166131855760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b836131f85760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610a81565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156133b857604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156133ac5761333a6000888488612d0a565b6133ac5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a81565b600191820191016132da565b50600055612b46565b6000610bba6133ce61368b565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156134615760208301516040840151606085015160001a613455878285856137bf565b94509450505050613493565b82516040141561348b57602083015160408401516134808683836138d7565b935093505050613493565b506000905060025b9250929050565b60008160048111156134ae576134ae613ff6565b14156134b75750565b60018160048111156134cb576134cb613ff6565b14156135195760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a81565b600281600481111561352d5761352d613ff6565b141561357b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a81565b600381600481111561358f5761358f613ff6565b14156136035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b600481600481111561361757613617613ff6565b14156116ca5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a81565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b0eb8487ef785122d2d04bd4194c17685eaeab2a161480156136f157507f000000000000000000000000000000000000000000000000000000000000000146145b1561371b57507f6aea377141890556dbe25943cd47f0b2ef756c30c1b395882573733aa3ae460090565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f4bd58da36b16705a9fd0b74834e7a0216cf4af2a09513aa8a8a32ce27dbd9a49828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137f657506000905060036138ce565b8460ff16601b1415801561380e57508460ff16601c14155b1561381f57506000905060046138ce565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613873573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166138c7576000600192509250506138ce565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161390d60ff86901c601b613e4b565b905061391b878288856137bf565b935093505050935093915050565b82805461393590613ef7565b90600052602060002090601f016020900481019282613957576000855561399d565b82601f1061397057805160ff191683800117855561399d565b8280016001018555821561399d579182015b8281111561399d578251825591602001919060010190613982565b5061184b9291505b8082111561184b57600081556001016139a5565b803580151581146139c957600080fd5b919050565b600082601f8301126139df57600080fd5b813567ffffffffffffffff808211156139fa576139fa614054565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a4057613a40614054565b81604052838152866020858801011115613a5957600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215613a8b57600080fd5b813561176081614083565b60008060408385031215613aa957600080fd5b8235613ab481614083565b91506020830135613ac481614083565b809150509250929050565b600080600060608486031215613ae457600080fd5b8335613aef81614083565b92506020840135613aff81614083565b929592945050506040919091013590565b60008060008060808587031215613b2657600080fd5b8435613b3181614083565b93506020850135613b4181614083565b925060408501359150606085013567ffffffffffffffff811115613b6457600080fd5b613b70878288016139ce565b91505092959194509250565b60008060408385031215613b8f57600080fd5b8235613b9a81614083565b9150613ba8602084016139b9565b90509250929050565b60008060408385031215613bc457600080fd5b8235613bcf81614083565b946020939093013593505050565b600060208284031215613bef57600080fd5b611760826139b9565b600060208284031215613c0a57600080fd5b8135611760816140a5565b600060208284031215613c2757600080fd5b8151611760816140a5565b600060208284031215613c4457600080fd5b813567ffffffffffffffff811115613c5b57600080fd5b612b65848285016139ce565b60008060408385031215613c7a57600080fd5b823567ffffffffffffffff80821115613c9257600080fd5b613c9e868387016139ce565b93506020850135915080821115613cb457600080fd5b50613cc1858286016139ce565b9150509250929050565b600060208284031215613cdd57600080fd5b5035919050565b60008060408385031215613cf757600080fd5b823591506020830135613ac481614083565b600080600060608486031215613d1e57600080fd5b83359250602084013567ffffffffffffffff80821115613d3d57600080fd5b613d49878388016139ce565b93506040860135915080821115613d5f57600080fd5b50613d6c868287016139ce565b9150509250925092565b60008151808452613d8e816020860160208601613ecb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613dd2818460208801613ecb565b835190830190613de6818360208801613ecb565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e2e6080830184613d76565b9695505050505050565b6020815260006117606020830184613d76565b60008219821115613e5e57613e5e613f98565b500190565b600082613e7257613e72613fc7565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eaf57613eaf613f98565b500290565b600082821015613ec657613ec6613f98565b500390565b60005b83811015613ee6578181015183820152602001613ece565b8381111561143e5750506000910152565b600181811c90821680613f0b57607f821691505b60208210811415613f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f7d57613f7d613f98565b5060010190565b600082613f9357613f93613fc7565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146116ca57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116ca57600080fdfea26469706673582212204c96c8104a569f1bcb8008710cab635f2e1ab6ab3164bab9aa4516b6182b4edb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c436f6465487970657269756d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008485950455249554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576e664878756b585a4647616d5a59784644564463344b314e5675427a414d54713155725a38355765776f562f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CodeHyperium
Arg [1] : _symbol (string): HYPERIUM
Arg [2] : _uri (string): ipfs://QmWnfHxukXZFGamZYxFDVDc4K1NVuBzAMTq1UrZ85WewoV/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 436f6465487970657269756d0000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 485950455249554d000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d576e664878756b585a4647616d5a59784644564463344b
Arg [9] : 314e5675427a414d54713155725a38355765776f562f00000000000000000000
Deployed Bytecode Sourcemap
175:6300:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:14;682:10:2;2627:40:14;;;8213:42:17;8201:55;;;8183:74;;2657:9:14;8288:2:17;8273:18;;8266:34;8156:18;2627:40:14;;;;;;;175:6300:1;;;;;5865:108;;;;;;;;;;-1:-1:-1;5865:108:1;;;;;:::i;:::-;;:::i;:::-;;3282:372:6;;;;;;;;;;-1:-1:-1;3282:372:6;;;;;:::i;:::-;;:::i;:::-;;;9294:14:17;;9287:22;9269:41;;9257:2;9242:18;3282:372:6;;;;;;;;3769:212:1;;;;;;;;;;-1:-1:-1;3769:212:1;;;;;:::i;:::-;;:::i;5168:100:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6730:214::-;;;;;;;;;;-1:-1:-1;6730:214:6;;;;;:::i;:::-;;:::i;:::-;;;7946:42:17;7934:55;;;7916:74;;7904:2;7889:18;6730:214:6;7770:226:17;273:30:1;;;;;;;;;;;;;:::i;6251:413:6:-;;;;;;;;;;-1:-1:-1;6251:413:6;;;;;:::i;:::-;;:::i;484:32:1:-;;;;;;;;;;-1:-1:-1;484:32:1;;;;;;;;1539:100:6;;;;;;;;;;-1:-1:-1;1592:7:6;1619:12;1539:100;;;24125:25:17;;;24113:2;24098:18;1539:100:6;23979:177:17;3791:600:14;;;;;;;;;;-1:-1:-1;3791:600:14;;;;;:::i;:::-;;:::i;1706:772:1:-;;;;;;:::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:14:-;;;;;;;;;;-1:-1:-1;2822:12:14;;2752:89;;6324:149:1;;;:::i;7839:177:6:-;;;;;;;;;;-1:-1:-1;7839:177:6;;;;;:::i;:::-;;:::i;5975:124:1:-;;;;;;;;;;-1:-1:-1;5975:124:1;;;;;:::i;:::-;;:::i;4540:138::-;;;;;;;;;;-1:-1:-1;4540:138:1;;;;;:::i;:::-;;:::i;5739:124::-;;;;;;;;;;-1:-1:-1;5739:124:1;;;;;:::i;:::-;;:::i;1716:187:6:-;;;;;;;;;;-1:-1:-1;1716:187:6;;;;;:::i;:::-;;:::i;5494:105:1:-;;;;;;;;;;-1:-1:-1;5494:105:1;;;;;:::i;:::-;;:::i;5226:80::-;;;;;;;;;;-1:-1:-1;5226:80:1;;;;;:::i;:::-;;:::i;5390:::-;;;;;;;;;;-1:-1:-1;5390:80:1;;;;;:::i;:::-;;:::i;4977:124:6:-;;;;;;;;;;-1:-1:-1;4977:124:6;;;;;:::i;:::-;;:::i;3718:221::-;;;;;;;;;;-1:-1:-1;3718:221:6;;;;;:::i;:::-;;:::i;1648:94:13:-;;;;;;;;;;;;;:::i;3499:98:14:-;;;;;;;;;;-1:-1:-1;3499:98:14;;;;;:::i;:::-;;:::i;997:87:13:-;;;;;;;;;;-1:-1:-1;1070:6:13;;;;997:87;;5125:79:1;;;;;;;;;;-1:-1:-1;5125:79:1;;;;;:::i;:::-;;:::i;5337:104:6:-;;;;;;;;;;;;;:::i;3306:107:14:-;;;;;;;;;;-1:-1:-1;3306:107:14;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;5308:80:1;;;;;;;;;;-1:-1:-1;5308:80:1;;;;;:::i;:::-;;:::i;7016:288:6:-;;;;;;;;;;-1:-1:-1;7016:288:6;;;;;:::i;:::-;;:::i;6101:108:1:-;;;;;;;;;;-1:-1:-1;6101:108:1;;;;;:::i;:::-;;:::i;8087:355:6:-;;;;;;;;;;-1:-1:-1;8087:355:6;;;;;:::i;:::-;;:::i;1378:60:1:-;;;;;;;;;;-1:-1:-1;1378:60:1;;;;;:::i;:::-;;;;;;;;;;;;;;4384:149;;;;;;;;;;-1:-1:-1;4384:149:1;;;;;:::i;:::-;;:::i;5512:335:6:-;;;;;;;;;;-1:-1:-1;5512:335:6;;;;;:::i;:::-;;:::i;3109:103:14:-;;;;;;;;;;-1:-1:-1;3109:103:14;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;451:30:1;;;;;;;;;;;;;;;;519:32;;;;;;;;;;-1:-1:-1;519:32:1;;;;;;;;;;;2482:772;;;;;;:::i;:::-;;:::i;2930:93:14:-;;;;;;;;;;-1:-1:-1;3002:14:14;;2930:93;;7375:164:6;;;;;;;;;;-1:-1:-1;7375:164:6;;;;;:::i;:::-;7496:25;;;;7472:4;7496:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7375:164;3258:487:1;;;;;;:::i;:::-;;:::i;4108:149::-;;;;;;;;;;-1:-1:-1;4108:149:1;;;;;:::i;:::-;;:::i;1897:192:13:-;;;;;;;;;;-1:-1:-1;1897:192:13;;;;;:::i;:::-;;:::i;6212:107:1:-;;;;;;;;;;-1:-1:-1;6212:107:1;;;;;:::i;:::-;;:::i;1252:60::-;;;;;;;;;;-1:-1:-1;1252:60:1;;;;;:::i;:::-;;;;;;;;;;;;;;557:32;;;;;;;;;;-1:-1:-1;557:32:1;;;;;;;;;;;5865:108;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;;;;;;;;;5935:18:1::1;:34:::0;5865:108::o;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:5;871:40;;;;3610:36:6;3401:245;3282:372;-1:-1:-1;;3282:372:6:o;3769:212:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;3848:9:1::1;1619:12:6::0;3908:9:1::1;::::0;3888:16:::1;3892:12:::0;1619::6;3888:16:1::1;:::i;:::-;:29;;3880:51;;;::::0;-1:-1:-1;;;3880:51:1;;23844:2:17;3880:51:1::1;::::0;::::1;23826:21:17::0;23883:1;23863:18;;;23856:29;23921:11;23901:18;;;23894:39;23950:18;;3880:51:1::1;23642:332:17::0;3880:51:1::1;3945:29;3955:4;3961:12;3945:9;:29::i;:::-;3839:142;3769: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;;23430:2:17;6818:74:6;;;23412:21:17;23469:2;23449:18;;;23442:30;23508:34;23488:18;;;23481:62;23579:15;23559:18;;;23552:43;23612:19;;6818:74:6;23228:409:17;6818:74:6;-1:-1:-1;6912:24:6;;;;:15;:24;;;;;;;;;6730:214::o;273:30:1:-;;;;;;;:::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;;20620:2:17;6375:58:6;;;20602:21:17;20659:2;20639:18;;;20632:30;20698:34;20678:18;;;20671:62;20769:4;20749:18;;;20742:32;20791:19;;6375:58:6;20418:398:17;6375:58:6;682:10:2;6468:21:6;;;;;:62;;-1:-1:-1;6493:37:6;6510:5;682:10:2;7375:164:6;:::i;6493:37::-;6446:169;;;;-1:-1:-1;;;6446:169:6;;16712:2:17;6446:169:6;;;16694:21:17;16751:2;16731:18;;;16724:30;16790:34;16770:18;;;16763:62;16861:27;16841:18;;;16834:55;16906:19;;6446:169:6;16510:421:17;6446:169:6;6628:28;6637:2;6641:7;6650:5;6628:8;:28::i;3791:600:14:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:14;;14299:2:17;3858:71:14;;;14281:21:17;14338:2;14318:18;;;14311:30;14377:34;14357:18;;;14350:62;14448:8;14428:18;;;14421:36;14474:19;;3858:71:14;14097:402:17;3858:71:14;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:14;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:14;4111:68;;;;-1:-1:-1;;;4111:68:14;;16300:2:17;4111:68:14;;;16282:21:17;16339:2;16319:18;;;16312:30;16378:34;16358:18;;;16351:62;16449:13;16429:18;;;16422:41;16480:19;;4111:68:14;16098:407:17;4111:68:14;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;;;8213:42:17;8201:55;;8183:74;;8288:2;8273:18;;8266:34;;;4351:33:14;;8156:18:17;4351:33:14;;;;;;;3848:543;;3791:600;:::o;1706:772:1:-;1816:9;1619:12:6;1884:10:1;1858:22;1864:4;1870:9;1858:5;:22::i;:::-;:36;;;1850:66;;;;-1:-1:-1;;;1850:66:1;;11676:2:17;1850:66:1;;;11658:21:17;11715:2;11695:18;;;11688:30;11754:19;11734:18;;;11727:47;11791:18;;1850:66:1;11474:341:17;1850:66:1;1955:12;;;;1947:50;;;;-1:-1:-1;;;1947:50:1;;17492:2:17;1947:50:1;;;17474:21:17;17531:2;17511:18;;;17504:30;17570:28;17550:18;;;17543:56;17616:18;;1947:50:1;17290:350:17;1947:50:1;2030:1;2015:12;:16;2007:46;;;;-1:-1:-1;;;2007:46:1;;21023:2:17;2007:46:1;;;21005:21:17;21062:2;21042:18;;;21035:30;21101:18;21081;;;21074:46;21137:18;;2007:46:1;20821:340:17;2007:46:1;2088:9;;2068:16;2072:12;2068:1;:16;:::i;:::-;:29;;2060:51;;;;-1:-1:-1;;;2060:51:1;;23844:2:17;2060:51:1;;;23826:21:17;23883:1;23863:18;;;23856:29;23921:11;23901:18;;;23894:39;23950:18;;2060:51:1;23642:332:17;2060:51:1;2139:18;;2123:12;:34;;2115:43;;;;;;2194:12;2186:5;;:20;;;;:::i;:::-;2173:9;:33;;2165:64;;;;-1:-1:-1;;;2165:64:1;;13548:2:17;2165:64:1;;;13530:21:17;13587:2;13567:18;;;13560:30;13626:20;13606:18;;;13599:48;13664:18;;2165:64:1;13346:342:17;2165:64:1;2279:12;2241:34;2264:10;2241:22;:34::i;:::-;:50;;2233:81;;;;-1:-1:-1;;;2233:81:1;;12382:2:17;2233:81:1;;;12364:21:17;12421:2;12401:18;;;12394:30;12460:21;12440:18;;;12433:49;12499:18;;2233:81:1;12180:343:17;2233:81:1;2326:9;2339:10;2326:23;2318:32;;;;;;2383:35;2393:10;2405:12;2383:9;:35::i;:::-;2424:47;2446:10;2458:12;2424:21;:47::i;:::-;1807:671;1706:772;;;:::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;;11273:2:17;2312:71:6;;;11255:21:17;11312:2;11292:18;;;11285:30;11351:34;11331:18;;;11324:62;11422:4;11402:18;;;11395:32;11444:19;;2312:71:6;11071:398:17;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;;22599:2:17;3146:56:6;;;22581:21:17;22638:2;22618:18;;;22611:30;22677:34;22657:18;;;22650:62;22748:16;22728:18;;;22721:44;22782:19;;3146:56:6;22397:410:17;6324:149:1;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;6391:58:1::1;::::0;6373:12:::1;::::0;6399:10:::1;::::0;6423:21:::1;::::0;6373:12;6391:58;6373:12;6391:58;6423:21;6399:10;6391:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6372:77;;;6461:7;6453:16;;;::::0;::::1;;6369:104;6324:149::o:0;7839:177:6:-;7969:39;7986:4;7992:2;7996:7;7969:39;;;;;;;;;;;;:16;:39::i;5975:124:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;6053:22:1::1;:42:::0;5975:124::o;4540:138::-;4620:7;4646:25;4655:4;4661:9;4646:7;:25::i;:::-;4639:32;4540:138;-1:-1:-1;;;4540:138:1:o;5739:124::-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5817:22:1::1;:42:::0;5739:124::o;1716:187:6:-;1783:7;1619:12;;1811:5;:21;1803:69;;;;-1:-1:-1;;;1803:69:6;;13895:2:17;1803:69:6;;;13877:21:17;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;14044:5;14024:18;;;14017:33;14067:19;;1803:69:6;13693:399:17;1803:69:6;-1:-1:-1;1890:5:6;1716:187::o;5494:105:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5565:27:1;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5494:105:::0;:::o;5226:80::-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5280:12:1::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;5226:80::o;5390:::-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5444:12:1::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;5390: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;;17847:2:17;3802:75:6;;;17829:21:17;17886:2;17866:18;;;17859:30;17925:34;17905:18;;;17898:62;17996:13;17976:18;;;17969:41;18027:19;;3802:75:6;17645:407:17;3802:75:6;-1:-1:-1;3903:19:6;;;;;;:12;:19;;;;;:27;;;;3718:221::o;1648:94:13:-;1070:6;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;3499:98:14:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:14:o;5125:79:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5183:5:1::1;:17:::0;5125:79::o;5337:104:6:-;5393:13;5426:7;5419:14;;;;;:::i;5308:80:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;5362:12:1::1;:22:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;5308:80::o;7016:288:6:-;7111:24;;;682:10:2;7111:24:6;;7103:63;;;;-1:-1:-1;;;7103:63:6;;19846:2:17;7103:63:6;;;19828:21:17;19885:2;19865:18;;;19858:30;19924:28;19904:18;;;19897:56;19970:18;;7103:63:6;19644:350:17;7103:63:6;682:10:2;7179:32:6;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;7248:48;;9269:41:17;;;7179:42:6;;682:10:2;7248:48:6;;9242:18:17;7248:48:6;;;;;;;7016:288;;:::o;6101:108:1:-;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;6171:18:1::1;:34:::0;6101:108::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;;21368:2:17;8285:149:6;;;21350:21:17;21407:2;21387:18;;;21380:30;21446:34;21426:18;;;21419:62;21517:21;21497:18;;;21490:49;21556:19;;8285:149:6;21166:415:17;4384:149:1;4500:26;;;4453:7;4500:26;;;:18;:26;;;;;;4475:22;;:51;;4500:26;4475:51;:::i;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;;19430:2:17;5611:76:6;;;19412:21:17;19469:2;19449:18;;;19442:30;19508:34;19488:18;;;19481:62;19579:17;19559:18;;;19552:45;19614:19;;5611:76:6;19228:411:17;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;2482:772:1:-;2592:9;1619:12:6;2660:10:1;2634:22;2640:4;2646:9;2634:5;:22::i;:::-;:36;;;2626:66;;;;-1:-1:-1;;;2626:66:1;;11676:2:17;2626:66:1;;;11658:21:17;11715:2;11695:18;;;11688:30;11754:19;11734:18;;;11727:47;11791:18;;2626:66:1;11474:341:17;2626:66:1;2731:12;;;;;;;2723:50;;;;-1:-1:-1;;;2723:50:1;;17492:2:17;2723:50:1;;;17474:21:17;17531:2;17511:18;;;17504:30;17570:28;17550:18;;;17543:56;17616:18;;2723:50:1;17290:350:17;2723:50:1;2806:1;2791:12;:16;2783:46;;;;-1:-1:-1;;;2783:46:1;;21023:2:17;2783:46:1;;;21005:21:17;21062:2;21042:18;;;21035:30;21101:18;21081;;;21074:46;21137:18;;2783:46:1;20821:340:17;2783:46:1;2864:9;;2844:16;2848:12;2844:1;:16;:::i;:::-;:29;;2836:51;;;;-1:-1:-1;;;2836:51:1;;23844:2:17;2836:51:1;;;23826:21:17;23883:1;23863:18;;;23856:29;23921:11;23901:18;;;23894:39;23950:18;;2836:51:1;23642:332:17;2836:51:1;2915:18;;2899:12;:34;;2891:43;;;;;;2970:12;2962:5;;:20;;;;:::i;:::-;2949:9;:33;;2941:64;;;;-1:-1:-1;;;2941:64:1;;13548:2:17;2941:64:1;;;13530:21:17;13587:2;13567:18;;;13560:30;13626:20;13606:18;;;13599:48;13664:18;;2941:64:1;13346:342:17;2941:64:1;3055:12;3017:34;3040:10;3017:22;:34::i;:::-;:50;;3009:81;;;;-1:-1:-1;;;3009:81:1;;12382:2:17;3009:81:1;;;12364:21:17;12421:2;12401:18;;;12394:30;12460:21;12440:18;;;12433:49;12499:18;;3009:81:1;12180:343:17;3009:81:1;3102:9;3115:10;3102:23;3094:32;;;;;;3159:35;3169:10;3181:12;3159:9;:35::i;:::-;3200:47;3222:10;3234:12;3200:21;:47::i;3258:487::-;3319:9;1619:12:6;3359::1;;;;;;;3351:49;;;;-1:-1:-1;;;3351:49:1;;17138:2:17;3351:49:1;;;17120:21:17;17177:2;17157:18;;;17150:30;17216:27;17196:18;;;17189:55;17261:18;;3351:49:1;16936:349:17;3351:49:1;3433:1;3418:12;:16;3410:46;;;;-1:-1:-1;;;3410:46:1;;21023:2:17;3410:46:1;;;21005:21:17;21062:2;21042:18;;;21035:30;21101:18;21081;;;21074:46;21137:18;;3410:46:1;20821:340:17;3410:46:1;3487:18;;3471:12;:34;;3463:43;;;;;;3539:9;;3519:16;3523:12;3519:1;:16;:::i;:::-;:29;;3510:53;;;;-1:-1:-1;;;3510:53:1;;23844:2:17;3510:53:1;;;23826:21:17;23883:1;23863:18;;;23856:29;23921:11;23901:18;;;23894:39;23950:18;;3510:53:1;23642:332:17;3510:53:1;3599:12;3591:5;;:20;;;;:::i;:::-;3578:9;:33;;3570:64;;;;-1:-1:-1;;;3570:64:1;;13548:2:17;3570:64:1;;;13530:21:17;13587:2;13567:18;;;13560:30;13626:20;13606:18;;;13599:48;13664:18;;3570:64:1;13346:342:17;3570:64:1;3646:9;3659:10;3646:23;3638:32;;;;;;3703:35;3713:10;3725:12;3703:9;:35::i;4108:149::-;4224:26;;;4177:7;4224:26;;;:18;:26;;;;;;4199:22;;:51;;4224:26;4199:51;:::i;1897:192:13:-;1070:6;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:13;;12730:2:17;1978:73:13::1;::::0;::::1;12712:21:17::0;12769:2;12749:18;;;12742:30;12808:34;12788:18;;;12781:62;12879:8;12859:18;;;12852:36;12905:19;;1978:73:13::1;12528:402:17::0;1978:73:13::1;2062:19;2072:8;2062:9;:19::i;6212:107:1:-:0;1070:6:13;;1217:23;1070:6;682:10:2;1217:23:13;1209:68;;;;-1:-1:-1;;;1209:68:13;;19069:2:17;1209:68:13;;;19051:21:17;;;19088:18;;;19081:30;19147:34;19127:18;;;19120:62;19199:18;;1209:68:13;18867:356:17;1209:68:13;6282:18:1::1;:33:::0;6212:107::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;;15942:2:17;2147:73:0;;;15924:21:17;15981:2;15961:18;;;15954:30;16020:31;16000:18;;;15993:59;16069:18;;2147:73:0;15740:353:17;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;15112:2:17;2296:78:0;;;15094:21:17;15151:2;15131:18;;;15124:30;15190:34;15170:18;;;15163:62;15261:28;15241:18;;;15234:56;15307:19;;2296:78:0;14910:422:17;3984:118:1;4060:26;;;;;;;:18;:26;;;;;:35;;4090:5;;4060:26;:35;;4090:5;;4060:35;:::i;:::-;;;;-1:-1:-1;;;;3984:118:1:o;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:2;11709:34:6;;;:87;;;-1:-1:-1;682:10:2;11760:20:6;11772:7;11760:11;:20::i;:::-;:36;;;11709:87;:154;;;-1:-1:-1;11830:18:6;;11813:50;;682:10:2;7375:164:6;:::i;11813:50::-;11683:181;;11885:17;11877:80;;;;-1:-1:-1;;;11877:80:6;;20201:2:17;11877:80:6;;;20183:21:17;20240:2;20220:18;;;20213:30;20279:34;20259:18;;;20252:62;20350:20;20330:18;;;20323:48;20388:19;;11877:80:6;19999:414:17;11877:80:6;12000:4;11978:26;;:13;:18;;;:26;;;11970:77;;;;-1:-1:-1;;;11970:77:6;;18662:2:17;11970:77:6;;;18644:21:17;18701:2;18681:18;;;18674:30;18740:34;18720:18;;;18713:62;18811:8;18791:18;;;18784:36;18837:19;;11970:77:6;18460:402:17;11970:77:6;12066:16;;;12058:66;;;;-1:-1:-1;;;12058:66:6;;14706:2:17;12058:66:6;;;14688:21:17;14745:2;14725:18;;;14718:30;14784:34;14764:18;;;14757:62;14855:7;14835:18;;;14828:35;14880:19;;12058:66:6;14504:401:17;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;4684:187:1:-;4768:7;4787:14;4804:11;4810:4;4804:5;:11::i;:::-;4787:28;;4832:32;4846:6;4854:9;4832:13;:32::i;:::-;4825:39;4684:187;-1:-1:-1;;;;4684:187:1: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;;13137:2:17;4473:71:6;;;13119:21:17;13176:2;13156:18;;;13149:30;13215:34;13195:18;;;13188:62;13286:12;13266:18;;;13259:40;13316:19;;4473:71:6;12935:406:17;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:13;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;14378:804:6:-;14533:4;14554:13;;;1066:20:0;1114:8;14550:625:6;;14590:72;;;;;:36;;;;;;:72;;682:10:2;;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;;21368:2:17;14879:61:6;;;21350:21:17;21407:2;21387:18;;;21380:30;21446:34;21426:18;;;21419:62;21517:21;21497:18;;;21490:49;21556:19;;14879:61:6;21166:415:17;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;5605:115:1:-;5665:13;5697:16;5690:23;;;;;:::i;288:723:16:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:16;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:16;;-1:-1:-1;744:2:16;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:16;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:16;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:16;958:2;949:11;;:::i;:::-;;;818:154;;4260:118:1;4336:26;;;;;;;:18;:26;;;;;:35;;4366:5;;4336:26;:35;;4366:5;;4336:35;:::i;9283:163:6:-;9406:32;9412:2;9416:8;9426:5;9433:4;9406:5;:32::i;4877:226:1:-;4935:7;4961:135;5012:36;5078:4;5062:22;;;;;;4988:106;;;;;;;;9495:25:17;;;9551:2;9536:18;;9529:34;9483:2;9468:18;;9321:248;4988:106:1;;;;;;;;;;;;;4978:117;;;;;;4961:16;:135::i;4393:231:3:-;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:3;4393:231;-1:-1:-1;;;4393:231:3:o;9705:1538:6:-;9844:20;9867:12;9898:16;;;9890:62;;;;-1:-1:-1;;;9890:62:6;;21788:2:17;9890:62:6;;;21770:21:17;21827:2;21807:18;;;21800:30;21866:34;21846:18;;;21839:62;21937:3;21917:18;;;21910:31;21958:19;;9890:62:6;21586:397:17;9890:62:6;9971:13;9963:66;;;;-1:-1:-1;;;9963:66:6;;22190:2:17;9963:66:6;;;22172:21:17;22229:2;22209:18;;;22202:30;22268:34;22248:18;;;22241:62;22339:10;22319:18;;;22312:38;22367:19;;9963:66:6;21988:404:17;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;;21368:2:17;10842:196:6;;;21350:21:17;21407:2;21387:18;;;21380:30;21446:34;21426:18;;;21419:62;21517:21;21497:18;;;21490:49;21556:19;;10842:196:6;21166:415:17;10842:196:6;11078:14;;;;;10723:3;10693:415;;;-1:-1:-1;11124:12:6;:27;11175:60;1706:772:1;4439:167:4;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:3;;7381:66:17;9437:57:3;;;7369:79:17;7464:11;;;7457:27;;;7500:12;;;7493:28;;;9400:7:3;;7537:12:17;;9437:57:3;;;;;;;;;;;;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:3;;-1:-1:-1;3536:35:3;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:3;;10920:2:17;776:34:3;;;10902:21:17;10959:2;10939:18;;;10932:30;10998:26;10978:18;;;10971:54;11042:18;;776:34:3;10718:348:17;717:473:3;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:3;;12022:2:17;893:41:3;;;12004:21:17;12061:2;12041:18;;;12034:30;12100:33;12080:18;;;12073:61;12151:18;;893:41:3;11820:355:17;828:362:3;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:3;;15539:2:17;1012:44:3;;;15521:21:17;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;15688:4;15668:18;;;15661:32;15710:19;;1012:44:3;15337:398:17;952:238:3;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:3;;18259:2:17;1134:44:3;;;18241:21:17;18298:2;18278:18;;;18271:30;18337:34;18317:18;;;18310:62;18408:4;18388:18;;;18381:32;18430:19;;1134:44:3;18057:398:17;3212:314:4;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:4;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:4;;;3465:10;3715:73;;;;9833:25:17;;;;3477:12:4;9874:18:17;;;9867:34;3491:15:4;9917:18:17;;;9910:34;3759:13:4;9960:18:17;;;9953:34;3782:4:4;10003:19:17;;;;9996:84;;;;3715:73:4;;;;;;;;;;9805:19:17;;;;3715:73:4;;;3705:84;;;;;;3212:314::o;5845:1632:3:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:3;;-1:-1:-1;7013:30:3;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:3;;-1:-1:-1;7125:30:3;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;10318:25:17;;;10391:4;10379:17;;10359:18;;;10352:45;;;;10413:18;;;10406:34;;;10456:18;;;10449:34;;;7282:24:3;;10290:19:17;;7282:24:3;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:3;;;;;;-1:-1:-1;;7321:20:3;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:3;;-1:-1:-1;5845:1632:3;;;;;;;;:::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;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:160:17;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:777::-;221:5;274:3;267:4;259:6;255:17;251:27;241:55;;292:1;289;282:12;241:55;328:6;315:20;354:18;391:2;387;384:10;381:36;;;397:18;;:::i;:::-;531:2;525:9;593:4;585:13;;436:66;581:22;;;605:2;577:31;573:40;561:53;;;629:18;;;649:22;;;626:46;623:72;;;675:18;;:::i;:::-;715:10;711:2;704:22;750:2;742:6;735:18;796:3;789:4;784:2;776:6;772:15;768:26;765:35;762:55;;;813:1;810;803:12;762:55;877:2;870:4;862:6;858:17;851:4;843:6;839:17;826:54;924:1;917:4;912:2;904:6;900:15;896:26;889:37;944:6;935:15;;;;;;179:777;;;;:::o;961:247::-;1020:6;1073:2;1061:9;1052:7;1048:23;1044:32;1041:52;;;1089:1;1086;1079:12;1041:52;1128:9;1115:23;1147:31;1172:5;1147:31;:::i;1473:388::-;1541:6;1549;1602:2;1590:9;1581:7;1577:23;1573:32;1570:52;;;1618:1;1615;1608:12;1570:52;1657:9;1644:23;1676:31;1701:5;1676:31;:::i;:::-;1726:5;-1:-1:-1;1783:2:17;1768:18;;1755:32;1796:33;1755:32;1796:33;:::i;:::-;1848:7;1838:17;;;1473:388;;;;;:::o;1866:456::-;1943:6;1951;1959;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2067:9;2054:23;2086:31;2111:5;2086:31;:::i;:::-;2136:5;-1:-1:-1;2193:2:17;2178:18;;2165:32;2206:33;2165:32;2206:33;:::i;:::-;1866:456;;2258:7;;-1:-1:-1;;;2312:2:17;2297:18;;;;2284:32;;1866:456::o;2327:665::-;2422:6;2430;2438;2446;2499:3;2487:9;2478:7;2474:23;2470:33;2467:53;;;2516:1;2513;2506:12;2467:53;2555:9;2542:23;2574:31;2599:5;2574:31;:::i;:::-;2624:5;-1:-1:-1;2681:2:17;2666:18;;2653:32;2694:33;2653:32;2694:33;:::i;:::-;2746:7;-1:-1:-1;2800:2:17;2785:18;;2772:32;;-1:-1:-1;2855:2:17;2840:18;;2827:32;2882:18;2871:30;;2868:50;;;2914:1;2911;2904:12;2868:50;2937:49;2978:7;2969:6;2958:9;2954:22;2937:49;:::i;:::-;2927:59;;;2327:665;;;;;;;:::o;2997:315::-;3062:6;3070;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;:::-;3247:5;-1:-1:-1;3271:35:17;3302:2;3287:18;;3271:35;:::i;:::-;3261:45;;2997:315;;;;;:::o;3317:::-;3385:6;3393;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;3501:9;3488:23;3520:31;3545:5;3520:31;:::i;:::-;3570:5;3622:2;3607:18;;;;3594:32;;-1:-1:-1;;;3317:315:17:o;3637:180::-;3693:6;3746:2;3734:9;3725:7;3721:23;3717:32;3714:52;;;3762:1;3759;3752:12;3714:52;3785:26;3801:9;3785:26;:::i;3822:245::-;3880:6;3933:2;3921:9;3912:7;3908:23;3904:32;3901:52;;;3949:1;3946;3939:12;3901:52;3988:9;3975:23;4007:30;4031:5;4007:30;:::i;4072:249::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4242:9;4236:16;4261:30;4285:5;4261:30;:::i;4326:321::-;4395:6;4448:2;4436:9;4427:7;4423:23;4419:32;4416:52;;;4464:1;4461;4454:12;4416:52;4504:9;4491:23;4537:18;4529:6;4526:30;4523:50;;;4569:1;4566;4559:12;4523:50;4592:49;4633:7;4624:6;4613:9;4609:22;4592:49;:::i;4652:540::-;4739:6;4747;4800:2;4788:9;4779:7;4775:23;4771:32;4768:52;;;4816:1;4813;4806:12;4768:52;4856:9;4843:23;4885:18;4926:2;4918:6;4915:14;4912:34;;;4942:1;4939;4932:12;4912:34;4965:49;5006:7;4997:6;4986:9;4982:22;4965:49;:::i;:::-;4955:59;;5067:2;5056:9;5052:18;5039:32;5023:48;;5096:2;5086:8;5083:16;5080:36;;;5112:1;5109;5102:12;5080:36;;5135:51;5178:7;5167:8;5156:9;5152:24;5135:51;:::i;:::-;5125:61;;;4652:540;;;;;:::o;5197:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;-1:-1:-1;5348:23:17;;5197:180;-1:-1:-1;5197:180:17:o;5382:315::-;5450:6;5458;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;5563:9;5550:23;5540:33;;5623:2;5612:9;5608:18;5595:32;5636:31;5661:5;5636:31;:::i;5702:608::-;5798:6;5806;5814;5867:2;5855:9;5846:7;5842:23;5838:32;5835:52;;;5883:1;5880;5873:12;5835:52;5919:9;5906:23;5896:33;;5980:2;5969:9;5965:18;5952:32;6003:18;6044:2;6036:6;6033:14;6030:34;;;6060:1;6057;6050:12;6030:34;6083:49;6124:7;6115:6;6104:9;6100:22;6083:49;:::i;:::-;6073:59;;6185:2;6174:9;6170:18;6157:32;6141:48;;6214:2;6204:8;6201:16;6198:36;;;6230:1;6227;6220:12;6198:36;;6253:51;6296:7;6285:8;6274:9;6270:24;6253:51;:::i;:::-;6243:61;;;5702:608;;;;;:::o;6315:316::-;6356:3;6394:5;6388:12;6421:6;6416:3;6409:19;6437:63;6493:6;6486:4;6481:3;6477:14;6470:4;6463:5;6459:16;6437:63;:::i;:::-;6545:2;6533:15;6550:66;6529:88;6520:98;;;;6620:4;6516:109;;6315:316;-1:-1:-1;;6315:316:17:o;6636:470::-;6815:3;6853:6;6847:13;6869:53;6915:6;6910:3;6903:4;6895:6;6891:17;6869:53;:::i;:::-;6985:13;;6944:16;;;;7007:57;6985:13;6944:16;7041:4;7029:17;;7007:57;:::i;:::-;7080:20;;6636:470;-1:-1:-1;;;;6636:470:17:o;8311:511::-;8505:4;8534:42;8615:2;8607:6;8603:15;8592:9;8585:34;8667:2;8659:6;8655:15;8650:2;8639:9;8635:18;8628:43;;8707:6;8702:2;8691:9;8687:18;8680:34;8750:3;8745:2;8734:9;8730:18;8723:31;8771:45;8811:3;8800:9;8796:19;8788:6;8771:45;:::i;:::-;8763:53;8311:511;-1:-1:-1;;;;;;8311:511:17:o;10494:219::-;10643:2;10632:9;10625:21;10606:4;10663:44;10703:2;10692:9;10688:18;10680:6;10663:44;:::i;24161:128::-;24201:3;24232:1;24228:6;24225:1;24222:13;24219:39;;;24238:18;;:::i;:::-;-1:-1:-1;24274:9:17;;24161:128::o;24294:120::-;24334:1;24360;24350:35;;24365:18;;:::i;:::-;-1:-1:-1;24399:9:17;;24294:120::o;24419:228::-;24459:7;24585:1;24517:66;24513:74;24510:1;24507:81;24502:1;24495:9;24488:17;24484:105;24481:131;;;24592:18;;:::i;:::-;-1:-1:-1;24632:9:17;;24419:228::o;24652:125::-;24692:4;24720:1;24717;24714:8;24711:34;;;24725:18;;:::i;:::-;-1:-1:-1;24762:9:17;;24652:125::o;24782:258::-;24854:1;24864:113;24878:6;24875:1;24872:13;24864:113;;;24954:11;;;24948:18;24935:11;;;24928:39;24900:2;24893:10;24864:113;;;24995:6;24992:1;24989:13;24986:48;;;-1:-1:-1;;25030:1:17;25012:16;;25005:27;24782:258::o;25045:437::-;25124:1;25120:12;;;;25167;;;25188:61;;25242:4;25234:6;25230:17;25220:27;;25188:61;25295:2;25287:6;25284:14;25264:18;25261:38;25258:218;;;25332:77;25329:1;25322:88;25433:4;25430:1;25423:15;25461:4;25458:1;25451:15;25258:218;;25045:437;;;:::o;25487:195::-;25526:3;25557:66;25550:5;25547:77;25544:103;;;25627:18;;:::i;:::-;-1:-1:-1;25674:1:17;25663:13;;25487:195::o;25687:112::-;25719:1;25745;25735:35;;25750:18;;:::i;:::-;-1:-1:-1;25784:9:17;;25687:112::o;25804:184::-;25856:77;25853:1;25846:88;25953:4;25950:1;25943:15;25977:4;25974:1;25967:15;25993:184;26045:77;26042:1;26035:88;26142:4;26139:1;26132:15;26166:4;26163:1;26156:15;26182:184;26234:77;26231:1;26224:88;26331:4;26328:1;26321:15;26355:4;26352:1;26345:15;26371:184;26423:77;26420:1;26413:88;26520:4;26517:1;26510:15;26544:4;26541:1;26534:15;26560:184;26612:77;26609:1;26602:88;26709:4;26706:1;26699:15;26733:4;26730:1;26723:15;26749:154;26835:42;26828:5;26824:54;26817:5;26814:65;26804:93;;26893:1;26890;26883:12;26908:177;26993:66;26986:5;26982:78;26975:5;26972:89;26962:117;;27075:1;27072;27065:12
Swarm Source
ipfs://4c96c8104a569f1bcb8008710cab635f2e1ab6ab3164bab9aa4516b6182b4edb
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.