ERC-721
Overview
Max Total Supply
2,000 GAHR
Holders
792
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GAHRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GahrDecades
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-31 */ // 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); } } // File: ECDSA.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: Payment.sol // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @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. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ 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 = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.2; contract GahrDecades is ERC721A, Ownable, Payment { using Strings for uint256; string public _baseURIextended; // Wave States bool public isWave1Active = false; bool public isWave2Active = false; bool public isWave3Active = false; //signatures address private Wave1Tsigner = 0xE30556880fc248337878AD46A1cEE81381491A92; address private Wave1Csigner = 0xd42ddAF9450cD7afBA83DDbdE6DCeFf07AD0e153; address private Wave2signer = 0x573aA43792D89E452417805Da6DCF097D07f58E8; //settings uint256 public MAX_SUPPLY = 4000; uint256 public PRICE_PER_TOKEN = 0.09 ether; //wave1 uint256 private maxMintPerWalletWave1_TRUTH = 3; uint256 private maxMintPerWalletWave1_COMMUNITY = 1; //wave2 uint256 private maxMintPerWalletWave2 = 3; //wave3 uint256 private maxMintPerTxWave3 = 10; //shares address[] private addressList = [ 0x59A0191C177C9b11730092b80fd35CF9fB78e0fE, 0xb6D9774842A298456596e6344c742D2990875243, 0xA5f81fEE746daaf23448cA59ff0d0895b62865b6, 0x0Aa1F3d61e7c325aE795737266c5FD6839819b86 ]; uint[] private shareList = [ 3350, 1775, 1575, 3300 ]; //mappings mapping(address => uint256) public numMintedPerPersonWave1_TRUTH; mapping(address => uint256) public numMintedPerPersonWave1_COMMUNITY; mapping(address => uint256) public numMintedPerPersonWave2; constructor() ERC721A("GahrDecades", "GAHR") Payment(addressList, shareList) {} function mintWave1TRUTH(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable { uint256 ts = totalSupply(); require(isWave1Active); require(_tokenAmount <= maxMintPerWalletWave1_TRUTH, "Purchase would exceed max tokens per tx in this Wave"); require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens"); require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct"); require(msg.sender == _address, "Not your voucher"); require(msg.sender == tx.origin); require(numMintedPerPersonWave1_TRUTH[_address] + _tokenAmount <= maxMintPerWalletWave1_TRUTH, "Purchase would exceed max tokens per Wallet"); bytes32 hash = keccak256( abi.encodePacked(_address) ); require(_verifySignature(Wave1Tsigner, hash, _voucher), "Invalid voucher"); _safeMint(_address, _tokenAmount); numMintedPerPersonWave1_TRUTH[_address] += _tokenAmount; } function mintWave1COMMUNITY(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable { uint256 ts = totalSupply(); require(isWave1Active); require(_tokenAmount <= maxMintPerWalletWave1_COMMUNITY, "Purchase would exceed max tokens per tx in this wave"); require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens"); require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct"); require(msg.sender == _address, "Not your voucher"); require(msg.sender == tx.origin); require(numMintedPerPersonWave1_COMMUNITY[_address] + _tokenAmount <= maxMintPerWalletWave1_COMMUNITY, "Purchase would exceed max tokens per Wallet"); bytes32 hash = keccak256( abi.encodePacked(_address) ); require(_verifySignature(Wave1Csigner, hash, _voucher), "Invalid voucher"); _safeMint(_address, _tokenAmount); numMintedPerPersonWave1_COMMUNITY[_address] += _tokenAmount; } function mintWave2(address _address, bytes calldata _voucher, uint256 _tokenAmount) external payable { uint256 ts = totalSupply(); require(isWave2Active); require(_tokenAmount <= maxMintPerWalletWave2, "Purchase would exceed max tokens per tx in this wave"); require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens"); require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct"); require(msg.sender == _address, "Not your voucher"); require(msg.sender == tx.origin); require(numMintedPerPersonWave2[_address] + _tokenAmount <= maxMintPerWalletWave2, "Purchase would exceed max tokens per Wallet"); bytes32 hash = keccak256( abi.encodePacked(_address) ); require(_verifySignature(Wave2signer, hash, _voucher), "Invalid voucher"); _safeMint(_address, _tokenAmount); numMintedPerPersonWave2[_address] += _tokenAmount; } function mintWave3(uint256 _tokenAmount) external payable { uint256 ts = totalSupply(); require(isWave3Active); require(_tokenAmount <= maxMintPerTxWave3, "Purchase would exceed max tokens per tx in this wave"); require(ts + _tokenAmount <= MAX_SUPPLY, "Purchase would exceed max tokens"); require(msg.value >= PRICE_PER_TOKEN * _tokenAmount, "Ether value sent is not correct"); require(msg.sender == tx.origin); _safeMint(msg.sender, _tokenAmount); } //airdrops function airdrop(address addr, uint256 _tokenAmount) public onlyOwner { uint256 ts = totalSupply(); require(ts + _tokenAmount <= MAX_SUPPLY); _safeMint(addr, _tokenAmount); } //signatures function _verifySignature(address _signer, bytes32 _hash, bytes memory _signature) private pure returns (bool) { return _signer == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature); } function setWave1TSigner(address _signer) external onlyOwner { Wave1Tsigner = _signer; } function setWave1CSigner(address _signer) external onlyOwner { Wave1Csigner = _signer; } function setWave2Signer(address _signer) external onlyOwner { Wave2signer = _signer; } // Admin function setPrice(uint256 _newPrice) external onlyOwner { PRICE_PER_TOKEN = _newPrice; } function setWave1(bool _status) external onlyOwner { isWave1Active = _status; } function setWave2(bool _status) external onlyOwner { isWave2Active = _status; } function setWave3(bool _status) external onlyOwner { isWave3Active = _status; } // Max Per Wallet function setMaxMintPerWalletWave1TRUTH(uint256 _amount) external onlyOwner { maxMintPerWalletWave1_TRUTH = _amount; } function setMaxMintPerWalletWave1COMMUNITY(uint256 _amount) external onlyOwner { maxMintPerWalletWave1_COMMUNITY = _amount; } function setMaxMintPerWalletWave2(uint256 _amount) external onlyOwner { maxMintPerWalletWave2 = _amount; } function setMaxMintPerTxWave3(uint256 _amount) external onlyOwner { maxMintPerTxWave3 = _amount; } //metadata function setBaseURI(string memory baseURI_) external onlyOwner { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURIextended","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWave1Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWave2Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWave3Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintWave1COMMUNITY","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintWave1TRUTH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes","name":"_voucher","type":"bytes"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintWave2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintWave3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedPerPersonWave1_COMMUNITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedPerPersonWave1_TRUTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numMintedPerPersonWave2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerTxWave3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletWave1COMMUNITY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletWave1TRUTH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerWalletWave2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWave1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setWave1CSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setWave1TSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWave2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setWave2Signer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWave3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600e805476e30556880fc248337878ad46a1cee81381491a920000006001600160b81b0319909116179055600f80546001600160a01b031990811673d42ddaf9450cd7afba83ddbde6dceff07ad0e153179091556010805490911673573aa43792d89e452417805da6dcf097d07f58e8179055610fa060115567013fbe85edc90000601255600360138190556001601455601555600a6016556101006040527359a0191c177c9b11730092b80fd35cf9fb78e0fe608090815273b6d9774842a298456596e6344c742d299087524360a05273a5f81fee746daaf23448ca59ff0d0895b62865b660c052730aa1f3d61e7c325ae795737266c5fd6839819b8660e052620001109060179060046200060b565b5060408051608081018252610d1681526106ef602082015261062791810191909152610ce460608201526200014a90601890600462000675565b503480156200015857600080fd5b506017805480602002602001604051908101604052809291908181526020018280548015620001b157602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000192575b505050505060188054806020026020016040519081016040528092919081815260200182805480156200020457602002820191906000526020600020905b815481526020019060010190808311620001ef575b5050604080518082018252600b81526a476168724465636164657360a81b60208083019182528351808501909452600484526323a0a42960e11b9084015281519195509193506200025a925060019190620006b9565b50805162000270906002906020840190620006b9565b5050506200028d62000287620003c760201b60201c565b620003cb565b8051825114620002ff5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003525760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002f6565b60005b8251811015620003be57620003a98382815181106200037857620003786200074d565b60200260200101518383815181106200039557620003956200074d565b60200260200101516200041d60201b60201c565b80620003b58162000779565b91505062000355565b505050620007ec565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200048a5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002f6565b60008111620004dc5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002f6565b6001600160a01b0382166000908152600a602052604090205415620005585760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002f6565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620005c290829062000795565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000663579160200282015b828111156200066357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200062c565b506200067192915062000736565b5090565b82805482825590600052602060002090810192821562000663579160200282015b8281111562000663578251829061ffff1690559160200191906001019062000696565b828054620006c790620007b0565b90600052602060002090601f016020900481019282620006eb576000855562000663565b82601f106200070657805160ff191683800117855562000663565b8280016001018555821562000663579182015b828111156200066357825182559160200191906001019062000719565b5b8082111562000671576000815560010162000737565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200078e576200078e62000763565b5060010190565b60008219821115620007ab57620007ab62000763565b500190565b600181811c90821680620007c557607f821691505b602082108103620007e657634e487b7160e01b600052602260045260246000fd5b50919050565b61462680620007fc6000396000f3fe6080604052600436106103435760003560e01c8063715018a6116101b0578063a885b715116100ec578063d55bd97811610095578063e33b7de31161006f578063e33b7de3146109cd578063e39151f1146109e2578063e985e9c5146109f5578063f2fde38b14610a4b57600080fd5b8063d55bd97814610960578063d8feb49314610980578063df45e83f146109a057600080fd5b8063bfa38a1f116100c6578063bfa38a1f146108dd578063c87b56dd146108fd578063ce7c2ac21461091d57600080fd5b8063a885b71514610870578063b88d4fde14610890578063ba32d511146108b057600080fd5b80638da5cb5b116101595780639852595c116101335780639852595c146107c0578063992f7b9d14610803578063996ef8b114610823578063a22cb4651461085057600080fd5b80638da5cb5b1461076057806391b7f5ed1461078b57806395d89b41146107ab57600080fd5b8063833b94991161018a578063833b94991461070a5780638b83209b146107205780638ba4cc3c1461074057600080fd5b8063715018a6146106cf5780637a31843c146106e4578063819d842f146106f757600080fd5b806332cb6b0c1161027f57806350580258116102285780635b018f2d116102025780635b018f2d14610655578063620a5e3c146106755780636352211e1461068f57806370a08231146106af57600080fd5b8063505802581461060257806355f804b314610615578063592eeb9e1461063557600080fd5b806342842e0e1161025957806342842e0e146105a35780634bc7a9c3146105c35780634f6ccce7146105e257600080fd5b806332cb6b0c146105705780633a98ef39146105865780633ccfd60b1461059b57600080fd5b8063095ea7b3116102ec57806319165587116102c657806319165587146104f057806323b872dd14610510578063297f22bd146105305780632f745c591461055057600080fd5b8063095ea7b31461049157806310950961146104b157806318160ddd146104d157600080fd5b806306fdde031161031d57806306fdde0314610415578063081812fc146104375780630928fc221461047c57600080fd5b806301ffc9a71461039e5780630384c6e0146103d357806305637acc146103f557600080fd5b36610399577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103aa57600080fd5b506103be6103b9366004613f60565b610a6b565b60405190151581526020015b60405180910390f35b3480156103df57600080fd5b506103f36103ee366004613f7d565b610b9c565b005b34801561040157600080fd5b506103f3610410366004613fb8565b610c0d565b34801561042157600080fd5b5061042a610cc2565b6040516103ca919061404b565b34801561044357600080fd5b50610457610452366004613f7d565b610d54565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103ca565b34801561048857600080fd5b5061042a610dfc565b34801561049d57600080fd5b506103f36104ac36600461405e565b610e8a565b3480156104bd57600080fd5b506103f36104cc36600461409f565b610fe3565b3480156104dd57600080fd5b506000545b6040519081526020016103ca565b3480156104fc57600080fd5b506103f361050b366004613fb8565b611081565b34801561051c57600080fd5b506103f361052b3660046140ba565b611292565b34801561053c57600080fd5b506103f361054b36600461409f565b61129d565b34801561055c57600080fd5b506104e261056b36600461405e565b611335565b34801561057c57600080fd5b506104e260115481565b34801561059257600080fd5b506008546104e2565b6103f36114f2565b3480156105af57600080fd5b506103f36105be3660046140ba565b6115b1565b3480156105cf57600080fd5b50600e546103be90610100900460ff1681565b3480156105ee57600080fd5b506104e26105fd366004613f7d565b6115cc565b6103f36106103660046140fb565b611648565b34801561062157600080fd5b506103f3610630366004614249565b6119eb565b34801561064157600080fd5b506103f3610650366004613fb8565b611a69565b34801561066157600080fd5b50600e546103be9062010000900460ff1681565b34801561068157600080fd5b50600e546103be9060ff1681565b34801561069b57600080fd5b506104576106aa366004613f7d565b611b17565b3480156106bb57600080fd5b506104e26106ca366004613fb8565b611b29565b3480156106db57600080fd5b506103f3611bef565b6103f36106f2366004613f7d565b611c62565b6103f36107053660046140fb565b611dc0565b34801561071657600080fd5b506104e260125481565b34801561072c57600080fd5b5061045761073b366004613f7d565b612168565b34801561074c57600080fd5b506103f361075b36600461405e565b6121a5565b34801561076c57600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610457565b34801561079757600080fd5b506103f36107a6366004613f7d565b612231565b3480156107b757600080fd5b5061042a61229d565b3480156107cc57600080fd5b506104e26107db366004613fb8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b34801561080f57600080fd5b506103f361081e366004613f7d565b6122ac565b34801561082f57600080fd5b506104e261083e366004613fb8565b601a6020526000908152604090205481565b34801561085c57600080fd5b506103f361086b366004614292565b612318565b34801561087c57600080fd5b506103f361088b366004613f7d565b612414565b34801561089c57600080fd5b506103f36108ab3660046142c7565b612480565b3480156108bc57600080fd5b506104e26108cb366004613fb8565b60196020526000908152604090205481565b3480156108e957600080fd5b506103f36108f836600461409f565b61250f565b34801561090957600080fd5b5061042a610918366004613f7d565b6125ae565b34801561092957600080fd5b506104e2610938366004613fb8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561096c57600080fd5b506103f361097b366004613fb8565b612689565b34801561098c57600080fd5b506103f361099b366004613f7d565b612737565b3480156109ac57600080fd5b506104e26109bb366004613fb8565b601b6020526000908152604090205481565b3480156109d957600080fd5b506009546104e2565b6103f36109f03660046140fb565b6127a3565b348015610a0157600080fd5b506103be610a10366004614347565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a5757600080fd5b506103f3610a66366004613fb8565b612b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610afe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b4a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b9657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601355565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e805473ffffffffffffffffffffffffffffffffffffffff9092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b606060018054610cd190614380565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90614380565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d61826000541190565b610dd35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610bff565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610e0990614380565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3590614380565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b505050505081565b6000610e9582611b17565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f615750610f618133610a10565b610fd35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bff565b610fde838383612c49565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461104a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a60205260409020546111195760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bff565b600061112460095490565b61112e9047614402565b9050600061116883836111638673ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b612cca565b9050806000036111e05760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600b602052604081208054839290611215908490614402565b92505081905550806009600082825461122e9190614402565b9091555061123e90508382612d1d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fde838383612e43565b60075473ffffffffffffffffffffffffffffffffffffffff1633146113045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061134083611b29565b82106113b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b600080549080805b838110156114835760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561142d57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147a5786840361147357509350610b9692505050565b6001909301925b506001016113bc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610bff565b60075473ffffffffffffffffffffffffffffffffffffffff1633146115595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b604051600090339047908381818185875af1925050503d806000811461159b576040519150601f19603f3d011682016040523d82523d6000602084013e6115a0565b606091505b50509050806115ae57600080fd5b50565b610fde83838360405180602001604052806000815250612480565b6000805482106116445760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610bff565b5090565b600054600e5460ff1661165a57600080fd5b6013548211156116d25760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320576176650000000000000000000000006064820152608401610bff565b6011546116df8383614402565b111561172d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b8160125461173b919061441a565b34101561178a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff8616146117ef5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b3332146117fb57600080fd5b60135473ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205461182f908490614402565b11156118a35760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604051602081830303815290604052805190602001209050611953600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061327592505050565b61199f5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b6119a9868461330e565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260196020526040812080548592906119de908490614402565b9091555050505050505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611a525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b8051611a6590600d906020840190613ea2565b5050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611ad05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611b2282613328565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611bb45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610bff565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff163314611c565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b611c60600061344e565b565b600054600e5462010000900460ff16611c7a57600080fd5b601654821115611cf25760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b601154611cff8383614402565b1115611d4d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b81601254611d5b919061441a565b341015611daa5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b333214611db657600080fd5b611a65338361330e565b600054600e5460ff16611dd257600080fd5b601454821115611e4a5760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b601154611e578383614402565b1115611ea55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b81601254611eb3919061441a565b341015611f025760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff861614611f675760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b333214611f7357600080fd5b60145473ffffffffffffffffffffffffffffffffffffffff86166000908152601a6020526040902054611fa7908490614402565b111561201b5760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600f54601f890183900483028501830190935287845293506120dd9273ffffffffffffffffffffffffffffffffffffffff909216918491899089908190840183828082843760009201919091525061327592505050565b6121295760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b612133868461330e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601a6020526040812080548592906119de908490614402565b6000600c828154811061217d5761217d614457565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461220c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b60005460115461221c8383614402565b111561222757600080fd5b610fde838361330e565b60075473ffffffffffffffffffffffffffffffffffffffff1633146122985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601255565b606060028054610cd190614380565b60075473ffffffffffffffffffffffffffffffffffffffff1633146123135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601655565b3373ffffffffffffffffffffffffffffffffffffffff83160361237d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bff565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461247b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601555565b61248b848484612e43565b612497848484846134c5565b6125095760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b50505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146125765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60606125bb826000541190565b61262d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610bff565b600061263761369e565b905080516000036126575760405180602001604052806000815250612682565b80612661846136ad565b604051602001612672929190614486565b6040516020818303038152906040525b9392505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146126f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff16331461279e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601455565b600054600e54610100900460ff166127ba57600080fd5b6015548211156128325760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b60115461283f8383614402565b111561288d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b8160125461289b919061441a565b3410156128ea5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff86161461294f5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b33321461295b57600080fd5b60155473ffffffffffffffffffffffffffffffffffffffff86166000908152601b602052604090205461298f908490614402565b1115612a035760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120601054601f89018390048302850183019093528784529350612ac59273ffffffffffffffffffffffffffffffffffffffff909216918491899089908190840183828082843760009201919091525061327592505050565b612b115760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b612b1b868461330e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601b6020526040812080548592906119de908490614402565b60075473ffffffffffffffffffffffffffffffffffffffff163314612bb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b73ffffffffffffffffffffffffffffffffffffffff8116612c405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bff565b6115ae8161344e565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604081205490918391612d01908661441a565b612d0b91906144e4565b612d1591906144f8565b949350505050565b80471015612d6d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bff565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612dc7576040519150601f19603f3d011682016040523d82523d6000602084013e612dcc565b606091505b5050905080610fde5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bff565b6000612e4e82613328565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612eac575033612e9484610d54565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ebe57508151612ebe9033610a10565b905080612f335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610bff565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fd85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff84166130615760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bff565b6130716000848460000151612c49565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166132115761318e816000541190565b15613211578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006132d76132d1846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b836137e2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b611a65828260405180602001604052806000815250613806565b6040805180820190915260008082526020820152613347826000541190565b6133b95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610bff565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215613426579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016133bb565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613693576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061353c90339089908890889060040161450f565b6020604051808303816000875af1925050508015613595575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261359291810190614558565b60015b613648573d8080156135c3576040519150601f19603f3d011682016040523d82523d6000602084013e6135c8565b606091505b5080516000036136405760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612d15565b506001949350505050565b6060600d8054610cd190614380565b6060816000036136f057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561371a578061370481614575565b91506137139050600a836144e4565b91506136f4565b60008167ffffffffffffffff81111561373557613735614186565b6040519080825280601f01601f19166020018201604052801561375f576020820181803683370190505b5090505b8415612d15576137746001836144f8565b9150613781600a866145ad565b61378c906030614402565b60f81b8183815181106137a1576137a1614457565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137db600a866144e4565b9450613763565b60008060006137f18585613813565b915091506137fe81613881565b509392505050565b610fde8383836001613a6d565b60008082516041036138495760208301516040840151606085015160001a61383d87828585613d38565b9450945050505061387a565b82516040036138725760208301516040840151613867868383613e50565b93509350505061387a565b506000905060025b9250929050565b6000816004811115613895576138956145c1565b0361389d5750565b60018160048111156138b1576138b16145c1565b036138fe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bff565b6002816004811115613912576139126145c1565b0361395f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bff565b6003816004811115613973576139736145c1565b036139e65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b60048160048111156139fa576139fa6145c1565b036115ae5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b60005473ffffffffffffffffffffffffffffffffffffffff8516613af95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b83600003613b6f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b85811015613d2f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315613d2357613cb160008884886134c5565b613d235760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b60019182019101613c51565b5060005561326e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613d6f5750600090506003613e47565b8460ff16601b14158015613d8757508460ff16601c14155b15613d985750600090506004613e47565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613dec573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116613e4057600060019250925050613e47565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613e8660ff86901c601b614402565b9050613e9487828885613d38565b935093505050935093915050565b828054613eae90614380565b90600052602060002090601f016020900481019282613ed05760008555613f16565b82601f10613ee957805160ff1916838001178555613f16565b82800160010185558215613f16579182015b82811115613f16578251825591602001919060010190613efb565b506116449291505b808211156116445760008155600101613f1e565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115ae57600080fd5b600060208284031215613f7257600080fd5b813561268281613f32565b600060208284031215613f8f57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146115ae57600080fd5b600060208284031215613fca57600080fd5b813561268281613f96565b60005b83811015613ff0578181015183820152602001613fd8565b838111156125095750506000910152565b60008151808452614019816020860160208601613fd5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006126826020830184614001565b6000806040838503121561407157600080fd5b823561407c81613f96565b946020939093013593505050565b8035801515811461409a57600080fd5b919050565b6000602082840312156140b157600080fd5b6126828261408a565b6000806000606084860312156140cf57600080fd5b83356140da81613f96565b925060208401356140ea81613f96565b929592945050506040919091013590565b6000806000806060858703121561411157600080fd5b843561411c81613f96565b9350602085013567ffffffffffffffff8082111561413957600080fd5b818701915087601f83011261414d57600080fd5b81358181111561415c57600080fd5b88602082850101111561416e57600080fd5b95986020929092019750949560400135945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156141d0576141d0614186565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561421657614216614186565b8160405280935085815286868601111561422f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561425b57600080fd5b813567ffffffffffffffff81111561427257600080fd5b8201601f8101841361428357600080fd5b612d15848235602084016141b5565b600080604083850312156142a557600080fd5b82356142b081613f96565b91506142be6020840161408a565b90509250929050565b600080600080608085870312156142dd57600080fd5b84356142e881613f96565b935060208501356142f881613f96565b925060408501359150606085013567ffffffffffffffff81111561431b57600080fd5b8501601f8101871361432c57600080fd5b61433b878235602084016141b5565b91505092959194509250565b6000806040838503121561435a57600080fd5b823561436581613f96565b9150602083013561437581613f96565b809150509250929050565b600181811c9082168061439457607f821691505b6020821081036143cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115614415576144156143d3565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614452576144526143d3565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351614498818460208801613fd5565b8351908301906144ac818360208801613fd5565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826144f3576144f36144b5565b500490565b60008282101561450a5761450a6143d3565b500390565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261454e6080830184614001565b9695505050505050565b60006020828403121561456a57600080fd5b815161268281613f32565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145a6576145a66143d3565b5060010190565b6000826145bc576145bc6144b5565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea264697066735822122063da65d0a0c12b00650ae06f0d2c9e27e7272478a16f58abb845f06e08cbee3264736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106103435760003560e01c8063715018a6116101b0578063a885b715116100ec578063d55bd97811610095578063e33b7de31161006f578063e33b7de3146109cd578063e39151f1146109e2578063e985e9c5146109f5578063f2fde38b14610a4b57600080fd5b8063d55bd97814610960578063d8feb49314610980578063df45e83f146109a057600080fd5b8063bfa38a1f116100c6578063bfa38a1f146108dd578063c87b56dd146108fd578063ce7c2ac21461091d57600080fd5b8063a885b71514610870578063b88d4fde14610890578063ba32d511146108b057600080fd5b80638da5cb5b116101595780639852595c116101335780639852595c146107c0578063992f7b9d14610803578063996ef8b114610823578063a22cb4651461085057600080fd5b80638da5cb5b1461076057806391b7f5ed1461078b57806395d89b41146107ab57600080fd5b8063833b94991161018a578063833b94991461070a5780638b83209b146107205780638ba4cc3c1461074057600080fd5b8063715018a6146106cf5780637a31843c146106e4578063819d842f146106f757600080fd5b806332cb6b0c1161027f57806350580258116102285780635b018f2d116102025780635b018f2d14610655578063620a5e3c146106755780636352211e1461068f57806370a08231146106af57600080fd5b8063505802581461060257806355f804b314610615578063592eeb9e1461063557600080fd5b806342842e0e1161025957806342842e0e146105a35780634bc7a9c3146105c35780634f6ccce7146105e257600080fd5b806332cb6b0c146105705780633a98ef39146105865780633ccfd60b1461059b57600080fd5b8063095ea7b3116102ec57806319165587116102c657806319165587146104f057806323b872dd14610510578063297f22bd146105305780632f745c591461055057600080fd5b8063095ea7b31461049157806310950961146104b157806318160ddd146104d157600080fd5b806306fdde031161031d57806306fdde0314610415578063081812fc146104375780630928fc221461047c57600080fd5b806301ffc9a71461039e5780630384c6e0146103d357806305637acc146103f557600080fd5b36610399577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156103aa57600080fd5b506103be6103b9366004613f60565b610a6b565b60405190151581526020015b60405180910390f35b3480156103df57600080fd5b506103f36103ee366004613f7d565b610b9c565b005b34801561040157600080fd5b506103f3610410366004613fb8565b610c0d565b34801561042157600080fd5b5061042a610cc2565b6040516103ca919061404b565b34801561044357600080fd5b50610457610452366004613f7d565b610d54565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103ca565b34801561048857600080fd5b5061042a610dfc565b34801561049d57600080fd5b506103f36104ac36600461405e565b610e8a565b3480156104bd57600080fd5b506103f36104cc36600461409f565b610fe3565b3480156104dd57600080fd5b506000545b6040519081526020016103ca565b3480156104fc57600080fd5b506103f361050b366004613fb8565b611081565b34801561051c57600080fd5b506103f361052b3660046140ba565b611292565b34801561053c57600080fd5b506103f361054b36600461409f565b61129d565b34801561055c57600080fd5b506104e261056b36600461405e565b611335565b34801561057c57600080fd5b506104e260115481565b34801561059257600080fd5b506008546104e2565b6103f36114f2565b3480156105af57600080fd5b506103f36105be3660046140ba565b6115b1565b3480156105cf57600080fd5b50600e546103be90610100900460ff1681565b3480156105ee57600080fd5b506104e26105fd366004613f7d565b6115cc565b6103f36106103660046140fb565b611648565b34801561062157600080fd5b506103f3610630366004614249565b6119eb565b34801561064157600080fd5b506103f3610650366004613fb8565b611a69565b34801561066157600080fd5b50600e546103be9062010000900460ff1681565b34801561068157600080fd5b50600e546103be9060ff1681565b34801561069b57600080fd5b506104576106aa366004613f7d565b611b17565b3480156106bb57600080fd5b506104e26106ca366004613fb8565b611b29565b3480156106db57600080fd5b506103f3611bef565b6103f36106f2366004613f7d565b611c62565b6103f36107053660046140fb565b611dc0565b34801561071657600080fd5b506104e260125481565b34801561072c57600080fd5b5061045761073b366004613f7d565b612168565b34801561074c57600080fd5b506103f361075b36600461405e565b6121a5565b34801561076c57600080fd5b5060075473ffffffffffffffffffffffffffffffffffffffff16610457565b34801561079757600080fd5b506103f36107a6366004613f7d565b612231565b3480156107b757600080fd5b5061042a61229d565b3480156107cc57600080fd5b506104e26107db366004613fb8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b34801561080f57600080fd5b506103f361081e366004613f7d565b6122ac565b34801561082f57600080fd5b506104e261083e366004613fb8565b601a6020526000908152604090205481565b34801561085c57600080fd5b506103f361086b366004614292565b612318565b34801561087c57600080fd5b506103f361088b366004613f7d565b612414565b34801561089c57600080fd5b506103f36108ab3660046142c7565b612480565b3480156108bc57600080fd5b506104e26108cb366004613fb8565b60196020526000908152604090205481565b3480156108e957600080fd5b506103f36108f836600461409f565b61250f565b34801561090957600080fd5b5061042a610918366004613f7d565b6125ae565b34801561092957600080fd5b506104e2610938366004613fb8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205490565b34801561096c57600080fd5b506103f361097b366004613fb8565b612689565b34801561098c57600080fd5b506103f361099b366004613f7d565b612737565b3480156109ac57600080fd5b506104e26109bb366004613fb8565b601b6020526000908152604090205481565b3480156109d957600080fd5b506009546104e2565b6103f36109f03660046140fb565b6127a3565b348015610a0157600080fd5b506103be610a10366004614347565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a5757600080fd5b506103f3610a66366004613fb8565b612b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610afe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b4a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b9657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601355565b60075473ffffffffffffffffffffffffffffffffffffffff163314610c745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e805473ffffffffffffffffffffffffffffffffffffffff9092166301000000027fffffffffffffffffff0000000000000000000000000000000000000000ffffff909216919091179055565b606060018054610cd190614380565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90614380565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d61826000541190565b610dd35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610bff565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600d8054610e0990614380565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3590614380565b8015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b505050505081565b6000610e9582611b17565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b3373ffffffffffffffffffffffffffffffffffffffff82161480610f615750610f618133610a10565b610fd35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bff565b610fde838383612c49565b505050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461104a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a60205260409020546111195760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bff565b600061112460095490565b61112e9047614402565b9050600061116883836111638673ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b612cca565b9050806000036111e05760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600b602052604081208054839290611215908490614402565b92505081905550806009600082825461122e9190614402565b9091555061123e90508382612d1d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fde838383612e43565b60075473ffffffffffffffffffffffffffffffffffffffff1633146113045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061134083611b29565b82106113b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b600080549080805b838110156114835760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561142d57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147a5786840361147357509350610b9692505050565b6001909301925b506001016113bc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610bff565b60075473ffffffffffffffffffffffffffffffffffffffff1633146115595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b604051600090339047908381818185875af1925050503d806000811461159b576040519150601f19603f3d011682016040523d82523d6000602084013e6115a0565b606091505b50509050806115ae57600080fd5b50565b610fde83838360405180602001604052806000815250612480565b6000805482106116445760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610bff565b5090565b600054600e5460ff1661165a57600080fd5b6013548211156116d25760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320576176650000000000000000000000006064820152608401610bff565b6011546116df8383614402565b111561172d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b8160125461173b919061441a565b34101561178a5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff8616146117ef5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b3332146117fb57600080fd5b60135473ffffffffffffffffffffffffffffffffffffffff861660009081526019602052604090205461182f908490614402565b11156118a35760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604051602081830303815290604052805190602001209050611953600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061327592505050565b61199f5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b6119a9868461330e565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260196020526040812080548592906119de908490614402565b9091555050505050505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611a525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b8051611a6590600d906020840190613ea2565b5050565b60075473ffffffffffffffffffffffffffffffffffffffff163314611ad05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000611b2282613328565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611bb45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610bff565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff163314611c565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b611c60600061344e565b565b600054600e5462010000900460ff16611c7a57600080fd5b601654821115611cf25760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b601154611cff8383614402565b1115611d4d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b81601254611d5b919061441a565b341015611daa5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b333214611db657600080fd5b611a65338361330e565b600054600e5460ff16611dd257600080fd5b601454821115611e4a5760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b601154611e578383614402565b1115611ea55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b81601254611eb3919061441a565b341015611f025760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff861614611f675760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b333214611f7357600080fd5b60145473ffffffffffffffffffffffffffffffffffffffff86166000908152601a6020526040902054611fa7908490614402565b111561201b5760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600f54601f890183900483028501830190935287845293506120dd9273ffffffffffffffffffffffffffffffffffffffff909216918491899089908190840183828082843760009201919091525061327592505050565b6121295760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b612133868461330e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601a6020526040812080548592906119de908490614402565b6000600c828154811061217d5761217d614457565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461220c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b60005460115461221c8383614402565b111561222757600080fd5b610fde838361330e565b60075473ffffffffffffffffffffffffffffffffffffffff1633146122985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601255565b606060028054610cd190614380565b60075473ffffffffffffffffffffffffffffffffffffffff1633146123135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601655565b3373ffffffffffffffffffffffffffffffffffffffff83160361237d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bff565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461247b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601555565b61248b848484612e43565b612497848484846134c5565b6125095760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b50505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146125765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b600e805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60606125bb826000541190565b61262d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610bff565b600061263761369e565b905080516000036126575760405180602001604052806000815250612682565b80612661846136ad565b604051602001612672929190614486565b6040516020818303038152906040525b9392505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146126f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff16331461279e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b601455565b600054600e54610100900460ff166127ba57600080fd5b6015548211156128325760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f2070657220747820696e207468697320776176650000000000000000000000006064820152608401610bff565b60115461283f8383614402565b111561288d5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152606401610bff565b8160125461289b919061441a565b3410156128ea5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610bff565b3373ffffffffffffffffffffffffffffffffffffffff86161461294f5760405162461bcd60e51b815260206004820152601060248201527f4e6f7420796f757220766f7563686572000000000000000000000000000000006044820152606401610bff565b33321461295b57600080fd5b60155473ffffffffffffffffffffffffffffffffffffffff86166000908152601b602052604090205461298f908490614402565b1115612a035760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201527f207065722057616c6c65740000000000000000000000000000000000000000006064820152608401610bff565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152600090603401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120601054601f89018390048302850183019093528784529350612ac59273ffffffffffffffffffffffffffffffffffffffff909216918491899089908190840183828082843760009201919091525061327592505050565b612b115760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420766f756368657200000000000000000000000000000000006044820152606401610bff565b612b1b868461330e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601b6020526040812080548592906119de908490614402565b60075473ffffffffffffffffffffffffffffffffffffffff163314612bb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bff565b73ffffffffffffffffffffffffffffffffffffffff8116612c405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bff565b6115ae8161344e565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60085473ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604081205490918391612d01908661441a565b612d0b91906144e4565b612d1591906144f8565b949350505050565b80471015612d6d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bff565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612dc7576040519150601f19603f3d011682016040523d82523d6000602084013e612dcc565b606091505b5050905080610fde5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bff565b6000612e4e82613328565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612eac575033612e9484610d54565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ebe57508151612ebe9033610a10565b905080612f335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610bff565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612fd85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff84166130615760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bff565b6130716000848460000151612c49565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff16021790559086018083529120549091166132115761318e816000541190565b15613211578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006132d76132d1846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b836137e2565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b611a65828260405180602001604052806000815250613806565b6040805180820190915260008082526020820152613347826000541190565b6133b95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610bff565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215613426579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016133bb565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613693576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061353c90339089908890889060040161450f565b6020604051808303816000875af1925050508015613595575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261359291810190614558565b60015b613648573d8080156135c3576040519150601f19603f3d011682016040523d82523d6000602084013e6135c8565b606091505b5080516000036136405760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612d15565b506001949350505050565b6060600d8054610cd190614380565b6060816000036136f057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561371a578061370481614575565b91506137139050600a836144e4565b91506136f4565b60008167ffffffffffffffff81111561373557613735614186565b6040519080825280601f01601f19166020018201604052801561375f576020820181803683370190505b5090505b8415612d15576137746001836144f8565b9150613781600a866145ad565b61378c906030614402565b60f81b8183815181106137a1576137a1614457565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137db600a866144e4565b9450613763565b60008060006137f18585613813565b915091506137fe81613881565b509392505050565b610fde8383836001613a6d565b60008082516041036138495760208301516040840151606085015160001a61383d87828585613d38565b9450945050505061387a565b82516040036138725760208301516040840151613867868383613e50565b93509350505061387a565b506000905060025b9250929050565b6000816004811115613895576138956145c1565b0361389d5750565b60018160048111156138b1576138b16145c1565b036138fe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610bff565b6002816004811115613912576139126145c1565b0361395f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bff565b6003816004811115613973576139736145c1565b036139e65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b60048160048111156139fa576139fa6145c1565b036115ae5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b60005473ffffffffffffffffffffffffffffffffffffffff8516613af95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bff565b83600003613b6f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610bff565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b85811015613d2f57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315613d2357613cb160008884886134c5565b613d235760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610bff565b60019182019101613c51565b5060005561326e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613d6f5750600090506003613e47565b8460ff16601b14158015613d8757508460ff16601c14155b15613d985750600090506004613e47565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613dec573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116613e4057600060019250925050613e47565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681613e8660ff86901c601b614402565b9050613e9487828885613d38565b935093505050935093915050565b828054613eae90614380565b90600052602060002090601f016020900481019282613ed05760008555613f16565b82601f10613ee957805160ff1916838001178555613f16565b82800160010185558215613f16579182015b82811115613f16578251825591602001919060010190613efb565b506116449291505b808211156116445760008155600101613f1e565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115ae57600080fd5b600060208284031215613f7257600080fd5b813561268281613f32565b600060208284031215613f8f57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146115ae57600080fd5b600060208284031215613fca57600080fd5b813561268281613f96565b60005b83811015613ff0578181015183820152602001613fd8565b838111156125095750506000910152565b60008151808452614019816020860160208601613fd5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006126826020830184614001565b6000806040838503121561407157600080fd5b823561407c81613f96565b946020939093013593505050565b8035801515811461409a57600080fd5b919050565b6000602082840312156140b157600080fd5b6126828261408a565b6000806000606084860312156140cf57600080fd5b83356140da81613f96565b925060208401356140ea81613f96565b929592945050506040919091013590565b6000806000806060858703121561411157600080fd5b843561411c81613f96565b9350602085013567ffffffffffffffff8082111561413957600080fd5b818701915087601f83011261414d57600080fd5b81358181111561415c57600080fd5b88602082850101111561416e57600080fd5b95986020929092019750949560400135945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156141d0576141d0614186565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561421657614216614186565b8160405280935085815286868601111561422f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561425b57600080fd5b813567ffffffffffffffff81111561427257600080fd5b8201601f8101841361428357600080fd5b612d15848235602084016141b5565b600080604083850312156142a557600080fd5b82356142b081613f96565b91506142be6020840161408a565b90509250929050565b600080600080608085870312156142dd57600080fd5b84356142e881613f96565b935060208501356142f881613f96565b925060408501359150606085013567ffffffffffffffff81111561431b57600080fd5b8501601f8101871361432c57600080fd5b61433b878235602084016141b5565b91505092959194509250565b6000806040838503121561435a57600080fd5b823561436581613f96565b9150602083013561437581613f96565b809150509250929050565b600181811c9082168061439457607f821691505b6020821081036143cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115614415576144156143d3565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614452576144526143d3565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008351614498818460208801613fd5565b8351908301906144ac818360208801613fd5565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826144f3576144f36144b5565b500490565b60008282101561450a5761450a6143d3565b500390565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261454e6080830184614001565b9695505050505050565b60006020828403121561456a57600080fd5b815161268281613f32565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145a6576145a66143d3565b5060010190565b6000826145bc576145bc6144b5565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea264697066735822122063da65d0a0c12b00650ae06f0d2c9e27e7272478a16f58abb845f06e08cbee3264736f6c634300080d0033
Deployed Bytecode Sourcemap
53507:7356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25389:40;12192:10;25389:40;;;218:42:1;206:55;;;188:74;;25419:9:0;293:2:1;278:18;;271:34;161:18;25389:40:0;;;;;;;53507:7356;;;;;40355:372;;;;;;;;;;-1:-1:-1;40355:372:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;40355:372:0;;;;;;;;59929:129;;;;;;;;;;-1:-1:-1;59929:129:0;;;;;:::i;:::-;;:::i;:::-;;59169:100;;;;;;;;;;-1:-1:-1;59169:100:0;;;;;:::i;:::-;;:::i;42241:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43803:214::-;;;;;;;;;;-1:-1:-1;43803:214:0;;;;;:::i;:::-;;:::i;:::-;;;2522:42:1;2510:55;;;2492:74;;2480:2;2465:18;43803:214:0;2346:226:1;53595:30:0;;;;;;;;;;;;;:::i;43324:413::-;;;;;;;;;;-1:-1:-1;43324:413:0;;;;;:::i;:::-;;:::i;59710:91::-;;;;;;;;;;-1:-1:-1;59710:91:0;;;;;:::i;:::-;;:::i;38612:100::-;;;;;;;;;;-1:-1:-1;38665:7:0;38692:12;38612:100;;;3393:25:1;;;3381:2;3366:18;38612:100:0;3247:177:1;26599:566:0;;;;;;;;;;-1:-1:-1;26599:566:0;;;;;:::i;:::-;;:::i;44679:162::-;;;;;;;;;;-1:-1:-1;44679:162:0;;;;;:::i;:::-;;:::i;59613:91::-;;;;;;;;;;-1:-1:-1;59613:91:0;;;;;:::i;:::-;;:::i;39276:1007::-;;;;;;;;;;-1:-1:-1;39276:1007:0;;;;;:::i;:::-;;:::i;54044:32::-;;;;;;;;;;;;;;;;25520:91;;;;;;;;;;-1:-1:-1;25591:12:0;;25520:91;;60699:161;;;:::i;44912:177::-;;;;;;;;;;-1:-1:-1;44912:177:0;;;;;:::i;:::-;;:::i;53692:33::-;;;;;;;;;;-1:-1:-1;53692:33:0;;;;;;;;;;;38789:187;;;;;;;;;;-1:-1:-1;38789:187:0;;;;;:::i;:::-;;:::i;55029:1018::-;;;;;;:::i;:::-;;:::i;60461:107::-;;;;;;;;;;-1:-1:-1;60461:107:0;;;;;:::i;:::-;;:::i;59277:100::-;;;;;;;;;;-1:-1:-1;59277:100:0;;;;;:::i;:::-;;:::i;53731:33::-;;;;;;;;;;-1:-1:-1;53731:33:0;;;;;;;;;;;53653;;;;;;;;;;-1:-1:-1;53653:33:0;;;;;;;;42050:124;;;;;;;;;;-1:-1:-1;42050:124:0;;;;;:::i;:::-;;:::i;40791:221::-;;;;;;;;;;-1:-1:-1;40791:221:0;;;;;:::i;:::-;;:::i;13942:94::-;;;;;;;;;;;;;:::i;58157:546::-;;;;;;:::i;:::-;;:::i;56055:1038::-;;;;;;:::i;:::-;;:::i;54082:43::-;;;;;;;;;;;;;;;;26299:100;;;;;;;;;;-1:-1:-1;26299:100:0;;;;;:::i;:::-;;:::i;58726:202::-;;;;;;;;;;-1:-1:-1;58726:202:0;;;;;:::i;:::-;;:::i;13291:87::-;;;;;;;;;;-1:-1:-1;13364:6:0;;;;13291:87;;59504:100;;;;;;;;;;-1:-1:-1;59504:100:0;;;;;:::i;:::-;;:::i;42410:104::-;;;;;;;;;;;;;:::i;26097:109::-;;;;;;;;;;-1:-1:-1;26097:109:0;;;;;:::i;:::-;26180:18;;26153:7;26180:18;;;:9;:18;;;;;;;26097:109;60328:110;;;;;;;;;;-1:-1:-1;60328:110:0;;;;;:::i;:::-;;:::i;54800:68::-;;;;;;;;;;-1:-1:-1;54800:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;44089:288;;;;;;;;;;-1:-1:-1;44089:288:0;;;;;:::i;:::-;;:::i;60205:118::-;;;;;;;;;;-1:-1:-1;60205:118:0;;;;;:::i;:::-;;:::i;45160:355::-;;;;;;;;;;-1:-1:-1;45160:355:0;;;;;:::i;:::-;;:::i;54730:64::-;;;;;;;;;;-1:-1:-1;54730:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;59807:91;;;;;;;;;;-1:-1:-1;59807:91:0;;;;;:::i;:::-;;:::i;42585:335::-;;;;;;;;;;-1:-1:-1;42585:335:0;;;;;:::i;:::-;;:::i;25893:105::-;;;;;;;;;;-1:-1:-1;25893:105:0;;;;;:::i;:::-;25974:16;;25947:7;25974:16;;;:7;:16;;;;;;;25893:105;59385:98;;;;;;;;;;-1:-1:-1;59385:98:0;;;;;:::i;:::-;;:::i;60063:137::-;;;;;;;;;;-1:-1:-1;60063:137:0;;;;;:::i;:::-;;:::i;54874:58::-;;;;;;;;;;-1:-1:-1;54874:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;25705:95;;;;;;;;;;-1:-1:-1;25778:14:0;;25705:95;;57101:1048;;;;;;:::i;:::-;;:::i;44448:164::-;;;;;;;;;;-1:-1:-1;44448:164:0;;;;;:::i;:::-;44569:25;;;;44545:4;44569:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44448:164;14191:192;;;;;;;;;;-1:-1:-1;14191:192:0;;;;;:::i;:::-;;:::i;40355:372::-;40457:4;40494:40;;;40509:25;40494:40;;:105;;-1:-1:-1;40551:48:0;;;40566:33;40551:48;40494:105;:172;;;-1:-1:-1;40616:50:0;;;40631:35;40616:50;40494:172;:225;;;-1:-1:-1;30867:25:0;30852:40;;;;40683:36;40474:245;40355:372;-1:-1:-1;;40355:372:0:o;59929:129::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;;;;;;;;;60014:27:::1;:37:::0;59929:129::o;59169:100::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59240:12:::1;:22:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;59169:100::o;42241:::-;42295:13;42328:5;42321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42241:100;:::o;43803:214::-;43871:7;43899:16;43907:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;43899:16;43891:74;;;;-1:-1:-1;;;43891:74:0;;8808:2:1;43891:74:0;;;8790:21:1;8847:2;8827:18;;;8820:30;8886:34;8866:18;;;8859:62;8957:15;8937:18;;;8930:43;8990:19;;43891:74:0;8606:409:1;43891:74:0;-1:-1:-1;43985:24:0;;;;:15;:24;;;;;;;;;43803:214::o;53595:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43324:413::-;43397:13;43413:24;43429:7;43413:15;:24::i;:::-;43397:40;;43462:5;43456:11;;:2;:11;;;43448:58;;;;-1:-1:-1;;;43448:58:0;;9222:2:1;43448:58:0;;;9204:21:1;9261:2;9241:18;;;9234:30;9300:34;9280:18;;;9273:62;9371:4;9351:18;;;9344:32;9393:19;;43448:58:0;9020:398:1;43448:58:0;12192:10;43541:21;;;;;:62;;-1:-1:-1;43566:37:0;43583:5;12192:10;44448:164;:::i;43566:37::-;43519:169;;;;-1:-1:-1;;;43519:169:0;;9625:2:1;43519:169:0;;;9607:21:1;9664:2;9644:18;;;9637:30;9703:34;9683:18;;;9676:62;9774:27;9754:18;;;9747:55;9819:19;;43519:169:0;9423:421:1;43519:169:0;43701:28;43710:2;43714:7;43723:5;43701:8;:28::i;:::-;43386:351;43324:413;;:::o;59710:91::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59771:13:::1;:23:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;59710:91::o;26599:566::-;26675:16;;;26694:1;26675:16;;;:7;:16;;;;;;26667:71;;;;-1:-1:-1;;;26667:71:0;;10051:2:1;26667:71:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;10200:8;10180:18;;;10173:36;10226:19;;26667:71:0;9849:402:1;26667:71:0;26751:21;26799:15;25778:14;;;25705:95;26799:15;26775:39;;:21;:39;:::i;:::-;26751:63;;26825:15;26843:58;26859:7;26868:13;26883:17;26892:7;26180:18;;26153:7;26180:18;;;:9;:18;;;;;;;26097:109;26883:17;26843:15;:58::i;:::-;26825:76;;26922:7;26933:1;26922:12;26914:68;;;;-1:-1:-1;;;26914:68:0;;10780:2:1;26914:68:0;;;10762:21:1;10819:2;10799:18;;;10792:30;10858:34;10838:18;;;10831:62;10929:13;10909:18;;;10902:41;10960:19;;26914:68:0;10578:407:1;26914:68:0;26995:18;;;;;;;:9;:18;;;;;:29;;27017:7;;26995:18;:29;;27017:7;;26995:29;:::i;:::-;;;;;;;;27053:7;27035:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;27073:35:0;;-1:-1:-1;27091:7:0;27100;27073:17;:35::i;:::-;27124:33;;;218:42:1;206:55;;188:74;;293:2;278:18;;271:34;;;27124:33:0;;161:18:1;27124:33:0;;;;;;;26656:509;;26599:566;:::o;44679:162::-;44805:28;44815:4;44821:2;44825:7;44805:9;:28::i;59613:91::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59674:13:::1;:23:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;59613:91::o;39276:1007::-;39365:7;39401:16;39411:5;39401:9;:16::i;:::-;39393:5;:24;39385:71;;;;-1:-1:-1;;;39385:71:0;;11502:2:1;39385:71:0;;;11484:21:1;11541:2;11521:18;;;11514:30;11580:34;11560:18;;;11553:62;11651:4;11631:18;;;11624:32;11673:19;;39385:71:0;11300:398:1;39385:71:0;39467:22;38692:12;;;39467:22;;39730:466;39750:14;39746:1;:18;39730:466;;;39790:31;39824:14;;;:11;:14;;;;;;;;;39790:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;39861:28;39857:111;;39934:14;;;-1:-1:-1;39857:111:0;40011:5;39990:26;;:17;:26;;;39986:195;;40060:5;40045:11;:20;40041:85;;-1:-1:-1;40101:1:0;-1:-1:-1;40094:8:0;;-1:-1:-1;;;40094:8:0;40041:85;40148:13;;;;;39986:195;-1:-1:-1;39766:3:0;;39730:466;;;-1:-1:-1;40219:56:0;;-1:-1:-1;;;40219:56:0;;11905:2:1;40219:56:0;;;11887:21:1;11944:2;11924:18;;;11917:30;11983:34;11963:18;;;11956:62;12054:16;12034:18;;;12027:44;12088:19;;40219:56:0;11703:410:1;60699:161:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;60769:58:::1;::::0;60751:12:::1;::::0;60777:10:::1;::::0;60801:21:::1;::::0;60751:12;60769:58;60751:12;60769:58;60801:21;60777:10;60769:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60750:77;;;60845:7;60837:16;;;::::0;::::1;;60744:116;60699:161::o:0;44912:177::-;45042:39;45059:4;45065:2;45069:7;45042:39;;;;;;;;;;;;:16;:39::i;38789:187::-;38856:7;38692:12;;38884:5;:21;38876:69;;;;-1:-1:-1;;;38876:69:0;;12530:2:1;38876:69:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;12679:5;12659:18;;;12652:33;12702:19;;38876:69:0;12328:399:1;38876:69:0;-1:-1:-1;38963:5:0;38789:187::o;55029:1018::-;55145:10;38692:12;55189:13;;;;55181:22;;;;;;55237:27;;55221:12;:43;;55213:108;;;;-1:-1:-1;;;55213:108:0;;12934:2:1;55213:108:0;;;12916:21:1;12973:2;12953:18;;;12946:30;13012:34;12992:18;;;12985:62;13083:22;13063:18;;;13056:50;13123:19;;55213:108:0;12732:416:1;55213:108:0;55360:10;;55339:17;55344:12;55339:2;:17;:::i;:::-;:31;;55331:76;;;;-1:-1:-1;;;55331:76:0;;13355:2:1;55331:76:0;;;13337:21:1;;;13374:18;;;13367:30;13433:34;13413:18;;;13406:62;13485:18;;55331:76:0;13153:356:1;55331:76:0;55456:12;55438:15;;:30;;;;:::i;:::-;55425:9;:43;;55417:87;;;;-1:-1:-1;;;55417:87:0;;13949:2:1;55417:87:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027:33;14007:18;;;14000:61;14078:18;;55417:87:0;13747:355:1;55417:87:0;55522:10;:22;;;;55514:51;;;;-1:-1:-1;;;55514:51:0;;14309:2:1;55514:51:0;;;14291:21:1;14348:2;14328:18;;;14321:30;14387:18;14367;;;14360:46;14423:18;;55514:51:0;14107:340:1;55514:51:0;55583:10;55597:9;55583:23;55575:32;;;;;;55683:27;;55625:39;;;;;;;:29;:39;;;;;;:54;;55667:12;;55625:54;:::i;:::-;:85;;55617:141;;;;-1:-1:-1;;;55617:141:0;;14654:2:1;55617:141:0;;;14636:21:1;14693:2;14673:18;;;14666:30;14732:34;14712:18;;;14705:62;14803:13;14783:18;;;14776:41;14834:19;;55617:141:0;14452:407:1;55617:141:0;55809:26;;15026:66:1;15013:2;15009:15;;;15005:88;55809:26:0;;;14993:101:1;55771:12:0;;15110::1;;55809:26:0;;;;;;;;;;;;55786:59;;;;;;55771:74;;55863:46;55880:12;;;;;;;;;;;55894:4;55900:8;;55863:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55863:16:0;;-1:-1:-1;;;55863:46:0:i;:::-;55855:74;;;;-1:-1:-1;;;55855:74:0;;15335:2:1;55855:74:0;;;15317:21:1;15374:2;15354:18;;;15347:30;15413:17;15393:18;;;15386:45;15448:18;;55855:74:0;15133:339:1;55855:74:0;55942:33;55952:8;55962:12;55942:9;:33::i;:::-;55985:39;;;;;;;:29;:39;;;;;:55;;56028:12;;55985:39;:55;;56028:12;;55985:55;:::i;:::-;;;;-1:-1:-1;;;;;;;;55029:1018:0:o;60461:107::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;60534:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60461:107:::0;:::o;59277:100::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59348:12:::1;:22:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59277:100::o;42050:124::-;42114:7;42141:20;42153:7;42141:11;:20::i;:::-;:25;;42050:124;-1:-1:-1;;42050:124:0:o;40791:221::-;40855:7;40883:19;;;40875:75;;;;-1:-1:-1;;;40875:75:0;;15679:2:1;40875:75:0;;;15661:21:1;15718:2;15698:18;;;15691:30;15757:34;15737:18;;;15730:62;15828:13;15808:18;;;15801:41;15859:19;;40875:75:0;15477:407:1;40875:75:0;-1:-1:-1;40976:19:0;;;;;;:12;:19;;;;;:27;;;;40791:221::o;13942:94::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;14007:21:::1;14025:1;14007:9;:21::i;:::-;13942:94::o:0;58157:546::-;58229:10;38692:12;58277:13;;;;;;;58269:22;;;;;;58329:17;;58313:12;:33;;58305:98;;;;-1:-1:-1;;;58305:98:0;;16091:2:1;58305:98:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;16240:22;16220:18;;;16213:50;16280:19;;58305:98:0;15889:416:1;58305:98:0;58446:10;;58425:17;58430:12;58425:2;:17;:::i;:::-;:31;;58417:76;;;;-1:-1:-1;;;58417:76:0;;13355:2:1;58417:76:0;;;13337:21:1;;;13374:18;;;13367:30;13433:34;13413:18;;;13406:62;13485:18;;58417:76:0;13153:356:1;58417:76:0;58546:12;58528:15;;:30;;;;:::i;:::-;58515:9;:43;;58507:87;;;;-1:-1:-1;;;58507:87:0;;13949:2:1;58507:87:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027:33;14007:18;;;14000:61;14078:18;;58507:87:0;13747:355:1;58507:87:0;58616:10;58630:9;58616:23;58608:32;;;;;;58657:35;58667:10;58679:12;58657:9;:35::i;56055:1038::-;56175:10;38692:12;56219:13;;;;56211:22;;;;;;56267:31;;56251:12;:47;;56243:112;;;;-1:-1:-1;;;56243:112:0;;16091:2:1;56243:112:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;16240:22;16220:18;;;16213:50;16280:19;;56243:112:0;15889:416:1;56243:112:0;56394:10;;56373:17;56378:12;56373:2;:17;:::i;:::-;:31;;56365:76;;;;-1:-1:-1;;;56365:76:0;;13355:2:1;56365:76:0;;;13337:21:1;;;13374:18;;;13367:30;13433:34;13413:18;;;13406:62;13485:18;;56365:76:0;13153:356:1;56365:76:0;56490:12;56472:15;;:30;;;;:::i;:::-;56459:9;:43;;56451:87;;;;-1:-1:-1;;;56451:87:0;;13949:2:1;56451:87:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027:33;14007:18;;;14000:61;14078:18;;56451:87:0;13747:355:1;56451:87:0;56556:10;:22;;;;56548:51;;;;-1:-1:-1;;;56548:51:0;;14309:2:1;56548:51:0;;;14291:21:1;14348:2;14328:18;;;14321:30;14387:18;14367;;;14360:46;14423:18;;56548:51:0;14107:340:1;56548:51:0;56617:10;56631:9;56617:23;56609:32;;;;;;56721:31;;56659:43;;;;;;;:33;:43;;;;;;:58;;56705:12;;56659:58;:::i;:::-;:93;;56651:149;;;;-1:-1:-1;;;56651:149:0;;14654:2:1;56651:149:0;;;14636:21:1;14693:2;14673:18;;;14666:30;14732:34;14712:18;;;14705:62;14803:13;14783:18;;;14776:41;14834:19;;56651:149:0;14452:407:1;56651:149:0;56851:26;;15026:66:1;15013:2;15009:15;;;15005:88;56851:26:0;;;14993:101:1;56813:12:0;;15110::1;;56851:26:0;;;;;;;;;;;;;56828:59;;56851:26;56828:59;;;;56922:12;;56905:46;;;;;;;;;;;;;;;;;;56828:59;-1:-1:-1;56905:46:0;;56922:12;;;;;56828:59;;56942:8;;;;;;56905:46;;56942:8;;;;56905:46;;;;;;;;;-1:-1:-1;56905:16:0;;-1:-1:-1;;;56905:46:0:i;:::-;56897:74;;;;-1:-1:-1;;;56897:74:0;;15335:2:1;56897:74:0;;;15317:21:1;15374:2;15354:18;;;15347:30;15413:17;15393:18;;;15386:45;15448:18;;56897:74:0;15133:339:1;56897:74:0;56984:33;56994:8;57004:12;56984:9;:33::i;:::-;57027:43;;;;;;;:33;:43;;;;;:59;;57074:12;;57027:43;:59;;57074:12;;57027:59;:::i;26299:100::-;26350:7;26377;26385:5;26377:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;26299:100;-1:-1:-1;;26299:100:0:o;58726:202::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;58806:10:::1;38692:12:::0;58871:10:::1;::::0;58850:17:::1;58855:12:::0;38692;58850:17:::1;:::i;:::-;:31;;58842:40;;;::::0;::::1;;58892:29;58902:4;58908:12;58892:9;:29::i;59504:100::-:0;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59570:15:::1;:27:::0;59504:100::o;42410:104::-;42466:13;42499:7;42492:14;;;;;:::i;60328:110::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;60404:17:::1;:27:::0;60328:110::o;44089:288::-;12192:10;44184:24;;;;44176:63;;;;-1:-1:-1;;;44176:63:0;;16701:2:1;44176:63:0;;;16683:21:1;16740:2;16720:18;;;16713:30;16779:28;16759:18;;;16752:56;16825:18;;44176:63:0;16499:350:1;44176:63:0;12192:10;44252:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;44321:48;;888:41:1;;;44252:42:0;;12192:10;44321:48;;861:18:1;44321:48:0;;;;;;;44089:288;;:::o;60205:118::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;60285:21:::1;:31:::0;60205:118::o;45160:355::-;45319:28;45329:4;45335:2;45339:7;45319:9;:28::i;:::-;45380:48;45403:4;45409:2;45413:7;45422:5;45380:22;:48::i;:::-;45358:149;;;;-1:-1:-1;;;45358:149:0;;17056:2:1;45358:149:0;;;17038:21:1;17095:2;17075:18;;;17068:30;17134:34;17114:18;;;17107:62;17205:21;17185:18;;;17178:49;17244:19;;45358:149:0;16854:415:1;45358:149:0;45160:355;;;;:::o;59807:91::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59868:13:::1;:23:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;59807:91::o;42585:335::-;42658:13;42692:16;42700:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;42692:16;42684:76;;;;-1:-1:-1;;;42684:76:0;;17476:2:1;42684:76:0;;;17458:21:1;17515:2;17495:18;;;17488:30;17554:34;17534:18;;;17527:62;17625:17;17605:18;;;17598:45;17660:19;;42684:76:0;17274:411:1;42684:76:0;42773:21;42797:10;:8;:10::i;:::-;42773:34;;42831:7;42825:21;42850:1;42825:26;:87;;;;;;;;;;;;;;;;;42878:7;42887:18;:7;:16;:18::i;:::-;42861:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42825:87;42818:94;42585:335;-1:-1:-1;;;42585:335:0:o;59385:98::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;59455:11:::1;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59385:98::o;60063:137::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;60152:31:::1;:41:::0;60063:137::o;57101:1048::-;57216:10;38692:12;57264:13;;;;;;;57256:22;;;;;;57316:21;;57300:12;:37;;57292:102;;;;-1:-1:-1;;;57292:102:0;;16091:2:1;57292:102:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;16240:22;16220:18;;;16213:50;16280:19;;57292:102:0;15889:416:1;57292:102:0;57437:10;;57416:17;57421:12;57416:2;:17;:::i;:::-;:31;;57408:76;;;;-1:-1:-1;;;57408:76:0;;13355:2:1;57408:76:0;;;13337:21:1;;;13374:18;;;13367:30;13433:34;13413:18;;;13406:62;13485:18;;57408:76:0;13153:356:1;57408:76:0;57537:12;57519:15;;:30;;;;:::i;:::-;57506:9;:43;;57498:87;;;;-1:-1:-1;;;57498:87:0;;13949:2:1;57498:87:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027:33;14007:18;;;14000:61;14078:18;;57498:87:0;13747:355:1;57498:87:0;57607:10;:22;;;;57599:51;;;;-1:-1:-1;;;57599:51:0;;14309:2:1;57599:51:0;;;14291:21:1;14348:2;14328:18;;;14321:30;14387:18;14367;;;14360:46;14423:18;;57599:51:0;14107:340:1;57599:51:0;57672:10;57686:9;57672:23;57664:32;;;;;;57770:21;;57718:33;;;;;;;:23;:33;;;;;;:48;;57754:12;;57718:48;:::i;:::-;:73;;57710:129;;;;-1:-1:-1;;;57710:129:0;;14654:2:1;57710:129:0;;;14636:21:1;14693:2;14673:18;;;14666:30;14732:34;14712:18;;;14705:62;14803:13;14783:18;;;14776:41;14834:19;;57710:129:0;14452:407:1;57710:129:0;57898:26;;15026:66:1;15013:2;15009:15;;;15005:88;57898:26:0;;;14993:101:1;57856:12:0;;15110::1;;57898:26:0;;;;;;;;;;;;;57871:67;;57898:26;57871:67;;;;57977:11;;57960:45;;;;;;;;;;;;;;;;;;57871:67;-1:-1:-1;57960:45:0;;57977:11;;;;;57871:67;;57996:8;;;;;;57960:45;;57996:8;;;;57960:45;;;;;;;;;-1:-1:-1;57960:16:0;;-1:-1:-1;;;57960:45:0:i;:::-;57952:73;;;;-1:-1:-1;;;57952:73:0;;15335:2:1;57952:73:0;;;15317:21:1;15374:2;15354:18;;;15347:30;15413:17;15393:18;;;15386:45;15448:18;;57952:73:0;15133:339:1;57952:73:0;58042:33;58052:8;58062:12;58042:9;:33::i;:::-;58089;;;;;;;:23;:33;;;;;:49;;58126:12;;58089:33;:49;;58126:12;;58089:49;:::i;14191:192::-;13364:6;;13511:23;13364:6;12192:10;13511:23;13503:68;;;;-1:-1:-1;;;13503:68:0;;8005:2:1;13503:68:0;;;7987:21:1;;;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;8135:18;;13503:68:0;7803:356:1;13503:68:0;14280:22:::1;::::0;::::1;14272:73;;;::::0;-1:-1:-1;;;14272:73:0;;18367:2:1;14272:73:0::1;::::0;::::1;18349:21:1::0;18406:2;18386:18;;;18379:30;18445:34;18425:18;;;18418:62;18516:8;18496:18;;;18489:36;18542:19;;14272:73:0::1;18165:402:1::0;14272:73:0::1;14356:19;14366:8;14356:9;:19::i;50690:196::-:0;50805:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;50850:28;;50805:24;;50850:28;;;;;;;50690:196;;;:::o;27345:248::-;27555:12;;27535:16;;;27491:7;27535:16;;;:7;:16;;;;;;27491:7;;27570:15;;27519:32;;:13;:32;:::i;:::-;27518:49;;;;:::i;:::-;:67;;;;:::i;:::-;27511:74;27345:248;-1:-1:-1;;;;27345:248:0:o;16627:317::-;16742:6;16717:21;:31;;16709:73;;;;-1:-1:-1;;;16709:73:0;;19218:2:1;16709:73:0;;;19200:21:1;19257:2;19237:18;;;19230:30;19296:31;19276:18;;;19269:59;19345:18;;16709:73:0;19016:353:1;16709:73:0;16796:12;16814:9;:14;;16836:6;16814:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16795:52;;;16866:7;16858:78;;;;-1:-1:-1;;;16858:78:0;;19576:2:1;16858:78:0;;;19558:21:1;19615:2;19595:18;;;19588:30;19654:34;19634:18;;;19627:62;19725:28;19705:18;;;19698:56;19771:19;;16858:78:0;19374:422:1;48570:2002:0;48685:35;48723:20;48735:7;48723:11;:20::i;:::-;48798:18;;48685:58;;-1:-1:-1;48756:22:0;;48782:34;;12192:10;48782:34;;;:87;;;-1:-1:-1;12192:10:0;48833:20;48845:7;48833:11;:20::i;:::-;:36;;;48782:87;:154;;;-1:-1:-1;48903:18:0;;48886:50;;12192:10;44448:164;:::i;48886:50::-;48756:181;;48958:17;48950:80;;;;-1:-1:-1;;;48950:80:0;;20003:2:1;48950:80:0;;;19985:21:1;20042:2;20022:18;;;20015:30;20081:34;20061:18;;;20054:62;20152:20;20132:18;;;20125:48;20190:19;;48950:80:0;19801:414:1;48950:80:0;49073:4;49051:26;;:13;:18;;;:26;;;49043:77;;;;-1:-1:-1;;;49043:77:0;;20422:2:1;49043:77:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:34;20480:18;;;20473:62;20571:8;20551:18;;;20544:36;20597:19;;49043:77:0;20220:402:1;49043:77:0;49139:16;;;49131:66;;;;-1:-1:-1;;;49131:66:0;;20829:2:1;49131:66:0;;;20811:21:1;20868:2;20848:18;;;20841:30;20907:34;20887:18;;;20880:62;20978:7;20958:18;;;20951:35;21003:19;;49131:66:0;20627:401:1;49131:66:0;49318:49;49335:1;49339:7;49348:13;:18;;;49318:8;:49::i;:::-;49663:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;49709:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49709:29:0;;;;;;;;;;;;;49755:20;;;:11;:20;;;;;;:30;;49800:61;;;;;;49845:15;49800:61;;;;;;50135:11;;;50165:24;;;;;:29;50135:11;;50165:29;50161:295;;50233:20;50241:11;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;50233:20;50229:212;;;50310:18;;;50278:24;;;:11;:24;;;;;;;;:50;;50393:28;;;;50351:70;;;;;;;;50278:50;;;;50351:70;;;;;;;50229:212;49638:829;50503:7;50499:2;50484:27;;50493:4;50484:27;;;;;;;;;;;;50522:42;48674:1898;;48570:2002;;;:::o;58953:208::-;59058:4;59092:62;59106:35;59135:5;10406:58;;23190:66:1;10406:58:0;;;23178:79:1;23273:12;;;23266:28;;;10273:7:0;;23310:12:1;;10406:58:0;;;;;;;;;;;;10396:69;;;;;;10389:76;;10204:269;;;;59106:35;59143:10;59092:13;:62::i;:::-;59081:73;;:7;:73;;;59074:80;;58953:208;;;;;:::o;45889:104::-;45958:27;45968:2;45972:8;45958:27;;;;;;;;;;;;:9;:27::i;41451:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;41554:16:0;41562:7;45827:4;45861:12;-1:-1:-1;45851:22:0;45770:111;41554:16;41546:71;;;;-1:-1:-1;;;41546:71:0;;21235:2:1;41546:71:0;;;21217:21:1;21274:2;21254:18;;;21247:30;21313:34;21293:18;;;21286:62;21384:12;21364:18;;;21357:40;21414:19;;41546:71:0;21033:406:1;41546:71:0;41675:7;41655:245;41722:31;41756:17;;;:11;:17;;;;;;;;;41722:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;41796:28;41792:93;;41856:9;41451:537;-1:-1:-1;;;41451:537:0:o;41792:93::-;-1:-1:-1;41695:6:0;;41655:245;;14391:173;14466:6;;;;14483:17;;;;;;;;;;;14516:40;;14466:6;;;14483:17;14466:6;;14516:40;;14447:16;;14516:40;14436:128;14391:173;:::o;51451:804::-;51606:4;51627:13;;;15628:20;15676:8;51623:625;;51663:72;;;;;:36;;;;;;:72;;12192:10;;51714:4;;51720:7;;51729:5;;51663:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51663:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51659:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51909:6;:13;51926:1;51909:18;51905:273;;51952:61;;-1:-1:-1;;;51952:61:0;;17056:2:1;51952:61:0;;;17038:21:1;17095:2;17075:18;;;17068:30;17134:34;17114:18;;;17107:62;17205:21;17185:18;;;17178:49;17244:19;;51952:61:0;16854:415:1;51905:273:0;52128:6;52122:13;52113:6;52109:2;52105:15;52098:38;51659:534;51786:55;;51796:45;51786:55;;-1:-1:-1;51779:62:0;;51623:625;-1:-1:-1;52232:4:0;51451:804;;;;;;:::o;60576:115::-;60636:13;60668:16;60661:23;;;;;:::i;286:723::-;342:13;563:5;572:1;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;;;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;6402:231;6480:7;6501:17;6520:18;6542:27;6553:4;6559:9;6542:10;:27::i;:::-;6500:69;;;;6580:18;6592:5;6580:11;:18::i;:::-;-1:-1:-1;6616:9:0;6402:231;-1:-1:-1;;;6402:231:0:o;46356:163::-;46479:32;46485:2;46489:8;46499:5;46506:4;46479:5;:32::i;4292:1308::-;4373:7;4382:12;4607:9;:16;4627:2;4607:22;4603:990;;4903:4;4888:20;;4882:27;4953:4;4938:20;;4932:27;5011:4;4996:20;;4990:27;4646:9;4982:36;5054:25;5065:4;4982:36;4882:27;4932;5054:10;:25::i;:::-;5047:32;;;;;;;;;4603:990;5101:9;:16;5121:2;5101:22;5097:496;;5376:4;5361:20;;5355:27;5427:4;5412:20;;5406:27;5469:23;5480:4;5355:27;5406;5469:10;:23::i;:::-;5462:30;;;;;;;;5097:496;-1:-1:-1;5541:1:0;;-1:-1:-1;5545:35:0;5097:496;4292:1308;;;;;:::o;2563:643::-;2641:20;2632:5;:29;;;;;;;;:::i;:::-;;2628:571;;2563:643;:::o;2628:571::-;2739:29;2730:5;:38;;;;;;;;:::i;:::-;;2726:473;;2785:34;;-1:-1:-1;;;2785:34:0;;23724:2:1;2785:34:0;;;23706:21:1;23763:2;23743:18;;;23736:30;23802:26;23782:18;;;23775:54;23846:18;;2785:34:0;23522:348:1;2726:473:0;2850:35;2841:5;:44;;;;;;;;:::i;:::-;;2837:362;;2902:41;;-1:-1:-1;;;2902:41:0;;24077:2:1;2902:41:0;;;24059:21:1;24116:2;24096:18;;;24089:30;24155:33;24135:18;;;24128:61;24206:18;;2902:41:0;23875:355:1;2837:362:0;2974:30;2965:5;:39;;;;;;;;:::i;:::-;;2961:238;;3021:44;;-1:-1:-1;;;3021:44:0;;24437:2:1;3021:44:0;;;24419:21:1;24476:2;24456:18;;;24449:30;24515:34;24495:18;;;24488:62;24586:4;24566:18;;;24559:32;24608:19;;3021:44:0;24235:398:1;2961:238:0;3096:30;3087:5;:39;;;;;;;;:::i;:::-;;3083:116;;3143:44;;-1:-1:-1;;;3143:44:0;;24840:2:1;3143:44:0;;;24822:21:1;24879:2;24859:18;;;24852:30;24918:34;24898:18;;;24891:62;24989:4;24969:18;;;24962:32;25011:19;;3143:44:0;24638:398:1;46778:1538:0;46917:20;46940:12;46971:16;;;46963:62;;;;-1:-1:-1;;;46963:62:0;;25243:2:1;46963:62:0;;;25225:21:1;25282:2;25262:18;;;25255:30;25321:34;25301:18;;;25294:62;25392:3;25372:18;;;25365:31;25413:19;;46963:62:0;25041:397:1;46963:62:0;47044:8;47056:1;47044:13;47036:66;;;;-1:-1:-1;;;47036:66:0;;25645:2:1;47036:66:0;;;25627:21:1;25684:2;25664:18;;;25657:30;25723:34;25703:18;;;25696:62;25794:10;25774:18;;;25767:38;25822:19;;47036:66:0;25443:404:1;47036:66:0;47454:16;;;;;;;:12;:16;;;;;;;;:45;;47514:50;47454:45;;;;;;;;;;;;;;47514:50;;;;;;;;;;;;;;47581:25;;;:11;:25;;;;;:35;;47631:66;;;;;;47681:15;47631:66;;;;;;;47581:25;;47766:415;47786:8;47782:1;:12;47766:415;;;47825:38;;47850:12;;47825:38;;;;47842:1;;47825:38;;47842:1;;47825:38;47886:4;47882:249;;;47949:59;47980:1;47984:2;47988:12;48002:5;47949:22;:59::i;:::-;47915:196;;;;-1:-1:-1;;;47915:196:0;;17056:2:1;47915:196:0;;;17038:21:1;17095:2;17075:18;;;17068:30;17134:34;17114:18;;;17107:62;17205:21;17185:18;;;17178:49;17244:19;;47915:196:0;16854:415:1;47915:196:0;48151:14;;;;;47796:3;47766:415;;;-1:-1:-1;48197:12:0;:27;48248:60;45160:355;7854:1632;7985:7;;8919:66;8906:79;;8902:163;;;-1:-1:-1;9018:1:0;;-1:-1:-1;9022:30:0;9002:51;;8902:163;9079:1;:7;;9084:2;9079:7;;:18;;;;;9090:1;:7;;9095:2;9090:7;;9079:18;9075:102;;;-1:-1:-1;9130:1:0;;-1:-1:-1;9134:30:0;9114:51;;9075:102;9291:24;;;9274:14;9291:24;;;;;;;;;26079:25:1;;;26152:4;26140:17;;26120:18;;;26113:45;;;;26174:18;;;26167:34;;;26217:18;;;26210:34;;;9291:24:0;;26051:19:1;;9291:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9291:24:0;;;;;;-1:-1:-1;;9330:20:0;;;9326:103;;9383:1;9387:29;9367:50;;;;;;;9326:103;9449:6;-1:-1:-1;9457:20:0;;-1:-1:-1;7854:1632:0;;;;;;;;:::o;6896:344::-;7010:7;;7069:66;7056:80;;7010:7;7163:25;7179:3;7164:18;;;7186:2;7163:25;:::i;:::-;7147:42;;7207:25;7218:4;7224:1;7227;7230;7207:10;:25::i;:::-;7200:32;;;;;;6896:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:1;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:180::-;999:6;1052:2;1040:9;1031:7;1027:23;1023:32;1020:52;;;1068:1;1065;1058:12;1020:52;-1:-1:-1;1091:23:1;;940:180;-1:-1:-1;940:180:1:o;1125:154::-;1211:42;1204:5;1200:54;1193:5;1190:65;1180:93;;1269:1;1266;1259:12;1284:247;1343:6;1396:2;1384:9;1375:7;1371:23;1367:32;1364:52;;;1412:1;1409;1402:12;1364:52;1451:9;1438:23;1470:31;1495:5;1470:31;:::i;1536:258::-;1608:1;1618:113;1632:6;1629:1;1626:13;1618:113;;;1708:11;;;1702:18;1689:11;;;1682:39;1654:2;1647:10;1618:113;;;1749:6;1746:1;1743:13;1740:48;;;-1:-1:-1;;1784:1:1;1766:16;;1759:27;1536:258::o;1799:317::-;1841:3;1879:5;1873:12;1906:6;1901:3;1894:19;1922:63;1978:6;1971:4;1966:3;1962:14;1955:4;1948:5;1944:16;1922:63;:::i;:::-;2030:2;2018:15;2035:66;2014:88;2005:98;;;;2105:4;2001:109;;1799:317;-1:-1:-1;;1799:317:1:o;2121:220::-;2270:2;2259:9;2252:21;2233:4;2290:45;2331:2;2320:9;2316:18;2308:6;2290:45;:::i;2577:315::-;2645:6;2653;2706:2;2694:9;2685:7;2681:23;2677:32;2674:52;;;2722:1;2719;2712:12;2674:52;2761:9;2748:23;2780:31;2805:5;2780:31;:::i;:::-;2830:5;2882:2;2867:18;;;;2854:32;;-1:-1:-1;;;2577:315:1:o;2897:160::-;2962:20;;3018:13;;3011:21;3001:32;;2991:60;;3047:1;3044;3037:12;2991:60;2897:160;;;:::o;3062:180::-;3118:6;3171:2;3159:9;3150:7;3146:23;3142:32;3139:52;;;3187:1;3184;3177:12;3139:52;3210:26;3226:9;3210:26;:::i;3689:456::-;3766:6;3774;3782;3835:2;3823:9;3814:7;3810:23;3806:32;3803:52;;;3851:1;3848;3841:12;3803:52;3890:9;3877:23;3909:31;3934:5;3909:31;:::i;:::-;3959:5;-1:-1:-1;4016:2:1;4001:18;;3988:32;4029:33;3988:32;4029:33;:::i;:::-;3689:456;;4081:7;;-1:-1:-1;;;4135:2:1;4120:18;;;;4107:32;;3689:456::o;4150:794::-;4238:6;4246;4254;4262;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;4370:9;4357:23;4389:31;4414:5;4389:31;:::i;:::-;4439:5;-1:-1:-1;4495:2:1;4480:18;;4467:32;4518:18;4548:14;;;4545:34;;;4575:1;4572;4565:12;4545:34;4613:6;4602:9;4598:22;4588:32;;4658:7;4651:4;4647:2;4643:13;4639:27;4629:55;;4680:1;4677;4670:12;4629:55;4720:2;4707:16;4746:2;4738:6;4735:14;4732:34;;;4762:1;4759;4752:12;4732:34;4807:7;4802:2;4793:6;4789:2;4785:15;4781:24;4778:37;4775:57;;;4828:1;4825;4818:12;4775:57;4150:794;;4859:2;4851:11;;;;;-1:-1:-1;4881:6:1;;4934:2;4919:18;4906:32;;-1:-1:-1;4150:794:1;-1:-1:-1;;;4150:794:1:o;4949:184::-;5001:77;4998:1;4991:88;5098:4;5095:1;5088:15;5122:4;5119:1;5112:15;5138:691;5203:5;5233:18;5274:2;5266:6;5263:14;5260:40;;;5280:18;;:::i;:::-;5414:2;5408:9;5480:2;5468:15;;5319:66;5464:24;;;5490:2;5460:33;5456:42;5444:55;;;5514:18;;;5534:22;;;5511:46;5508:72;;;5560:18;;:::i;:::-;5600:10;5596:2;5589:22;5629:6;5620:15;;5659:6;5651;5644:22;5699:3;5690:6;5685:3;5681:16;5678:25;5675:45;;;5716:1;5713;5706:12;5675:45;5766:6;5761:3;5754:4;5746:6;5742:17;5729:44;5821:1;5814:4;5805:6;5797;5793:19;5789:30;5782:41;;;;5138:691;;;;;:::o;5834:451::-;5903:6;5956:2;5944:9;5935:7;5931:23;5927:32;5924:52;;;5972:1;5969;5962:12;5924:52;6012:9;5999:23;6045:18;6037:6;6034:30;6031:50;;;6077:1;6074;6067:12;6031:50;6100:22;;6153:4;6145:13;;6141:27;-1:-1:-1;6131:55:1;;6182:1;6179;6172:12;6131:55;6205:74;6271:7;6266:2;6253:16;6248:2;6244;6240:11;6205:74;:::i;6290:315::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6471:9;6458:23;6490:31;6515:5;6490:31;:::i;:::-;6540:5;-1:-1:-1;6564:35:1;6595:2;6580:18;;6564:35;:::i;:::-;6554:45;;6290:315;;;;;:::o;6610:795::-;6705:6;6713;6721;6729;6782:3;6770:9;6761:7;6757:23;6753:33;6750:53;;;6799:1;6796;6789:12;6750:53;6838:9;6825:23;6857:31;6882:5;6857:31;:::i;:::-;6907:5;-1:-1:-1;6964:2:1;6949:18;;6936:32;6977:33;6936:32;6977:33;:::i;:::-;7029:7;-1:-1:-1;7083:2:1;7068:18;;7055:32;;-1:-1:-1;7138:2:1;7123:18;;7110:32;7165:18;7154:30;;7151:50;;;7197:1;7194;7187:12;7151:50;7220:22;;7273:4;7265:13;;7261:27;-1:-1:-1;7251:55:1;;7302:1;7299;7292:12;7251:55;7325:74;7391:7;7386:2;7373:16;7368:2;7364;7360:11;7325:74;:::i;:::-;7315:84;;;6610:795;;;;;;;:::o;7410:388::-;7478:6;7486;7539:2;7527:9;7518:7;7514:23;7510:32;7507:52;;;7555:1;7552;7545:12;7507:52;7594:9;7581:23;7613:31;7638:5;7613:31;:::i;:::-;7663:5;-1:-1:-1;7720:2:1;7705:18;;7692:32;7733:33;7692:32;7733:33;:::i;:::-;7785:7;7775:17;;;7410:388;;;;;:::o;8164:437::-;8243:1;8239:12;;;;8286;;;8307:61;;8361:4;8353:6;8349:17;8339:27;;8307:61;8414:2;8406:6;8403:14;8383:18;8380:38;8377:218;;8451:77;8448:1;8441:88;8552:4;8549:1;8542:15;8580:4;8577:1;8570:15;8377:218;;8164:437;;;:::o;10256:184::-;10308:77;10305:1;10298:88;10405:4;10402:1;10395:15;10429:4;10426:1;10419:15;10445:128;10485:3;10516:1;10512:6;10509:1;10506:13;10503:39;;;10522:18;;:::i;:::-;-1:-1:-1;10558:9:1;;10445:128::o;13514:228::-;13554:7;13680:1;13612:66;13608:74;13605:1;13602:81;13597:1;13590:9;13583:17;13579:105;13576:131;;;13687:18;;:::i;:::-;-1:-1:-1;13727:9:1;;13514:228::o;16310:184::-;16362:77;16359:1;16352:88;16459:4;16456:1;16449:15;16483:4;16480:1;16473:15;17690:470;17869:3;17907:6;17901:13;17923:53;17969:6;17964:3;17957:4;17949:6;17945:17;17923:53;:::i;:::-;18039:13;;17998:16;;;;18061:57;18039:13;17998:16;18095:4;18083:17;;18061:57;:::i;:::-;18134:20;;17690:470;-1:-1:-1;;;;17690:470:1:o;18572:184::-;18624:77;18621:1;18614:88;18721:4;18718:1;18711:15;18745:4;18742:1;18735:15;18761:120;18801:1;18827;18817:35;;18832:18;;:::i;:::-;-1:-1:-1;18866:9:1;;18761:120::o;18886:125::-;18926:4;18954:1;18951;18948:8;18945:34;;;18959:18;;:::i;:::-;-1:-1:-1;18996:9:1;;18886:125::o;21860:512::-;22054:4;22083:42;22164:2;22156:6;22152:15;22141:9;22134:34;22216:2;22208:6;22204:15;22199:2;22188:9;22184:18;22177:43;;22256:6;22251:2;22240:9;22236:18;22229:34;22299:3;22294:2;22283:9;22279:18;22272:31;22320:46;22361:3;22350:9;22346:19;22338:6;22320:46;:::i;:::-;22312:54;21860:512;-1:-1:-1;;;;;;21860:512:1:o;22377:249::-;22446:6;22499:2;22487:9;22478:7;22474:23;22470:32;22467:52;;;22515:1;22512;22505:12;22467:52;22547:9;22541:16;22566:30;22590:5;22566:30;:::i;22631:195::-;22670:3;22701:66;22694:5;22691:77;22688:103;;22771:18;;:::i;:::-;-1:-1:-1;22818:1:1;22807:13;;22631:195::o;22831:112::-;22863:1;22889;22879:35;;22894:18;;:::i;:::-;-1:-1:-1;22928:9:1;;22831:112::o;23333:184::-;23385:77;23382:1;23375:88;23482:4;23479:1;23472:15;23506:4;23503:1;23496:15
Swarm Source
ipfs://63da65d0a0c12b00650ae06f0d2c9e27e7272478a16f58abb845f06e08cbee32
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.