Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 142 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14800665 | 969 days ago | IN | 0 ETH | 0.00209861 | ||||
Set Approval For... | 14745983 | 977 days ago | IN | 0 ETH | 0.00285265 | ||||
Set Approval For... | 14743487 | 978 days ago | IN | 0 ETH | 0.00607723 | ||||
Set Approval For... | 14709663 | 983 days ago | IN | 0 ETH | 0.00156493 | ||||
Set Approval For... | 14709654 | 983 days ago | IN | 0 ETH | 0.00167676 | ||||
Set Approval For... | 14699522 | 985 days ago | IN | 0 ETH | 0.0046662 | ||||
Set Approval For... | 14699311 | 985 days ago | IN | 0 ETH | 0.00353858 | ||||
Set Approval For... | 14698610 | 985 days ago | IN | 0 ETH | 0.00277249 | ||||
Set Approval For... | 14691914 | 986 days ago | IN | 0 ETH | 0.00184212 | ||||
Set Approval For... | 14681062 | 988 days ago | IN | 0 ETH | 0.00274596 | ||||
Set Approval For... | 14680351 | 988 days ago | IN | 0 ETH | 0.00238298 | ||||
Set Approval For... | 14676338 | 988 days ago | IN | 0 ETH | 0.00149195 | ||||
Set Approval For... | 14671441 | 989 days ago | IN | 0 ETH | 0.00135199 | ||||
Safe Transfer Fr... | 14671235 | 989 days ago | IN | 0 ETH | 0.00144166 | ||||
Set Approval For... | 14670805 | 989 days ago | IN | 0 ETH | 0.00196369 | ||||
Set Approval For... | 14665849 | 990 days ago | IN | 0 ETH | 0.00150493 | ||||
Set Approval For... | 14665814 | 990 days ago | IN | 0 ETH | 0.00134053 | ||||
Set Approval For... | 14665797 | 990 days ago | IN | 0 ETH | 0.00186696 | ||||
Set Approval For... | 14665132 | 990 days ago | IN | 0 ETH | 0.00122138 | ||||
Set Approval For... | 14664637 | 990 days ago | IN | 0 ETH | 0.00165891 | ||||
Set Approval For... | 14663376 | 990 days ago | IN | 0 ETH | 0.00225064 | ||||
Set Approval For... | 14661597 | 991 days ago | IN | 0 ETH | 0.00269579 | ||||
Set Approval For... | 14661204 | 991 days ago | IN | 0 ETH | 0.00259184 | ||||
Set Approval For... | 14660377 | 991 days ago | IN | 0 ETH | 0.00217655 | ||||
Set Approval For... | 14659798 | 991 days ago | IN | 0 ETH | 0.00215523 |
Loading...
Loading
Contract Name:
VoyagersGenesisPass
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed // _ ________ // | | / / ____/ // | | / / / __ // | |/ / /_/ / // |___/\____/ pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract VoyagersGenesisPass is ERC1155Burnable, ReentrancyGuard, Ownable { using SafeMath for uint256; string private baseURI; uint256 public constant GEN_PASS_FEE = 0.08 ether; uint256 public constant PUBLIC_PASS_FEE = 0.11 ether; uint256 public constant OG_TIME_LIMIT = 6 hours; string public constant name = "VoyagersGame Genesis Pass"; string public constant symbol = "VGGP"; address public VAULT = 0x9AFd3a2AAC444123b33f1fcD5f26F9B63E9EA53d; uint16[] public supplyCaps = [0, 2222]; bytes32 public ogMerkleRoot; uint256 public startTimestamp; bool public paused = false; mapping(uint8 => uint256) public supplies; mapping(address => uint256) public amountPerWallets; event SetStartTimestamp(uint256 indexed _timestamp); event ClaimGenPassNFT(address indexed _user); constructor( string memory _baseURI, uint256 _startTimestamp, bytes32 _ogMerkleRoot ) ERC1155(_baseURI) { baseURI = _baseURI; ogMerkleRoot = _ogMerkleRoot; startTimestamp = _startTimestamp; emit SetStartTimestamp(startTimestamp); _mint(msg.sender, 1, 10, ""); } function claim(bytes32[] calldata merkleProof) external payable nonReentrant { require( block.timestamp >= startTimestamp, "VGGENPASS: Not started yet" ); require( paused == false, "VGGENPASS: Minting Paused" ); uint256 timePeriod = block.timestamp - startTimestamp; if (timePeriod <= OG_TIME_LIMIT) { require( msg.value >= GEN_PASS_FEE, "VGGENPASS: Not enough fee" ); bytes32 node = keccak256(abi.encodePacked(msg.sender)); bool isOGVerified = MerkleProof.verify(merkleProof, ogMerkleRoot, node); require(isOGVerified, "VGGENPASS: You are not whitelisted, please wait for public mint"); require( amountPerWallets[msg.sender] + 1 <= 1, "VGGENPASS: Can't mint more than 1" ); amountPerWallets[msg.sender] += 1; _mint(msg.sender, 1, 1, ""); emit ClaimGenPassNFT(msg.sender); } else if (timePeriod >= OG_TIME_LIMIT) { require( msg.value >= PUBLIC_PASS_FEE, "VGGENPASS: Not enough fee" ); require( amountPerWallets[msg.sender] + 1 <= 1, "VGGENPASS: Can't mint more than 1" ); amountPerWallets[msg.sender] += 1; _mint(msg.sender, 1, 1, ""); emit ClaimGenPassNFT(msg.sender); } } function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal override { require( supplies[uint8(id)] < supplyCaps[uint8(id)], "VGGENPASS: Suppy limit was hit" ); supplies[uint8(id)] += amount; super._mint(to, id, amount, data); } function uri(uint256 typeId) public view override returns (string memory) { require(bytes(baseURI).length > 0, "VGGENPASS: base URI is not set"); return string(abi.encodePacked(baseURI)); } function pause(bool _paused) external onlyOwner { paused = _paused; } function setBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setOgMerkleRoot(bytes32 _ogMerkleRoot) external onlyOwner { ogMerkleRoot = _ogMerkleRoot; } function setStartTimestamp(uint256 _startTimestamp) external onlyOwner { startTimestamp = _startTimestamp; emit SetStartTimestamp(startTimestamp); } function withdrawAll() external onlyOwner { (bool success, ) = payable(VAULT).call{value: address(this).balance}(""); require(success, "VGGENPASS: Failed to withdraw to the owner"); } function withdraw(uint256 _amount) external onlyOwner { require(address(VAULT) != address(0), "VGGENPASS: No vault"); require(payable(VAULT).send(_amount), "VGGENPASS: Withdraw failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"uint256","name":"_startTimestamp","type":"uint256"},{"internalType":"bytes32","name":"_ogMerkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"_user","type":"address"}],"name":"ClaimGenPassNFT","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":true,"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"SetStartTimestamp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"GEN_PASS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_TIME_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PASS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountPerWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bytes32","name":"_ogMerkleRoot","type":"bytes32"}],"name":"setOgMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"supplies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyCaps","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052739afd3a2aac444123b33f1fcd5f26f9b63e9ea53d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600061ffff1681526020016108ae61ffff1681525060079060026200008b9291906200084a565b506000600a60006101000a81548160ff021916908315150217905550348015620000b457600080fd5b50604051620063d1380380620063d18339818101604052810190620000da919062000a8e565b82620000ec816200019960201b60201c565b5060016003819055506200011562000109620001b560201b60201c565b620001bd60201b60201c565b82600590805190602001906200012d929190620008fb565b5080600881905550816009819055506009547f20752a55fca28e2836604deeba40ea6eca93703435bfc988685cae56449ea5dd60405160405180910390a262000190336001600a604051806020016040528060008152506200028360201b60201c565b5050506200125a565b8060029080519060200190620001b1929190620008fb565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60078360ff1681548110620002c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff16600b60008560ff1660ff168152602001908152602001600020541062000346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033d9062000d09565b60405180910390fd5b81600b60008560ff1660ff168152602001908152602001600020600082825462000371919062000e11565b9250508190555062000391848484846200039760201b62001bca1760201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200040a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004019062000d2b565b60405180910390fd5b60006200041c620001b560201b60201c565b9050620004558160008762000437886200055c60201b60201c565b62000448886200055c60201b60201c565b876200062560201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004b6919062000e11565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200053692919062000d4d565b60405180910390a462000555816000878787876200062d60201b60201c565b5050505050565b60606000600167ffffffffffffffff811115620005a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620005d15781602001602082028036833780820191505090505b509050828160008151811062000610577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b620006598473ffffffffffffffffffffffffffffffffffffffff166200083760201b62001d601760201c565b156200082f578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620006a295949392919062000c3d565b602060405180830381600087803b158015620006bd57600080fd5b505af1925050508015620006f157506040513d601f19601f82011682018060405250810190620006ee919062000a62565b60015b620007a3576200070062001011565b806308c379a01415620007645750620007186200116a565b8062000725575062000766565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075b919062000ca1565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079a9062000cc5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200082d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008249062000ce7565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805482825590600052602060002090600f01601090048101928215620008e85791602002820160005b83821115620008b657835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000874565b8015620008e65782816101000a81549061ffff0219169055600201602081600101049283019260010302620008b6565b505b509050620008f791906200098c565b5090565b828054620009099062000f18565b90600052602060002090601f0160209004810192826200092d576000855562000979565b82601f106200094857805160ff191683800117855562000979565b8280016001018555821562000979579182015b82811115620009785782518255916020019190600101906200095b565b5b5090506200098891906200098c565b5090565b5b80821115620009a75760008160009055506001016200098d565b5090565b6000620009c2620009bc8462000da3565b62000d7a565b905082815260208101848484011115620009db57600080fd5b620009e884828562000ee2565b509392505050565b60008151905062000a01816200120c565b92915050565b60008151905062000a188162001226565b92915050565b600082601f83011262000a3057600080fd5b815162000a42848260208601620009ab565b91505092915050565b60008151905062000a5c8162001240565b92915050565b60006020828403121562000a7557600080fd5b600062000a858482850162000a07565b91505092915050565b60008060006060848603121562000aa457600080fd5b600084015167ffffffffffffffff81111562000abf57600080fd5b62000acd8682870162000a1e565b935050602062000ae08682870162000a4b565b925050604062000af386828701620009f0565b9150509250925092565b62000b088162000e6e565b82525050565b600062000b1b8262000dd9565b62000b27818562000def565b935062000b3981856020860162000ee2565b62000b448162001036565b840191505092915050565b600062000b5c8262000de4565b62000b68818562000e00565b935062000b7a81856020860162000ee2565b62000b858162001036565b840191505092915050565b600062000b9f60348362000e00565b915062000bac8262001054565b604082019050919050565b600062000bc660288362000e00565b915062000bd382620010a3565b604082019050919050565b600062000bed601e8362000e00565b915062000bfa82620010f2565b602082019050919050565b600062000c1460218362000e00565b915062000c21826200111b565b604082019050919050565b62000c378162000ed8565b82525050565b600060a08201905062000c54600083018862000afd565b62000c63602083018762000afd565b62000c72604083018662000c2c565b62000c81606083018562000c2c565b818103608083015262000c95818462000b0e565b90509695505050505050565b6000602082019050818103600083015262000cbd818462000b4f565b905092915050565b6000602082019050818103600083015262000ce08162000b90565b9050919050565b6000602082019050818103600083015262000d028162000bb7565b9050919050565b6000602082019050818103600083015262000d248162000bde565b9050919050565b6000602082019050818103600083015262000d468162000c05565b9050919050565b600060408201905062000d64600083018562000c2c565b62000d73602083018462000c2c565b9392505050565b600062000d8662000d99565b905062000d94828262000f4e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000dc15762000dc062000fe2565b5b62000dcc8262001036565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e1e8262000ed8565b915062000e2b8362000ed8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e635762000e6262000f84565b5b828201905092915050565b600062000e7b8262000eb8565b9050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000f0257808201518184015260208101905062000ee5565b8381111562000f12576000848401525b50505050565b6000600282049050600182168062000f3157607f821691505b6020821081141562000f485762000f4762000fb3565b5b50919050565b62000f598262001036565b810181811067ffffffffffffffff8211171562000f7b5762000f7a62000fe2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115620010335760046000803e6200103060005162001047565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a205375707079206c696d697420776173206869740000600082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156200117c5762001209565b6200118662000d99565b60043d036004823e80513d602482011167ffffffffffffffff82111715620011b057505062001209565b808201805167ffffffffffffffff811115620011d0575050505062001209565b80602083010160043d038501811115620011ef57505050505062001209565b620012008260200185018662000f4e565b82955050505050505b90565b620012178162000e82565b81146200122357600080fd5b50565b620012318162000e8c565b81146200123d57600080fd5b50565b6200124b8162000ed8565b81146200125757600080fd5b50565b615167806200126a6000396000f3fe6080604052600436106101e25760003560e01c8063853828b611610102578063dbaae91311610095578063f242432a11610064578063f242432a146106d2578063f2fde38b146106fb578063f5298aca14610724578063f57a53881461074d576101e2565b8063dbaae91314610602578063e6fd48bc1461063f578063e7e436a61461066a578063e985e9c514610695576101e2565b8063a22cb465116100d1578063a22cb4651461056b578063b391c50814610594578063c44bef75146105b0578063d8a7ab89146105d9576101e2565b8063853828b6146104d55780638da5cb5b146104ec57806395d89b4114610517578063a0bcfc7f14610542576101e2565b8063411557d11161017a5780635c975abb116101495780635c975abb1461042d5780636a9e18a6146104585780636b20c45414610495578063715018a6146104be576101e2565b8063411557d11461036f5780634e1273f41461039a57806352b20c9e146103d75780635c59504b14610402576101e2565b80630a302530116101b65780630a302530146102b55780630e89341c146102e05780632e1a7d4d1461031d5780632eb2c2d614610346576101e2565b8062fdd58e146101e757806301ffc9a71461022457806302329a291461026157806306fdde031461028a575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613764565b61078a565b60405161021b9190614490565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906138f2565b610853565b60405161025891906140dd565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906138a0565b610935565b005b34801561029657600080fd5b5061029f6109ce565b6040516102ac9190614113565b60405180910390f35b3480156102c157600080fd5b506102ca610a07565b6040516102d791906140f8565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190613985565b610a0d565b6040516103149190614113565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190613985565b610a88565b005b34801561035257600080fd5b5061036d6004803603810190610368919061355b565b610c2f565b005b34801561037b57600080fd5b50610384610cd0565b6040516103919190613fa7565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906137ef565b610cf6565b6040516103ce9190614084565b60405180910390f35b3480156103e357600080fd5b506103ec610ea7565b6040516103f99190614490565b60405180910390f35b34801561040e57600080fd5b50610417610ead565b6040516104249190614490565b60405180910390f35b34801561043957600080fd5b50610442610eb9565b60405161044f91906140dd565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906139ae565b610ecc565b60405161048c9190614490565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906136a9565b610ee4565b005b3480156104ca57600080fd5b506104d3610f81565b005b3480156104e157600080fd5b506104ea611009565b005b3480156104f857600080fd5b50610501611156565b60405161050e9190613fa7565b60405180910390f35b34801561052357600080fd5b5061052c611180565b6040516105399190614113565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613944565b6111b9565b005b34801561057757600080fd5b50610592600480360381019061058d9190613728565b61124f565b005b6105ae60048036038101906105a9919061385b565b611265565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613985565b611763565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906138c9565b611818565b005b34801561060e57600080fd5b50610629600480360381019061062491906134f6565b61189e565b6040516106369190614490565b60405180910390f35b34801561064b57600080fd5b506106546118b6565b6040516106619190614490565b60405180910390f35b34801561067657600080fd5b5061067f6118bc565b60405161068c9190614490565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061351f565b6118c8565b6040516106c991906140dd565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061361a565b61195c565b005b34801561070757600080fd5b50610722600480360381019061071d91906134f6565b6119fd565b005b34801561073057600080fd5b5061074b600480360381019061074691906137a0565b611af5565b005b34801561075957600080fd5b50610774600480360381019061076f9190613985565b611b92565b6040516107819190614475565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f2906141d5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e575061092d82611d73565b5b9050919050565b61093d611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661095b611156565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614335565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6040518060400160405280601981526020017f566f79616765727347616d652047656e6573697320506173730000000000000081525081565b60085481565b6060600060058054610a1e906147b4565b905011610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614455565b60405180910390fd5b6005604051602001610a729190613f7b565b6040516020818303038152906040529050919050565b610a90611ddd565b73ffffffffffffffffffffffffffffffffffffffff16610aae611156565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90614335565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90614175565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390614275565b60405180910390fd5b50565b610c37611ddd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c7d5750610c7c85610c77611ddd565b6118c8565b5b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906142d5565b60405180910390fd5b610cc98585858585611de5565b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906143d5565b60405180910390fd5b6000835167ffffffffffffffff811115610d7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dad5781602001602082028036833780820191505090505b50905060005b8451811015610e9c57610e46858281518110610df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161078a565b828281518110610e7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e9590614817565b9050610db3565b508091505092915050565b61546081565b670186cc6acd4b000081565b600a60009054906101000a900460ff1681565b600b6020528060005260406000206000915090505481565b610eec611ddd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f325750610f3183610f2c611ddd565b6118c8565b5b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614235565b60405180910390fd5b610f7c838383612145565b505050565b610f89611ddd565b73ffffffffffffffffffffffffffffffffffffffff16610fa7611156565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614335565b60405180910390fd5b6110076000612442565b565b611011611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661102f611156565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614335565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516110cd90613f92565b60006040518083038185875af1925050503d806000811461110a576040519150601f19603f3d011682016040523d82523d6000602084013e61110f565b606091505b5050905080611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614355565b60405180910390fd5b50565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600481526020017f564747500000000000000000000000000000000000000000000000000000000081525081565b6111c1611ddd565b73ffffffffffffffffffffffffffffffffffffffff166111df611156565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90614335565b60405180910390fd5b806005908051906020019061124b92919061317a565b5050565b61126161125a611ddd565b8383612508565b5050565b600260035414156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614435565b60405180910390fd5b60026003819055506009544210156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90614195565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906141b5565b60405180910390fd5b60006009544261135e91906146a5565b905061546081116115bc5767011c37937e0800003410156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614375565b60405180910390fd5b6000336040516020016113c79190613f60565b604051602081830303815290604052805190602001209050600061142f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085484612675565b905080611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614255565b60405180910390fd5b600180600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114be919061464f565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690614295565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154f919061464f565b92505081905550611572336001806040518060200160405280600081525061268c565b3373ffffffffffffffffffffffffffffffffffffffff167fc8277ee0c46c0d8d6d7424478162894accaedb91958e6cadb24ec4d43874a5ac60405160405180910390a25050611756565b615460811061175557670186cc6acd4b0000341015611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614375565b60405180910390fd5b600180600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461165d919061464f565b111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614295565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ee919061464f565b92505081905550611711336001806040518060200160405280600081525061268c565b3373ffffffffffffffffffffffffffffffffffffffff167fc8277ee0c46c0d8d6d7424478162894accaedb91958e6cadb24ec4d43874a5ac60405160405180910390a25b5b5060016003819055505050565b61176b611ddd565b73ffffffffffffffffffffffffffffffffffffffff16611789611156565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614335565b60405180910390fd5b806009819055506009547f20752a55fca28e2836604deeba40ea6eca93703435bfc988685cae56449ea5dd60405160405180910390a250565b611820611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661183e611156565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614335565b60405180910390fd5b8060088190555050565b600c6020528060005260406000206000915090505481565b60095481565b67011c37937e08000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611964611ddd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806119aa57506119a9856119a4611ddd565b6118c8565b5b6119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614235565b60405180910390fd5b6119f6858585858561278d565b5050505050565b611a05611ddd565b73ffffffffffffffffffffffffffffffffffffffff16611a23611156565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614335565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906141f5565b60405180910390fd5b611af281612442565b50565b611afd611ddd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b435750611b4283611b3d611ddd565b6118c8565b5b611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614235565b60405180910390fd5b611b8d838383612a0f565b505050565b60078181548110611ba257600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614415565b60405180910390fd5b6000611c44611ddd565b9050611c6581600087611c5688612c2c565b611c5f88612c2c565b87612cf2565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc4919061464f565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d429291906144ab565b60405180910390a4611d5981600087878787612cfa565b5050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e20906143f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e90906142b5565b60405180910390fd5b6000611ea3611ddd565b9050611eb3818787878787612cf2565b60005b84518110156120b0576000858281518110611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614315565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612095919061464f565b92505081905550505050806120a990614817565b9050611eb6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121279291906140a6565b60405180910390a461213d818787878787612ee1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac906142f5565b60405180910390fd5b80518251146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906143f5565b60405180910390fd5b6000612203611ddd565b905061222381856000868660405180602001604052806000815250612cf2565b60005b83518110156123bc57600084828151811061226a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614215565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123b490614817565b915050612226565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124349291906140a6565b60405180910390a450505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e906143b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161266891906140dd565b60405180910390a3505050565b60008261268285846130c8565b1490509392505050565b60078360ff16815481106126c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff16600b60008560ff1660ff168152602001908152602001600020541061274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274290614395565b60405180910390fd5b81600b60008560ff1660ff1681526020019081526020016000206000828254612774919061464f565b9250508190555061278784848484611bca565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f4906142b5565b60405180910390fd5b6000612807611ddd565b905061282781878761281888612c2c565b61282188612c2c565b87612cf2565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614315565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612973919061464f565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516129f09291906144ab565b60405180910390a4612a06828888888888612cfa565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a76906142f5565b60405180910390fd5b6000612a89611ddd565b9050612ab981856000612a9b87612c2c565b612aa487612c2c565b60405180602001604052806000815250612cf2565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790614215565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612c1d9291906144ab565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612c71577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612c9f5781602001602082028036833780820191505090505b5090508281600081518110612cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b612d198473ffffffffffffffffffffffffffffffffffffffff16611d60565b15612ed9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d5f95949392919061402a565b602060405180830381600087803b158015612d7957600080fd5b505af1925050508015612daa57506040513d601f19601f82011682018060405250810190612da7919061391b565b60015b612e5057612db6614911565b806308c379a01415612e135750612dcb615011565b80612dd65750612e15565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a9190614113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614135565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90614155565b60405180910390fd5b505b505050505050565b612f008473ffffffffffffffffffffffffffffffffffffffff16611d60565b156130c0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612f46959493929190613fc2565b602060405180830381600087803b158015612f6057600080fd5b505af1925050508015612f9157506040513d601f19601f82011682018060405250810190612f8e919061391b565b60015b61303757612f9d614911565b806308c379a01415612ffa5750612fb2615011565b80612fbd5750612ffc565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff19190614113565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302e90614135565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146130be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b590614155565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015613158576000858281518110613115577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613137576131308382613163565b9250613144565b6131418184613163565b92505b50808061315090614817565b9150506130d1565b508091505092915050565b600082600052816020526040600020905092915050565b828054613186906147b4565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157805160ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782518255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b600061323061322b846144f9565b6144d4565b9050808382526020820190508285602086028201111561324f57600080fd5b60005b8581101561327f57816132658882613371565b845260208401935060208301925050600181019050613252565b5050509392505050565b600061329c61329784614525565b6144d4565b905080838252602082019050828560208602820111156132bb57600080fd5b60005b858110156132eb57816132d188826134cc565b8452602084019350602083019250506001810190506132be565b5050509392505050565b600061330861330384614551565b6144d4565b90508281526020810184848401111561332057600080fd5b61332b848285614772565b509392505050565b600061334661334184614582565b6144d4565b90508281526020810184848401111561335e57600080fd5b613369848285614772565b509392505050565b600081359050613380816150a7565b92915050565b600082601f83011261339757600080fd5b81356133a784826020860161321d565b91505092915050565b60008083601f8401126133c257600080fd5b8235905067ffffffffffffffff8111156133db57600080fd5b6020830191508360208202830111156133f357600080fd5b9250929050565b600082601f83011261340b57600080fd5b813561341b848260208601613289565b91505092915050565b600081359050613433816150be565b92915050565b600081359050613448816150d5565b92915050565b60008135905061345d816150ec565b92915050565b600081519050613472816150ec565b92915050565b600082601f83011261348957600080fd5b81356134998482602086016132f5565b91505092915050565b600082601f8301126134b357600080fd5b81356134c3848260208601613333565b91505092915050565b6000813590506134db81615103565b92915050565b6000813590506134f08161511a565b92915050565b60006020828403121561350857600080fd5b600061351684828501613371565b91505092915050565b6000806040838503121561353257600080fd5b600061354085828601613371565b925050602061355185828601613371565b9150509250929050565b600080600080600060a0868803121561357357600080fd5b600061358188828901613371565b955050602061359288828901613371565b945050604086013567ffffffffffffffff8111156135af57600080fd5b6135bb888289016133fa565b935050606086013567ffffffffffffffff8111156135d857600080fd5b6135e4888289016133fa565b925050608086013567ffffffffffffffff81111561360157600080fd5b61360d88828901613478565b9150509295509295909350565b600080600080600060a0868803121561363257600080fd5b600061364088828901613371565b955050602061365188828901613371565b9450506040613662888289016134cc565b9350506060613673888289016134cc565b925050608086013567ffffffffffffffff81111561369057600080fd5b61369c88828901613478565b9150509295509295909350565b6000806000606084860312156136be57600080fd5b60006136cc86828701613371565b935050602084013567ffffffffffffffff8111156136e957600080fd5b6136f5868287016133fa565b925050604084013567ffffffffffffffff81111561371257600080fd5b61371e868287016133fa565b9150509250925092565b6000806040838503121561373b57600080fd5b600061374985828601613371565b925050602061375a85828601613424565b9150509250929050565b6000806040838503121561377757600080fd5b600061378585828601613371565b9250506020613796858286016134cc565b9150509250929050565b6000806000606084860312156137b557600080fd5b60006137c386828701613371565b93505060206137d4868287016134cc565b92505060406137e5868287016134cc565b9150509250925092565b6000806040838503121561380257600080fd5b600083013567ffffffffffffffff81111561381c57600080fd5b61382885828601613386565b925050602083013567ffffffffffffffff81111561384557600080fd5b613851858286016133fa565b9150509250929050565b6000806020838503121561386e57600080fd5b600083013567ffffffffffffffff81111561388857600080fd5b613894858286016133b0565b92509250509250929050565b6000602082840312156138b257600080fd5b60006138c084828501613424565b91505092915050565b6000602082840312156138db57600080fd5b60006138e984828501613439565b91505092915050565b60006020828403121561390457600080fd5b60006139128482850161344e565b91505092915050565b60006020828403121561392d57600080fd5b600061393b84828501613463565b91505092915050565b60006020828403121561395657600080fd5b600082013567ffffffffffffffff81111561397057600080fd5b61397c848285016134a2565b91505092915050565b60006020828403121561399757600080fd5b60006139a5848285016134cc565b91505092915050565b6000602082840312156139c057600080fd5b60006139ce848285016134e1565b91505092915050565b60006139e38383613f42565b60208301905092915050565b6139f8816146d9565b82525050565b613a0f613a0a826146d9565b614860565b82525050565b6000613a20826145d8565b613a2a8185614606565b9350613a35836145b3565b8060005b83811015613a66578151613a4d88826139d7565b9750613a58836145f9565b925050600181019050613a39565b5085935050505092915050565b613a7c816146eb565b82525050565b613a8b816146f7565b82525050565b6000613a9c826145e3565b613aa68185614617565b9350613ab6818560208601614781565b613abf81614933565b840191505092915050565b6000613ad5826145ee565b613adf8185614633565b9350613aef818560208601614781565b613af881614933565b840191505092915050565b60008154613b10816147b4565b613b1a8186614644565b94506001821660008114613b355760018114613b4657613b79565b60ff19831686528186019350613b79565b613b4f856145c3565b60005b83811015613b7157815481890152600182019150602081019050613b52565b838801955050505b50505092915050565b6000613b8f603483614633565b9150613b9a8261495e565b604082019050919050565b6000613bb2602883614633565b9150613bbd826149ad565b604082019050919050565b6000613bd5601383614633565b9150613be0826149fc565b602082019050919050565b6000613bf8601a83614633565b9150613c0382614a25565b602082019050919050565b6000613c1b601983614633565b9150613c2682614a4e565b602082019050919050565b6000613c3e602b83614633565b9150613c4982614a77565b604082019050919050565b6000613c61602683614633565b9150613c6c82614ac6565b604082019050919050565b6000613c84602483614633565b9150613c8f82614b15565b604082019050919050565b6000613ca7602983614633565b9150613cb282614b64565b604082019050919050565b6000613cca603f83614633565b9150613cd582614bb3565b604082019050919050565b6000613ced601a83614633565b9150613cf882614c02565b602082019050919050565b6000613d10602183614633565b9150613d1b82614c2b565b604082019050919050565b6000613d33602583614633565b9150613d3e82614c7a565b604082019050919050565b6000613d56603283614633565b9150613d6182614cc9565b604082019050919050565b6000613d79602383614633565b9150613d8482614d18565b604082019050919050565b6000613d9c602a83614633565b9150613da782614d67565b604082019050919050565b6000613dbf602083614633565b9150613dca82614db6565b602082019050919050565b6000613de2602a83614633565b9150613ded82614ddf565b604082019050919050565b6000613e05601983614633565b9150613e1082614e2e565b602082019050919050565b6000613e28601e83614633565b9150613e3382614e57565b602082019050919050565b6000613e4b600083614628565b9150613e5682614e80565b600082019050919050565b6000613e6e602983614633565b9150613e7982614e83565b604082019050919050565b6000613e91602983614633565b9150613e9c82614ed2565b604082019050919050565b6000613eb4602883614633565b9150613ebf82614f21565b604082019050919050565b6000613ed7602183614633565b9150613ee282614f70565b604082019050919050565b6000613efa601f83614633565b9150613f0582614fbf565b602082019050919050565b6000613f1d601e83614633565b9150613f2882614fe8565b602082019050919050565b613f3c8161472d565b82525050565b613f4b8161475b565b82525050565b613f5a8161475b565b82525050565b6000613f6c82846139fe565b60148201915081905092915050565b6000613f878284613b03565b915081905092915050565b6000613f9d82613e3e565b9150819050919050565b6000602082019050613fbc60008301846139ef565b92915050565b600060a082019050613fd760008301886139ef565b613fe460208301876139ef565b8181036040830152613ff68186613a15565b9050818103606083015261400a8185613a15565b9050818103608083015261401e8184613a91565b90509695505050505050565b600060a08201905061403f60008301886139ef565b61404c60208301876139ef565b6140596040830186613f51565b6140666060830185613f51565b81810360808301526140788184613a91565b90509695505050505050565b6000602082019050818103600083015261409e8184613a15565b905092915050565b600060408201905081810360008301526140c08185613a15565b905081810360208301526140d48184613a15565b90509392505050565b60006020820190506140f26000830184613a73565b92915050565b600060208201905061410d6000830184613a82565b92915050565b6000602082019050818103600083015261412d8184613aca565b905092915050565b6000602082019050818103600083015261414e81613b82565b9050919050565b6000602082019050818103600083015261416e81613ba5565b9050919050565b6000602082019050818103600083015261418e81613bc8565b9050919050565b600060208201905081810360008301526141ae81613beb565b9050919050565b600060208201905081810360008301526141ce81613c0e565b9050919050565b600060208201905081810360008301526141ee81613c31565b9050919050565b6000602082019050818103600083015261420e81613c54565b9050919050565b6000602082019050818103600083015261422e81613c77565b9050919050565b6000602082019050818103600083015261424e81613c9a565b9050919050565b6000602082019050818103600083015261426e81613cbd565b9050919050565b6000602082019050818103600083015261428e81613ce0565b9050919050565b600060208201905081810360008301526142ae81613d03565b9050919050565b600060208201905081810360008301526142ce81613d26565b9050919050565b600060208201905081810360008301526142ee81613d49565b9050919050565b6000602082019050818103600083015261430e81613d6c565b9050919050565b6000602082019050818103600083015261432e81613d8f565b9050919050565b6000602082019050818103600083015261434e81613db2565b9050919050565b6000602082019050818103600083015261436e81613dd5565b9050919050565b6000602082019050818103600083015261438e81613df8565b9050919050565b600060208201905081810360008301526143ae81613e1b565b9050919050565b600060208201905081810360008301526143ce81613e61565b9050919050565b600060208201905081810360008301526143ee81613e84565b9050919050565b6000602082019050818103600083015261440e81613ea7565b9050919050565b6000602082019050818103600083015261442e81613eca565b9050919050565b6000602082019050818103600083015261444e81613eed565b9050919050565b6000602082019050818103600083015261446e81613f10565b9050919050565b600060208201905061448a6000830184613f33565b92915050565b60006020820190506144a56000830184613f51565b92915050565b60006040820190506144c06000830185613f51565b6144cd6020830184613f51565b9392505050565b60006144de6144ef565b90506144ea82826147e6565b919050565b6000604051905090565b600067ffffffffffffffff821115614514576145136148e2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145405761453f6148e2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561456c5761456b6148e2565b5b61457582614933565b9050602081019050919050565b600067ffffffffffffffff82111561459d5761459c6148e2565b5b6145a682614933565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061465a8261475b565b91506146658361475b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561469a57614699614884565b5b828201905092915050565b60006146b08261475b565b91506146bb8361475b565b9250828210156146ce576146cd614884565b5b828203905092915050565b60006146e48261473b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561479f578082015181840152602081019050614784565b838111156147ae576000848401525b50505050565b600060028204905060018216806147cc57607f821691505b602082108114156147e0576147df6148b3565b5b50919050565b6147ef82614933565b810181811067ffffffffffffffff8211171561480e5761480d6148e2565b5b80604052505050565b60006148228261475b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485557614854614884565b5b600182019050919050565b600061486b82614872565b9050919050565b600061487d82614944565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149305760046000803e61492d600051614951565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a204e6f207661756c7400000000000000000000000000600082015250565b7f564747454e504153533a204e6f74207374617274656420796574000000000000600082015250565b7f564747454e504153533a204d696e74696e672050617573656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a20596f7520617265206e6f742077686974656c69737460008201527f65642c20706c65617365207761697420666f72207075626c6963206d696e7400602082015250565b7f564747454e504153533a205769746864726177206661696c6564000000000000600082015250565b7f564747454e504153533a2043616e2774206d696e74206d6f7265207468616e2060008201527f3100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f564747454e504153533a204661696c656420746f20776974686472617720746f60008201527f20746865206f776e657200000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a204e6f7420656e6f7567682066656500000000000000600082015250565b7f564747454e504153533a205375707079206c696d697420776173206869740000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f564747454e504153533a206261736520555249206973206e6f74207365740000600082015250565b600060443d1015615021576150a4565b6150296144ef565b60043d036004823e80513d602482011167ffffffffffffffff821117156150515750506150a4565b808201805167ffffffffffffffff81111561506f57505050506150a4565b80602083010160043d03850181111561508c5750505050506150a4565b61509b826020018501866147e6565b82955050505050505b90565b6150b0816146d9565b81146150bb57600080fd5b50565b6150c7816146eb565b81146150d257600080fd5b50565b6150de816146f7565b81146150e957600080fd5b50565b6150f581614701565b811461510057600080fd5b50565b61510c8161475b565b811461511757600080fd5b50565b61512381614765565b811461512e57600080fd5b5056fea2646970667358221220c52a747526532cbd5c56e775bfe38d49bcfa1f02a51262b32f97bc45dd4a54fa64736f6c634300080200330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000006219ec10ffe574ca82ed0b78fd21bc7f786987829bdfc581bec50d11a4937fdad06d7eb9000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d664d365366354134455a623268784e3544554d366b38726a73375974544b6b434d583751656178713277666300000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e25760003560e01c8063853828b611610102578063dbaae91311610095578063f242432a11610064578063f242432a146106d2578063f2fde38b146106fb578063f5298aca14610724578063f57a53881461074d576101e2565b8063dbaae91314610602578063e6fd48bc1461063f578063e7e436a61461066a578063e985e9c514610695576101e2565b8063a22cb465116100d1578063a22cb4651461056b578063b391c50814610594578063c44bef75146105b0578063d8a7ab89146105d9576101e2565b8063853828b6146104d55780638da5cb5b146104ec57806395d89b4114610517578063a0bcfc7f14610542576101e2565b8063411557d11161017a5780635c975abb116101495780635c975abb1461042d5780636a9e18a6146104585780636b20c45414610495578063715018a6146104be576101e2565b8063411557d11461036f5780634e1273f41461039a57806352b20c9e146103d75780635c59504b14610402576101e2565b80630a302530116101b65780630a302530146102b55780630e89341c146102e05780632e1a7d4d1461031d5780632eb2c2d614610346576101e2565b8062fdd58e146101e757806301ffc9a71461022457806302329a291461026157806306fdde031461028a575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613764565b61078a565b60405161021b9190614490565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906138f2565b610853565b60405161025891906140dd565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906138a0565b610935565b005b34801561029657600080fd5b5061029f6109ce565b6040516102ac9190614113565b60405180910390f35b3480156102c157600080fd5b506102ca610a07565b6040516102d791906140f8565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190613985565b610a0d565b6040516103149190614113565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190613985565b610a88565b005b34801561035257600080fd5b5061036d6004803603810190610368919061355b565b610c2f565b005b34801561037b57600080fd5b50610384610cd0565b6040516103919190613fa7565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906137ef565b610cf6565b6040516103ce9190614084565b60405180910390f35b3480156103e357600080fd5b506103ec610ea7565b6040516103f99190614490565b60405180910390f35b34801561040e57600080fd5b50610417610ead565b6040516104249190614490565b60405180910390f35b34801561043957600080fd5b50610442610eb9565b60405161044f91906140dd565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906139ae565b610ecc565b60405161048c9190614490565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906136a9565b610ee4565b005b3480156104ca57600080fd5b506104d3610f81565b005b3480156104e157600080fd5b506104ea611009565b005b3480156104f857600080fd5b50610501611156565b60405161050e9190613fa7565b60405180910390f35b34801561052357600080fd5b5061052c611180565b6040516105399190614113565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190613944565b6111b9565b005b34801561057757600080fd5b50610592600480360381019061058d9190613728565b61124f565b005b6105ae60048036038101906105a9919061385b565b611265565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613985565b611763565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906138c9565b611818565b005b34801561060e57600080fd5b50610629600480360381019061062491906134f6565b61189e565b6040516106369190614490565b60405180910390f35b34801561064b57600080fd5b506106546118b6565b6040516106619190614490565b60405180910390f35b34801561067657600080fd5b5061067f6118bc565b60405161068c9190614490565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061351f565b6118c8565b6040516106c991906140dd565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061361a565b61195c565b005b34801561070757600080fd5b50610722600480360381019061071d91906134f6565b6119fd565b005b34801561073057600080fd5b5061074b600480360381019061074691906137a0565b611af5565b005b34801561075957600080fd5b50610774600480360381019061076f9190613985565b611b92565b6040516107819190614475565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f2906141d5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e575061092d82611d73565b5b9050919050565b61093d611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661095b611156565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614335565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6040518060400160405280601981526020017f566f79616765727347616d652047656e6573697320506173730000000000000081525081565b60085481565b6060600060058054610a1e906147b4565b905011610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614455565b60405180910390fd5b6005604051602001610a729190613f7b565b6040516020818303038152906040529050919050565b610a90611ddd565b73ffffffffffffffffffffffffffffffffffffffff16610aae611156565b73ffffffffffffffffffffffffffffffffffffffff1614610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90614335565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90614175565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390614275565b60405180910390fd5b50565b610c37611ddd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c7d5750610c7c85610c77611ddd565b6118c8565b5b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906142d5565b60405180910390fd5b610cc98585858585611de5565b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906143d5565b60405180910390fd5b6000835167ffffffffffffffff811115610d7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610dad5781602001602082028036833780820191505090505b50905060005b8451811015610e9c57610e46858281518110610df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161078a565b828281518110610e7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e9590614817565b9050610db3565b508091505092915050565b61546081565b670186cc6acd4b000081565b600a60009054906101000a900460ff1681565b600b6020528060005260406000206000915090505481565b610eec611ddd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f325750610f3183610f2c611ddd565b6118c8565b5b610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614235565b60405180910390fd5b610f7c838383612145565b505050565b610f89611ddd565b73ffffffffffffffffffffffffffffffffffffffff16610fa7611156565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490614335565b60405180910390fd5b6110076000612442565b565b611011611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661102f611156565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90614335565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516110cd90613f92565b60006040518083038185875af1925050503d806000811461110a576040519150601f19603f3d011682016040523d82523d6000602084013e61110f565b606091505b5050905080611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614355565b60405180910390fd5b50565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600481526020017f564747500000000000000000000000000000000000000000000000000000000081525081565b6111c1611ddd565b73ffffffffffffffffffffffffffffffffffffffff166111df611156565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90614335565b60405180910390fd5b806005908051906020019061124b92919061317a565b5050565b61126161125a611ddd565b8383612508565b5050565b600260035414156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290614435565b60405180910390fd5b60026003819055506009544210156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90614195565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906141b5565b60405180910390fd5b60006009544261135e91906146a5565b905061546081116115bc5767011c37937e0800003410156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614375565b60405180910390fd5b6000336040516020016113c79190613f60565b604051602081830303815290604052805190602001209050600061142f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085484612675565b905080611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890614255565b60405180910390fd5b600180600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114be919061464f565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690614295565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154f919061464f565b92505081905550611572336001806040518060200160405280600081525061268c565b3373ffffffffffffffffffffffffffffffffffffffff167fc8277ee0c46c0d8d6d7424478162894accaedb91958e6cadb24ec4d43874a5ac60405160405180910390a25050611756565b615460811061175557670186cc6acd4b0000341015611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790614375565b60405180910390fd5b600180600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461165d919061464f565b111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614295565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ee919061464f565b92505081905550611711336001806040518060200160405280600081525061268c565b3373ffffffffffffffffffffffffffffffffffffffff167fc8277ee0c46c0d8d6d7424478162894accaedb91958e6cadb24ec4d43874a5ac60405160405180910390a25b5b5060016003819055505050565b61176b611ddd565b73ffffffffffffffffffffffffffffffffffffffff16611789611156565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614335565b60405180910390fd5b806009819055506009547f20752a55fca28e2836604deeba40ea6eca93703435bfc988685cae56449ea5dd60405160405180910390a250565b611820611ddd565b73ffffffffffffffffffffffffffffffffffffffff1661183e611156565b73ffffffffffffffffffffffffffffffffffffffff1614611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614335565b60405180910390fd5b8060088190555050565b600c6020528060005260406000206000915090505481565b60095481565b67011c37937e08000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611964611ddd565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806119aa57506119a9856119a4611ddd565b6118c8565b5b6119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090614235565b60405180910390fd5b6119f6858585858561278d565b5050505050565b611a05611ddd565b73ffffffffffffffffffffffffffffffffffffffff16611a23611156565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614335565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906141f5565b60405180910390fd5b611af281612442565b50565b611afd611ddd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b435750611b4283611b3d611ddd565b6118c8565b5b611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614235565b60405180910390fd5b611b8d838383612a0f565b505050565b60078181548110611ba257600080fd5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614415565b60405180910390fd5b6000611c44611ddd565b9050611c6581600087611c5688612c2c565b611c5f88612c2c565b87612cf2565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc4919061464f565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d429291906144ab565b60405180910390a4611d5981600087878787612cfa565b5050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e20906143f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e90906142b5565b60405180910390fd5b6000611ea3611ddd565b9050611eb3818787878787612cf2565b60005b84518110156120b0576000858281518110611efa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790614315565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612095919061464f565b92505081905550505050806120a990614817565b9050611eb6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516121279291906140a6565b60405180910390a461213d818787878787612ee1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac906142f5565b60405180910390fd5b80518251146121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906143f5565b60405180910390fd5b6000612203611ddd565b905061222381856000868660405180602001604052806000815250612cf2565b60005b83518110156123bc57600084828151811061226a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614215565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123b490614817565b915050612226565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124349291906140a6565b60405180910390a450505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e906143b5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161266891906140dd565b60405180910390a3505050565b60008261268285846130c8565b1490509392505050565b60078360ff16815481106126c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff16600b60008560ff1660ff168152602001908152602001600020541061274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274290614395565b60405180910390fd5b81600b60008560ff1660ff1681526020019081526020016000206000828254612774919061464f565b9250508190555061278784848484611bca565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f4906142b5565b60405180910390fd5b6000612807611ddd565b905061282781878761281888612c2c565b61282188612c2c565b87612cf2565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b590614315565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612973919061464f565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516129f09291906144ab565b60405180910390a4612a06828888888888612cfa565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a76906142f5565b60405180910390fd5b6000612a89611ddd565b9050612ab981856000612a9b87612c2c565b612aa487612c2c565b60405180602001604052806000815250612cf2565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790614215565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612c1d9291906144ab565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612c71577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612c9f5781602001602082028036833780820191505090505b5090508281600081518110612cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b612d198473ffffffffffffffffffffffffffffffffffffffff16611d60565b15612ed9578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d5f95949392919061402a565b602060405180830381600087803b158015612d7957600080fd5b505af1925050508015612daa57506040513d601f19601f82011682018060405250810190612da7919061391b565b60015b612e5057612db6614911565b806308c379a01415612e135750612dcb615011565b80612dd65750612e15565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a9190614113565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4790614135565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece90614155565b60405180910390fd5b505b505050505050565b612f008473ffffffffffffffffffffffffffffffffffffffff16611d60565b156130c0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612f46959493929190613fc2565b602060405180830381600087803b158015612f6057600080fd5b505af1925050508015612f9157506040513d601f19601f82011682018060405250810190612f8e919061391b565b60015b61303757612f9d614911565b806308c379a01415612ffa5750612fb2615011565b80612fbd5750612ffc565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff19190614113565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302e90614135565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146130be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b590614155565b60405180910390fd5b505b505050505050565b60008082905060005b8451811015613158576000858281518110613115577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613137576131308382613163565b9250613144565b6131418184613163565b92505b50808061315090614817565b9150506130d1565b508091505092915050565b600082600052816020526040600020905092915050565b828054613186906147b4565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157805160ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782518255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b600061323061322b846144f9565b6144d4565b9050808382526020820190508285602086028201111561324f57600080fd5b60005b8581101561327f57816132658882613371565b845260208401935060208301925050600181019050613252565b5050509392505050565b600061329c61329784614525565b6144d4565b905080838252602082019050828560208602820111156132bb57600080fd5b60005b858110156132eb57816132d188826134cc565b8452602084019350602083019250506001810190506132be565b5050509392505050565b600061330861330384614551565b6144d4565b90508281526020810184848401111561332057600080fd5b61332b848285614772565b509392505050565b600061334661334184614582565b6144d4565b90508281526020810184848401111561335e57600080fd5b613369848285614772565b509392505050565b600081359050613380816150a7565b92915050565b600082601f83011261339757600080fd5b81356133a784826020860161321d565b91505092915050565b60008083601f8401126133c257600080fd5b8235905067ffffffffffffffff8111156133db57600080fd5b6020830191508360208202830111156133f357600080fd5b9250929050565b600082601f83011261340b57600080fd5b813561341b848260208601613289565b91505092915050565b600081359050613433816150be565b92915050565b600081359050613448816150d5565b92915050565b60008135905061345d816150ec565b92915050565b600081519050613472816150ec565b92915050565b600082601f83011261348957600080fd5b81356134998482602086016132f5565b91505092915050565b600082601f8301126134b357600080fd5b81356134c3848260208601613333565b91505092915050565b6000813590506134db81615103565b92915050565b6000813590506134f08161511a565b92915050565b60006020828403121561350857600080fd5b600061351684828501613371565b91505092915050565b6000806040838503121561353257600080fd5b600061354085828601613371565b925050602061355185828601613371565b9150509250929050565b600080600080600060a0868803121561357357600080fd5b600061358188828901613371565b955050602061359288828901613371565b945050604086013567ffffffffffffffff8111156135af57600080fd5b6135bb888289016133fa565b935050606086013567ffffffffffffffff8111156135d857600080fd5b6135e4888289016133fa565b925050608086013567ffffffffffffffff81111561360157600080fd5b61360d88828901613478565b9150509295509295909350565b600080600080600060a0868803121561363257600080fd5b600061364088828901613371565b955050602061365188828901613371565b9450506040613662888289016134cc565b9350506060613673888289016134cc565b925050608086013567ffffffffffffffff81111561369057600080fd5b61369c88828901613478565b9150509295509295909350565b6000806000606084860312156136be57600080fd5b60006136cc86828701613371565b935050602084013567ffffffffffffffff8111156136e957600080fd5b6136f5868287016133fa565b925050604084013567ffffffffffffffff81111561371257600080fd5b61371e868287016133fa565b9150509250925092565b6000806040838503121561373b57600080fd5b600061374985828601613371565b925050602061375a85828601613424565b9150509250929050565b6000806040838503121561377757600080fd5b600061378585828601613371565b9250506020613796858286016134cc565b9150509250929050565b6000806000606084860312156137b557600080fd5b60006137c386828701613371565b93505060206137d4868287016134cc565b92505060406137e5868287016134cc565b9150509250925092565b6000806040838503121561380257600080fd5b600083013567ffffffffffffffff81111561381c57600080fd5b61382885828601613386565b925050602083013567ffffffffffffffff81111561384557600080fd5b613851858286016133fa565b9150509250929050565b6000806020838503121561386e57600080fd5b600083013567ffffffffffffffff81111561388857600080fd5b613894858286016133b0565b92509250509250929050565b6000602082840312156138b257600080fd5b60006138c084828501613424565b91505092915050565b6000602082840312156138db57600080fd5b60006138e984828501613439565b91505092915050565b60006020828403121561390457600080fd5b60006139128482850161344e565b91505092915050565b60006020828403121561392d57600080fd5b600061393b84828501613463565b91505092915050565b60006020828403121561395657600080fd5b600082013567ffffffffffffffff81111561397057600080fd5b61397c848285016134a2565b91505092915050565b60006020828403121561399757600080fd5b60006139a5848285016134cc565b91505092915050565b6000602082840312156139c057600080fd5b60006139ce848285016134e1565b91505092915050565b60006139e38383613f42565b60208301905092915050565b6139f8816146d9565b82525050565b613a0f613a0a826146d9565b614860565b82525050565b6000613a20826145d8565b613a2a8185614606565b9350613a35836145b3565b8060005b83811015613a66578151613a4d88826139d7565b9750613a58836145f9565b925050600181019050613a39565b5085935050505092915050565b613a7c816146eb565b82525050565b613a8b816146f7565b82525050565b6000613a9c826145e3565b613aa68185614617565b9350613ab6818560208601614781565b613abf81614933565b840191505092915050565b6000613ad5826145ee565b613adf8185614633565b9350613aef818560208601614781565b613af881614933565b840191505092915050565b60008154613b10816147b4565b613b1a8186614644565b94506001821660008114613b355760018114613b4657613b79565b60ff19831686528186019350613b79565b613b4f856145c3565b60005b83811015613b7157815481890152600182019150602081019050613b52565b838801955050505b50505092915050565b6000613b8f603483614633565b9150613b9a8261495e565b604082019050919050565b6000613bb2602883614633565b9150613bbd826149ad565b604082019050919050565b6000613bd5601383614633565b9150613be0826149fc565b602082019050919050565b6000613bf8601a83614633565b9150613c0382614a25565b602082019050919050565b6000613c1b601983614633565b9150613c2682614a4e565b602082019050919050565b6000613c3e602b83614633565b9150613c4982614a77565b604082019050919050565b6000613c61602683614633565b9150613c6c82614ac6565b604082019050919050565b6000613c84602483614633565b9150613c8f82614b15565b604082019050919050565b6000613ca7602983614633565b9150613cb282614b64565b604082019050919050565b6000613cca603f83614633565b9150613cd582614bb3565b604082019050919050565b6000613ced601a83614633565b9150613cf882614c02565b602082019050919050565b6000613d10602183614633565b9150613d1b82614c2b565b604082019050919050565b6000613d33602583614633565b9150613d3e82614c7a565b604082019050919050565b6000613d56603283614633565b9150613d6182614cc9565b604082019050919050565b6000613d79602383614633565b9150613d8482614d18565b604082019050919050565b6000613d9c602a83614633565b9150613da782614d67565b604082019050919050565b6000613dbf602083614633565b9150613dca82614db6565b602082019050919050565b6000613de2602a83614633565b9150613ded82614ddf565b604082019050919050565b6000613e05601983614633565b9150613e1082614e2e565b602082019050919050565b6000613e28601e83614633565b9150613e3382614e57565b602082019050919050565b6000613e4b600083614628565b9150613e5682614e80565b600082019050919050565b6000613e6e602983614633565b9150613e7982614e83565b604082019050919050565b6000613e91602983614633565b9150613e9c82614ed2565b604082019050919050565b6000613eb4602883614633565b9150613ebf82614f21565b604082019050919050565b6000613ed7602183614633565b9150613ee282614f70565b604082019050919050565b6000613efa601f83614633565b9150613f0582614fbf565b602082019050919050565b6000613f1d601e83614633565b9150613f2882614fe8565b602082019050919050565b613f3c8161472d565b82525050565b613f4b8161475b565b82525050565b613f5a8161475b565b82525050565b6000613f6c82846139fe565b60148201915081905092915050565b6000613f878284613b03565b915081905092915050565b6000613f9d82613e3e565b9150819050919050565b6000602082019050613fbc60008301846139ef565b92915050565b600060a082019050613fd760008301886139ef565b613fe460208301876139ef565b8181036040830152613ff68186613a15565b9050818103606083015261400a8185613a15565b9050818103608083015261401e8184613a91565b90509695505050505050565b600060a08201905061403f60008301886139ef565b61404c60208301876139ef565b6140596040830186613f51565b6140666060830185613f51565b81810360808301526140788184613a91565b90509695505050505050565b6000602082019050818103600083015261409e8184613a15565b905092915050565b600060408201905081810360008301526140c08185613a15565b905081810360208301526140d48184613a15565b90509392505050565b60006020820190506140f26000830184613a73565b92915050565b600060208201905061410d6000830184613a82565b92915050565b6000602082019050818103600083015261412d8184613aca565b905092915050565b6000602082019050818103600083015261414e81613b82565b9050919050565b6000602082019050818103600083015261416e81613ba5565b9050919050565b6000602082019050818103600083015261418e81613bc8565b9050919050565b600060208201905081810360008301526141ae81613beb565b9050919050565b600060208201905081810360008301526141ce81613c0e565b9050919050565b600060208201905081810360008301526141ee81613c31565b9050919050565b6000602082019050818103600083015261420e81613c54565b9050919050565b6000602082019050818103600083015261422e81613c77565b9050919050565b6000602082019050818103600083015261424e81613c9a565b9050919050565b6000602082019050818103600083015261426e81613cbd565b9050919050565b6000602082019050818103600083015261428e81613ce0565b9050919050565b600060208201905081810360008301526142ae81613d03565b9050919050565b600060208201905081810360008301526142ce81613d26565b9050919050565b600060208201905081810360008301526142ee81613d49565b9050919050565b6000602082019050818103600083015261430e81613d6c565b9050919050565b6000602082019050818103600083015261432e81613d8f565b9050919050565b6000602082019050818103600083015261434e81613db2565b9050919050565b6000602082019050818103600083015261436e81613dd5565b9050919050565b6000602082019050818103600083015261438e81613df8565b9050919050565b600060208201905081810360008301526143ae81613e1b565b9050919050565b600060208201905081810360008301526143ce81613e61565b9050919050565b600060208201905081810360008301526143ee81613e84565b9050919050565b6000602082019050818103600083015261440e81613ea7565b9050919050565b6000602082019050818103600083015261442e81613eca565b9050919050565b6000602082019050818103600083015261444e81613eed565b9050919050565b6000602082019050818103600083015261446e81613f10565b9050919050565b600060208201905061448a6000830184613f33565b92915050565b60006020820190506144a56000830184613f51565b92915050565b60006040820190506144c06000830185613f51565b6144cd6020830184613f51565b9392505050565b60006144de6144ef565b90506144ea82826147e6565b919050565b6000604051905090565b600067ffffffffffffffff821115614514576145136148e2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145405761453f6148e2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561456c5761456b6148e2565b5b61457582614933565b9050602081019050919050565b600067ffffffffffffffff82111561459d5761459c6148e2565b5b6145a682614933565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061465a8261475b565b91506146658361475b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561469a57614699614884565b5b828201905092915050565b60006146b08261475b565b91506146bb8361475b565b9250828210156146ce576146cd614884565b5b828203905092915050565b60006146e48261473b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561479f578082015181840152602081019050614784565b838111156147ae576000848401525b50505050565b600060028204905060018216806147cc57607f821691505b602082108114156147e0576147df6148b3565b5b50919050565b6147ef82614933565b810181811067ffffffffffffffff8211171561480e5761480d6148e2565b5b80604052505050565b60006148228261475b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485557614854614884565b5b600182019050919050565b600061486b82614872565b9050919050565b600061487d82614944565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149305760046000803e61492d600051614951565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a204e6f207661756c7400000000000000000000000000600082015250565b7f564747454e504153533a204e6f74207374617274656420796574000000000000600082015250565b7f564747454e504153533a204d696e74696e672050617573656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a20596f7520617265206e6f742077686974656c69737460008201527f65642c20706c65617365207761697420666f72207075626c6963206d696e7400602082015250565b7f564747454e504153533a205769746864726177206661696c6564000000000000600082015250565b7f564747454e504153533a2043616e2774206d696e74206d6f7265207468616e2060008201527f3100000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f564747454e504153533a204661696c656420746f20776974686472617720746f60008201527f20746865206f776e657200000000000000000000000000000000000000000000602082015250565b7f564747454e504153533a204e6f7420656e6f7567682066656500000000000000600082015250565b7f564747454e504153533a205375707079206c696d697420776173206869740000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f564747454e504153533a206261736520555249206973206e6f74207365740000600082015250565b600060443d1015615021576150a4565b6150296144ef565b60043d036004823e80513d602482011167ffffffffffffffff821117156150515750506150a4565b808201805167ffffffffffffffff81111561506f57505050506150a4565b80602083010160043d03850181111561508c5750505050506150a4565b61509b826020018501866147e6565b82955050505050505b90565b6150b0816146d9565b81146150bb57600080fd5b50565b6150c7816146eb565b81146150d257600080fd5b50565b6150de816146f7565b81146150e957600080fd5b50565b6150f581614701565b811461510057600080fd5b50565b61510c8161475b565b811461511757600080fd5b50565b61512381614765565b811461512e57600080fd5b5056fea2646970667358221220c52a747526532cbd5c56e775bfe38d49bcfa1f02a51262b32f97bc45dd4a54fa64736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000006219ec10ffe574ca82ed0b78fd21bc7f786987829bdfc581bec50d11a4937fdad06d7eb9000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d664d365366354134455a623268784e3544554d366b38726a73375974544b6b434d583751656178713277666300000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmfM6Sf5A4EZb2hxN5DUM6k8rjs7YtTKkCMX7Qeaxq2wfc
Arg [1] : _startTimestamp (uint256): 1645866000
Arg [2] : _ogMerkleRoot (bytes32): 0xffe574ca82ed0b78fd21bc7f786987829bdfc581bec50d11a4937fdad06d7eb9
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000000000000000000000000000000000006219ec10
Arg [2] : ffe574ca82ed0b78fd21bc7f786987829bdfc581bec50d11a4937fdad06d7eb9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d664d365366354134455a623268784e3544554d366b38726a73375974
Arg [6] : 544b6b434d583751656178713277666300000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.