Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- MerkleDistributorWithDeadline
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 5000
- EVM Version
- default
- Verified at
- 2025-03-21T10:15:43.036195Z
Constructor Arguments
0x000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd41e630862c234ca78e468c168dc6255b50c67556b196db80b22545a7e49c46160000000000000000000000000000000000000000000000000000000068d09180
Arg [0] (address) : 0xabccefb00528c9c792ac7c46997f0f6ee5dcdddd
Arg [1] (bytes32) : 41e630862c234ca78e468c168dc6255b50c67556b196db80b22545a7e49c4616
Arg [2] (uint256) : 1758499200
contracts/MerkleDistributorWithDeadline.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity =0.8.17;import {MerkleDistributor} from "./MerkleDistributor.sol";import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";error EndTimeInPast();error ClaimWindowFinished();error NoWithdrawDuringClaim();contract MerkleDistributorWithDeadline is MerkleDistributor, Ownable {using SafeERC20 for IERC20;uint256 public immutable endTime;constructor(address token_, bytes32 merkleRoot_, uint256 endTime_) MerkleDistributor(token_, merkleRoot_) {if (endTime_ <= block.timestamp) revert EndTimeInPast();endTime = endTime_;}function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) public override {if (block.timestamp > endTime) revert ClaimWindowFinished();super.claim(index, account, amount, merkleProof);}function withdraw() external onlyOwner {if (block.timestamp < endTime) revert NoWithdrawDuringClaim();IERC20(token).safeTransfer(msg.sender, IERC20(token).balanceOf(address(this)));}}
contracts/MerkleDistributor.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity =0.8.17;import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import {IMerkleDistributor} from "./interfaces/IMerkleDistributor.sol";error AlreadyClaimed();error InvalidProof();contract MerkleDistributor is IMerkleDistributor {using SafeERC20 for IERC20;address public immutable override token;bytes32 public immutable override merkleRoot;// This is a packed array of booleans.mapping(uint256 => uint256) private claimedBitMap;constructor(address token_, bytes32 merkleRoot_) {token = token_;merkleRoot = merkleRoot_;}function isClaimed(uint256 index) public view override returns (bool) {uint256 claimedWordIndex = index / 256;uint256 claimedBitIndex = index % 256;uint256 claimedWord = claimedBitMap[claimedWordIndex];uint256 mask = (1 << claimedBitIndex);return claimedWord & mask == mask;}function _setClaimed(uint256 index) private {uint256 claimedWordIndex = index / 256;uint256 claimedBitIndex = index % 256;claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);}function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof)publicvirtual
@openzeppelin/contracts/utils/Context.sol
// 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;}}
@openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree 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.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.*/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 Calldata version of {verify}** _Available since v4.7._*/function verifyCalldata(bytes32[] calldata proof,
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.*/modifier onlyOwner() {_checkOwner();_;}/*** @dev Returns the address of the current owner.
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `to`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address to, uint256 amount) external returns (bool);
@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,* given ``owner``'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.* - `deadline` must be a timestamp in the future.* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`* over the EIP712-formatted function arguments.* - the signature must use ``owner``'s current nonce (see {nonces}).** For more information on the signature format, see the* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP* section].*/function permit(address owner,address spender,uint256 value,uint256 deadline,uint8 v,
@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../extensions/draft-IERC20Permit.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token,address to,uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));}function safeTransferFrom(IERC20 token,address from,address to,uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));}/*** @dev Deprecated. This function has issues similar to the ones found in* {IERC20-approve}, and its usage is discouraged.
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @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* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length > 0;
contracts/interfaces/IMerkleDistributor.sol
// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity >=0.5.0;// Allows anyone to claim a token if they exist in a merkle root.interface IMerkleDistributor {// Returns the address of the token distributed by this contract.function token() external view returns (address);// Returns the merkle root of the merkle tree containing account balances available to claim.function merkleRoot() external view returns (bytes32);// Returns true if the index has been marked claimed.function isClaimed(uint256 index) external view returns (bool);// Claim the given amount of the token to the given address. Reverts if the inputs are invalid.function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external;// This event is triggered whenever a call to #claim succeeds.event Claimed(uint256 index, address account, uint256 amount);}
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":5000,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"token_","internalType":"address"},{"type":"bytes32","name":"merkleRoot_","internalType":"bytes32"},{"type":"uint256","name":"endTime_","internalType":"uint256"}]},{"type":"error","name":"AlreadyClaimed","inputs":[]},{"type":"error","name":"ClaimWindowFinished","inputs":[]},{"type":"error","name":"EndTimeInPast","inputs":[]},{"type":"error","name":"InvalidProof","inputs":[]},{"type":"error","name":"NoWithdrawDuringClaim","inputs":[]},{"type":"event","name":"Claimed","inputs":[{"type":"uint256","name":"index","internalType":"uint256","indexed":false},{"type":"address","name":"account","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claim","inputs":[{"type":"uint256","name":"index","internalType":"uint256"},{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"bytes32[]","name":"merkleProof","internalType":"bytes32[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"endTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isClaimed","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"merkleRoot","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"token","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[]}]
Contract Creation Code
0x60e060405234801561001057600080fd5b50604051610f7e380380610f7e83398101604081905261002f916100c7565b6001600160a01b03831660805260a082905261004a33610075565b42811161006a576040516372e54d4d60e01b815260040160405180910390fd5b60c0525061010a9050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000606084860312156100dc57600080fd5b83516001600160a01b03811681146100f357600080fd5b602085015160409095015190969495509392505050565b60805160a05160c051610e1d6101616000396000818160fc015281816101cc015261024201526000818160c201526105560152600081816101a8015281816102e30152818161036501526105da0152610e1d6000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c8063715018a6116100765780639e34070f1161005b5780639e34070f1461016d578063f2fde38b14610190578063fc0c546a146101a357600080fd5b8063715018a6146101265780638da5cb5b1461012e57600080fd5b80632e7ba6ef146100a85780632eb4a7ab146100bd5780633197cbb6146100f75780633ccfd60b1461011e575b600080fd5b6100bb6100b6366004610b6b565b6101ca565b005b6100e47f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b6100e47f000000000000000000000000000000000000000000000000000000000000000081565b6100bb610238565b6100bb61038e565b60015473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ee565b61018061017b366004610c02565b6103a0565b60405190151581526020016100ee565b6100bb61019e366004610c1b565b6103e1565b6101487f000000000000000000000000000000000000000000000000000000000000000081565b7f0000000000000000000000000000000000000000000000000000000000000000421115610224576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102318585858585610483565b5050505050565b61024061065f565b7f000000000000000000000000000000000000000000000000000000000000000042101561029a576040517fee56a2b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261038c90339073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa15801561032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061034e9190610c36565b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001691906106c6565b565b61039661065f565b61038c6000610758565b6000806103af61010084610c7e565b905060006103bf61010085610c92565b60009283526020839052604090922054600190921b9182169091149392505050565b6103e961065f565b73ffffffffffffffffffffffffffffffffffffffff81166104775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61048081610758565b50565b61048c856103a0565b156104c3576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60408051602081018790527fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b1691810191909152605481018490526000906074016040516020818303038152906040528051906020012090506105818383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f000000000000000000000000000000000000000000000000000000000000000092508591506107cf9050565b6105b7576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105c0866107e7565b61060173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686866106c6565b6040805187815273ffffffffffffffffffffffffffffffffffffffff871660208201529081018590527f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269060600160405180910390a1505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461038c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046e565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610753908490610825565b505050565b6001805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826107dc8584610917565b1490505b9392505050565b60006107f561010083610c7e565b9050600061080561010084610c92565b6000928352602083905260409092208054600190931b9092179091555050565b6000610887826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109649092919063ffffffff16565b80519091501561075357808060200190518101906108a59190610ca6565b6107535760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161046e565b600081815b845181101561095c576109488286838151811061093b5761093b610cc8565b602002602001015161097b565b91508061095481610cf7565b91505061091c565b509392505050565b606061097384846000856109a7565b949350505050565b60008183106109975760008281526020849052604090206107e0565b5060009182526020526040902090565b606082471015610a1f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161046e565b73ffffffffffffffffffffffffffffffffffffffff85163b610a835760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161046e565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610aac9190610d7a565b60006040518083038185875af1925050503d8060008114610ae9576040519150601f19603f3d011682016040523d82523d6000602084013e610aee565b606091505b5091509150610afe828286610b09565b979650505050505050565b60608315610b185750816107e0565b825115610b285782518084602001fd5b8160405162461bcd60e51b815260040161046e9190610d96565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b6657600080fd5b919050565b600080600080600060808688031215610b8357600080fd5b85359450610b9360208701610b42565b935060408601359250606086013567ffffffffffffffff80821115610bb757600080fd5b818801915088601f830112610bcb57600080fd5b813581811115610bda57600080fd5b8960208260051b8501011115610bef57600080fd5b9699959850939650602001949392505050565b600060208284031215610c1457600080fd5b5035919050565b600060208284031215610c2d57600080fd5b6107e082610b42565b600060208284031215610c4857600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082610c8d57610c8d610c4f565b500490565b600082610ca157610ca1610c4f565b500690565b600060208284031215610cb857600080fd5b815180151581146107e057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610d4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b60005b83811015610d71578181015183820152602001610d59565b50506000910152565b60008251610d8c818460208701610d56565b9190910192915050565b6020815260008251806020840152610db5816040850160208701610d56565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea264697066735822122019ea37feadb2e0a378ea90075dc1d3199a6760d64b49a9af2832ce5cdef77e8864736f6c63430008110033000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd41e630862c234ca78e468c168dc6255b50c67556b196db80b22545a7e49c46160000000000000000000000000000000000000000000000000000000068d09180
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100a35760003560e01c8063715018a6116100765780639e34070f1161005b5780639e34070f1461016d578063f2fde38b14610190578063fc0c546a146101a357600080fd5b8063715018a6146101265780638da5cb5b1461012e57600080fd5b80632e7ba6ef146100a85780632eb4a7ab146100bd5780633197cbb6146100f75780633ccfd60b1461011e575b600080fd5b6100bb6100b6366004610b6b565b6101ca565b005b6100e47f41e630862c234ca78e468c168dc6255b50c67556b196db80b22545a7e49c461681565b6040519081526020015b60405180910390f35b6100e47f0000000000000000000000000000000000000000000000000000000068d0918081565b6100bb610238565b6100bb61038e565b60015473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ee565b61018061017b366004610c02565b6103a0565b60405190151581526020016100ee565b6100bb61019e366004610c1b565b6103e1565b6101487f000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd81565b7f0000000000000000000000000000000000000000000000000000000068d09180421115610224576040517fd365f61100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6102318585858585610483565b5050505050565b61024061065f565b7f0000000000000000000000000000000000000000000000000000000068d0918042101561029a576040517fee56a2b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261038c90339073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd16906370a0823190602401602060405180830381865afa15801561032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061034e9190610c36565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd1691906106c6565b565b61039661065f565b61038c6000610758565b6000806103af61010084610c7e565b905060006103bf61010085610c92565b60009283526020839052604090922054600190921b9182169091149392505050565b6103e961065f565b73ffffffffffffffffffffffffffffffffffffffff81166104775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61048081610758565b50565b61048c856103a0565b156104c3576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60408051602081018790527fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b1691810191909152605481018490526000906074016040516020818303038152906040528051906020012090506105818383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f41e630862c234ca78e468c168dc6255b50c67556b196db80b22545a7e49c461692508591506107cf9050565b6105b7576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105c0866107e7565b61060173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000abccefb00528c9c792ac7c46997f0f6ee5dcdddd1686866106c6565b6040805187815273ffffffffffffffffffffffffffffffffffffffff871660208201529081018590527f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed0269060600160405180910390a1505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461038c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161046e565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610753908490610825565b505050565b6001805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826107dc8584610917565b1490505b9392505050565b60006107f561010083610c7e565b9050600061080561010084610c92565b6000928352602083905260409092208054600190931b9092179091555050565b6000610887826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166109649092919063ffffffff16565b80519091501561075357808060200190518101906108a59190610ca6565b6107535760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161046e565b600081815b845181101561095c576109488286838151811061093b5761093b610cc8565b602002602001015161097b565b91508061095481610cf7565b91505061091c565b509392505050565b606061097384846000856109a7565b949350505050565b60008183106109975760008281526020849052604090206107e0565b5060009182526020526040902090565b606082471015610a1f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161046e565b73ffffffffffffffffffffffffffffffffffffffff85163b610a835760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161046e565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610aac9190610d7a565b60006040518083038185875af1925050503d8060008114610ae9576040519150601f19603f3d011682016040523d82523d6000602084013e610aee565b606091505b5091509150610afe828286610b09565b979650505050505050565b60608315610b185750816107e0565b825115610b285782518084602001fd5b8160405162461bcd60e51b815260040161046e9190610d96565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b6657600080fd5b919050565b600080600080600060808688031215610b8357600080fd5b85359450610b9360208701610b42565b935060408601359250606086013567ffffffffffffffff80821115610bb757600080fd5b818801915088601f830112610bcb57600080fd5b813581811115610bda57600080fd5b8960208260051b8501011115610bef57600080fd5b9699959850939650602001949392505050565b600060208284031215610c1457600080fd5b5035919050565b600060208284031215610c2d57600080fd5b6107e082610b42565b600060208284031215610c4857600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082610c8d57610c8d610c4f565b500490565b600082610ca157610ca1610c4f565b500690565b600060208284031215610cb857600080fd5b815180151581146107e057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610d4f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b60005b83811015610d71578181015183820152602001610d59565b50506000910152565b60008251610d8c818460208701610d56565b9190910192915050565b6020815260008251806020840152610db5816040850160208701610d56565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea264697066735822122019ea37feadb2e0a378ea90075dc1d3199a6760d64b49a9af2832ce5cdef77e8864736f6c63430008110033