Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
3,333 Booze
Holders
1,187
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BoozeLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoozeBears
Compiler Version
v0.8.11+commit.d7f03943
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 BoozeBears is ERC721A, EIP712, Ownable, Payment { using Strings for uint256; string public baseURI; //signature string private constant SINGING_DOMAIN = "BOOZEBEARS"; string private constant SIGNATURE_VERSION = "1"; //settings uint256 public maxSupply = 3333; bool public whitelistStatus = false; bool public publicStatus = false; uint256 private price = 0.03 ether; uint256 public maxMintPerTxPublic = 5; uint256 public maxMintPerWalletPublic = 20; uint256 public maxMintPerTxWhitelist = 2; uint256 public maxMintPerWalletWhitelist = 2; //mappings mapping(address => uint256) private mintCountMapWhitelist; mapping(address => uint256) private allowedMintCountMapWhitelist; mapping(address => uint256) private mintCountMapPublic; mapping(address => uint256) private allowedMintCountMapPublic; //shares address[] private addressList = [ 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5, 0x1f301d288FAd9E11E1Ca8411500720a375154764, 0xEa66DB6c0aA43387aa2A5828428Da71fb6305122, 0x4892cfe386f14Cf8640F6CA124E0F97DC1b7af57, 0x6E8c8B9E868dA7aC2a46403C7F530e565CbFB762, 0x25bC5dCb73E4C800bF95adCCb95451a3fBf434f6, 0x2A27E3B5e8194cf7bd329759B7ED8e2bEBE77Cb1, 0x5C610C2371c82B7bad631c3F13A80307cDF99762, 0x34275F6fc1635A15546ce6696Eb298423bcc5E6b, 0x00F8085B11b09dDDde756Cb5C3bCa6BC5EfBf37F, 0xe558bcCbA1Ee470d07d42E09817eeC622A78FeAD, 0x9b3b9eaf47647C28a842520d1757Da190eDf6648 ]; uint[] private shareList = [10, 10, 3, 3, 4, 3, 5, 20, 8, 28, 5, 1]; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) Payment(addressList, shareList) { setURI(_initBaseURI); } function mintWhitelist(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(whitelistStatus,"Whitelist sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(_tokenAmount <= maxMintPerTxWhitelist, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); require(allowedMintCountWhitelist(msg.sender) >= 1,"You minted too many"); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; updateMintCountWhitelist(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, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= price * _tokenAmount, "ETH input is wrong"); require(allowedMintCountPublic(msg.sender) >= 1,"You minted too many"); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; updateMintCountPublic(msg.sender, _tokenAmount); } // admin minting function gift(uint[] calldata gifts, address[] calldata recipient) external onlyOwner{ require(gifts.length == recipient.length); uint g = 0; uint256 s = totalSupply(); for(uint i = 0; i < gifts.length; ++i){ g += gifts[i]; } require( s + g <= maxSupply, "Too many" ); delete g; for(uint i = 0; i < recipient.length; ++i){ for(uint j = 0; j < gifts[i]; ++j){ _safeMint( recipient[i], s++, "" ); } } delete s; } 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)) ))); } //read metadata function _baseURI() internal view virtual returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(tokenId <= maxSupply); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function updateMintCountWhitelist(address minter, uint256 count) private { mintCountMapWhitelist[minter] += count; } function allowedMintCountWhitelist(address minter) public view returns (uint256) { return maxMintPerWalletWhitelist - mintCountMapWhitelist[minter]; } function updateMintCountPublic(address minter, uint256 count) private { mintCountMapPublic[minter] += count; } function allowedMintCountPublic(address minter) public view returns (uint256) { return maxMintPerWalletPublic - mintCountMapPublic[minter]; } //price switch function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } //max switch function setMaxPerTxWhitelist(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxWhitelist = _newMaxMintAmount; } //max switch function setMaxPerTxPublic(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxPublic = _newMaxMintAmount; } //max switch function setMaxPerWalletWhitelist(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletWhitelist = _newMaxMintAmount; } function setMaxPerWalletPublic(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletPublic = _newMaxMintAmount; } //onoff switch function setWL(bool _wlstatus) public onlyOwner { whitelistStatus = _wlstatus; } function setP(bool _pstatus) public onlyOwner { publicStatus = _pstatus; } //write metadata function setURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } 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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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: GPL-3.0 pragma solidity ^0.8.10; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./ERC165.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; abstract contract ERC721A is ERC721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721A.totalSupply(), "ERC721Enum: global ioob"); return index; } }
// 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":"_initBaseURI","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":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint256[]","name":"gifts","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWalletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWalletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","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":"mintWhitelist","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":"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":"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":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerTxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pstatus","type":"bool"}],"name":"setP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlstatus","type":"bool"}],"name":"setWL","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610d05600c908155600d805461ffff19169055666a94d74f430000600e556005600f556014601055600260118190556012556102c060405273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b5610140908152731f301d288fad9e11e1ca8411500720a3751547646101605273ea66db6c0aa43387aa2a5828428da71fb630512261018052734892cfe386f14cf8640f6ca124e0f97dc1b7af576101a052736e8c8b9e868da7ac2a46403c7f530e565cbfb7626101c0527325bc5dcb73e4c800bf95adccb95451a3fbf434f66101e052732a27e3b5e8194cf7bd329759b7ed8e2bebe77cb161020052735c610c2371c82b7bad631c3f13a80307cdf99762610220527334275f6fc1635a15546ce6696eb298423bcc5e6b6102405272f8085b11b09dddde756cb5c3bca6bc5efbf37f6102605273e558bccba1ee470d07d42e09817eec622a78fead61028052739b3b9eaf47647c28a842520d1757da190edf66486102a052620001739160179190620007d3565b506040805161018081018252600a80825260208201526003918101829052606081018290526004608082015260a0810191909152600560c08201819052601460e08301526008610100830152601c6101208301526101408201526001610160820152620001e590601890600c6200083d565b50348015620001f357600080fd5b5060405162004a7938038062004a798339810160408190526200021691620009e1565b60178054806020026020016040519081016040528092919081815260200182805480156200026e57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200024f575b50505050506018805480602002602001604051908101604052809291908181526020018280548015620002c157602002820191906000526020600020905b815481526020019060010190808311620002ac575b50505050506040518060400160405280600a815260200169424f4f5a45424541525360b01b815250604051806040016040528060018152602001603160f81b815250868681600090805190602001906200031d92919062000880565b5080516200033390600190602084019062000880565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c0948501909152815191909601209052929092526101205250620003d0336200051e565b8051825114620004425760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620004955760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000439565b60005b82518110156200050157620004ec838281518110620004bb57620004bb62000a72565b6020026020010151838381518110620004d857620004d862000a72565b60200260200101516200057060201b60201c565b80620004f88162000a9e565b91505062000498565b50505062000515816200075e60201b60201c565b50505062000b14565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005dd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000439565b600081116200062f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000439565b6001600160a01b03821660009081526008602052604090205415620006ab5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000439565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b03841690811790915560009081526008602052604090208190556006546200071590829062000abc565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620007ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000439565b8051620007cf90600b90602084019062000880565b5050565b8280548282559060005260206000209081019282156200082b579160200282015b828111156200082b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620007f4565b5062000839929150620008fd565b5090565b8280548282559060005260206000209081019282156200082b579160200282015b828111156200082b578251829060ff169055916020019190600101906200085e565b8280546200088e9062000ad7565b90600052602060002090601f016020900481019282620008b257600085556200082b565b82601f10620008cd57805160ff19168380011785556200082b565b828001600101855582156200082b579182015b828111156200082b578251825591602001919060010190620008e0565b5b80821115620008395760008155600101620008fe565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200093c57600080fd5b81516001600160401b038082111562000959576200095962000914565b604051601f8301601f19908116603f0116810190828211818310171562000984576200098462000914565b81604052838152602092508683858801011115620009a157600080fd5b600091505b83821015620009c55785820183015181830184015290820190620009a6565b83821115620009d75760008385830101525b9695505050505050565b600080600060608486031215620009f757600080fd5b83516001600160401b038082111562000a0f57600080fd5b62000a1d878388016200092a565b9450602086015191508082111562000a3457600080fd5b62000a42878388016200092a565b9350604086015191508082111562000a5957600080fd5b5062000a68868287016200092a565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000ab55762000ab562000a88565b5060010190565b6000821982111562000ad25762000ad262000a88565b500190565b600181811c9082168062000aec57607f821691505b6020821081141562000b0e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051613f1562000b64600039600061345e015260006134ad01526000613488015260006133e10152600061340b015260006134350152613f156000f3fe6080604052600436106103225760003560e01c80638b83209b116101a5578063c87b56dd116100ec578063e1fcd70711610095578063efd0cbf91161006f578063efd0cbf91461095a578063f2fde38b1461096d578063f452472e1461098d578063f91798b1146109ad57600080fd5b8063e1fcd707146108d9578063e33b7de3146108ef578063e985e9c51461090457600080fd5b8063ce7c2ac2116100c6578063ce7c2ac214610860578063d5abeb01146108a3578063dd0d1bbc146108b957600080fd5b8063c87b56dd1461080a578063cafbfa611461082a578063cd1133d81461084057600080fd5b80639ddf7ad31161014e578063b88d4fde11610128578063b88d4fde146107aa578063bd986a2c146107ca578063c6baf917146107ea57600080fd5b80639ddf7ad31461075a578063a22cb46514610774578063ac9384b91461079457600080fd5b806395d89b411161017f57806395d89b41146106e257806396ea3a47146106f75780639852595c1461071757600080fd5b80638b83209b146106775780638da5cb5b1461069757806391b7f5ed146106c257600080fd5b806348808c1011610269578063715018a61161021257806384a303d6116101ec57806384a303d61461062457806388dfe18b146106445780638b533ea41461065757600080fd5b8063715018a6146105c25780637934f505146105d75780638462151c146105f757600080fd5b80636352211e116102435780636352211e1461056d5780636c0360eb1461058d57806370a08231146105a257600080fd5b806348808c10146105175780634f6ccce7146105375780635cd5a8b41461055757600080fd5b806319165587116102cb5780633a98ef39116102a55780633a98ef39146104da5780633ccfd60b146104ef57806342842e0e146104f757600080fd5b8063191655871461047a57806323b872dd1461049a5780632f745c59146104ba57600080fd5b8063081812fc116102fc578063081812fc146103f6578063095ea7b31461043b57806318160ddd1461045b57600080fd5b806301ffc9a71461037d57806302fe5305146103b257806306fdde03146103d457600080fd5b36610378577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561038957600080fd5b5061039d610398366004613723565b6109cc565b60405190151581526020015b60405180910390f35b3480156103be57600080fd5b506103d26103cd36600461381a565b610a28565b005b3480156103e057600080fd5b506103e9610aab565b6040516103a991906138c5565b34801561040257600080fd5b506104166104113660046138d8565b610b3d565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a9565b34801561044757600080fd5b506103d2610456366004613913565b610be3565b34801561046757600080fd5b506002545b6040519081526020016103a9565b34801561048657600080fd5b506103d261049536600461393f565b610d3c565b3480156104a657600080fd5b506103d26104b536600461395c565b610f77565b3480156104c657600080fd5b5061046c6104d5366004613913565b610ffe565b3480156104e657600080fd5b5060065461046c565b6103d261111a565b34801561050357600080fd5b506103d261051236600461395c565b6111d9565b34801561052357600080fd5b5061041661053236600461399d565b6111f4565b34801561054357600080fd5b5061046c6105523660046138d8565b611207565b34801561056357600080fd5b5061046c60115481565b34801561057957600080fd5b506104166105883660046138d8565b611264565b34801561059957600080fd5b506103e9611311565b3480156105ae57600080fd5b5061046c6105bd36600461393f565b61139f565b3480156105ce57600080fd5b506103d261149e565b3480156105e357600080fd5b506103d26105f23660046138d8565b611511565b34801561060357600080fd5b5061061761061236600461393f565b61157d565b6040516103a99190613a01565b34801561063057600080fd5b506103d261063f366004613a5a565b611677565b6103d2610652366004613a75565b611715565b34801561066357600080fd5b506103d26106723660046138d8565b6119e8565b34801561068357600080fd5b506104166106923660046138d8565b611a54565b3480156106a357600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610416565b3480156106ce57600080fd5b506103d26106dd3660046138d8565b611a91565b3480156106ee57600080fd5b506103e9611afd565b34801561070357600080fd5b506103d2610712366004613b27565b611b0c565b34801561072357600080fd5b5061046c61073236600461393f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561076657600080fd5b50600d5461039d9060ff1681565b34801561078057600080fd5b506103d261078f366004613b93565b611cd1565b3480156107a057600080fd5b5061046c600f5481565b3480156107b657600080fd5b506103d26107c5366004613bc8565b611dce565b3480156107d657600080fd5b506103d26107e5366004613a5a565b611e56565b3480156107f657600080fd5b506103d26108053660046138d8565b611eee565b34801561081657600080fd5b506103e96108253660046138d8565b611f5a565b34801561083657600080fd5b5061046c60125481565b34801561084c57600080fd5b5061046c61085b36600461393f565b611fc6565b34801561086c57600080fd5b5061046c61087b36600461393f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156108af57600080fd5b5061046c600c5481565b3480156108c557600080fd5b5061046c6108d436600461393f565b611ff9565b3480156108e557600080fd5b5061046c60105481565b3480156108fb57600080fd5b5060075461046c565b34801561091057600080fd5b5061039d61091f366004613c34565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b6103d26109683660046138d8565b61202c565b34801561097957600080fd5b506103d261098836600461393f565b61227c565b34801561099957600080fd5b506103d26109a83660046138d8565b612375565b3480156109b957600080fd5b50600d5461039d90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a225750610a22826123e1565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610aa790600b906020840190613665565b5050565b606060008054610aba90613c6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613c6d565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b6000610b48826124c4565b610bba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a8b565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610bee82611264565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610cbb5750610cbb813361091f565b610d2d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a8b565b610d378383612528565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610dd45760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a8b565b600060075447610de49190613cf0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610e289085613d08565b610e329190613d74565b610e3c9190613d88565b905080610eb15760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610ee2908290613cf0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610f16908290613cf0565b600755610f2383826125c8565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f8133826126ee565b610ff35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a8b565b610d3783838361282a565b60006110098361139f565b82106110575760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b6000805b6002548110156110d1576002818154811061107857611078613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156110c157838214156110b5579150610a229050565b6110be82613dce565b91505b6110ca81613dce565b905061105b565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b604051600090339047908381818185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b50565b610d3783838360405180602001604052806000815250611dce565b600061120083836129f9565b9392505050565b600061121260025490565b82106112605760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a8b565b5090565b6000806002838154811061127a5761127a613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610a225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a8b565b600b805461131e90613c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461134a90613c6d565b80156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661142a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a8b565b600254600090815b81811015611495576002818154811061144d5761144d613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156114855761148283613dce565b92505b61148e81613dce565b9050611432565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b61150f6000612a11565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601155565b60606115888261139f565b6000106115d75760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b60006115e28361139f565b905060008167ffffffffffffffff8111156115ff576115ff613740565b604051908082528060200260200182016040528015611628578160200160208202803683370190505b50905060005b8281101561166f576116408582610ffe565b82828151811061165257611652613d9f565b60209081029190910101528061166781613dce565b91505061162e565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600061172060025490565b90503361172d84846111f4565b73ffffffffffffffffffffffffffffffffffffffff16146117905760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a8b565b600d5460ff166117e25760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f7420616374697665000000006044820152606401610a8b565b600084116118325760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a8b565b6011548411156118845760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b600c546118918583613cf0565b11156118df5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b83600e546118ed9190613d08565b34101561193c5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a8b565b600161194733611fc6565b10156119955760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a8b565b60005b848110156119d3576119c3336119ae8385613cf0565b60405180602001604052806000815250612a88565b6119cc81613dce565b9050611998565b50600090506119e23385612b11565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601055565b6000600a8281548110611a6957611a69613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611af85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600e55565b606060018054610aba90613c6d565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b828114611b7f57600080fd5b600080611b8b60025490565b905060005b85811015611bce57868682818110611baa57611baa613d9f565b9050602002013583611bbc9190613cf0565b9250611bc781613dce565b9050611b90565b50600c54611bdc8383613cf0565b1115611c2a5760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610a8b565b6000915060005b83811015611cc85760005b878783818110611c4e57611c4e613d9f565b90506020020135811015611cb757611ca7868684818110611c7157611c71613d9f565b9050602002016020810190611c86919061393f565b84611c9081613dce565b955060405180602001604052806000815250612a88565b611cb081613dce565b9050611c3c565b50611cc181613dce565b9050611c31565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611d375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a8b565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611dd833836126ee565b611e4a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a8b565b6119e284848484612b4f565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ebd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601255565b6060600c54821115611f6b57600080fd5b6000611f75612bd8565b90506000815111611f955760405180602001604052806000815250611200565b80611f9f84612be7565b604051602001611fb0929190613e07565b6040516020818303038152906040529392505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260136020526040812054601254610a229190613d88565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260156020526040812054601054610a229190613d88565b600061203760025490565b600d54909150610100900460ff166120915760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a8b565b600082116120e15760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a8b565b600f548211156121335760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b600c546121408383613cf0565b111561218e5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b81600e5461219c9190613d08565b3410156121eb5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a8b565b60016121f633611ff9565b10156122445760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a8b565b60005b8281101561226d5761225d336119ae8385613cf0565b61226681613dce565b9050612247565b5060009050610aa73383612d19565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b73ffffffffffffffffffffffffffffffffffffffff811661236c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a8b565b6111d681612a11565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600f55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061247457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a2257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a22565b60025460009082108015610a225750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106124fe576124fe613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061258282611264565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156126185760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a8b565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612672576040519150601f19603f3d011682016040523d82523d6000602084013e612677565b606091505b5050905080610d375760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a8b565b60006126f9826124c4565b61276b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a8b565b600061277683611264565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127e557508373ffffffffffffffffffffffffffffffffffffffff166127cd84610b3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612822575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661284a82611264565b73ffffffffffffffffffffffffffffffffffffffff16146128d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff821661295b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b612966600082612528565b816002828154811061297a5761297a613d9f565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080612a0584612d4e565b90506128228184612db1565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612a928383612dcd565b612a9f6000848484612f27565b610d375760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604081208054839290612b46908490613cf0565b90915550505050565b612b5a84848461282a565b612b6684848484612f27565b6119e25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b6060600b8054610aba90613c6d565b606081612c2757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612c515780612c3b81613dce565b9150612c4a9050600a83613d74565b9150612c2b565b60008167ffffffffffffffff811115612c6c57612c6c613740565b6040519080825280601f01601f191660200182016040528015612c96576020820181803683370190505b5090505b841561282257612cab600183613d88565b9150612cb8600a86613e36565b612cc3906030613cf0565b60f81b818381518110612cd857612cd8613d9f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612d12600a86613d74565b9450612c9a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604081208054839290612b46908490613cf0565b6000610a227f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612d96929190918252602082015260400190565b604051602081830303815290604052805190602001206130fd565b6000806000612dc08585613166565b9150915061166f816131d6565b73ffffffffffffffffffffffffffffffffffffffff8216612e305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a8b565b612e39816124c4565b15612e865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a8b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156130f2576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612f9e903390899088908890600401613e4a565b6020604051808303816000875af1925050508015612ff7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612ff491810190613e93565b60015b6130a7573d808015613025576040519150601f19603f3d011682016040523d82523d6000602084013e61302a565b606091505b50805161309f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612822565b506001949350505050565b6000610a2261310a6133c7565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561319d5760208301516040840151606085015160001a613191878285856134fb565b945094505050506131cf565b8251604014156131c757602083015160408401516131bc868383613613565b9350935050506131cf565b506000905060025b9250929050565b60008160048111156131ea576131ea613eb0565b14156131f35750565b600181600481111561320757613207613eb0565b14156132555760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a8b565b600281600481111561326957613269613eb0565b14156132b75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a8b565b60038160048111156132cb576132cb613eb0565b141561333f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b600481600481111561335357613353613eb0565b14156111d65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614801561342d57507f000000000000000000000000000000000000000000000000000000000000000046145b1561345757507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613532575060009050600361360a565b8460ff16601b1415801561354a57508460ff16601c14155b1561355b575060009050600461360a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156135af573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166136035760006001925092505061360a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161364960ff86901c601b613cf0565b9050613657878288856134fb565b935093505050935093915050565b82805461367190613c6d565b90600052602060002090601f01602090048101928261369357600085556136d9565b82601f106136ac57805160ff19168380011785556136d9565b828001600101855582156136d9579182015b828111156136d95782518255916020019190600101906136be565b506112609291505b8082111561126057600081556001016136e1565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146111d657600080fd5b60006020828403121561373557600080fd5b8135611200816136f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261378057600080fd5b813567ffffffffffffffff8082111561379b5761379b613740565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156137e1576137e1613740565b816040528381528660208588010111156137fa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561382c57600080fd5b813567ffffffffffffffff81111561384357600080fd5b6128228482850161376f565b60005b8381101561386a578181015183820152602001613852565b838111156119e25750506000910152565b6000815180845261389381602086016020860161384f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611200602083018461387b565b6000602082840312156138ea57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146111d657600080fd5b6000806040838503121561392657600080fd5b8235613931816138f1565b946020939093013593505050565b60006020828403121561395157600080fd5b8135611200816138f1565b60008060006060848603121561397157600080fd5b833561397c816138f1565b9250602084013561398c816138f1565b929592945050506040919091013590565b600080604083850312156139b057600080fd5b823567ffffffffffffffff808211156139c857600080fd5b6139d48683870161376f565b935060208501359150808211156139ea57600080fd5b506139f78582860161376f565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613a3957835183529284019291840191600101613a1d565b50909695505050505050565b80358015158114613a5557600080fd5b919050565b600060208284031215613a6c57600080fd5b61120082613a45565b600080600060608486031215613a8a57600080fd5b83359250602084013567ffffffffffffffff80821115613aa957600080fd5b613ab58783880161376f565b93506040860135915080821115613acb57600080fd5b50613ad88682870161376f565b9150509250925092565b60008083601f840112613af457600080fd5b50813567ffffffffffffffff811115613b0c57600080fd5b6020830191508360208260051b85010111156131cf57600080fd5b60008060008060408587031215613b3d57600080fd5b843567ffffffffffffffff80821115613b5557600080fd5b613b6188838901613ae2565b90965094506020870135915080821115613b7a57600080fd5b50613b8787828801613ae2565b95989497509550505050565b60008060408385031215613ba657600080fd5b8235613bb1816138f1565b9150613bbf60208401613a45565b90509250929050565b60008060008060808587031215613bde57600080fd5b8435613be9816138f1565b93506020850135613bf9816138f1565b925060408501359150606085013567ffffffffffffffff811115613c1c57600080fd5b613c288782880161376f565b91505092959194509250565b60008060408385031215613c4757600080fd5b8235613c52816138f1565b91506020830135613c62816138f1565b809150509250929050565b600181811c90821680613c8157607f821691505b60208210811415613cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613d0357613d03613cc1565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4057613d40613cc1565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613d8357613d83613d45565b500490565b600082821015613d9a57613d9a613cc1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0057613e00613cc1565b5060010190565b60008351613e1981846020880161384f565b835190830190613e2d81836020880161384f565b01949350505050565b600082613e4557613e45613d45565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e89608083018461387b565b9695505050505050565b600060208284031215613ea557600080fd5b8151611200816136f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212201dda6f0a9d6ca4fb75aee1c4624a5d28f480abccc456c6dceb6108b222b7809764736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a426f6f7a654265617273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005426f6f7a65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5137653178704a5173584173694e6773516958576432347739387142385766654e42544e67326a37344a72382f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103225760003560e01c80638b83209b116101a5578063c87b56dd116100ec578063e1fcd70711610095578063efd0cbf91161006f578063efd0cbf91461095a578063f2fde38b1461096d578063f452472e1461098d578063f91798b1146109ad57600080fd5b8063e1fcd707146108d9578063e33b7de3146108ef578063e985e9c51461090457600080fd5b8063ce7c2ac2116100c6578063ce7c2ac214610860578063d5abeb01146108a3578063dd0d1bbc146108b957600080fd5b8063c87b56dd1461080a578063cafbfa611461082a578063cd1133d81461084057600080fd5b80639ddf7ad31161014e578063b88d4fde11610128578063b88d4fde146107aa578063bd986a2c146107ca578063c6baf917146107ea57600080fd5b80639ddf7ad31461075a578063a22cb46514610774578063ac9384b91461079457600080fd5b806395d89b411161017f57806395d89b41146106e257806396ea3a47146106f75780639852595c1461071757600080fd5b80638b83209b146106775780638da5cb5b1461069757806391b7f5ed146106c257600080fd5b806348808c1011610269578063715018a61161021257806384a303d6116101ec57806384a303d61461062457806388dfe18b146106445780638b533ea41461065757600080fd5b8063715018a6146105c25780637934f505146105d75780638462151c146105f757600080fd5b80636352211e116102435780636352211e1461056d5780636c0360eb1461058d57806370a08231146105a257600080fd5b806348808c10146105175780634f6ccce7146105375780635cd5a8b41461055757600080fd5b806319165587116102cb5780633a98ef39116102a55780633a98ef39146104da5780633ccfd60b146104ef57806342842e0e146104f757600080fd5b8063191655871461047a57806323b872dd1461049a5780632f745c59146104ba57600080fd5b8063081812fc116102fc578063081812fc146103f6578063095ea7b31461043b57806318160ddd1461045b57600080fd5b806301ffc9a71461037d57806302fe5305146103b257806306fdde03146103d457600080fd5b36610378577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561038957600080fd5b5061039d610398366004613723565b6109cc565b60405190151581526020015b60405180910390f35b3480156103be57600080fd5b506103d26103cd36600461381a565b610a28565b005b3480156103e057600080fd5b506103e9610aab565b6040516103a991906138c5565b34801561040257600080fd5b506104166104113660046138d8565b610b3d565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a9565b34801561044757600080fd5b506103d2610456366004613913565b610be3565b34801561046757600080fd5b506002545b6040519081526020016103a9565b34801561048657600080fd5b506103d261049536600461393f565b610d3c565b3480156104a657600080fd5b506103d26104b536600461395c565b610f77565b3480156104c657600080fd5b5061046c6104d5366004613913565b610ffe565b3480156104e657600080fd5b5060065461046c565b6103d261111a565b34801561050357600080fd5b506103d261051236600461395c565b6111d9565b34801561052357600080fd5b5061041661053236600461399d565b6111f4565b34801561054357600080fd5b5061046c6105523660046138d8565b611207565b34801561056357600080fd5b5061046c60115481565b34801561057957600080fd5b506104166105883660046138d8565b611264565b34801561059957600080fd5b506103e9611311565b3480156105ae57600080fd5b5061046c6105bd36600461393f565b61139f565b3480156105ce57600080fd5b506103d261149e565b3480156105e357600080fd5b506103d26105f23660046138d8565b611511565b34801561060357600080fd5b5061061761061236600461393f565b61157d565b6040516103a99190613a01565b34801561063057600080fd5b506103d261063f366004613a5a565b611677565b6103d2610652366004613a75565b611715565b34801561066357600080fd5b506103d26106723660046138d8565b6119e8565b34801561068357600080fd5b506104166106923660046138d8565b611a54565b3480156106a357600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610416565b3480156106ce57600080fd5b506103d26106dd3660046138d8565b611a91565b3480156106ee57600080fd5b506103e9611afd565b34801561070357600080fd5b506103d2610712366004613b27565b611b0c565b34801561072357600080fd5b5061046c61073236600461393f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561076657600080fd5b50600d5461039d9060ff1681565b34801561078057600080fd5b506103d261078f366004613b93565b611cd1565b3480156107a057600080fd5b5061046c600f5481565b3480156107b657600080fd5b506103d26107c5366004613bc8565b611dce565b3480156107d657600080fd5b506103d26107e5366004613a5a565b611e56565b3480156107f657600080fd5b506103d26108053660046138d8565b611eee565b34801561081657600080fd5b506103e96108253660046138d8565b611f5a565b34801561083657600080fd5b5061046c60125481565b34801561084c57600080fd5b5061046c61085b36600461393f565b611fc6565b34801561086c57600080fd5b5061046c61087b36600461393f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156108af57600080fd5b5061046c600c5481565b3480156108c557600080fd5b5061046c6108d436600461393f565b611ff9565b3480156108e557600080fd5b5061046c60105481565b3480156108fb57600080fd5b5060075461046c565b34801561091057600080fd5b5061039d61091f366004613c34565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b6103d26109683660046138d8565b61202c565b34801561097957600080fd5b506103d261098836600461393f565b61227c565b34801561099957600080fd5b506103d26109a83660046138d8565b612375565b3480156109b957600080fd5b50600d5461039d90610100900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a225750610a22826123e1565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610aa790600b906020840190613665565b5050565b606060008054610aba90613c6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613c6d565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b6000610b48826124c4565b610bba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a8b565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610bee82611264565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610cbb5750610cbb813361091f565b610d2d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a8b565b610d378383612528565b505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610dd45760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610a8b565b600060075447610de49190613cf0565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960209081526040808320546006546008909352908320549394509192610e289085613d08565b610e329190613d74565b610e3c9190613d88565b905080610eb15760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054610ee2908290613cf0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260096020526040902055600754610f16908290613cf0565b600755610f2383826125c8565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f8133826126ee565b610ff35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a8b565b610d3783838361282a565b60006110098361139f565b82106110575760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b6000805b6002548110156110d1576002818154811061107857611078613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156110c157838214156110b5579150610a229050565b6110be82613dce565b91505b6110ca81613dce565b905061105b565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b604051600090339047908381818185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b50509050806111d657600080fd5b50565b610d3783838360405180602001604052806000815250611dce565b600061120083836129f9565b9392505050565b600061121260025490565b82106112605760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610a8b565b5090565b6000806002838154811061127a5761127a613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610a225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a8b565b600b805461131e90613c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461134a90613c6d565b80156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661142a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a8b565b600254600090815b81811015611495576002818154811061144d5761144d613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156114855761148283613dce565b92505b61148e81613dce565b9050611432565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b61150f6000612a11565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601155565b60606115888261139f565b6000106115d75760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610a8b565b60006115e28361139f565b905060008167ffffffffffffffff8111156115ff576115ff613740565b604051908082528060200260200182016040528015611628578160200160208202803683370190505b50905060005b8281101561166f576116408582610ffe565b82828151811061165257611652613d9f565b60209081029190910101528061166781613dce565b91505061162e565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600061172060025490565b90503361172d84846111f4565b73ffffffffffffffffffffffffffffffffffffffff16146117905760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610a8b565b600d5460ff166117e25760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742073616c65206973206e6f7420616374697665000000006044820152606401610a8b565b600084116118325760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a8b565b6011548411156118845760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b600c546118918583613cf0565b11156118df5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b83600e546118ed9190613d08565b34101561193c5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a8b565b600161194733611fc6565b10156119955760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a8b565b60005b848110156119d3576119c3336119ae8385613cf0565b60405180602001604052806000815250612a88565b6119cc81613dce565b9050611998565b50600090506119e23385612b11565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601055565b6000600a8281548110611a6957611a69613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611af85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600e55565b606060018054610aba90613c6d565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b828114611b7f57600080fd5b600080611b8b60025490565b905060005b85811015611bce57868682818110611baa57611baa613d9f565b9050602002013583611bbc9190613cf0565b9250611bc781613dce565b9050611b90565b50600c54611bdc8383613cf0565b1115611c2a5760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610a8b565b6000915060005b83811015611cc85760005b878783818110611c4e57611c4e613d9f565b90506020020135811015611cb757611ca7868684818110611c7157611c71613d9f565b9050602002016020810190611c86919061393f565b84611c9081613dce565b955060405180602001604052806000815250612a88565b611cb081613dce565b9050611c3c565b50611cc181613dce565b9050611c31565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611d375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a8b565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611dd833836126ee565b611e4a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a8b565b6119e284848484612b4f565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ebd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b601255565b6060600c54821115611f6b57600080fd5b6000611f75612bd8565b90506000815111611f955760405180602001604052806000815250611200565b80611f9f84612be7565b604051602001611fb0929190613e07565b6040516020818303038152906040529392505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260136020526040812054601254610a229190613d88565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260156020526040812054601054610a229190613d88565b600061203760025490565b600d54909150610100900460ff166120915760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610a8b565b600082116120e15760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610a8b565b600f548211156121335760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b600c546121408383613cf0565b111561218e5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610a8b565b81600e5461219c9190613d08565b3410156121eb5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610a8b565b60016121f633611ff9565b10156122445760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610a8b565b60005b8281101561226d5761225d336119ae8385613cf0565b61226681613dce565b9050612247565b5060009050610aa73383612d19565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b73ffffffffffffffffffffffffffffffffffffffff811661236c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a8b565b6111d681612a11565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8b565b600f55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061247457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a2257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a22565b60025460009082108015610a225750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106124fe576124fe613d9f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061258282611264565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156126185760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a8b565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612672576040519150601f19603f3d011682016040523d82523d6000602084013e612677565b606091505b5050905080610d375760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a8b565b60006126f9826124c4565b61276b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a8b565b600061277683611264565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127e557508373ffffffffffffffffffffffffffffffffffffffff166127cd84610b3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612822575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661284a82611264565b73ffffffffffffffffffffffffffffffffffffffff16146128d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff821661295b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b612966600082612528565b816002828154811061297a5761297a613d9f565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080612a0584612d4e565b90506128228184612db1565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612a928383612dcd565b612a9f6000848484612f27565b610d375760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604081208054839290612b46908490613cf0565b90915550505050565b612b5a84848461282a565b612b6684848484612f27565b6119e25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b6060600b8054610aba90613c6d565b606081612c2757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612c515780612c3b81613dce565b9150612c4a9050600a83613d74565b9150612c2b565b60008167ffffffffffffffff811115612c6c57612c6c613740565b6040519080825280601f01601f191660200182016040528015612c96576020820181803683370190505b5090505b841561282257612cab600183613d88565b9150612cb8600a86613e36565b612cc3906030613cf0565b60f81b818381518110612cd857612cd8613d9f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612d12600a86613d74565b9450612c9a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604081208054839290612b46908490613cf0565b6000610a227f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001612d96929190918252602082015260400190565b604051602081830303815290604052805190602001206130fd565b6000806000612dc08585613166565b9150915061166f816131d6565b73ffffffffffffffffffffffffffffffffffffffff8216612e305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a8b565b612e39816124c4565b15612e865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a8b565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156130f2576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612f9e903390899088908890600401613e4a565b6020604051808303816000875af1925050508015612ff7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612ff491810190613e93565b60015b6130a7573d808015613025576040519150601f19603f3d011682016040523d82523d6000602084013e61302a565b606091505b50805161309f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a8b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612822565b506001949350505050565b6000610a2261310a6133c7565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561319d5760208301516040840151606085015160001a613191878285856134fb565b945094505050506131cf565b8251604014156131c757602083015160408401516131bc868383613613565b9350935050506131cf565b506000905060025b9250929050565b60008160048111156131ea576131ea613eb0565b14156131f35750565b600181600481111561320757613207613eb0565b14156132555760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a8b565b600281600481111561326957613269613eb0565b14156132b75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a8b565b60038160048111156132cb576132cb613eb0565b141561333f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b600481600481111561335357613353613eb0565b14156111d65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a8b565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000701b2e775a82dbf50bd80a22a0d32eb13fb818251614801561342d57507f000000000000000000000000000000000000000000000000000000000000000146145b1561345757507f5dcfe509b79dce5456b39f2162af95d17cb049770f750db95ebeb4ade6aad81990565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fb16ae277305a9a87b4d714b6ff6d16515269e7a9a85bcd9f6350ae73a5052d86828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613532575060009050600361360a565b8460ff16601b1415801561354a57508460ff16601c14155b1561355b575060009050600461360a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156135af573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166136035760006001925092505061360a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161364960ff86901c601b613cf0565b9050613657878288856134fb565b935093505050935093915050565b82805461367190613c6d565b90600052602060002090601f01602090048101928261369357600085556136d9565b82601f106136ac57805160ff19168380011785556136d9565b828001600101855582156136d9579182015b828111156136d95782518255916020019190600101906136be565b506112609291505b8082111561126057600081556001016136e1565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146111d657600080fd5b60006020828403121561373557600080fd5b8135611200816136f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261378057600080fd5b813567ffffffffffffffff8082111561379b5761379b613740565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156137e1576137e1613740565b816040528381528660208588010111156137fa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561382c57600080fd5b813567ffffffffffffffff81111561384357600080fd5b6128228482850161376f565b60005b8381101561386a578181015183820152602001613852565b838111156119e25750506000910152565b6000815180845261389381602086016020860161384f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611200602083018461387b565b6000602082840312156138ea57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146111d657600080fd5b6000806040838503121561392657600080fd5b8235613931816138f1565b946020939093013593505050565b60006020828403121561395157600080fd5b8135611200816138f1565b60008060006060848603121561397157600080fd5b833561397c816138f1565b9250602084013561398c816138f1565b929592945050506040919091013590565b600080604083850312156139b057600080fd5b823567ffffffffffffffff808211156139c857600080fd5b6139d48683870161376f565b935060208501359150808211156139ea57600080fd5b506139f78582860161376f565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613a3957835183529284019291840191600101613a1d565b50909695505050505050565b80358015158114613a5557600080fd5b919050565b600060208284031215613a6c57600080fd5b61120082613a45565b600080600060608486031215613a8a57600080fd5b83359250602084013567ffffffffffffffff80821115613aa957600080fd5b613ab58783880161376f565b93506040860135915080821115613acb57600080fd5b50613ad88682870161376f565b9150509250925092565b60008083601f840112613af457600080fd5b50813567ffffffffffffffff811115613b0c57600080fd5b6020830191508360208260051b85010111156131cf57600080fd5b60008060008060408587031215613b3d57600080fd5b843567ffffffffffffffff80821115613b5557600080fd5b613b6188838901613ae2565b90965094506020870135915080821115613b7a57600080fd5b50613b8787828801613ae2565b95989497509550505050565b60008060408385031215613ba657600080fd5b8235613bb1816138f1565b9150613bbf60208401613a45565b90509250929050565b60008060008060808587031215613bde57600080fd5b8435613be9816138f1565b93506020850135613bf9816138f1565b925060408501359150606085013567ffffffffffffffff811115613c1c57600080fd5b613c288782880161376f565b91505092959194509250565b60008060408385031215613c4757600080fd5b8235613c52816138f1565b91506020830135613c62816138f1565b809150509250929050565b600181811c90821680613c8157607f821691505b60208210811415613cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613d0357613d03613cc1565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d4057613d40613cc1565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613d8357613d83613d45565b500490565b600082821015613d9a57613d9a613cc1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0057613e00613cc1565b5060010190565b60008351613e1981846020880161384f565b835190830190613e2d81836020880161384f565b01949350505050565b600082613e4557613e45613d45565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e89608083018461387b565b9695505050505050565b600060208284031215613ea557600080fd5b8151611200816136f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212201dda6f0a9d6ca4fb75aee1c4624a5d28f480abccc456c6dceb6108b222b7809764736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a426f6f7a654265617273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005426f6f7a65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5137653178704a5173584173694e6773516958576432347739387142385766654e42544e67326a37344a72382f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BoozeBears
Arg [1] : _symbol (string): Booze
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmQ7e1xpJQsXAsiNgsQiXWd24w98qB8WfeNBTNg2j74Jr8/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 426f6f7a65426561727300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 426f6f7a65000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d5137653178704a5173
Arg [9] : 584173694e6773516958576432347739387142385766654e42544e67326a3734
Arg [10] : 4a72382f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
175:6470:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:2;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;175:6470:1;;;;;184:224:7;;;;;;;;;;-1:-1:-1;184:224:7;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;184:224:7;;;;;;;;6400:88:1;;;;;;;;;;-1:-1:-1;6400:88:1;;;;;:::i;:::-;;:::i;:::-;;1672:100:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:6;;;;;:::i;:::-;;:::i;:::-;;;3410:42:18;3398:55;;;3380:74;;3368:2;3353:18;2305:221:6;3234:226:18;1888:411:6;;;;;;;;;;-1:-1:-1;1888:411:6;;;;;:::i;:::-;;:::i;1342:110:7:-;;;;;;;;;;-1:-1:-1;1430:7:7;:14;1342:110;;;4090:25:18;;;4078:2;4063:18;1342:110:7;3944:177:18;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;3003:339:6:-;;;;;;;;;;-1:-1:-1;3003:339:6;;;;;:::i;:::-;;:::i;414:499:7:-;;;;;;;;;;-1:-1:-1;414:499:7;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;6494:148:1;;;:::i;3348:185:6:-;;;;;;;;;;-1:-1:-1;3348:185:6;;;;;:::i;:::-;;:::i;4020:138:1:-;;;;;;;;;;-1:-1:-1;4020:138:1;;;;;:::i;:::-;;:::i;1458:191:7:-;;;;;;;;;;-1:-1:-1;1458:191:7;;;;;:::i;:::-;;:::i;673:40:1:-;;;;;;;;;;;;;;;;1427:239:6;;;;;;;;;;-1:-1:-1;1427:239:6;;;;;:::i;:::-;;:::i;270:21:1:-;;;;;;;;;;;;;:::i;1007:414:6:-;;;;;;;;;;-1:-1:-1;1007:414:6;;;;;:::i;:::-;;:::i;1648:94:14:-;;;;;;;;;;;;;:::i;5664:122:1:-;;;;;;;;;;-1:-1:-1;5664:122:1;;;;;:::i;:::-;;:::i;919:417:7:-;;;;;;;;;;-1:-1:-1;919:417:7;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6303:76:1:-;;;;;;;;;;-1:-1:-1;6303:76:1;;;;;:::i;:::-;;:::i;2072:822::-;;;;;;:::i;:::-;;:::i;6071:124::-;;;;;;;;;;-1:-1:-1;6071:124:1;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;997:87:14:-;;;;;;;;;;-1:-1:-1;1070:6:14;;;;997:87;;5569:78:1;;;;;;;;;;-1:-1:-1;5569:78:1;;;;;:::i;:::-;;:::i;1778:104:6:-;;;;;;;;;;;;;:::i;3588:426:1:-;;;;;;;;;;-1:-1:-1;3588:426:1;;;;;:::i;:::-;;:::i;3306:107:15:-;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;475:35:1;;;;;;;;;;-1:-1:-1;475:35:1;;;;;;;;2532:295:6;;;;;;;;;;-1:-1:-1;2532:295:6;;;;;:::i;:::-;;:::i;585:37:1:-;;;;;;;;;;;;;;;;3539:328:6;;;;;;;;;;-1:-1:-1;3539:328:6;;;;;:::i;:::-;;:::i;6218:82:1:-;;;;;;;;;;-1:-1:-1;6218:82:1;;;;;:::i;:::-;;:::i;5939:130::-;;;;;;;;;;-1:-1:-1;5939:130:1;;;;;:::i;:::-;;:::i;4697:278::-;;;;;;;;;;-1:-1:-1;4697:278:1;;;;;:::i;:::-;;:::i;719:44::-;;;;;;;;;;;;;;;;5112:158;;;;;;;;;;-1:-1:-1;5112:158:1;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;441:31:1;;;;;;;;;;;;;;;;5398:149;;;;;;;;;;-1:-1:-1;5398:149:1;;;;;:::i;:::-;;:::i;628:42::-;;;;;;;;;;;;;;;;2930:93:15;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;2833:164:6;;;;;;;;;;-1:-1:-1;2833:164:6;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;2900:663:1;;;;;;:::i;:::-;;:::i;1897:192:14:-;;;;;;;;;;-1:-1:-1;1897:192:14;;;;;:::i;:::-;;:::i;5803:116:1:-;;;;;;;;;;-1:-1:-1;5803:116:1;;;;;:::i;:::-;;:::i;513:32::-;;;;;;;;;;-1:-1:-1;513:32:1;;;;;;;;;;;184:224:7;286:4;310:50;;;325:35;310:50;;:90;;;364:36;388:11;364:23;:36::i;:::-;303:97;184:224;-1:-1:-1;;184:224:7:o;6400:88:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;;;;;;;;;6463:21:1;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;6400:88:::0;:::o;1672:100:6:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:6;;10787:2:18;2401:73:6;;;10769:21:18;10826:2;10806:18;;;10799:30;10865:34;10845:18;;;10838:62;10936:14;10916:18;;;10909:42;10968:19;;2401:73:6;10585:408:18;2401:73:6;-1:-1:-1;2494:24:6;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:6;;11200:2:18;2019:57:6;;;11182:21:18;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;11349:3;11329:18;;;11322:31;11370:19;;2019:57:6;10998:397:18;2019:57:6;682:10:2;2111:21:6;;;;;:62;;-1:-1:-1;2136:37:6;2153:5;682:10:2;2833:164:6;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:6;;11602:2:18;2089:168:6;;;11584:21:18;11641:2;11621:18;;;11614:30;11680:34;11660:18;;;11653:62;11751:26;11731:18;;;11724:54;11795:19;;2089:168:6;11400:420:18;2089:168:6;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;3791:600:15:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:15;;12027:2:18;3858:71:15;;;12009:21:18;12066:2;12046:18;;;12039:30;12105:34;12085:18;;;12078:62;12176:8;12156:18;;;12149:36;12202:19;;3858:71:15;11825:402:18;3858:71:15;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:15;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:15;4111:68;;;;-1:-1:-1;;;4111:68:15;;13433:2:18;4111:68:15;;;13415:21:18;13472:2;13452:18;;;13445:30;13511:34;13491:18;;;13484:62;13582:13;13562:18;;;13555:41;13613:19;;4111:68:15;13231:407:18;4111:68:15;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:15;;161:18:18;4351:33:15;;;;;;;3848:543;;3791:600;:::o;3003:339:6:-;3198:41;682:10:2;3231:7:6;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:6;;14155:2:18;3190:103:6;;;14137:21:18;14194:2;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14304:19;14284:18;;;14277:47;14341:19;;3190:103:6;13953:413:18;3190:103:6;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;414:499:7:-;503:15;547:23;564:5;547:16;:23::i;:::-;539:5;:31;531:66;;;;-1:-1:-1;;;531:66:7;;14573:2:18;531:66:7;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;531:66:7;14371:346:18;531:66:7;608:10;634:6;629:226;646:7;:14;642:18;;629:226;;;695:7;703:1;695:10;;;;;;;;:::i;:::-;;;;;;;;;;;;686:19;;;695:10;;686:19;682:162;;;739:5;730;:14;726:102;;;775:1;-1:-1:-1;768:8:7;;-1:-1:-1;768:8:7;726:102;821:7;;;:::i;:::-;;;726:102;662:3;;;:::i;:::-;;;629:226;;;-1:-1:-1;865:40:7;;-1:-1:-1;;;865:40:7;;14573:2:18;865:40:7;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;865:40:7;14371:346:18;6494:148:1;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;6561:58:1::1;::::0;6543:12:::1;::::0;6569:10:::1;::::0;6593:21:::1;::::0;6543:12;6561:58;6543:12;6561:58;6593:21;6569:10;6561:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6542:77;;;6630:7;6622:16;;;::::0;::::1;;6539:103;6494:148::o:0;3348:185:6:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;4020:138:1:-;4100:7;4126:25;4135:4;4141:9;4126:7;:25::i;:::-;4119:32;4020:138;-1:-1:-1;;;4020:138:1:o;1458:191:7:-;1533:7;1569:21;1430:7;:14;;1342:110;1569:21;1561:5;:29;1553:65;;;;-1:-1:-1;;;1553:65:7;;15523:2:18;1553:65:7;;;15505:21:18;15562:2;15542:18;;;15535:30;15601:25;15581:18;;;15574:53;15644:18;;1553:65:7;15321:347:18;1553:65:7;-1:-1:-1;1636:5:7;1458:191::o;1427:239:6:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:6;1562:73;;;;-1:-1:-1;;;1562:73:6;;15875:2:18;1562:73:6;;;15857:21:18;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;16024:11;16004:18;;;15997:39;16053:19;;1562:73:6;15673:405:18;270:21:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:6:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:6;;16285:2:18;1099:74:6;;;16267:21:18;16324:2;16304:18;;;16297:30;16363:34;16343:18;;;16336:62;16434:12;16414:18;;;16407:40;16464:19;;1099:74:6;16083:406:18;1099:74:6;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:6;;1007:414;-1:-1:-1;;;1007:414:6:o;1648:94:14:-;1070:6;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;5664:122:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;5741:21:1::1;:41:::0;5664:122::o;919:417:7:-;978:16;1019:23;1036:5;1019:16;:23::i;:::-;1015:1;:27;1007:62;;;;-1:-1:-1;;;1007:62:7;;14573:2:18;1007:62:7;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;1007:62:7;14371:346:18;1007:62:7;1080:18;1101:16;1111:5;1101:9;:16::i;:::-;1080:37;;1128:25;1170:10;1156:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1156:25:7;;1128:53;;1197:9;1192:111;1216:10;1212:1;:14;1192:111;;;1262:29;1282:5;1289:1;1262:19;:29::i;:::-;1248:8;1257:1;1248:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1228:3;;;;:::i;:::-;;;;1192:111;;;-1:-1:-1;1320:8:7;919:417;-1:-1:-1;;;919:417:7:o;6303:76:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;6352:12:1::1;:23:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;6303:76::o;2072:822::-;2181:9;2193:13;1430:7:7;:14;;1342:110;2193:13:1;2181:25;-1:-1:-1;2250:10:1;2224:22;2230:4;2236:9;2224:5;:22::i;:::-;:36;;;2216:66;;;;-1:-1:-1;;;2216:66:1;;16696:2:18;2216:66:1;;;16678:21:18;16735:2;16715:18;;;16708:30;16774:19;16754:18;;;16747:47;16811:18;;2216:66:1;16494:341:18;2216:66:1;2324:15;;;;2316:55;;;;-1:-1:-1;;;2316:55:1;;17042:2:18;2316:55:1;;;17024:21:18;17081:2;17061:18;;;17054:30;17120;17100:18;;;17093:58;17168:18;;2316:55:1;16840:352:18;2316:55:1;2404:1;2389:12;:16;2381:46;;;;-1:-1:-1;;;2381:46:1;;17399:2:18;2381:46:1;;;17381:21:18;17438:2;17418:18;;;17411:30;17477:18;17457;;;17450:46;17513:18;;2381:46:1;17197:340:18;2381:46:1;2458:21;;2442:12;:37;;2434:59;;;;-1:-1:-1;;;2434:59:1;;17744:2:18;2434:59:1;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;2434:59:1;17542:332:18;2434:59:1;2529:9;;2509:16;2513:12;2509:1;:16;:::i;:::-;:29;;2500:52;;;;-1:-1:-1;;;2500:52:1;;17744:2:18;2500:52:1;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;2500:52:1;17542:332:18;2500:52:1;2588:12;2580:5;;:20;;;;:::i;:::-;2567:9;:33;;2559:64;;;;-1:-1:-1;;;2559:64:1;;18081:2:18;2559:64:1;;;18063:21:18;18120:2;18100:18;;;18093:30;18159:20;18139:18;;;18132:48;18197:18;;2559:64:1;17879:342:18;2559:64:1;2682:1;2641:37;2667:10;2641:25;:37::i;:::-;:42;;2633:73;;;;-1:-1:-1;;;2633:73:1;;18428:2:18;2633:73:1;;;18410:21:18;18467:2;18447:18;;;18440:30;18506:21;18486:18;;;18479:49;18545:18;;2633:73:1;18226:343:18;2633:73:1;2720:9;2715:95;2739:12;2735:1;:16;2715:95;;;2767:32;2777:10;2789:5;2793:1;2789;:5;:::i;:::-;2767:32;;;;;;;;;;;;:9;:32::i;:::-;2753:3;;;:::i;:::-;;;2715:95;;;;2819:8;;;2837:50;2862:10;2874:12;2837:24;:50::i;:::-;2176:718;2072:822;;;:::o;6071:124::-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;6149:22:1::1;:42:::0;6071:124::o;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;5569:78:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;5626:5:1::1;:17:::0;5569:78::o;1778:104:6:-;1834:13;1867:7;1860:14;;;;;:::i;3588:426:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;3684:32:1;;::::1;3676:41;;;::::0;::::1;;3720:6;3733:9:::0;3745:13:::1;1430:7:7::0;:14;;1342:110;3745:13:1::1;3733:25;;3765:6;3761:58;3777:16:::0;;::::1;3761:58;;;3807:5;;3813:1;3807:8;;;;;;;:::i;:::-;;;;;;;3802:13;;;;;:::i;:::-;::::0;-1:-1:-1;3795:3:1::1;::::0;::::1;:::i;:::-;;;3761:58;;;-1:-1:-1::0;3839:9:1::1;::::0;3830:5:::1;3834:1:::0;3830;:5:::1;:::i;:::-;:18;;3821:41;;;::::0;-1:-1:-1;;;3821:41:1;;18776:2:18;3821:41:1::1;::::0;::::1;18758:21:18::0;18815:1;18795:18;;;18788:29;18853:10;18833:18;;;18826:38;18881:18;;3821:41:1::1;18574:331:18::0;3821:41:1::1;3865:8;;;3880:6;3876:123;3892:20:::0;;::::1;3876:123;;;3925:6;3921:75;3941:5;;3947:1;3941:8;;;;;;;:::i;:::-;;;;;;;3937:1;:12;3921:75;;;3958:34;3969:9;;3979:1;3969:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3983:3:::0;::::1;::::0;::::1;:::i;:::-;;;3958:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;3951:3;::::0;::::1;:::i;:::-;;;3921:75;;;-1:-1:-1::0;3914:3:1::1;::::0;::::1;:::i;:::-;;;3876:123;;;-1:-1:-1::0;;;;;;;3588:426:1:o;2532:295:6:-;2635:24;;;682:10:2;2635:24:6;;2627:62;;;;-1:-1:-1;;;2627:62:6;;19112:2:18;2627:62:6;;;19094:21:18;19151:2;19131:18;;;19124:30;19190:27;19170:18;;;19163:55;19235:18;;2627:62:6;18910:349:18;2627:62:6;682:10:2;2702:32:6;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:18;;;2702:42:6;;682:10:2;2771:48:6;;861:18:18;2771:48:6;;;;;;;2532:295;;:::o;3539:328::-;3714:41;682:10:2;3747:7:6;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:6;;14155:2:18;3706:103:6;;;14137:21:18;14194:2;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14304:19;14284:18;;;14277:47;14341:19;;3706:103:6;13953:413:18;3706:103:6;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;6218:82:1:-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;6269:15:1::1;:27:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;6218:82::o;5939:130::-;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;6020:25:1::1;:45:::0;5939:130::o;4697:278::-;4770:13;4807:9;;4796:7;:20;;4788:29;;;;;;4820:28;4851:10;:8;:10::i;:::-;4820:41;;4902:1;4877:14;4871:28;:32;:100;;;;;;;;;;;;;;;;;4930:14;4946:18;:7;:16;:18::i;:::-;4913:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4864:107;4697:278;-1:-1:-1;;;4697:278:1:o;5112:158::-;5234:29;;;5184:7;5234:29;;;:21;:29;;;;;;5206:25;;:57;;5234:29;5206:57;:::i;5398:149::-;5514:26;;;5467:7;5514:26;;;:18;:26;;;;;;5489:22;;:51;;5514:26;5489:51;:::i;2900:663::-;2962:9;2974:13;1430:7:7;:14;;1342:110;2974:13:1;3005:12;;2962:25;;-1:-1:-1;3005:12:1;;;;;2997:49;;;;-1:-1:-1;;;2997:49:1;;19941:2:18;2997:49:1;;;19923:21:18;19980:2;19960:18;;;19953:30;20019:27;19999:18;;;19992:55;20064:18;;2997:49:1;19739:349:18;2997:49:1;3079:1;3064:12;:16;3056:46;;;;-1:-1:-1;;;3056:46:1;;17399:2:18;3056:46:1;;;17381:21:18;17438:2;17418:18;;;17411:30;17477:18;17457;;;17450:46;17513:18;;3056:46:1;17197:340:18;3056:46:1;3133:18;;3117:12;:34;;3109:56;;;;-1:-1:-1;;;3109:56:1;;17744:2:18;3109:56:1;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;3109:56:1;17542:332:18;3109:56:1;3201:9;;3181:16;3185:12;3181:1;:16;:::i;:::-;:29;;3172:52;;;;-1:-1:-1;;;3172:52:1;;17744:2:18;3172:52:1;;;17726:21:18;17783:1;17763:18;;;17756:29;17821:11;17801:18;;;17794:39;17850:18;;3172:52:1;17542:332:18;3172:52:1;3260:12;3252:5;;:20;;;;:::i;:::-;3239:9;:33;;3231:64;;;;-1:-1:-1;;;3231:64:1;;18081:2:18;3231:64:1;;;18063:21:18;18120:2;18100:18;;;18093:30;18159:20;18139:18;;;18132:48;18197:18;;3231:64:1;17879:342:18;3231:64:1;3351:1;3313:34;3336:10;3313:22;:34::i;:::-;:39;;3305:70;;;;-1:-1:-1;;;3305:70:1;;18428:2:18;3305:70:1;;;18410:21:18;18467:2;18447:18;;;18440:30;18506:21;18486:18;;;18479:49;18545:18;;3305:70:1;18226:343:18;3305:70:1;3389:9;3384:101;3408:12;3404:1;:16;3384:101;;;3442:32;3452:10;3464:5;3468:1;3464;:5;:::i;3442:32::-;3422:3;;;:::i;:::-;;;3384:101;;;;3494:8;;;3509:47;3531:10;3543:12;3509:21;:47::i;1897:192:14:-;1070:6;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:14;;20295:2:18;1978:73:14::1;::::0;::::1;20277:21:18::0;20334:2;20314:18;;;20307:30;20373:34;20353:18;;;20346:62;20444:8;20424:18;;;20417:36;20470:19;;1978:73:14::1;20093:402:18::0;1978:73:14::1;2062:19;2072:8;2062:9;:19::i;5803:116:1:-:0;1070:6:14;;1217:23;1070:6;682:10:2;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9984:2:18;1209:68:14;;;9966:21:18;;;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10114:18;;1209:68:14;9782:356:18;1209:68:14;5877:18:1::1;:38:::0;5803:116::o;696:305:6:-;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:6;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:5;871:40;;;;957:36:6;763:155:5;4196::6;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:6:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;20702:2:18;2147:73:0;;;20684:21:18;20741:2;20721:18;;;20714:30;20780:31;20760:18;;;20753:59;20829:18;;2147:73:0;20500:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;21060:2:18;2296:78:0;;;21042:21:18;21099:2;21079:18;;;21072:30;21138:34;21118:18;;;21111:62;21209:28;21189:18;;;21182:56;21255:19;;2296:78:0;20858:422:18;4354:348:6;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:6;;21487:2:18;4464:73:6;;;21469:21:18;21526:2;21506:18;;;21499:30;21565:34;21545:18;;;21538:62;21636:14;21616:18;;;21609:42;21668:19;;4464:73:6;21285:408:18;4464:73:6;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:6;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:6:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:6;;21900:2:18;5950:85:6;;;21882:21:18;21939:2;21919:18;;;21912:30;21978:34;21958:18;;;21951:62;22049:11;22029:18;;;22022:39;22078:19;;5950:85:6;21698:405:18;5950:85:6;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:6;;22310:2:18;6046:65:6;;;22292:21:18;22349:2;22329:18;;;22322:30;22388:34;22368:18;;;22361:62;22459:6;22439:18;;;22432:34;22483:19;;6046:65:6;22108:400:18;6046:65:6;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;4164:187:1:-;4248:7;4267:14;4284:11;4290:4;4284:5;:11::i;:::-;4267:28;;4312:32;4326:6;4334:9;4312:13;:32::i;2097:173:14:-;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;4818:321:6:-;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:6;;22715:2:18;4977:154:6;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;4977:154:6;22513:414:18;4981:125:1;5060:29;;;;;;;:21;:29;;;;;:38;;5093:5;;5060:29;:38;;5093:5;;5060:38;:::i;:::-;;;;-1:-1:-1;;;;4981:125:1:o;3878:315:6:-;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:6;;22715:2:18;4074:111:6;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;4074:111:6;22513:414:18;4607:87:1;4658:13;4683:7;4676:14;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:17;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;5273:119:1;5349:26;;;;;;;:18;:26;;;;;:35;;5379:5;;5349:26;:35;;5379:5;;5349:35;:::i;4357:230::-;4415:7;4441:135;4492:36;4558:4;4542:22;;;;;;4468:106;;;;;;;;23223:25:18;;;23279:2;23264:18;;23257:34;23211:2;23196:18;;23049:248;4468:106:1;;;;;;;;;;;;;4458:117;;;;;;4441: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;5142:346:6:-;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:6;;23504:2:18;5214:61:6;;;23486:21:18;;;23523:18;;;23516:30;23582:34;23562:18;;;23555:62;23634:18;;5214:61:6;23302:356:18;5214:61:6;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:6;;23865:2:18;5286:58:6;;;23847:21:18;23904:2;23884:18;;;23877:30;23943;23923:18;;;23916:58;23991:18;;5286:58:6;23663:352:18;5286:58:6;5413:7;:16;;;;;;;-1:-1:-1;5413:16:6;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:6;;-1:-1:-1;;5447:33:6;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:6;;6734:72;;;;;:36;;;;;;:72;;682:10:2;;6785:4:6;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:6;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:6;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:6;;22715:2:18;7019:60:6;;;22697:21:18;22754:2;22734:18;;;22727:30;22793:34;22773:18;;;22766:62;22864:20;22844:18;;;22837:48;22902:19;;7019:60:6;22513:414:18;6972:272:6;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:6;;6694:620;-1:-1:-1;7298:4:6;6522:799;;;;;;:::o;4439:167:4:-;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:3;;26769:66:18;9437:57:3;;;26757:79:18;26852:11;;;26845:27;;;26888:12;;;26881:28;;;9400:7:3;;26925:12:18;;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;;25182:2:18;776:34:3;;;25164:21:18;25221:2;25201:18;;;25194:30;25260:26;25240:18;;;25233:54;25304:18;;776:34:3;24980:348:18;717:473:3;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:3;;25535:2:18;893:41:3;;;25517:21:18;25574:2;25554:18;;;25547:30;25613:33;25593:18;;;25586:61;25664:18;;893:41:3;25333:355:18;828:362:3;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:3;;25895:2:18;1012:44:3;;;25877:21:18;25934:2;25914:18;;;25907:30;25973:34;25953:18;;;25946:62;26044:4;26024:18;;;26017:32;26066:19;;1012:44:3;25693:398:18;952:238:3;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:3;;26298:2:18;1134:44:3;;;26280:21:18;26337:2;26317:18;;;26310:30;26376:34;26356:18;;;26349:62;26447:4;26427:18;;;26420:32;26469:19;;1134:44:3;26096:398:18;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;;;;27610:25:18;;;;3477:12:4;27651:18:18;;;27644:34;3491:15:4;27694:18:18;;;27687:34;3759:13:4;27737:18:18;;;27730:34;3782:4:4;27780:19:18;;;;27773:84;;;;3715:73:4;;;;;;;;;;27582:19:18;;;;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;;;;;;;;;27175:25:18;;;27248:4;27236:17;;27216:18;;;27209:45;;;;27270:18;;;27263:34;;;27313:18;;;27306:34;;;7282:24:3;;27147:19:18;;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;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:184::-;992:77;989:1;982:88;1089:4;1086:1;1079:15;1113:4;1110:1;1103:15;1129:778;1172:5;1225:3;1218:4;1210:6;1206:17;1202:27;1192:55;;1243:1;1240;1233:12;1192:55;1279:6;1266:20;1305:18;1342:2;1338;1335:10;1332:36;;;1348:18;;:::i;:::-;1482:2;1476:9;1544:4;1536:13;;1387:66;1532:22;;;1556:2;1528:31;1524:40;1512:53;;;1580:18;;;1600:22;;;1577:46;1574:72;;;1626:18;;:::i;:::-;1666:10;1662:2;1655:22;1701:2;1693:6;1686:18;1747:3;1740:4;1735:2;1727:6;1723:15;1719:26;1716:35;1713:55;;;1764:1;1761;1754:12;1713:55;1828:2;1821:4;1813:6;1809:17;1802:4;1794:6;1790:17;1777:54;1875:1;1868:4;1863:2;1855:6;1851:15;1847:26;1840:37;1895:6;1886:15;;;;;;1129:778;;;;:::o;1912:322::-;1981:6;2034:2;2022:9;2013:7;2009:23;2005:32;2002:52;;;2050:1;2047;2040:12;2002:52;2090:9;2077:23;2123:18;2115:6;2112:30;2109:50;;;2155:1;2152;2145:12;2109:50;2178;2220:7;2211:6;2200:9;2196:22;2178:50;:::i;2239:258::-;2311:1;2321:113;2335:6;2332:1;2329:13;2321:113;;;2411:11;;;2405:18;2392:11;;;2385:39;2357:2;2350:10;2321:113;;;2452:6;2449:1;2446:13;2443:48;;;-1:-1:-1;;2487:1:18;2469:16;;2462:27;2239:258::o;2502:317::-;2544:3;2582:5;2576:12;2609:6;2604:3;2597:19;2625:63;2681:6;2674:4;2669:3;2665:14;2658:4;2651:5;2647:16;2625:63;:::i;:::-;2733:2;2721:15;2738:66;2717:88;2708:98;;;;2808:4;2704:109;;2502:317;-1:-1:-1;;2502:317:18:o;2824:220::-;2973:2;2962:9;2955:21;2936:4;2993:45;3034:2;3023:9;3019:18;3011:6;2993:45;:::i;3049:180::-;3108:6;3161:2;3149:9;3140:7;3136:23;3132:32;3129:52;;;3177:1;3174;3167:12;3129:52;-1:-1:-1;3200:23:18;;3049:180;-1:-1:-1;3049:180:18:o;3465:154::-;3551:42;3544:5;3540:54;3533:5;3530:65;3520:93;;3609:1;3606;3599:12;3624:315;3692:6;3700;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:31;3852:5;3827:31;:::i;:::-;3877:5;3929:2;3914:18;;;;3901:32;;-1:-1:-1;;;3624:315:18:o;4126:255::-;4193:6;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4301:9;4288:23;4320:31;4345:5;4320:31;:::i;4386:456::-;4463:6;4471;4479;4532:2;4520:9;4511:7;4507:23;4503:32;4500:52;;;4548:1;4545;4538:12;4500:52;4587:9;4574:23;4606:31;4631:5;4606:31;:::i;:::-;4656:5;-1:-1:-1;4713:2:18;4698:18;;4685:32;4726:33;4685:32;4726:33;:::i;:::-;4386:456;;4778:7;;-1:-1:-1;;;4832:2:18;4817:18;;;;4804:32;;4386:456::o;4847:542::-;4934:6;4942;4995:2;4983:9;4974:7;4970:23;4966:32;4963:52;;;5011:1;5008;5001:12;4963:52;5051:9;5038:23;5080:18;5121:2;5113:6;5110:14;5107:34;;;5137:1;5134;5127:12;5107:34;5160:50;5202:7;5193:6;5182:9;5178:22;5160:50;:::i;:::-;5150:60;;5263:2;5252:9;5248:18;5235:32;5219:48;;5292:2;5282:8;5279:16;5276:36;;;5308:1;5305;5298:12;5276:36;;5331:52;5375:7;5364:8;5353:9;5349:24;5331:52;:::i;:::-;5321:62;;;4847:542;;;;;:::o;5646:632::-;5817:2;5869:21;;;5939:13;;5842:18;;;5961:22;;;5788:4;;5817:2;6040:15;;;;6014:2;5999:18;;;5788:4;6083:169;6097:6;6094:1;6091:13;6083:169;;;6158:13;;6146:26;;6227:15;;;;6192:12;;;;6119:1;6112:9;6083:169;;;-1:-1:-1;6269:3:18;;5646:632;-1:-1:-1;;;;;;5646:632:18:o;6283:160::-;6348:20;;6404:13;;6397:21;6387:32;;6377:60;;6433:1;6430;6423:12;6377:60;6283:160;;;:::o;6448:180::-;6504:6;6557:2;6545:9;6536:7;6532:23;6528:32;6525:52;;;6573:1;6570;6563:12;6525:52;6596:26;6612:9;6596:26;:::i;6633:610::-;6729:6;6737;6745;6798:2;6786:9;6777:7;6773:23;6769:32;6766:52;;;6814:1;6811;6804:12;6766:52;6850:9;6837:23;6827:33;;6911:2;6900:9;6896:18;6883:32;6934:18;6975:2;6967:6;6964:14;6961:34;;;6991:1;6988;6981:12;6961:34;7014:50;7056:7;7047:6;7036:9;7032:22;7014:50;:::i;:::-;7004:60;;7117:2;7106:9;7102:18;7089:32;7073:48;;7146:2;7136:8;7133:16;7130:36;;;7162:1;7159;7152:12;7130:36;;7185:52;7229:7;7218:8;7207:9;7203:24;7185:52;:::i;:::-;7175:62;;;6633:610;;;;;:::o;7248:367::-;7311:8;7321:6;7375:3;7368:4;7360:6;7356:17;7352:27;7342:55;;7393:1;7390;7383:12;7342:55;-1:-1:-1;7416:20:18;;7459:18;7448:30;;7445:50;;;7491:1;7488;7481:12;7445:50;7528:4;7520:6;7516:17;7504:29;;7588:3;7581:4;7571:6;7568:1;7564:14;7556:6;7552:27;7548:38;7545:47;7542:67;;;7605:1;7602;7595:12;7620:773;7742:6;7750;7758;7766;7819:2;7807:9;7798:7;7794:23;7790:32;7787:52;;;7835:1;7832;7825:12;7787:52;7875:9;7862:23;7904:18;7945:2;7937:6;7934:14;7931:34;;;7961:1;7958;7951:12;7931:34;8000:70;8062:7;8053:6;8042:9;8038:22;8000:70;:::i;:::-;8089:8;;-1:-1:-1;7974:96:18;-1:-1:-1;8177:2:18;8162:18;;8149:32;;-1:-1:-1;8193:16:18;;;8190:36;;;8222:1;8219;8212:12;8190:36;;8261:72;8325:7;8314:8;8303:9;8299:24;8261:72;:::i;:::-;7620:773;;;;-1:-1:-1;8352:8:18;-1:-1:-1;;;;7620:773:18:o;8398:315::-;8463:6;8471;8524:2;8512:9;8503:7;8499:23;8495:32;8492:52;;;8540:1;8537;8530:12;8492:52;8579:9;8566:23;8598:31;8623:5;8598:31;:::i;:::-;8648:5;-1:-1:-1;8672:35:18;8703:2;8688:18;;8672:35;:::i;:::-;8662:45;;8398:315;;;;;:::o;8718:666::-;8813:6;8821;8829;8837;8890:3;8878:9;8869:7;8865:23;8861:33;8858:53;;;8907:1;8904;8897:12;8858:53;8946:9;8933:23;8965:31;8990:5;8965:31;:::i;:::-;9015:5;-1:-1:-1;9072:2:18;9057:18;;9044:32;9085:33;9044:32;9085:33;:::i;:::-;9137:7;-1:-1:-1;9191:2:18;9176:18;;9163:32;;-1:-1:-1;9246:2:18;9231:18;;9218:32;9273:18;9262:30;;9259:50;;;9305:1;9302;9295:12;9259:50;9328;9370:7;9361:6;9350:9;9346:22;9328:50;:::i;:::-;9318:60;;;8718:666;;;;;;;:::o;9389:388::-;9457:6;9465;9518:2;9506:9;9497:7;9493:23;9489:32;9486:52;;;9534:1;9531;9524:12;9486:52;9573:9;9560:23;9592:31;9617:5;9592:31;:::i;:::-;9642:5;-1:-1:-1;9699:2:18;9684:18;;9671:32;9712:33;9671:32;9712:33;:::i;:::-;9764:7;9754:17;;;9389:388;;;;;:::o;10143:437::-;10222:1;10218:12;;;;10265;;;10286:61;;10340:4;10332:6;10328:17;10318:27;;10286:61;10393:2;10385:6;10382:14;10362:18;10359:38;10356:218;;;10430:77;10427:1;10420:88;10531:4;10528:1;10521:15;10559:4;10556:1;10549:15;10356:218;;10143:437;;;:::o;12232:184::-;12284:77;12281:1;12274:88;12381:4;12378:1;12371:15;12405:4;12402:1;12395:15;12421:128;12461:3;12492:1;12488:6;12485:1;12482:13;12479:39;;;12498:18;;:::i;:::-;-1:-1:-1;12534:9:18;;12421:128::o;12554:228::-;12594:7;12720:1;12652:66;12648:74;12645:1;12642:81;12637:1;12630:9;12623:17;12619:105;12616:131;;;12727:18;;:::i;:::-;-1:-1:-1;12767:9:18;;12554:228::o;12787:184::-;12839:77;12836:1;12829:88;12936:4;12933:1;12926:15;12960:4;12957:1;12950:15;12976:120;13016:1;13042;13032:35;;13047:18;;:::i;:::-;-1:-1:-1;13081:9:18;;12976:120::o;13101:125::-;13141:4;13169:1;13166;13163:8;13160:34;;;13174:18;;:::i;:::-;-1:-1:-1;13211:9:18;;13101:125::o;14722:184::-;14774:77;14771:1;14764:88;14871:4;14868:1;14861:15;14895:4;14892:1;14885:15;14911:195;14950:3;14981:66;14974:5;14971:77;14968:103;;;15051:18;;:::i;:::-;-1:-1:-1;15098:1:18;15087:13;;14911:195::o;19264:470::-;19443:3;19481:6;19475:13;19497:53;19543:6;19538:3;19531:4;19523:6;19519:17;19497:53;:::i;:::-;19613:13;;19572:16;;;;19635:57;19613:13;19572:16;19669:4;19657:17;;19635:57;:::i;:::-;19708:20;;19264:470;-1:-1:-1;;;;19264:470:18:o;22932:112::-;22964:1;22990;22980:35;;22995:18;;:::i;:::-;-1:-1:-1;23029:9:18;;22932:112::o;24020:512::-;24214:4;24243:42;24324:2;24316:6;24312:15;24301:9;24294:34;24376:2;24368:6;24364:15;24359:2;24348:9;24344:18;24337:43;;24416:6;24411:2;24400:9;24396:18;24389:34;24459:3;24454:2;24443:9;24439:18;24432:31;24480:46;24521:3;24510:9;24506:19;24498:6;24480:46;:::i;:::-;24472:54;24020:512;-1:-1:-1;;;;;;24020:512:18:o;24537:249::-;24606:6;24659:2;24647:9;24638:7;24634:23;24630:32;24627:52;;;24675:1;24672;24665:12;24627:52;24707:9;24701:16;24726:30;24750:5;24726:30;:::i;24791:184::-;24843:77;24840:1;24833:88;24940:4;24937:1;24930:15;24964:4;24961:1;24954:15
Swarm Source
ipfs://1dda6f0a9d6ca4fb75aee1c4624a5d28f480abccc456c6dceb6108b222b78097
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.