ERC-721
NFT
Overview
Max Total Supply
2,022 EMT
Holders
951
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 EMTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ELEMENTAL
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 ELEMENTAL is ERC721A, EIP712, Ownable, Payment { using Strings for uint256; string public baseURI; //starting ipfs hash to be changed using chainlink VRF (https://ipfs.io/ipfs/QmVqHFqSgw9kKLDZfcjGs5WGg1dtrQVzagX2kLgMfY2YfX/) string public constant ipfs = "QmVqHFqSgw9kKLDZfcjGs5WGg1dtrQVzagX2kLgMfY2YfX"; //signature string private constant SINGING_DOMAIN = "ELEMENTAL"; string private constant SIGNATURE_VERSION = "1"; //settings uint256 public maxSupply = 2022; bool public OGStatus = false; bool public allowlistStatus = false; bool public publicStatus = false; uint256 private priceOG = 0.2 ether; uint256 private priceAllowlist = 0.2 ether; uint256 private pricePublic = 0.3 ether; uint256 public maxMintPerTxOG = 2; uint256 public maxMintPerTxAllowlist = 1; uint256 public maxMintPerTxPublic = 3; uint256 public maxMintPerWalletOG = 2; uint256 public maxMintPerWalletAllowlist = 1; uint256 public maxMintPerWalletPublic = 3; //mappings mapping(address => uint256) private mintCountMapOG; mapping(address => uint256) private mintCountMapAllowlist; mapping(address => uint256) private mintCountMapPublic; mapping(address => uint256) private allowedMintCountMapOG; mapping(address => uint256) private allowedMintCountMapAllowlist; mapping(address => uint256) private allowedMintCountMapPublic; //shares address[] private addressList = [ 0xb1270a3D1F50440B32d62D088Aa30556Dcc8F950, 0x41Fb9227c703086B2d908E177A692EdCD3d7DE2C, 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5 ]; uint[] private shareList = [70, 25, 5]; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) Payment(addressList, shareList) { setURI(_initBaseURI); } function mintOG(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(OGStatus,"OG sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(_tokenAmount <= maxMintPerTxOG, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= priceOG * _tokenAmount, "ETH input is wrong"); require(allowedMintCountOG(msg.sender) >= _tokenAmount,"You minted too many"); require(tx.origin == msg.sender); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; updateMintCountOG(msg.sender, _tokenAmount); } function mintAllowlist(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(allowlistStatus,"Allowlist sale is not active"); require(_tokenAmount > 0, "Mint more than 0" ); require(_tokenAmount <= maxMintPerTxAllowlist, "Mint less"); require( s + _tokenAmount <= maxSupply, "Mint less"); require(msg.value >= priceOG * _tokenAmount, "ETH input is wrong"); require(allowedMintCountAllowlist(msg.sender) >= _tokenAmount,"You minted too many"); require(tx.origin == msg.sender); for (uint256 i = 0; i < _tokenAmount; ++i) { _safeMint(msg.sender, s + i, ""); } delete s; updateMintCountAllowlist(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 >= pricePublic * _tokenAmount, "ETH input is wrong"); require(allowedMintCountPublic(msg.sender) >= _tokenAmount,"You minted too many"); require(tx.origin == msg.sender); 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)) ))); } //allow list + max per wallet counters function allowedMintCountOG(address minter) public view returns (uint256) { return maxMintPerWalletOG - mintCountMapOG[minter]; } function allowedMintCountAllowlist(address minter) public view returns (uint256) { return maxMintPerWalletAllowlist - mintCountMapAllowlist[minter]; } function allowedMintCountPublic(address minter) public view returns (uint256) { return maxMintPerWalletPublic - mintCountMapPublic[minter]; } function updateMintCountOG(address minter, uint256 count) private { mintCountMapOG[minter] += count; } function updateMintCountAllowlist(address minter, uint256 count) private { mintCountMapAllowlist[minter] += count; } function updateMintCountPublic(address minter, uint256 count) private { mintCountMapPublic[minter] += count; } //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())) : ""; } //price switch function setPriceOG(uint256 _newPrice) public onlyOwner { priceOG = _newPrice; } function setPriceAllowlist(uint256 _newPrice) public onlyOwner { priceAllowlist = _newPrice; } function setPricePublic(uint256 _newPrice) public onlyOwner { pricePublic = _newPrice; } //max switch function setMaxPerTxAllowlist(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxAllowlist = _newMaxMintAmount; } function setMaxPerTxOG(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxOG = _newMaxMintAmount; } function setMaxPerTxPublic(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerTxPublic = _newMaxMintAmount; } //max switch function setMaxPerWalletOG(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletOG = _newMaxMintAmount; } function setMaxPerWalletAllowlist(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletAllowlist = _newMaxMintAmount; } function setMaxPerWalletPublic(uint256 _newMaxMintAmount) public onlyOwner { maxMintPerWalletPublic = _newMaxMintAmount; } //onoff switch function setOG(bool _wlstatus) public onlyOwner { OGStatus = _wlstatus; } function setAllowlist(bool _wlstatus) public onlyOwner { allowlistStatus = _wlstatus; } function setP(bool _pstatus) public onlyOwner { publicStatus = _pstatus; } //write metadata function setURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } }
// 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":[],"name":"OGStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"ipfs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWalletAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWalletOG","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintAllowlist","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":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"_wlstatus","type":"bool"}],"name":"setAllowlist","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":"setMaxPerTxAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerTxOG","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":"setMaxPerWalletAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wlstatus","type":"bool"}],"name":"setOG","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":"setPriceAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6107e6600c55600d805462ffffff191690556702c68af0bb140000600e819055600f55670429d069189e000060105560026011819055600160128190556003601381905560149290925560155560168190556101a060405273b1270a3d1f50440b32d62d088aa30556dcc8f9506101409081527341fb9227c703086b2d908e177a692edcd3d7de2c6101605273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b561018052620000b391601d9190620006cf565b50604080516060810182526046815260196020820152600591810191909152620000e290601e90600362000739565b50348015620000f057600080fd5b5060405162005033380380620050338339810160408190526200011391620008dd565b601d8054806020026020016040519081016040528092919081815260200182805480156200016b57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200014c575b5050505050601e805480602002602001604051908101604052809291908181526020018280548015620001be57602002820191906000526020600020905b815481526020019060010190808311620001a9575b50505050506040518060400160405280600981526020016811531153515395105360ba1b815250604051806040016040528060018152602001603160f81b81525086868160009080519060200190620002199291906200077c565b5080516200022f9060019060208401906200077c565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c0948501909152815191909601209052929092526101205250620002cc336200041a565b80518251146200033e5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003915760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000335565b60005b8251811015620003fd57620003e8838281518110620003b757620003b76200096e565b6020026020010151838381518110620003d457620003d46200096e565b60200260200101516200046c60201b60201c565b80620003f4816200099a565b91505062000394565b50505062000411816200065a60201b60201c565b50505062000a10565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004d95760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000335565b600081116200052b5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000335565b6001600160a01b03821660009081526008602052604090205415620005a75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000335565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038416908117909155600090815260086020526040902081905560065462000611908290620009b8565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620006b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000335565b8051620006cb90600b9060208401906200077c565b5050565b82805482825590600052602060002090810192821562000727579160200282015b828111156200072757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006f0565b5062000735929150620007f9565b5090565b82805482825590600052602060002090810192821562000727579160200282015b8281111562000727578251829060ff169055916020019190600101906200075a565b8280546200078a90620009d3565b90600052602060002090601f016020900481019282620007ae576000855562000727565b82601f10620007c957805160ff191683800117855562000727565b8280016001018555821562000727579182015b8281111562000727578251825591602001919060010190620007dc565b5b80821115620007355760008155600101620007fa565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200083857600080fd5b81516001600160401b038082111562000855576200085562000810565b604051601f8301601f19908116603f0116810190828211818310171562000880576200088062000810565b816040528381526020925086838588010111156200089d57600080fd5b600091505b83821015620008c15785820183015181830184015290820190620008a2565b83821115620008d35760008385830101525b9695505050505050565b600080600060608486031215620008f357600080fd5b83516001600160401b03808211156200090b57600080fd5b620009198783880162000826565b945060208601519150808211156200093057600080fd5b6200093e8783880162000826565b935060408601519150808211156200095557600080fd5b50620009648682870162000826565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620009b157620009b162000984565b5060010190565b60008219821115620009ce57620009ce62000984565b500190565b600181811c90821680620009e857607f821691505b6020821081141562000a0a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516145d362000a606000396000613aee01526000613b3d01526000613b1801526000613a7101526000613a9b01526000613ac501526145d36000f3fe6080604052600436106103905760003560e01c80638da5cb5b116101dc578063cffec33811610102578063e72b29de116100a0578063f452472e1161006f578063f452472e14610af3578063f55df94e14610b13578063f91798b114610b33578063f98f51c114610b5357600080fd5b8063e72b29de14610a50578063e985e9c514610a6a578063efd0cbf914610ac0578063f2fde38b14610ad357600080fd5b8063d7959cf9116100dc578063d7959cf9146109f0578063dd0d1bbc14610a05578063e1fcd70714610a25578063e33b7de314610a3b57600080fd5b8063cffec3381461099a578063d5abeb01146109ba578063d6289983146109d057600080fd5b80639b5eceb91161017a578063ac9384b911610149578063ac9384b914610901578063b88d4fde14610917578063c87b56dd14610937578063ce7c2ac21461095757600080fd5b80639b5eceb91461088b5780639fbd756f146108a1578063a22cb465146108c1578063a3237827146108e157600080fd5b806396ea3a47116101b657806396ea3a47146107fc578063974610851461081c5780639852595c1461083257806399edbb4d1461087557600080fd5b80638da5cb5b1461079c57806395d89b41146107c75780639619c3bc146107dc57600080fd5b80633a98ef39116102c15780636c0360eb1161025f5780638462151c1161022e5780638462151c1461070f57806384a303d61461073c5780638b533ea41461075c5780638b83209b1461077c57600080fd5b80636c0360eb146106af57806370a08231146106c4578063715018a6146106e4578063812a4a41146106f957600080fd5b806348808c101161029b57806348808c101461062f5780634f6ccce71461064f5780635ad1c1b51461066f5780636352211e1461068f57600080fd5b80633a98ef39146105da57806342842e0e146105ef5780634530a8321461060f57600080fd5b8063191655871161032e57806325a8a88e1161030857806325a8a88e146105675780632f745c591461058757806334b1d403146105a757806334c2076b146105c757600080fd5b8063191655871461050857806323b872dd14610528578063242337fd1461054857600080fd5b8063081812fc1161036a578063081812fc14610464578063095ea7b3146104a957806312d71894146104c957806318160ddd146104e957600080fd5b806301ffc9a7146103eb57806302fe53051461042057806306fdde031461044257600080fd5b366103e6577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103f757600080fd5b5061040b610406366004613db3565b610b66565b60405190151581526020015b60405180910390f35b34801561042c57600080fd5b5061044061043b366004613eaa565b610bc2565b005b34801561044e57600080fd5b50610457610c45565b6040516104179190613f55565b34801561047057600080fd5b5061048461047f366004613f68565b610cd7565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610417565b3480156104b557600080fd5b506104406104c4366004613fa3565b610d7d565b3480156104d557600080fd5b506104406104e4366004613f68565b610ed6565b3480156104f557600080fd5b506002545b604051908152602001610417565b34801561051457600080fd5b50610440610523366004613fcf565b610f42565b34801561053457600080fd5b50610440610543366004613fec565b61117d565b34801561055457600080fd5b50600d5461040b90610100900460ff1681565b34801561057357600080fd5b50610440610582366004614042565b611204565b34801561059357600080fd5b506104fa6105a2366004613fa3565b61129c565b3480156105b357600080fd5b506104406105c2366004613f68565b6113b8565b6104406105d536600461405d565b611424565b3480156105e657600080fd5b506006546104fa565b3480156105fb57600080fd5b5061044061060a366004613fec565b611702565b34801561061b57600080fd5b5061044061062a366004613f68565b61171d565b34801561063b57600080fd5b5061048461064a3660046140ca565b611789565b34801561065b57600080fd5b506104fa61066a366004613f68565b61179c565b34801561067b57600080fd5b5061044061068a366004614042565b6117f9565b34801561069b57600080fd5b506104846106aa366004613f68565b611897565b3480156106bb57600080fd5b50610457611944565b3480156106d057600080fd5b506104fa6106df366004613fcf565b6119d2565b3480156106f057600080fd5b50610440611ad1565b34801561070557600080fd5b506104fa60155481565b34801561071b57600080fd5b5061072f61072a366004613fcf565b611b44565b604051610417919061412e565b34801561074857600080fd5b50610440610757366004614042565b611c3e565b34801561076857600080fd5b50610440610777366004613f68565b611cdd565b34801561078857600080fd5b50610484610797366004613f68565b611d49565b3480156107a857600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610484565b3480156107d357600080fd5b50610457611d86565b3480156107e857600080fd5b506104fa6107f7366004613fcf565b611d95565b34801561080857600080fd5b506104406108173660046141b7565b611dc8565b34801561082857600080fd5b506104fa60125481565b34801561083e57600080fd5b506104fa61084d366004613fcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561088157600080fd5b506104fa60115481565b34801561089757600080fd5b506104fa60145481565b3480156108ad57600080fd5b506104fa6108bc366004613fcf565b611f8d565b3480156108cd57600080fd5b506104406108dc366004614223565b611fc0565b3480156108ed57600080fd5b506104406108fc366004613f68565b6120bd565b34801561090d57600080fd5b506104fa60135481565b34801561092357600080fd5b50610440610932366004614258565b612129565b34801561094357600080fd5b50610457610952366004613f68565b6121b1565b34801561096357600080fd5b506104fa610972366004613fcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156109a657600080fd5b506104406109b5366004613f68565b61221d565b3480156109c657600080fd5b506104fa600c5481565b3480156109dc57600080fd5b506104406109eb366004613f68565b612289565b3480156109fc57600080fd5b506104576122f5565b348015610a1157600080fd5b506104fa610a20366004613fcf565b612311565b348015610a3157600080fd5b506104fa60165481565b348015610a4757600080fd5b506007546104fa565b348015610a5c57600080fd5b50600d5461040b9060ff1681565b348015610a7657600080fd5b5061040b610a853660046142c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b610440610ace366004613f68565b612344565b348015610adf57600080fd5b50610440610aee366004613fcf565b6125a0565b348015610aff57600080fd5b50610440610b0e366004613f68565b61269c565b348015610b1f57600080fd5b50610440610b2e366004613f68565b612708565b348015610b3f57600080fd5b50600d5461040b9062010000900460ff1681565b610440610b6136600461405d565b612774565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bbc5750610bbc82612a3c565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610c4190600b906020840190613cf5565b5050565b606060008054610c54906142fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c80906142fd565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905090565b6000610ce282612b1f565b610d545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c25565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610d8882611897565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e555750610e558133610a85565b610ec75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c25565b610ed18383612b83565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600e55565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610fda5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610c25565b600060075447610fea9190614380565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261102e9085614398565b6110389190614404565b6110429190614418565b9050806110b75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960205260409020546110e8908290614380565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461111c908290614380565b6007556111298382612c23565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6111873382612d49565b6111f95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c25565b610ed1838383612e85565b60055473ffffffffffffffffffffffffffffffffffffffff16331461126b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006112a7836119d2565b82106112f55760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b6000805b60025481101561136f57600281815481106113165761131661442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561135f5783821415611353579150610bbc9050565b61135c8261445e565b91505b6113688161445e565b90506112f9565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b60055473ffffffffffffffffffffffffffffffffffffffff16331461141f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601555565b600061142f60025490565b90503361143c8484611789565b73ffffffffffffffffffffffffffffffffffffffff161461149f5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610c25565b600d5460ff166114f15760405162461bcd60e51b815260206004820152601560248201527f4f472073616c65206973206e6f742061637469766500000000000000000000006044820152606401610c25565b600084116115415760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b6011548411156115935760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546115a08583614380565b11156115ee5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b83600e546115fc9190614398565b34101561164b5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b8361165533611f8d565b10156116a35760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b3233146116af57600080fd5b60005b848110156116ed576116dd336116c88385614380565b60405180602001604052806000815250613054565b6116e68161445e565b90506116b2565b50600090506116fc33856130dd565b50505050565b610ed183838360405180602001604052806000815250612129565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601055565b6000611795838361311b565b9392505050565b60006117a760025490565b82106117f55760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610c25565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600080600283815481106118ad576118ad61442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bbc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c25565b600b8054611951906142fd565b80601f016020809104026020016040519081016040528092919081815260200182805461197d906142fd565b80156119ca5780601f1061199f576101008083540402835291602001916119ca565b820191906000526020600020905b8154815290600101906020018083116119ad57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611a5d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c25565b600254600090815b81811015611ac85760028181548110611a8057611a8061442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611ab857611ab58361445e565b92505b611ac18161445e565b9050611a65565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b611b426000613133565b565b6060611b4f826119d2565b600010611b9e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b6000611ba9836119d2565b905060008167ffffffffffffffff811115611bc657611bc6613dd0565b604051908082528060200260200182016040528015611bef578160200160208202803683370190505b50905060005b82811015611c3657611c07858261129c565b828281518110611c1957611c1961442f565b602090810291909101015280611c2e8161445e565b915050611bf5565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ca55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601655565b6000600a8281548110611d5e57611d5e61442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b606060018054610c54906142fd565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260186020526040812054601554610bbc9190614418565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b828114611e3b57600080fd5b600080611e4760025490565b905060005b85811015611e8a57868682818110611e6657611e6661442f565b9050602002013583611e789190614380565b9250611e838161445e565b9050611e4c565b50600c54611e988383614380565b1115611ee65760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610c25565b6000915060005b83811015611f845760005b878783818110611f0a57611f0a61442f565b90506020020135811015611f7357611f63868684818110611f2d57611f2d61442f565b9050602002016020810190611f429190613fcf565b84611f4c8161445e565b955060405180602001604052806000815250613054565b611f6c8161445e565b9050611ef8565b50611f7d8161445e565b9050611eed565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260176020526040812054601454610bbc9190614418565b73ffffffffffffffffffffffffffffffffffffffff82163314156120265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c25565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601455565b6121333383612d49565b6121a55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c25565b6116fc848484846131aa565b6060600c548211156121c257600080fd5b60006121cc613233565b905060008151116121ec5760405180602001604052806000815250611795565b806121f684613242565b604051602001612207929190614497565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601255565b6040518060600160405280602e8152602001614570602e913981565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260196020526040812054601654610bbc9190614418565b600061234f60025490565b600d5490915062010000900460ff166123aa5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610c25565b600082116123fa5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b60135482111561244c5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546124598383614380565b11156124a75760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b816010546124b59190614398565b3410156125045760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b8161250e33612311565b101561255c5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b32331461256857600080fd5b60005b8281101561259157612581336116c88385614380565b61258a8161445e565b905061256b565b5060009050610c413383613374565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b73ffffffffffffffffffffffffffffffffffffffff81166126905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c25565b61269981613133565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601355565b60055473ffffffffffffffffffffffffffffffffffffffff16331461276f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600f55565b600061277f60025490565b90503361278c8484611789565b73ffffffffffffffffffffffffffffffffffffffff16146127ef5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610c25565b600d54610100900460ff166128465760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c6973742073616c65206973206e6f7420616374697665000000006044820152606401610c25565b600084116128965760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b6012548411156128e85760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546128f58583614380565b11156129435760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b83600e546129519190614398565b3410156129a05760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b836129aa33611d95565b10156129f85760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b323314612a0457600080fd5b60005b84811015612a2d57612a1d336116c88385614380565b612a268161445e565b9050612a07565b50600090506116fc33856133a9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612acf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bbc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bbc565b60025460009082108015610bbc5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612b5957612b5961442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612bdd82611897565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612c735760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c25565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612ccd576040519150601f19603f3d011682016040523d82523d6000602084013e612cd2565b606091505b5050905080610ed15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c25565b6000612d5482612b1f565b612dc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c25565b6000612dd183611897565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e4057508373ffffffffffffffffffffffffffffffffffffffff16612e2884610cd7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7d575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea582611897565b73ffffffffffffffffffffffffffffffffffffffff1614612f2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff8216612fb65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c25565b612fc1600082612b83565b8160028281548110612fd557612fd561442f565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61305e83836133de565b61306b6000848484613538565b610ed15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604081208054839290613112908490614380565b90915550505050565b6000806131278461370e565b9050612e7d8184613771565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6131b5848484612e85565b6131c184848484613538565b6116fc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b6060600b8054610c54906142fd565b60608161328257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132ac57806132968161445e565b91506132a59050600a83614404565b9150613286565b60008167ffffffffffffffff8111156132c7576132c7613dd0565b6040519080825280601f01601f1916602001820160405280156132f1576020820181803683370190505b5090505b8415612e7d57613306600183614418565b9150613313600a866144c6565b61331e906030614380565b60f81b8183815181106133335761333361442f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061336d600a86614404565b94506132f5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604081208054839290613112908490614380565b73ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604081208054839290613112908490614380565b73ffffffffffffffffffffffffffffffffffffffff82166134415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c25565b61344a81612b1f565b156134975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c25565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613703576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906135af9033908990889088906004016144da565b6020604051808303816000875af1925050508015613608575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261360591810190614523565b60015b6136b8573d808015613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b5080516136b05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e7d565b506001949350505050565b6000610bbc7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001613756929190918252602082015260400190565b6040516020818303038152906040528051906020012061378d565b600080600061378085856137f6565b91509150611c3681613866565b6000610bbc61379a613a57565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561382d5760208301516040840151606085015160001a61382187828585613b8b565b9450945050505061385f565b825160401415613857576020830151604084015161384c868383613ca3565b93509350505061385f565b506000905060025b9250929050565b600081600481111561387a5761387a614540565b14156138835750565b600181600481111561389757613897614540565b14156138e55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c25565b60028160048111156138f9576138f9614540565b14156139475760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c25565b600381600481111561395b5761395b614540565b14156139cf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b60048160048111156139e3576139e3614540565b14156126995760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016148015613abd57507f000000000000000000000000000000000000000000000000000000000000000046145b15613ae757507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613bc25750600090506003613c9a565b8460ff16601b14158015613bda57508460ff16601c14155b15613beb5750600090506004613c9a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613c3f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116613c9357600060019250925050613c9a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613cd960ff86901c601b614380565b9050613ce787828885613b8b565b935093505050935093915050565b828054613d01906142fd565b90600052602060002090601f016020900481019282613d235760008555613d69565b82601f10613d3c57805160ff1916838001178555613d69565b82800160010185558215613d69579182015b82811115613d69578251825591602001919060010190613d4e565b506117f59291505b808211156117f55760008155600101613d71565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461269957600080fd5b600060208284031215613dc557600080fd5b813561179581613d85565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613e1057600080fd5b813567ffffffffffffffff80821115613e2b57613e2b613dd0565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613e7157613e71613dd0565b81604052838152866020858801011115613e8a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215613ebc57600080fd5b813567ffffffffffffffff811115613ed357600080fd5b612e7d84828501613dff565b60005b83811015613efa578181015183820152602001613ee2565b838111156116fc5750506000910152565b60008151808452613f23816020860160208601613edf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117956020830184613f0b565b600060208284031215613f7a57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461269957600080fd5b60008060408385031215613fb657600080fd5b8235613fc181613f81565b946020939093013593505050565b600060208284031215613fe157600080fd5b813561179581613f81565b60008060006060848603121561400157600080fd5b833561400c81613f81565b9250602084013561401c81613f81565b929592945050506040919091013590565b8035801515811461403d57600080fd5b919050565b60006020828403121561405457600080fd5b6117958261402d565b60008060006060848603121561407257600080fd5b83359250602084013567ffffffffffffffff8082111561409157600080fd5b61409d87838801613dff565b935060408601359150808211156140b357600080fd5b506140c086828701613dff565b9150509250925092565b600080604083850312156140dd57600080fd5b823567ffffffffffffffff808211156140f557600080fd5b61410186838701613dff565b9350602085013591508082111561411757600080fd5b5061412485828601613dff565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156141665783518352928401929184019160010161414a565b50909695505050505050565b60008083601f84011261418457600080fd5b50813567ffffffffffffffff81111561419c57600080fd5b6020830191508360208260051b850101111561385f57600080fd5b600080600080604085870312156141cd57600080fd5b843567ffffffffffffffff808211156141e557600080fd5b6141f188838901614172565b9096509450602087013591508082111561420a57600080fd5b5061421787828801614172565b95989497509550505050565b6000806040838503121561423657600080fd5b823561424181613f81565b915061424f6020840161402d565b90509250929050565b6000806000806080858703121561426e57600080fd5b843561427981613f81565b9350602085013561428981613f81565b925060408501359150606085013567ffffffffffffffff8111156142ac57600080fd5b6142b887828801613dff565b91505092959194509250565b600080604083850312156142d757600080fd5b82356142e281613f81565b915060208301356142f281613f81565b809150509250929050565b600181811c9082168061431157607f821691505b6020821081141561434b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561439357614393614351565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143d0576143d0614351565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614413576144136143d5565b500490565b60008282101561442a5761442a614351565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449057614490614351565b5060010190565b600083516144a9818460208801613edf565b8351908301906144bd818360208801613edf565b01949350505050565b6000826144d5576144d56143d5565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526145196080830184613f0b565b9695505050505050565b60006020828403121561453557600080fd5b815161179581613d85565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfe516d5671484671536777396b4b4c445a66636a4773355747673164747251567a616758326b4c674d665932596658a26469706673582212205b108cd996ac70ff6968a61506de080ef22453ffd736219fc52e98814282839164736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009456c656d656e74616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454d540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d61516a786771767a786167533951784c6f474e51756a7677716a7135506f72545a50446636737a51597578782f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103905760003560e01c80638da5cb5b116101dc578063cffec33811610102578063e72b29de116100a0578063f452472e1161006f578063f452472e14610af3578063f55df94e14610b13578063f91798b114610b33578063f98f51c114610b5357600080fd5b8063e72b29de14610a50578063e985e9c514610a6a578063efd0cbf914610ac0578063f2fde38b14610ad357600080fd5b8063d7959cf9116100dc578063d7959cf9146109f0578063dd0d1bbc14610a05578063e1fcd70714610a25578063e33b7de314610a3b57600080fd5b8063cffec3381461099a578063d5abeb01146109ba578063d6289983146109d057600080fd5b80639b5eceb91161017a578063ac9384b911610149578063ac9384b914610901578063b88d4fde14610917578063c87b56dd14610937578063ce7c2ac21461095757600080fd5b80639b5eceb91461088b5780639fbd756f146108a1578063a22cb465146108c1578063a3237827146108e157600080fd5b806396ea3a47116101b657806396ea3a47146107fc578063974610851461081c5780639852595c1461083257806399edbb4d1461087557600080fd5b80638da5cb5b1461079c57806395d89b41146107c75780639619c3bc146107dc57600080fd5b80633a98ef39116102c15780636c0360eb1161025f5780638462151c1161022e5780638462151c1461070f57806384a303d61461073c5780638b533ea41461075c5780638b83209b1461077c57600080fd5b80636c0360eb146106af57806370a08231146106c4578063715018a6146106e4578063812a4a41146106f957600080fd5b806348808c101161029b57806348808c101461062f5780634f6ccce71461064f5780635ad1c1b51461066f5780636352211e1461068f57600080fd5b80633a98ef39146105da57806342842e0e146105ef5780634530a8321461060f57600080fd5b8063191655871161032e57806325a8a88e1161030857806325a8a88e146105675780632f745c591461058757806334b1d403146105a757806334c2076b146105c757600080fd5b8063191655871461050857806323b872dd14610528578063242337fd1461054857600080fd5b8063081812fc1161036a578063081812fc14610464578063095ea7b3146104a957806312d71894146104c957806318160ddd146104e957600080fd5b806301ffc9a7146103eb57806302fe53051461042057806306fdde031461044257600080fd5b366103e6577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103f757600080fd5b5061040b610406366004613db3565b610b66565b60405190151581526020015b60405180910390f35b34801561042c57600080fd5b5061044061043b366004613eaa565b610bc2565b005b34801561044e57600080fd5b50610457610c45565b6040516104179190613f55565b34801561047057600080fd5b5061048461047f366004613f68565b610cd7565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610417565b3480156104b557600080fd5b506104406104c4366004613fa3565b610d7d565b3480156104d557600080fd5b506104406104e4366004613f68565b610ed6565b3480156104f557600080fd5b506002545b604051908152602001610417565b34801561051457600080fd5b50610440610523366004613fcf565b610f42565b34801561053457600080fd5b50610440610543366004613fec565b61117d565b34801561055457600080fd5b50600d5461040b90610100900460ff1681565b34801561057357600080fd5b50610440610582366004614042565b611204565b34801561059357600080fd5b506104fa6105a2366004613fa3565b61129c565b3480156105b357600080fd5b506104406105c2366004613f68565b6113b8565b6104406105d536600461405d565b611424565b3480156105e657600080fd5b506006546104fa565b3480156105fb57600080fd5b5061044061060a366004613fec565b611702565b34801561061b57600080fd5b5061044061062a366004613f68565b61171d565b34801561063b57600080fd5b5061048461064a3660046140ca565b611789565b34801561065b57600080fd5b506104fa61066a366004613f68565b61179c565b34801561067b57600080fd5b5061044061068a366004614042565b6117f9565b34801561069b57600080fd5b506104846106aa366004613f68565b611897565b3480156106bb57600080fd5b50610457611944565b3480156106d057600080fd5b506104fa6106df366004613fcf565b6119d2565b3480156106f057600080fd5b50610440611ad1565b34801561070557600080fd5b506104fa60155481565b34801561071b57600080fd5b5061072f61072a366004613fcf565b611b44565b604051610417919061412e565b34801561074857600080fd5b50610440610757366004614042565b611c3e565b34801561076857600080fd5b50610440610777366004613f68565b611cdd565b34801561078857600080fd5b50610484610797366004613f68565b611d49565b3480156107a857600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610484565b3480156107d357600080fd5b50610457611d86565b3480156107e857600080fd5b506104fa6107f7366004613fcf565b611d95565b34801561080857600080fd5b506104406108173660046141b7565b611dc8565b34801561082857600080fd5b506104fa60125481565b34801561083e57600080fd5b506104fa61084d366004613fcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561088157600080fd5b506104fa60115481565b34801561089757600080fd5b506104fa60145481565b3480156108ad57600080fd5b506104fa6108bc366004613fcf565b611f8d565b3480156108cd57600080fd5b506104406108dc366004614223565b611fc0565b3480156108ed57600080fd5b506104406108fc366004613f68565b6120bd565b34801561090d57600080fd5b506104fa60135481565b34801561092357600080fd5b50610440610932366004614258565b612129565b34801561094357600080fd5b50610457610952366004613f68565b6121b1565b34801561096357600080fd5b506104fa610972366004613fcf565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b3480156109a657600080fd5b506104406109b5366004613f68565b61221d565b3480156109c657600080fd5b506104fa600c5481565b3480156109dc57600080fd5b506104406109eb366004613f68565b612289565b3480156109fc57600080fd5b506104576122f5565b348015610a1157600080fd5b506104fa610a20366004613fcf565b612311565b348015610a3157600080fd5b506104fa60165481565b348015610a4757600080fd5b506007546104fa565b348015610a5c57600080fd5b50600d5461040b9060ff1681565b348015610a7657600080fd5b5061040b610a853660046142c4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b610440610ace366004613f68565b612344565b348015610adf57600080fd5b50610440610aee366004613fcf565b6125a0565b348015610aff57600080fd5b50610440610b0e366004613f68565b61269c565b348015610b1f57600080fd5b50610440610b2e366004613f68565b612708565b348015610b3f57600080fd5b50600d5461040b9062010000900460ff1681565b610440610b6136600461405d565b612774565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bbc5750610bbc82612a3c565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610c4190600b906020840190613cf5565b5050565b606060008054610c54906142fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c80906142fd565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905090565b6000610ce282612b1f565b610d545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c25565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610d8882611897565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e555750610e558133610a85565b610ec75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c25565b610ed18383612b83565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600e55565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902054610fda5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610c25565b600060075447610fea9190614380565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261102e9085614398565b6110389190614404565b6110429190614418565b9050806110b75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600960205260409020546110e8908290614380565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461111c908290614380565b6007556111298382612c23565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6111873382612d49565b6111f95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c25565b610ed1838383612e85565b60055473ffffffffffffffffffffffffffffffffffffffff16331461126b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006112a7836119d2565b82106112f55760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b6000805b60025481101561136f57600281815481106113165761131661442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561135f5783821415611353579150610bbc9050565b61135c8261445e565b91505b6113688161445e565b90506112f9565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b60055473ffffffffffffffffffffffffffffffffffffffff16331461141f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601555565b600061142f60025490565b90503361143c8484611789565b73ffffffffffffffffffffffffffffffffffffffff161461149f5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610c25565b600d5460ff166114f15760405162461bcd60e51b815260206004820152601560248201527f4f472073616c65206973206e6f742061637469766500000000000000000000006044820152606401610c25565b600084116115415760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b6011548411156115935760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546115a08583614380565b11156115ee5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b83600e546115fc9190614398565b34101561164b5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b8361165533611f8d565b10156116a35760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b3233146116af57600080fd5b60005b848110156116ed576116dd336116c88385614380565b60405180602001604052806000815250613054565b6116e68161445e565b90506116b2565b50600090506116fc33856130dd565b50505050565b610ed183838360405180602001604052806000815250612129565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601055565b6000611795838361311b565b9392505050565b60006117a760025490565b82106117f55760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610c25565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600080600283815481106118ad576118ad61442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bbc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c25565b600b8054611951906142fd565b80601f016020809104026020016040519081016040528092919081815260200182805461197d906142fd565b80156119ca5780601f1061199f576101008083540402835291602001916119ca565b820191906000526020600020905b8154815290600101906020018083116119ad57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611a5d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c25565b600254600090815b81811015611ac85760028181548110611a8057611a8061442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611ab857611ab58361445e565b92505b611ac18161445e565b9050611a65565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b611b426000613133565b565b6060611b4f826119d2565b600010611b9e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c25565b6000611ba9836119d2565b905060008167ffffffffffffffff811115611bc657611bc6613dd0565b604051908082528060200260200182016040528015611bef578160200160208202803683370190505b50905060005b82811015611c3657611c07858261129c565b828281518110611c1957611c1961442f565b602090810291909101015280611c2e8161445e565b915050611bf5565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ca55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601655565b6000600a8281548110611d5e57611d5e61442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b606060018054610c54906142fd565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260186020526040812054601554610bbc9190614418565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b828114611e3b57600080fd5b600080611e4760025490565b905060005b85811015611e8a57868682818110611e6657611e6661442f565b9050602002013583611e789190614380565b9250611e838161445e565b9050611e4c565b50600c54611e988383614380565b1115611ee65760405162461bcd60e51b815260206004820152600860248201527f546f6f206d616e790000000000000000000000000000000000000000000000006044820152606401610c25565b6000915060005b83811015611f845760005b878783818110611f0a57611f0a61442f565b90506020020135811015611f7357611f63868684818110611f2d57611f2d61442f565b9050602002016020810190611f429190613fcf565b84611f4c8161445e565b955060405180602001604052806000815250613054565b611f6c8161445e565b9050611ef8565b50611f7d8161445e565b9050611eed565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260176020526040812054601454610bbc9190614418565b73ffffffffffffffffffffffffffffffffffffffff82163314156120265760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c25565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601455565b6121333383612d49565b6121a55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c25565b6116fc848484846131aa565b6060600c548211156121c257600080fd5b60006121cc613233565b905060008151116121ec5760405180602001604052806000815250611795565b806121f684613242565b604051602001612207929190614497565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601255565b6040518060600160405280602e8152602001614570602e913981565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260196020526040812054601654610bbc9190614418565b600061234f60025490565b600d5490915062010000900460ff166123aa5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610c25565b600082116123fa5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b60135482111561244c5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546124598383614380565b11156124a75760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b816010546124b59190614398565b3410156125045760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b8161250e33612311565b101561255c5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b32331461256857600080fd5b60005b8281101561259157612581336116c88385614380565b61258a8161445e565b905061256b565b5060009050610c413383613374565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b73ffffffffffffffffffffffffffffffffffffffff81166126905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c25565b61269981613133565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b601355565b60055473ffffffffffffffffffffffffffffffffffffffff16331461276f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c25565b600f55565b600061277f60025490565b90503361278c8484611789565b73ffffffffffffffffffffffffffffffffffffffff16146127ef5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610c25565b600d54610100900460ff166128465760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c6973742073616c65206973206e6f7420616374697665000000006044820152606401610c25565b600084116128965760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610c25565b6012548411156128e85760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b600c546128f58583614380565b11156129435760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610c25565b83600e546129519190614398565b3410156129a05760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610c25565b836129aa33611d95565b10156129f85760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610c25565b323314612a0457600080fd5b60005b84811015612a2d57612a1d336116c88385614380565b612a268161445e565b9050612a07565b50600090506116fc33856133a9565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612acf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bbc57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bbc565b60025460009082108015610bbc5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612b5957612b5961442f565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612bdd82611897565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612c735760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c25565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612ccd576040519150601f19603f3d011682016040523d82523d6000602084013e612cd2565b606091505b5050905080610ed15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c25565b6000612d5482612b1f565b612dc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c25565b6000612dd183611897565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e4057508373ffffffffffffffffffffffffffffffffffffffff16612e2884610cd7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7d575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea582611897565b73ffffffffffffffffffffffffffffffffffffffff1614612f2e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff8216612fb65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c25565b612fc1600082612b83565b8160028281548110612fd557612fd561442f565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61305e83836133de565b61306b6000848484613538565b610ed15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604081208054839290613112908490614380565b90915550505050565b6000806131278461370e565b9050612e7d8184613771565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6131b5848484612e85565b6131c184848484613538565b6116fc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b6060600b8054610c54906142fd565b60608161328257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156132ac57806132968161445e565b91506132a59050600a83614404565b9150613286565b60008167ffffffffffffffff8111156132c7576132c7613dd0565b6040519080825280601f01601f1916602001820160405280156132f1576020820181803683370190505b5090505b8415612e7d57613306600183614418565b9150613313600a866144c6565b61331e906030614380565b60f81b8183815181106133335761333361442f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061336d600a86614404565b94506132f5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604081208054839290613112908490614380565b73ffffffffffffffffffffffffffffffffffffffff821660009081526018602052604081208054839290613112908490614380565b73ffffffffffffffffffffffffffffffffffffffff82166134415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c25565b61344a81612b1f565b156134975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c25565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613703576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906135af9033908990889088906004016144da565b6020604051808303816000875af1925050508015613608575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261360591810190614523565b60015b6136b8573d808015613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b5080516136b05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c25565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e7d565b506001949350505050565b6000610bbc7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001613756929190918252602082015260400190565b6040516020818303038152906040528051906020012061378d565b600080600061378085856137f6565b91509150611c3681613866565b6000610bbc61379a613a57565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561382d5760208301516040840151606085015160001a61382187828585613b8b565b9450945050505061385f565b825160401415613857576020830151604084015161384c868383613ca3565b93509350505061385f565b506000905060025b9250929050565b600081600481111561387a5761387a614540565b14156138835750565b600181600481111561389757613897614540565b14156138e55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c25565b60028160048111156138f9576138f9614540565b14156139475760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c25565b600381600481111561395b5761395b614540565b14156139cf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b60048160048111156139e3576139e3614540565b14156126995760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610c25565b60003073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c9677cd8e9652f1b1aadd3429769b0ef8d7a042516148015613abd57507f000000000000000000000000000000000000000000000000000000000000000146145b15613ae757507f08b9503505765b51ccb887966358f1d5e71c0d1efe7af1e507e3545a9d0962eb90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fdf2d8ac372798e7ea3e723777b699a7ac5e9638f8f4fc7a2332f3930f646b8fa828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613bc25750600090506003613c9a565b8460ff16601b14158015613bda57508460ff16601c14155b15613beb5750600090506004613c9a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613c3f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116613c9357600060019250925050613c9a565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613cd960ff86901c601b614380565b9050613ce787828885613b8b565b935093505050935093915050565b828054613d01906142fd565b90600052602060002090601f016020900481019282613d235760008555613d69565b82601f10613d3c57805160ff1916838001178555613d69565b82800160010185558215613d69579182015b82811115613d69578251825591602001919060010190613d4e565b506117f59291505b808211156117f55760008155600101613d71565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461269957600080fd5b600060208284031215613dc557600080fd5b813561179581613d85565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112613e1057600080fd5b813567ffffffffffffffff80821115613e2b57613e2b613dd0565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613e7157613e71613dd0565b81604052838152866020858801011115613e8a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215613ebc57600080fd5b813567ffffffffffffffff811115613ed357600080fd5b612e7d84828501613dff565b60005b83811015613efa578181015183820152602001613ee2565b838111156116fc5750506000910152565b60008151808452613f23816020860160208601613edf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006117956020830184613f0b565b600060208284031215613f7a57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461269957600080fd5b60008060408385031215613fb657600080fd5b8235613fc181613f81565b946020939093013593505050565b600060208284031215613fe157600080fd5b813561179581613f81565b60008060006060848603121561400157600080fd5b833561400c81613f81565b9250602084013561401c81613f81565b929592945050506040919091013590565b8035801515811461403d57600080fd5b919050565b60006020828403121561405457600080fd5b6117958261402d565b60008060006060848603121561407257600080fd5b83359250602084013567ffffffffffffffff8082111561409157600080fd5b61409d87838801613dff565b935060408601359150808211156140b357600080fd5b506140c086828701613dff565b9150509250925092565b600080604083850312156140dd57600080fd5b823567ffffffffffffffff808211156140f557600080fd5b61410186838701613dff565b9350602085013591508082111561411757600080fd5b5061412485828601613dff565b9150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156141665783518352928401929184019160010161414a565b50909695505050505050565b60008083601f84011261418457600080fd5b50813567ffffffffffffffff81111561419c57600080fd5b6020830191508360208260051b850101111561385f57600080fd5b600080600080604085870312156141cd57600080fd5b843567ffffffffffffffff808211156141e557600080fd5b6141f188838901614172565b9096509450602087013591508082111561420a57600080fd5b5061421787828801614172565b95989497509550505050565b6000806040838503121561423657600080fd5b823561424181613f81565b915061424f6020840161402d565b90509250929050565b6000806000806080858703121561426e57600080fd5b843561427981613f81565b9350602085013561428981613f81565b925060408501359150606085013567ffffffffffffffff8111156142ac57600080fd5b6142b887828801613dff565b91505092959194509250565b600080604083850312156142d757600080fd5b82356142e281613f81565b915060208301356142f281613f81565b809150509250929050565b600181811c9082168061431157607f821691505b6020821081141561434b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561439357614393614351565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143d0576143d0614351565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614413576144136143d5565b500490565b60008282101561442a5761442a614351565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449057614490614351565b5060010190565b600083516144a9818460208801613edf565b8351908301906144bd818360208801613edf565b01949350505050565b6000826144d5576144d56143d5565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526145196080830184613f0b565b9695505050505050565b60006020828403121561453557600080fd5b815161179581613d85565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfe516d5671484671536777396b4b4c445a66636a4773355747673164747251567a616758326b4c674d665932596658a26469706673582212205b108cd996ac70ff6968a61506de080ef22453ffd736219fc52e98814282839164736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009456c656d656e74616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454d540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d61516a786771767a786167533951784c6f474e51756a7677716a7135506f72545a50446636737a51597578782f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Elemental
Arg [1] : _symbol (string): EMT
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmaQjxgqvzxagS9QxLoGNQujvwqjq5PorTZPDf6szQYuxx/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 456c656d656e74616c0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 454d540000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d61516a786771767a78
Arg [9] : 6167533951784c6f474e51756a7677716a7135506f72545a50446636737a5159
Arg [10] : 7578782f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
175:8075:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:1;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;175:8075:7;;;;;184:224:6;;;;;;;;;;-1:-1:-1;184:224:6;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;184:224:6;;;;;;;;8158:89:7;;;;;;;;;;-1:-1:-1;8158:89:7;;;;;:::i;:::-;;:::i;:::-;;1672:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:5;;;;;:::i;:::-;;:::i;:::-;;;3410:42:18;3398:55;;;3380:74;;3368:2;3353:18;2305:221:5;3234:226:18;1888:411:5;;;;;;;;;;-1:-1:-1;1888:411:5;;;;;:::i;:::-;;:::i;6829:83:7:-;;;;;;;;;;-1:-1:-1;6829:83:7;;;;;:::i;:::-;;:::i;1342:110:6:-;;;;;;;;;;-1:-1:-1;1430:7:6;:14;1342:110;;;4090:25:18;;;4078:2;4063:18;1342:110:6;3944:177:18;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;3003:339:5:-;;;;;;;;;;-1:-1:-1;3003:339:5;;;;;:::i;:::-;;:::i;716:35:7:-;;;;;;;;;;-1:-1:-1;716:35:7;;;;;;;;;;;7890:76;;;;;;;;;;-1:-1:-1;7890:76:7;;;;;:::i;:::-;;:::i;414:499:6:-;;;;;;;;;;-1:-1:-1;414:499:6;;;;;:::i;:::-;;:::i;7612:130:7:-;;;;;;;;;;-1:-1:-1;7612:130:7;;;;;:::i;:::-;;:::i;2077:829::-;;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;3348:185:5;;;;;;;;;;-1:-1:-1;3348:185:5;;;;;:::i;:::-;;:::i;7013:91:7:-;;;;;;;;;;-1:-1:-1;7013:91:7;;;;;:::i;:::-;;:::i;4982:138::-;;;;;;;;;;-1:-1:-1;4982:138:7;;;;;:::i;:::-;;:::i;1458:191:6:-;;;;;;;;;;-1:-1:-1;1458:191:6;;;;;:::i;:::-;;:::i;7968:90:7:-;;;;;;;;;;-1:-1:-1;7968:90:7;;;;;:::i;:::-;;:::i;1427:239:5:-;;;;;;;;;;-1:-1:-1;1427:239:5;;;;;:::i;:::-;;:::i;269:21:7:-;;;;;;;;;;;;;:::i;1007:414:5:-;;;;;;;;;;-1:-1:-1;1007:414:5;;;;;:::i;:::-;;:::i;1648:94:14:-;;;;;;;;;;;;;:::i;1076:44:7:-;;;;;;;;;;;;;;;;919:417:6;;;;;;;;;;-1:-1:-1;919:417:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8060:77:7:-;;;;;;;;;;-1:-1:-1;8060:77:7;;;;;:::i;:::-;;:::i;7744:124::-;;;;;;;;;;-1:-1:-1;7744:124:7;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;997:87:14:-;;;;;;;;;;-1:-1:-1;1070:6:14;;;;997:87;;1778:104:5;;;;;;;;;;;;;:::i;5736:160:7:-;;;;;;;;;;-1:-1:-1;5736:160:7;;;;;:::i;:::-;;:::i;4533:443::-;;;;;;;;;;-1:-1:-1;4533:443:7;;;;;:::i;:::-;;:::i;950:40::-;;;;;;;;;;;;;;;;3306:107:15;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;914:33:7;;;;;;;;;;;;;;;;1036:37;;;;;;;;;;;;;;;;5595:139;;;;;;;;;;-1:-1:-1;5595:139:7;;;;;:::i;:::-;;:::i;2532:295:5:-;;;;;;;;;;-1:-1:-1;2532:295:5;;;;;:::i;:::-;;:::i;7494:116:7:-;;;;;;;;;;-1:-1:-1;7494:116:7;;;;;:::i;:::-;;:::i;993:37::-;;;;;;;;;;;;;;;;3539:328:5;;;;;;;;;;-1:-1:-1;3539:328:5;;;;;:::i;:::-;;:::i;6523:282:7:-;;;;;;;;;;-1:-1:-1;6523:282:7;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;7246:109:7;;;;;;;;;;-1:-1:-1;7246:109:7;;;;;:::i;:::-;;:::i;651:31::-;;;;;;;;;;;;;;;;7121:123;;;;;;;;;;-1:-1:-1;7121:123:7;;;;;:::i;:::-;;:::i;424:78::-;;;;;;;;;;;;;:::i;5898:151::-;;;;;;;;;;-1:-1:-1;5898:151:7;;;;;:::i;:::-;;:::i;1126:41::-;;;;;;;;;;;;;;;;2930:93:15;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;685:28:7;;;;;;;;;;-1:-1:-1;685:28:7;;;;;;;;2833:164:5;;;;;;;;;;-1:-1:-1;2833:164:5;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;3791:717:7;;;;;;:::i;:::-;;:::i;1897:192:14:-;;;;;;;;;;-1:-1:-1;1897:192:14;;;;;:::i;:::-;;:::i;7357:117:7:-;;;;;;;;;;-1:-1:-1;7357:117:7;;;;;:::i;:::-;;:::i;6914:97::-;;;;;;;;;;-1:-1:-1;6914:97:7;;;;;:::i;:::-;;:::i;754:32::-;;;;;;;;;;-1:-1:-1;754:32:7;;;;;;;;;;;2912:873;;;;;;:::i;:::-;;:::i;184:224:6:-;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:6:o;8158:89:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;;;;;;;;;8222:21:7;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;8158:89:::0;:::o;1672:100:5:-;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:5;;10787:2:18;2401:73:5;;;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:5;10585:408:18;2401:73:5;-1:-1:-1;2494:24:5;;;;: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:5;;11200:2:18;2019:57:5;;;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:5;10998:397:18;2019:57:5;682:10:1;2111:21:5;;;;;:62;;-1:-1:-1;2136:37:5;2153:5;682:10:1;2833:164:5;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:5;;11602:2:18;2089:168:5;;;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:5;11400:420:18;2089:168:5;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;6829:83:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;6889:7:7::1;:19:::0;6829:83::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:5:-;3198:41;682:10:1;3231:7:5;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:5;;14155:2:18;3190:103:5;;;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:5;13953:413:18;3190:103:5;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;7890:76:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;7942:8:7::1;:20:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;7890:76::o;414:499:6:-;503:15;547:23;564:5;547:16;:23::i;:::-;539:5;:31;531:66;;;;-1:-1:-1;;;531:66:6;;14573:2:18;531:66:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;531:66:6;14371:346:18;531:66:6;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:6;;-1:-1:-1;768:8:6;726:102;821:7;;;:::i;:::-;;;726:102;662:3;;;:::i;:::-;;;629:226;;;-1:-1:-1;865:40:6;;-1:-1:-1;;;865:40:6;;14573:2:18;865:40:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;865:40:6;14371:346:18;7612:130:7;1070:6:14;;1217:23;1070:6;682:10:1;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;7693:25:7::1;:45:::0;7612:130::o;2077:829::-;2179:9;2191:13;1430:7:6;:14;;1342:110;2191:13:7;2179:25;-1:-1:-1;2248:10:7;2222:22;2228:4;2234:9;2222:5;:22::i;:::-;:36;;;2214:66;;;;-1:-1:-1;;;2214:66:7;;15313:2:18;2214:66:7;;;15295:21:18;15352:2;15332:18;;;15325:30;15391:19;15371:18;;;15364:47;15428:18;;2214:66:7;15111:341:18;2214:66:7;2322:8;;;;2314:41;;;;-1:-1:-1;;;2314:41:7;;15659:2:18;2314:41:7;;;15641:21:18;15698:2;15678:18;;;15671:30;15737:23;15717:18;;;15710:51;15778:18;;2314:41:7;15457:345:18;2314:41:7;2388:1;2373:12;:16;2365:46;;;;-1:-1:-1;;;2365:46:7;;16009:2:18;2365:46:7;;;15991:21:18;16048:2;16028:18;;;16021:30;16087:18;16067;;;16060:46;16123:18;;2365:46:7;15807:340:18;2365:46:7;2442:14;;2426:12;:30;;2418:52;;;;-1:-1:-1;;;2418:52:7;;16354:2:18;2418:52:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;2418:52:7;16152:332:18;2418:52:7;2506:9;;2486:16;2490:12;2486:1;:16;:::i;:::-;:29;;2477:52;;;;-1:-1:-1;;;2477:52:7;;16354:2:18;2477:52:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;2477:52:7;16152:332:18;2477:52:7;2567:12;2557:7;;:22;;;;:::i;:::-;2544:9;:35;;2536:66;;;;-1:-1:-1;;;2536:66:7;;16691:2:18;2536:66:7;;;16673:21:18;16730:2;16710:18;;;16703:30;16769:20;16749:18;;;16742:48;16807:18;;2536:66:7;16489:342:18;2536:66:7;2654:12;2620:30;2639:10;2620:18;:30::i;:::-;:46;;2612:77;;;;-1:-1:-1;;;2612:77:7;;17038:2:18;2612:77:7;;;17020:21:18;17077:2;17057:18;;;17050:30;17116:21;17096:18;;;17089:49;17155:18;;2612:77:7;16836:343:18;2612:77:7;2701:9;2714:10;2701:23;2693:32;;;;;;2739:9;2734:95;2758:12;2754:1;:16;2734:95;;;2786:32;2796:10;2808:5;2812:1;2808;:5;:::i;:::-;2786:32;;;;;;;;;;;;:9;:32::i;:::-;2772:3;;;:::i;:::-;;;2734:95;;;;2838:8;;;2856:43;2874:10;2886:12;2856:17;:43::i;:::-;2174:732;2077:829;;;:::o;3348:185:5:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;7013:91:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;7077:11:7::1;:23:::0;7013:91::o;4982:138::-;5062:7;5088:25;5097:4;5103:9;5088:7;:25::i;:::-;5081:32;4982:138;-1:-1:-1;;;4982:138:7:o;1458:191:6:-;1533:7;1569:21;1430:7;:14;;1342:110;1569:21;1561:5;:29;1553:65;;;;-1:-1:-1;;;1553:65:6;;17386:2:18;1553:65:6;;;17368:21:18;17425:2;17405:18;;;17398:30;17464:25;17444:18;;;17437:53;17507:18;;1553:65:6;17184:347:18;1553:65:6;-1:-1:-1;1636:5:6;1458:191::o;7968:90:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;8027:15:7::1;:27:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;7968:90::o;1427:239:5:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:5;1562:73;;;;-1:-1:-1;;;1562:73:5;;17738:2:18;1562:73:5;;;17720:21:18;17777:2;17757:18;;;17750:30;17816:34;17796:18;;;17789:62;17887:11;17867:18;;;17860:39;17916:19;;1562:73:5;17536:405:18;269:21:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:5:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:5;;18148:2:18;1099:74:5;;;18130:21:18;18187:2;18167:18;;;18160:30;18226:34;18206:18;;;18199:62;18297:12;18277:18;;;18270:40;18327:19;;1099:74:5;17946:406:18;1099:74:5;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:5;;1007:414;-1:-1:-1;;;1007:414:5:o;1648:94:14:-;1070:6;;1217:23;1070:6;682:10:1;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;919:417:6:-;978:16;1019:23;1036:5;1019:16;:23::i;:::-;1015:1;:27;1007:62;;;;-1:-1:-1;;;1007:62:6;;14573:2:18;1007:62:6;;;14555:21:18;14612:2;14592:18;;;14585:30;14651:24;14631:18;;;14624:52;14693:18;;1007:62:6;14371:346:18;1007:62:6;1080:18;1101:16;1111:5;1101:9;:16::i;:::-;1080:37;;1128:25;1170:10;1156:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1156:25:6;;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:6;919:417;-1:-1:-1;;;919:417:6:o;8060:77:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;8110:12:7::1;:23:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;8060:77::o;7744:124::-;1070:6:14;;1217:23;1070:6;682:10:1;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;7822:22:7::1;:42:::0;7744:124::o;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;1778:104:5:-;1834:13;1867:7;1860:14;;;;;:::i;5736:160:7:-;5859:29;;;5808:7;5859:29;;;:21;:29;;;;;;5831:25;;:57;;5859:29;5831:57;:::i;4533:443::-;1070:6:14;;1217:23;1070:6;682:10:1;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;4629:32:7;;::::1;4621:41;;;::::0;::::1;;4666:6;4680:9:::0;4692:13:::1;1430:7:6::0;:14;;1342:110;4692:13:7::1;4680:25;;4714:6;4710:61;4726:16:::0;;::::1;4710:61;;;4758:5;;4764:1;4758:8;;;;;;;:::i;:::-;;;;;;;4753:13;;;;;:::i;:::-;::::0;-1:-1:-1;4744:3:7::1;::::0;::::1;:::i;:::-;;;4710:61;;;-1:-1:-1::0;4791:9:7::1;::::0;4782:5:::1;4786:1:::0;4782;:5:::1;:::i;:::-;:18;;4773:41;;;::::0;-1:-1:-1;;;4773:41:7;;18559:2:18;4773:41:7::1;::::0;::::1;18541:21:18::0;18598:1;18578:18;;;18571:29;18636:10;18616:18;;;18609:38;18664:18;;4773:41:7::1;18357:331:18::0;4773:41:7::1;4818:8;;;4835:6;4831:129;4847:20:::0;;::::1;4831:129;;;4882:6;4878:78;4898:5;;4904:1;4898:8;;;;;;;:::i;:::-;;;;;;;4894:1;:12;4878:78;;;4916:34;4927:9;;4937:1;4927:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4941:3:::0;::::1;::::0;::::1;:::i;:::-;;;4916:34;;;;;;;;;;;::::0;:9:::1;:34::i;:::-;4908:3;::::0;::::1;:::i;:::-;;;4878:78;;;-1:-1:-1::0;4869:3:7::1;::::0;::::1;:::i;:::-;;;4831:129;;;-1:-1:-1::0;;;;;;;4533:443:7:o;5595:139::-;5704:22;;;5660:7;5704:22;;;:14;:22;;;;;;5683:18;;:43;;5704:22;5683:43;:::i;2532:295:5:-;2635:24;;;682:10:1;2635:24:5;;2627:62;;;;-1:-1:-1;;;2627:62:5;;18895:2:18;2627:62:5;;;18877:21:18;18934:2;18914:18;;;18907:30;18973:27;18953:18;;;18946:55;19018:18;;2627:62:5;18693:349:18;2627:62:5;682:10:1;2702:32:5;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:18;;;2702:42:5;;682:10:1;2771:48:5;;861:18:18;2771:48:5;;;;;;;2532:295;;:::o;7494:116:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;7568:18:7::1;:38:::0;7494:116::o;3539:328:5:-;3714:41;682:10:1;3747:7:5;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:5;;14155:2:18;3706:103:5;;;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:5;13953:413:18;3706:103:5;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;6523:282:7:-;6596:13;6634:9;;6623:7;:20;;6615:29;;;;;;6648:28;6679:10;:8;:10::i;:::-;6648:41;;6732:1;6707:14;6701:28;:32;:100;;;;;;;;;;;;;;;;;6760:14;6776:18;:7;:16;:18::i;:::-;6743:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6694:107;6523:282;-1:-1:-1;;;6523:282:7:o;7246:109::-;1070:6:14;;1217:23;1070:6;682:10:1;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;7317:14:7::1;:34:::0;7246:109::o;7121:123::-;1070:6:14;;1217:23;1070:6;682:10:1;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;7199:21:7::1;:41:::0;7121:123::o;424:78::-;;;;;;;;;;;;;;;;;;;:::o;5898:151::-;6015:26;;;5967:7;6015:26;;;:18;:26;;;;;;5990:22;;:51;;6015:26;5990:51;:::i;3791:717::-;3853:9;3865:13;1430:7:6;:14;;1342:110;3865:13:7;3896:12;;3853:25;;-1:-1:-1;3896:12:7;;;;;3888:49;;;;-1:-1:-1;;;3888:49:7;;19724:2:18;3888:49:7;;;19706:21:18;19763:2;19743:18;;;19736:30;19802:27;19782:18;;;19775:55;19847:18;;3888:49:7;19522:349:18;3888:49:7;3970:1;3955:12;:16;3947:46;;;;-1:-1:-1;;;3947:46:7;;16009:2:18;3947:46:7;;;15991:21:18;16048:2;16028:18;;;16021:30;16087:18;16067;;;16060:46;16123:18;;3947:46:7;15807:340:18;3947:46:7;4024:18;;4008:12;:34;;4000:56;;;;-1:-1:-1;;;4000:56:7;;16354:2:18;4000:56:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;4000:56:7;16152:332:18;4000:56:7;4092:9;;4072:16;4076:12;4072:1;:16;:::i;:::-;:29;;4063:52;;;;-1:-1:-1;;;4063:52:7;;16354:2:18;4063:52:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;4063:52:7;16152:332:18;4063:52:7;4157:12;4143:11;;:26;;;;:::i;:::-;4130:9;:39;;4122:70;;;;-1:-1:-1;;;4122:70:7;;16691:2:18;4122:70:7;;;16673:21:18;16730:2;16710:18;;;16703:30;16769:20;16749:18;;;16742:48;16807:18;;4122:70:7;16489:342:18;4122:70:7;4248:12;4210:34;4233:10;4210:22;:34::i;:::-;:50;;4202:81;;;;-1:-1:-1;;;4202:81:7;;17038:2:18;4202:81:7;;;17020:21:18;17077:2;17057:18;;;17050:30;17116:21;17096:18;;;17089:49;17155:18;;4202:81:7;16836:343:18;4202:81:7;4299:9;4312:10;4299:23;4291:32;;;;;;4334:9;4329:101;4353:12;4349:1;:16;4329:101;;;4387:32;4397:10;4409:5;4413:1;4409;:5;:::i;4387:32::-;4367:3;;;:::i;:::-;;;4329:101;;;;4439:8;;;4454:47;4476:10;4488:12;4454:21;:47::i;1897:192:14:-;1070:6;;1217:23;1070:6;682:10:1;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;;20078:2:18;1978:73:14::1;::::0;::::1;20060:21:18::0;20117:2;20097:18;;;20090:30;20156:34;20136:18;;;20129:62;20227:8;20207:18;;;20200:36;20253:19;;1978:73:14::1;19876:402:18::0;1978:73:14::1;2062:19;2072:8;2062:9;:19::i;:::-;1897:192:::0;:::o;7357:117:7:-;1070:6:14;;1217:23;1070:6;682:10:1;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;7432:18:7::1;:38:::0;7357:117::o;6914:97::-;1070:6:14;;1217:23;1070:6;682:10:1;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;6981:14:7::1;:26:::0;6914:97::o;2912:873::-;3021:9;3033:13;1430:7:6;:14;;1342:110;3033:13:7;3021:25;-1:-1:-1;3090:10:7;3064:22;3070:4;3076:9;3064:5;:22::i;:::-;:36;;;3056:66;;;;-1:-1:-1;;;3056:66:7;;15313:2:18;3056:66:7;;;15295:21:18;15352:2;15332:18;;;15325:30;15391:19;15371:18;;;15364:47;15428:18;;3056:66:7;15111:341:18;3056:66:7;3164:15;;;;;;;3156:55;;;;-1:-1:-1;;;3156:55:7;;20485:2:18;3156:55:7;;;20467:21:18;20524:2;20504:18;;;20497:30;20563;20543:18;;;20536:58;20611:18;;3156:55:7;20283:352:18;3156:55:7;3244:1;3229:12;:16;3221:46;;;;-1:-1:-1;;;3221:46:7;;16009:2:18;3221:46:7;;;15991:21:18;16048:2;16028:18;;;16021:30;16087:18;16067;;;16060:46;16123:18;;3221:46:7;15807:340:18;3221:46:7;3298:21;;3282:12;:37;;3274:59;;;;-1:-1:-1;;;3274:59:7;;16354:2:18;3274:59:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;3274:59:7;16152:332:18;3274:59:7;3369:9;;3349:16;3353:12;3349:1;:16;:::i;:::-;:29;;3340:52;;;;-1:-1:-1;;;3340:52:7;;16354:2:18;3340:52:7;;;16336:21:18;16393:1;16373:18;;;16366:29;16431:11;16411:18;;;16404:39;16460:18;;3340:52:7;16152:332:18;3340:52:7;3430:12;3420:7;;:22;;;;:::i;:::-;3407:9;:35;;3399:66;;;;-1:-1:-1;;;3399:66:7;;16691:2:18;3399:66:7;;;16673:21:18;16730:2;16710:18;;;16703:30;16769:20;16749:18;;;16742:48;16807:18;;3399:66:7;16489:342:18;3399:66:7;3524:12;3483:37;3509:10;3483:25;:37::i;:::-;:53;;3475:84;;;;-1:-1:-1;;;3475:84:7;;17038:2:18;3475:84:7;;;17020:21:18;17077:2;17057:18;;;17050:30;17116:21;17096:18;;;17089:49;17155:18;;3475:84:7;16836:343:18;3475:84:7;3576:9;3589:10;3576:23;3568:32;;;;;;3611:9;3606:95;3630:12;3626:1;:16;3606:95;;;3658:32;3668:10;3680:5;3684:1;3680;:5;:::i;3658:32::-;3644:3;;;:::i;:::-;;;3606:95;;;;3710:8;;;3728:50;3753:10;3765:12;3728:24;:50::i;696:305:5:-;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:5;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:4;871:40;;;;957:36:5;763:155:4;4196::5;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:5: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;;20842:2:18;2147:73:0;;;20824:21:18;20881:2;20861:18;;;20854:30;20920:31;20900:18;;;20893:59;20969:18;;2147:73:0;20640: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;;21410:2:18;2296:78:0;;;21392:21:18;21449:2;21429:18;;;21422:30;21488:34;21468:18;;;21461:62;21559:28;21539:18;;;21532:56;21605:19;;2296:78:0;21208:422:18;4354:348:5;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:5;;21837:2:18;4464:73:5;;;21819:21:18;21876:2;21856:18;;;21849:30;21915:34;21895:18;;;21888:62;21986:14;21966:18;;;21959:42;22018:19;;4464:73:5;21635:408:18;4464:73:5;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:5;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:5:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:5;;22250:2:18;5950:85:5;;;22232:21:18;22289:2;22269:18;;;22262:30;22328:34;22308:18;;;22301:62;22399:11;22379:18;;;22372:39;22428:19;;5950:85:5;22048:405:18;5950:85:5;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:5;;22660:2:18;6046:65:5;;;22642:21:18;22699:2;22679:18;;;22672:30;22738:34;22718:18;;;22711:62;22809:6;22789:18;;;22782:34;22833:19;;6046:65:5;22458:400:18;6046:65:5;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;4818:321::-;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:5;;23065:2:18;4977:154:5;;;23047:21:18;23104:2;23084:18;;;23077:30;23143:34;23123:18;;;23116:62;23214:20;23194:18;;;23187:48;23252:19;;4977:154:5;22863:414:18;6051:112:7;6124:22;;;;;;;:14;:22;;;;;:31;;6150:5;;6124:22;:31;;6150:5;;6124:31;:::i;:::-;;;;-1:-1:-1;;;;6051:112:7:o;5126:187::-;5210:7;5229:14;5246:11;5252:4;5246:5;:11::i;:::-;5229:28;;5274:32;5288:6;5296:9;5274: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;3878:315:5:-;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:5;;23065:2:18;4074:111:5;;;23047:21:18;23104:2;23084:18;;;23077:30;23143:34;23123:18;;;23116:62;23214:20;23194:18;;;23187:48;23252:19;;4074:111:5;22863:414:18;6433:88:7;6484:13;6510:7;6503: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;;6293:120:7;6370:26;;;;;;;:18;:26;;;;;:35;;6400:5;;6370:26;:35;;6400:5;;6370:35;:::i;6165:126::-;6245:29;;;;;;;:21;:29;;;;;:38;;6278:5;;6245:29;:38;;6278:5;;6245:38;:::i;5142:346:5:-;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:5;;23601:2:18;5214:61:5;;;23583:21:18;;;23620:18;;;23613:30;23679:34;23659:18;;;23652:62;23731:18;;5214:61:5;23399:356:18;5214:61:5;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:5;;23962:2:18;5286:58:5;;;23944:21:18;24001:2;23981:18;;;23974:30;24040;24020:18;;;24013:58;24088:18;;5286:58:5;23760:352:18;5286:58:5;5413:7;:16;;;;;;;-1:-1:-1;5413:16:5;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:5;;-1:-1:-1;;5447:33:5;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:5;;6734:72;;;;;:36;;;;;;:72;;682:10:1;;6785:4:5;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:5;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:5;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:5;;23065:2:18;7019:60:5;;;23047:21:18;23104:2;23084:18;;;23077:30;23143:34;23123:18;;;23116:62;23214:20;23194:18;;;23187:48;23252:19;;7019:60:5;22863:414:18;6972:272:5;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:5;;6694:620;-1:-1:-1;7298:4:5;6522:799;;;;;;:::o;5319:230:7:-;5377:7;5403:135;5454:36;5520:4;5504:22;;;;;;5430:106;;;;;;;;25062:25:18;;;25118:2;25103:18;;25096:34;25050:2;25035:18;;24888:248;5430:106:7;;;;;;;;;;;;;5420:117;;;;;;5403:16;:135::i;4393:231:2:-;4471:7;4492:17;4511:18;4533:27;4544:4;4550:9;4533:10;:27::i;:::-;4491:69;;;;4571:18;4583:5;4571:11;:18::i;4439:167:3:-;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:2;;27119:66:18;9437:57:2;;;27107:79:18;27202:11;;;27195:27;;;27238:12;;;27231:28;;;9400:7:2;;27275:12:18;;9437:57:2;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;;2283:1308;2364:7;2373:12;2598:9;:16;2618:2;2598:22;2594:990;;;2894:4;2879:20;;2873:27;2944:4;2929:20;;2923:27;3002:4;2987:20;;2981:27;2637:9;2973:36;3045:25;3056:4;2973:36;2873:27;2923;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3092:9;:16;3112:2;3092:22;3088:496;;;3367:4;3352:20;;3346:27;3418:4;3403:20;;3397:27;3460:23;3471:4;3346:27;3397;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;-1:-1:-1;3532:1:2;;-1:-1:-1;3536:35:2;3088:496;2283:1308;;;;;:::o;554:643::-;632:20;623:5;:29;;;;;;;;:::i;:::-;;619:571;;;554:643;:::o;619:571::-;730:29;721:5;:38;;;;;;;;:::i;:::-;;717:473;;;776:34;;-1:-1:-1;;;776:34:2;;25532:2:18;776:34:2;;;25514:21:18;25571:2;25551:18;;;25544:30;25610:26;25590:18;;;25583:54;25654:18;;776:34:2;25330:348:18;717:473:2;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:2;;25885:2:18;893:41:2;;;25867:21:18;25924:2;25904:18;;;25897:30;25963:33;25943:18;;;25936:61;26014:18;;893:41:2;25683:355:18;828:362:2;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:2;;26245:2:18;1012:44:2;;;26227:21:18;26284:2;26264:18;;;26257:30;26323:34;26303:18;;;26296:62;26394:4;26374:18;;;26367:32;26416:19;;1012:44:2;26043:398:18;952:238:2;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:2;;26648:2:18;1134:44:2;;;26630:21:18;26687:2;26667:18;;;26660:30;26726:34;26706:18;;;26699:62;26797:4;26777:18;;;26770:32;26819:19;;1134:44:2;26446:398:18;3212:314:3;3265:7;3297:4;3289:29;3306:12;3289:29;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;-1:-1:-1;3379:24:3;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:3;;;3465:10;3715:73;;;;27960:25:18;;;;3477:12:3;28001:18:18;;;27994:34;3491:15:3;28044:18:18;;;28037:34;3759:13:3;28087:18:18;;;28080:34;3782:4:3;28130:19:18;;;;28123:84;;;;3715:73:3;;;;;;;;;;27932:19:18;;;;3715:73:3;;;3705:84;;;;;;3212:314::o;5845:1632:2:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:2;;-1:-1:-1;7013:30:2;6993:51;;6893:163;7070:1;:7;;7075:2;7070:7;;:18;;;;;7081:1;:7;;7086:2;7081:7;;7070:18;7066:102;;;-1:-1:-1;7121:1:2;;-1:-1:-1;7125:30:2;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;27525:25:18;;;27598:4;27586:17;;27566:18;;;27559:45;;;;27620:18;;;27613:34;;;27663:18;;;27656:34;;;7282:24:2;;27497:19:18;;7282:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:2;;;;;;-1:-1:-1;;7321:20:2;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:2;;-1:-1:-1;5845:1632:2;;;;;;;;:::o;4887:344::-;5001:7;;5060:66;5047:80;;5001:7;5154:25;5170:3;5155:18;;;5177:2;5154:25;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940: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:160::-;4912:20;;4968:13;;4961:21;4951:32;;4941:60;;4997:1;4994;4987:12;4941:60;4847:160;;;:::o;5012:180::-;5068:6;5121:2;5109:9;5100:7;5096:23;5092:32;5089:52;;;5137:1;5134;5127:12;5089:52;5160:26;5176:9;5160:26;:::i;5197:610::-;5293:6;5301;5309;5362:2;5350:9;5341:7;5337:23;5333:32;5330:52;;;5378:1;5375;5368:12;5330:52;5414:9;5401:23;5391:33;;5475:2;5464:9;5460:18;5447:32;5498:18;5539:2;5531:6;5528:14;5525:34;;;5555:1;5552;5545:12;5525:34;5578:50;5620:7;5611:6;5600:9;5596:22;5578:50;:::i;:::-;5568:60;;5681:2;5670:9;5666:18;5653:32;5637:48;;5710:2;5700:8;5697:16;5694:36;;;5726:1;5723;5716:12;5694:36;;5749:52;5793:7;5782:8;5771:9;5767:24;5749:52;:::i;:::-;5739:62;;;5197:610;;;;;:::o;5812:542::-;5899:6;5907;5960:2;5948:9;5939:7;5935:23;5931:32;5928:52;;;5976:1;5973;5966:12;5928:52;6016:9;6003:23;6045:18;6086:2;6078:6;6075:14;6072:34;;;6102:1;6099;6092:12;6072:34;6125:50;6167:7;6158:6;6147:9;6143:22;6125:50;:::i;:::-;6115:60;;6228:2;6217:9;6213:18;6200:32;6184:48;;6257:2;6247:8;6244:16;6241:36;;;6273:1;6270;6263:12;6241:36;;6296:52;6340:7;6329:8;6318:9;6314:24;6296:52;:::i;:::-;6286:62;;;5812:542;;;;;:::o;6611:632::-;6782:2;6834:21;;;6904:13;;6807:18;;;6926:22;;;6753:4;;6782:2;7005:15;;;;6979:2;6964:18;;;6753:4;7048:169;7062:6;7059:1;7056:13;7048:169;;;7123:13;;7111:26;;7192:15;;;;7157:12;;;;7084:1;7077:9;7048:169;;;-1:-1:-1;7234:3:18;;6611:632;-1:-1:-1;;;;;;6611:632:18: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;19047:470::-;19226:3;19264:6;19258:13;19280:53;19326:6;19321:3;19314:4;19306:6;19302:17;19280:53;:::i;:::-;19396:13;;19355:16;;;;19418:57;19396:13;19355:16;19452:4;19440:17;;19418:57;:::i;:::-;19491:20;;19047:470;-1:-1:-1;;;;19047:470:18:o;23282:112::-;23314:1;23340;23330:35;;23345:18;;:::i;:::-;-1:-1:-1;23379:9:18;;23282:112::o;24117:512::-;24311:4;24340:42;24421:2;24413:6;24409:15;24398:9;24391:34;24473:2;24465:6;24461:15;24456:2;24445:9;24441:18;24434:43;;24513:6;24508:2;24497:9;24493:18;24486:34;24556:3;24551:2;24540:9;24536:18;24529:31;24577:46;24618:3;24607:9;24603:19;24595:6;24577:46;:::i;:::-;24569:54;24117:512;-1:-1:-1;;;;;;24117:512:18:o;24634:249::-;24703:6;24756:2;24744:9;24735:7;24731:23;24727:32;24724:52;;;24772:1;24769;24762:12;24724:52;24804:9;24798:16;24823:30;24847:5;24823:30;:::i;25141:184::-;25193:77;25190:1;25183:88;25290:4;25287:1;25280:15;25314:4;25311:1;25304:15
Swarm Source
ipfs://5b108cd996ac70ff6968a61506de080ef22453ffd736219fc52e988142828391
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.