Transactions
Token Transfers
Internal Transactions
Coin Balance History
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.
This contract has been partially verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- Distributor
- Optimization enabled
- true
- Compiler version
- v0.6.12+commit.27d51765
- Optimization runs
- 200
- EVM Version
- istanbul
- Verified at
- 2026-03-24T17:45:54.715802Z
Distributor.sol
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @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) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @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 sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @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) {
// 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 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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 mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity >=0.6.2 <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;
// solhint-disable-next-line no-inline-assembly
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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @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 SafeMath for uint256;
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.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts/TokenVesting.sol
pragma solidity ^0.6.12;
/**
* @title TokenVesting
* @dev A token holder contract that can release its token balance gradually like a
* typical vesting scheme, with and vesting period.
*/
contract TokenVesting {
// The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is
// therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore,
// it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a
// duration of four years, are safe to use.
using SafeMath for uint256;
using SafeERC20 for IERC20;
event TokensReleased(address token, address beneficiary, uint256 amount);
// Durations and timestamps are expressed in UNIX time, the same units as block.timestamp.
uint256 private _start;
uint256 private _duration;
IERC20 private _token;
// beneficiary token amounts and released amounts
mapping (address => uint256) private _totalTokens;
mapping (address => uint256) private _releasedTokens;
/**
* @dev Creates a vesting contract that vests its balance of any ERC20 token to the
* beneficiary, gradually in a linear fashion until start + duration. By then all
* of the balance will have vested.
* @param beneficiaries addresses of the beneficiaries to whom vested tokens are transferred
* @param amounts amounts of tokens for the beneficiaries
* @param start the time (as Unix time) at which point vesting starts
* @param duration duration in seconds of the period in which the tokens will vest
*/
constructor (address[] memory beneficiaries, uint256[] memory amounts, uint256 start, uint256 duration, IERC20 token) public {
require(duration > 0, "TokenVesting: duration is 0");
require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time");
require(beneficiaries.length == amounts.length, "TokenVesting: beneficiaries length is not equal to amounts length");
for (uint i = 0; i < beneficiaries.length; i++) {
require(beneficiaries[i] != address(0), "TokenVesting: beneficiary is the zero address");
require(amounts[i] != 0, "TokenVesting: amount is zero");
_totalTokens[beneficiaries[i]] = amounts[i];
}
_duration = duration;
_start = start;
_token = token;
}
/**
* @return the token that this contract is holding as vest
*/
function token() public view returns (address) {
return address(_token);
}
/**
* @return the amount of tokens for the given beneficiary of the tokens.
*/
function totalTokens(address beneficiary) public view returns (uint256) {
return _totalTokens[beneficiary];
}
/**
* @return the start time of the token vesting.
*/
function start() public view returns (uint256) {
return _start;
}
/**
* @return the duration of the token vesting.
*/
function duration() public view returns (uint256) {
return _duration;
}
/**
* @return the amount of the token released.
*/
function releasedTokens(address beneficiary) public view returns (uint256) {
return _releasedTokens[beneficiary];
}
/**
* @return the amount of tokens which can be claimed by a beneficiary.
*/
function releasableAmount(address beneficiary) public view returns (uint256) {
return _vestedAmount(beneficiary).sub(_releasedTokens[beneficiary]);
}
/**
* @notice Transfers vested tokens to beneficiary.
* @param beneficiary beneficiary to receive the funds
*/
function release(address beneficiary) public {
uint256 unreleased = releasableAmount(beneficiary);
require(unreleased > 0, "TokenVesting: no tokens are due");
_releasedTokens[beneficiary] = _releasedTokens[beneficiary].add(unreleased);
_token.safeTransfer(beneficiary, unreleased);
emit TokensReleased(address(_token), beneficiary, unreleased);
}
/**
* @dev Calculates the amount that has already vested.
* @param beneficiary beneficiary address to check
*/
function _vestedAmount(address beneficiary) private view returns (uint256) {
if (block.timestamp < _start) {
return 0;
} else if (block.timestamp >= _start.add(_duration)) {
return _totalTokens[beneficiary];
} else {
return _totalTokens[beneficiary].mul(block.timestamp.sub(_start)).div(_duration);
}
}
}
// File: contracts/Distributor.sol
pragma solidity ^0.6.12;
/**
* @title Distributor
* @dev A distribution contract, which is given tokens, and two lists of addresses and amounts
* which the given tokens are distributed to.
*/
contract Distributor {
// Token recipients and amounts state
address[] private _immediateRecipients;
uint256[] private _immediateAmounts;
address[] private _vestRecipients;
uint256[] private _vestAmounts;
// The TokenVesting instance which this contract will deploy
TokenVesting private _vesting;
// Authorization
address private _deployer;
bool private _distributed;
/**
* @dev Creates a distribution contract that temporarily holds a set of tokens, to be distributed.
* These tokens are sent to two lists of addresses, one list being addresses which should immediately
* receive thier tokens, the other list being addresses that need to have their tokens vested over
* some period of time.
* @param immediateRecipients_ addresses which should immediately receive their tokens
* @param immediateAmounts_ token amounts that correpsond to the immediateRecipients_ addresses
* @param vestRecipients_ addresses which should have their tokens vest over some period of time
* @param vestAmounts_ token amounts that correpsond to the vestRecipients_ addresses
*/
constructor(
address[] memory immediateRecipients_, uint256[] memory immediateAmounts_,
address[] memory vestRecipients_, uint256[] memory vestAmounts_
) public {
require(
immediateRecipients_.length == immediateAmounts_.length,
"Distributor::constructor: immediateRecipients_ length must equal immediateAmounts_ length"
);
require(
vestRecipients_.length == vestAmounts_.length,
"Distributor::constructor: vestRecipients_ length must equal vestAmounts_ length"
);
_immediateRecipients = immediateRecipients_;
_immediateAmounts = immediateAmounts_;
_vestRecipients = vestRecipients_;
_vestAmounts = vestAmounts_;
// Save the deployer address, so that we can be sure that only that address calls `distribute`
_deployer = msg.sender;
}
/**
* @return the vesting contract address which this contract created
*/
function vesting() public view returns (address) {
return address(_vesting);
}
/**
* @notice Distributes tokens to immediate recipients,
* creates a new TokenVesting contract, and sends the tokens to-be-vested to that contract
* @param token the ERC20 token which to operate on
* @param start the time at which tokens start to vest
* @param duration the TokenVesting duration
*/
function distribute(IERC20 token, uint256 start, uint256 duration) public {
// Only callable one tine
require(_distributed == false, "Distributor::distribute: _distributed is true");
_distributed = true;
// Only the address which deployed this contract can call `distribute`
require(msg.sender == _deployer, "Distributor::distribute: distributor is not deployer");
// Send tokens directly to recipient addresses with no vesting
for (uint i = 0; i < _immediateRecipients.length; i++) {
token.transfer(_immediateRecipients[i], _immediateAmounts[i]);
}
// Calculate the amount of tokens to be vested
uint256 vestTotal;
for (uint i = 0; i < _vestAmounts.length; i++) {
vestTotal += _vestAmounts[i];
}
// Create new TokenVesting contract which will be shared between all vesting addresses, send tokens to it
_vesting = new TokenVesting(_vestRecipients, _vestAmounts, start, duration, token);
token.transfer(address(_vesting), vestTotal);
// Sanity check
require(token.balanceOf(address(this)) == 0, "Distributor::distribute: distributor balance not 0");
}
}
Compiler Settings
{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"Distributor.sol":"Distributor"}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address[]","name":"immediateRecipients_","internalType":"address[]"},{"type":"uint256[]","name":"immediateAmounts_","internalType":"uint256[]"},{"type":"address[]","name":"vestRecipients_","internalType":"address[]"},{"type":"uint256[]","name":"vestAmounts_","internalType":"uint256[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"distribute","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"},{"type":"uint256","name":"start","internalType":"uint256"},{"type":"uint256","name":"duration","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"vesting","inputs":[]}]
Contract Creation Code
0x608060405234801561001057600080fd5b5060405161184a38038061184a8339818101604052608081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825186602082028301116401000000008211171561008557600080fd5b82525081516020918201928201910280838360005b838110156100b257818101518382015260200161009a565b50505050905001604052602001805160405193929190846401000000008211156100db57600080fd5b9083019060208201858111156100f057600080fd5b825186602082028301116401000000008211171561010d57600080fd5b82525081516020918201928201910280838360005b8381101561013a578181015183820152602001610122565b505050509050016040526020018051604051939291908464010000000082111561016357600080fd5b90830190602082018581111561017857600080fd5b825186602082028301116401000000008211171561019557600080fd5b82525081516020918201928201910280838360005b838110156101c25781810151838201526020016101aa565b50505050905001604052602001805160405193929190846401000000008211156101eb57600080fd5b90830190602082018581111561020057600080fd5b825186602082028301116401000000008211171561021d57600080fd5b82525081516020918201928201910280838360005b8381101561024a578181015183820152602001610232565b5050505090500160405250505082518451146102975760405162461bcd60e51b81526004018080602001828103825260598152602001806117f16059913960600191505060405180910390fd5b80518251146102d75760405162461bcd60e51b815260040180806020018281038252604f8152602001806117a2604f913960600191505060405180910390fd5b83516102ea906000906020870190610343565b5082516102fe9060019060208601906103a8565b508151610312906002906020850190610343565b5080516103269060039060208401906103a8565b5050600580546001600160a01b0319163317905550610423915050565b828054828255906000526020600020908101928215610398579160200282015b8281111561039857825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190610363565b506103a49291506103ef565b5090565b8280548282559060005260206000209081019282156103e3579160200282015b828111156103e35782518255916020019190600101906103c8565b506103a492915061040e565b5b808211156103a45780546001600160a01b03191681556001016103f0565b5b808211156103a4576000815560010161040f565b611370806104326000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806344c63eec1461003b578063e2c92a521461005f575b600080fd5b610043610093565b604080516001600160a01b039092168252519081900360200190f35b6100916004803603606081101561007557600080fd5b506001600160a01b0381351690602081013590604001356100a2565b005b6004546001600160a01b031690565b600554600160a01b900460ff16156100eb5760405162461bcd60e51b815260040180806020018281038252602d8152602001806112a8602d913960400191505060405180910390fd5b6005805460ff60a01b1916600160a01b1790819055336001600160a01b03909116146101485760405162461bcd60e51b81526004018080602001828103825260348152602001806112d56034913960400191505060405180910390fd5b60005b60005481101561021c57836001600160a01b031663a9059cbb6000838154811061017157fe5b600091825260209091200154600180546001600160a01b03909216918590811061019757fe5b90600052602060002001546040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156101e857600080fd5b505af11580156101fc573d6000803e3d6000fd5b505050506040513d602081101561021257600080fd5b505060010161014b565b506000805b600354811015610251576003818154811061023857fe5b6000918252602090912001549190910190600101610221565b506002600384848760405161026590610481565b808060200180602001868152602001858152602001846001600160a01b0316815260200183810383528881815481526020019150805480156102d057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116102b2575b5050838103825287818154815260200191508054801561030f57602002820191906000526020600020905b8154815260200190600101908083116102fb575b5050975050505050505050604051809103906000f080158015610336573d6000803e3d6000fd5b50600480546001600160a01b0319166001600160a01b03928316178082556040805163a9059cbb60e01b8152918416928201929092526024810184905290519186169163a9059cbb916044808201926020929091908290030181600087803b1580156103a157600080fd5b505af11580156103b5573d6000803e3d6000fd5b505050506040513d60208110156103cb57600080fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b038616916370a08231916024808301926020929190829003018186803b15801561041357600080fd5b505afa158015610427573d6000803e3d6000fd5b505050506040513d602081101561043d57600080fd5b50511561047b5760405162461bcd60e51b81526004018080602001828103825260328152602001806113096032913960400191505060405180910390fd5b50505050565b610e198061048f8339019056fe60806040523480156200001157600080fd5b5060405162000e1938038062000e19833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82518660208202830111640100000000821117156200008c57600080fd5b82525081516020918201928201910280838360005b83811015620000bb578181015183820152602001620000a1565b5050505090500160405260200180516040519392919084640100000000821115620000e557600080fd5b908301906020820185811115620000fb57600080fd5b82518660208202830111640100000000821117156200011957600080fd5b82525081516020918201928201910280838360005b83811015620001485781810151838201526020016200012e565b505050509190910160409081526020830151908301516060909301519094509192505081620001be576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604482015290519081900360640190fd5b42620001d98385620003c160201b620002e91790919060201c565b11620002175760405162461bcd60e51b815260040180806020018281038252602f81526020018062000d7c602f913960400191505060405180910390fd5b8351855114620002595760405162461bcd60e51b815260040180806020018281038252604181526020018062000dd86041913960600191505060405180910390fd5b60005b85518110156200038c5760006001600160a01b03168682815181106200027e57fe5b60200260200101516001600160a01b03161415620002ce5760405162461bcd60e51b815260040180806020018281038252602d81526020018062000dab602d913960400191505060405180910390fd5b848181518110620002db57fe5b60200260200101516000141562000339576040805162461bcd60e51b815260206004820152601c60248201527f546f6b656e56657374696e673a20616d6f756e74206973207a65726f00000000604482015290519081900360640190fd5b8481815181106200034657fe5b6020026020010151600360008884815181106200035f57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020556001016200025c565b50600191909155600091909155600280546001600160a01b0319166001600160a01b0390921691909117905550620004239050565b6000828201838110156200041c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61094980620004336000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c806370ff852b1161005b57806370ff852b146100ea578063be9a655514610110578063cb9199a214610118578063fc0c546a1461013e5761007d565b80630fb5a6b4146100825780631726cbc81461009c57806319165587146100c2575b600080fd5b61008a610162565b60408051918252519081900360200190f35b61008a600480360360208110156100b257600080fd5b50356001600160a01b0316610168565b6100e8600480360360208110156100d857600080fd5b50356001600160a01b031661019c565b005b61008a6004803603602081101561010057600080fd5b50356001600160a01b031661029e565b61008a6102b9565b61008a6004803603602081101561012e57600080fd5b50356001600160a01b03166102bf565b6101466102da565b604080516001600160a01b039092168252519081900360200190f35b60015490565b6001600160a01b0381166000908152600460205260408120546101949061018e8461034c565b906103dd565b90505b919050565b60006101a782610168565b9050600081116101fe576040805162461bcd60e51b815260206004820152601f60248201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604482015290519081900360640190fd5b6001600160a01b03821660009081526004602052604090205461022190826102e9565b6001600160a01b0380841660009081526004602052604090209190915560025461024d9116838361041f565b600254604080516001600160a01b0392831681529184166020830152818101839052517f3737f2a73c794dafe53d8aeea06810a9ebcf7167401b259406960e088e03f8309181900360600190a15050565b6001600160a01b031660009081526004602052604090205490565b60005490565b6001600160a01b031660009081526003602052604090205490565b6002546001600160a01b031690565b600082820183811015610343576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000805442101561035f57506000610197565b60015460005461036e916102e9565b421061039357506001600160a01b038116600090815260036020526040902054610197565b6103d66001546103d06103b1600054426103dd90919063ffffffff16565b6001600160a01b03861660009081526003602052604090205490610476565b906104cf565b9050610197565b600061034383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610511565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526104719084906105ad565b505050565b60008261048557506000610346565b8282028284828161049257fe5b04146103435760405162461bcd60e51b81526004018080602001828103825260218152602001806108c96021913960400191505060405180910390fd5b600061034383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061065e565b600081848411156105a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561056557818101518382015260200161054d565b50505050905090810190601f1680156105925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50508183035b9392505050565b6060610602826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106c39092919063ffffffff16565b8051909150156104715780806020019051602081101561062157600080fd5b50516104715760405162461bcd60e51b815260040180806020018281038252602a8152602001806108ea602a913960400191505060405180910390fd5b600081836106ad5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561056557818101518382015260200161054d565b5060008385816106b957fe5b0495945050505050565b60606106d284846000856106da565b949350505050565b60608247101561071b5760405162461bcd60e51b81526004018080602001828103825260268152602001806108a36026913960400191505060405180910390fd5b61072485610836565b610775576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106107b45780518252601f199092019160209182019101610795565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610816576040519150601f19603f3d011682016040523d82523d6000602084013e61081b565b606091505b509150915061082b82828661083c565b979650505050505050565b3b151590565b6060831561084b5750816105a6565b82511561085b5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561056557818101518382015260200161054d56fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220bf785c1cb8d9534d813abe5c0e5585c7eab0f6901dc2fbceeae3cd22e975f67464736f6c634300060c0033546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f72652063757272656e742074696d65546f6b656e56657374696e673a2062656e656669636961727920697320746865207a65726f2061646472657373546f6b656e56657374696e673a2062656e65666963696172696573206c656e677468206973206e6f7420657175616c20746f20616d6f756e7473206c656e6774684469737472696275746f723a3a646973747269627574653a205f646973747269627574656420697320747275654469737472696275746f723a3a646973747269627574653a206469737472696275746f72206973206e6f74206465706c6f7965724469737472696275746f723a3a646973747269627574653a206469737472696275746f722062616c616e6365206e6f742030a264697066735822122096960f497d8dbc7f064936f6e801a0b45fd1db00ba9ce069e368570a7412f72164736f6c634300060c00334469737472696275746f723a3a636f6e7374727563746f723a2076657374526563697069656e74735f206c656e677468206d75737420657175616c2076657374416d6f756e74735f206c656e6774684469737472696275746f723a3a636f6e7374727563746f723a20696d6d656469617465526563697069656e74735f206c656e677468206d75737420657175616c20696d6d656469617465416d6f756e74735f206c656e677468000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000000050000000000000000000000003547ed2fb580dc5657b0d04396f92f6a746b54b60000000000000000000000000b84cf44954a37f9abbe024f945a1d0f3f7467bf000000000000000000000000a4da1678bf2885a048bec18a8aaee48c20bf3d1c00000000000000000000000077e879a426a9f49349e2bbab4e8b91dd3f23084e00000000000000000000000015160128d2152ddb01365b60fd1cec1876845e63000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000031a17e847807b1bc0000000000000000000000000000000000000000000000000c685fa11e01ec6f00000000000000000000000000000000000000000000000001a784379d99db4200000000000000000000000000000000000000000000000001a784379d99db4200000000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000244265a76901b8030b140a2996e6dd4703cbf20f0000000000000000000000004a0a927043b01a7fb175bca4f4837e3b817c5e6b0000000000000000000000009354209b880ac0abb02821cb3915a6eeb9a9336c000000000000000000000000feb9bdcf0b5eec884777222d58583b1569400585000000000000000000000000b6420c6eae0325edba74845462c6760c6d70676600000000000000000000000043ce086a7769adc7921090cff6fb1c8efd62fb2600000000000000000000000061e2f3465a187c87bf8988e864764b338745fa60000000000000000000000000ab0eecc2026906072a8f9f0b4e9ef22314ebf1fe000000000000000000000000940c3f972c6eebf21d30e8fc86dcaf95f4dd5e28000000000000000000000000d1bbbc228a4753b9763a111e396a4a3083762a39000000000000000000000000cd635df513ebbbbb618fc6c63173adf8659a520d00000000000000000000000019fd3927ffe5f49c19e0c722290adba674bf52a3000000000000000000000000f05c863d877da228caa9b046df1d104b170364ce0000000000000000000000003453f2ff2ed689a31d0d5392638c3ab2ad71a752000000000000000000000000605acc13c07cb2de5261dc64d315857fde7d5c5c000000000000000000000000d48ab93dffac50a0aa51dd7c488d52d6472a74440000000000000000000000006a5868ca8187b5190b9238fc14e1c160e94df601000000000000000000000000548d20c41fde459d8036650821432e5a3249693d000000000000000000000000f9db5fe8d4025f58180e77148bfffb79fd0d807200000000000000000000000013c210e4a2035446cf02e5b8ac42b6b9a12f8675000000000000000000000000cd0093e2945b28f3b5ba3654e5a24946f7a538ed000000000000000000000000b1b7586656116d546033e3baff69bfcd6592225e000000000000000000000000e1a47414922159fb2d3f614ee9f0340c9c539b010000000000000000000000007fcae73cec08faf89f318a55fcda1706eee8407f000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000002a5a021794e9032700000000000000000000000000000000000000000000000023ffb7ed6565d64000000000000000000000000000000000000000000000000023ffb7ed6565d6400000000000000000000000000000000000000000000000001a784379d99db4200000000000000000000000000000000000000000000000001a784379d99db4200000000000000000000000000000000000000000000000001a784379d99db4200000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000007695a92c20d6fe0000000000000000000000000000000000000000000000000069e10de76676d08000000000000000000000000000000000000000000000000069e10de76676d0800000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000000000000000000000000000000000000000000000000e1e067ad31886cc0000
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100365760003560e01c806344c63eec1461003b578063e2c92a521461005f575b600080fd5b610043610093565b604080516001600160a01b039092168252519081900360200190f35b6100916004803603606081101561007557600080fd5b506001600160a01b0381351690602081013590604001356100a2565b005b6004546001600160a01b031690565b600554600160a01b900460ff16156100eb5760405162461bcd60e51b815260040180806020018281038252602d8152602001806112a8602d913960400191505060405180910390fd5b6005805460ff60a01b1916600160a01b1790819055336001600160a01b03909116146101485760405162461bcd60e51b81526004018080602001828103825260348152602001806112d56034913960400191505060405180910390fd5b60005b60005481101561021c57836001600160a01b031663a9059cbb6000838154811061017157fe5b600091825260209091200154600180546001600160a01b03909216918590811061019757fe5b90600052602060002001546040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156101e857600080fd5b505af11580156101fc573d6000803e3d6000fd5b505050506040513d602081101561021257600080fd5b505060010161014b565b506000805b600354811015610251576003818154811061023857fe5b6000918252602090912001549190910190600101610221565b506002600384848760405161026590610481565b808060200180602001868152602001858152602001846001600160a01b0316815260200183810383528881815481526020019150805480156102d057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116102b2575b5050838103825287818154815260200191508054801561030f57602002820191906000526020600020905b8154815260200190600101908083116102fb575b5050975050505050505050604051809103906000f080158015610336573d6000803e3d6000fd5b50600480546001600160a01b0319166001600160a01b03928316178082556040805163a9059cbb60e01b8152918416928201929092526024810184905290519186169163a9059cbb916044808201926020929091908290030181600087803b1580156103a157600080fd5b505af11580156103b5573d6000803e3d6000fd5b505050506040513d60208110156103cb57600080fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b038616916370a08231916024808301926020929190829003018186803b15801561041357600080fd5b505afa158015610427573d6000803e3d6000fd5b505050506040513d602081101561043d57600080fd5b50511561047b5760405162461bcd60e51b81526004018080602001828103825260328152602001806113096032913960400191505060405180910390fd5b50505050565b610e198061048f8339019056fe60806040523480156200001157600080fd5b5060405162000e1938038062000e19833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82518660208202830111640100000000821117156200008c57600080fd5b82525081516020918201928201910280838360005b83811015620000bb578181015183820152602001620000a1565b5050505090500160405260200180516040519392919084640100000000821115620000e557600080fd5b908301906020820185811115620000fb57600080fd5b82518660208202830111640100000000821117156200011957600080fd5b82525081516020918201928201910280838360005b83811015620001485781810151838201526020016200012e565b505050509190910160409081526020830151908301516060909301519094509192505081620001be576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604482015290519081900360640190fd5b42620001d98385620003c160201b620002e91790919060201c565b11620002175760405162461bcd60e51b815260040180806020018281038252602f81526020018062000d7c602f913960400191505060405180910390fd5b8351855114620002595760405162461bcd60e51b815260040180806020018281038252604181526020018062000dd86041913960600191505060405180910390fd5b60005b85518110156200038c5760006001600160a01b03168682815181106200027e57fe5b60200260200101516001600160a01b03161415620002ce5760405162461bcd60e51b815260040180806020018281038252602d81526020018062000dab602d913960400191505060405180910390fd5b848181518110620002db57fe5b60200260200101516000141562000339576040805162461bcd60e51b815260206004820152601c60248201527f546f6b656e56657374696e673a20616d6f756e74206973207a65726f00000000604482015290519081900360640190fd5b8481815181106200034657fe5b6020026020010151600360008884815181106200035f57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020556001016200025c565b50600191909155600091909155600280546001600160a01b0319166001600160a01b0390921691909117905550620004239050565b6000828201838110156200041c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61094980620004336000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c806370ff852b1161005b57806370ff852b146100ea578063be9a655514610110578063cb9199a214610118578063fc0c546a1461013e5761007d565b80630fb5a6b4146100825780631726cbc81461009c57806319165587146100c2575b600080fd5b61008a610162565b60408051918252519081900360200190f35b61008a600480360360208110156100b257600080fd5b50356001600160a01b0316610168565b6100e8600480360360208110156100d857600080fd5b50356001600160a01b031661019c565b005b61008a6004803603602081101561010057600080fd5b50356001600160a01b031661029e565b61008a6102b9565b61008a6004803603602081101561012e57600080fd5b50356001600160a01b03166102bf565b6101466102da565b604080516001600160a01b039092168252519081900360200190f35b60015490565b6001600160a01b0381166000908152600460205260408120546101949061018e8461034c565b906103dd565b90505b919050565b60006101a782610168565b9050600081116101fe576040805162461bcd60e51b815260206004820152601f60248201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604482015290519081900360640190fd5b6001600160a01b03821660009081526004602052604090205461022190826102e9565b6001600160a01b0380841660009081526004602052604090209190915560025461024d9116838361041f565b600254604080516001600160a01b0392831681529184166020830152818101839052517f3737f2a73c794dafe53d8aeea06810a9ebcf7167401b259406960e088e03f8309181900360600190a15050565b6001600160a01b031660009081526004602052604090205490565b60005490565b6001600160a01b031660009081526003602052604090205490565b6002546001600160a01b031690565b600082820183811015610343576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000805442101561035f57506000610197565b60015460005461036e916102e9565b421061039357506001600160a01b038116600090815260036020526040902054610197565b6103d66001546103d06103b1600054426103dd90919063ffffffff16565b6001600160a01b03861660009081526003602052604090205490610476565b906104cf565b9050610197565b600061034383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610511565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526104719084906105ad565b505050565b60008261048557506000610346565b8282028284828161049257fe5b04146103435760405162461bcd60e51b81526004018080602001828103825260218152602001806108c96021913960400191505060405180910390fd5b600061034383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061065e565b600081848411156105a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561056557818101518382015260200161054d565b50505050905090810190601f1680156105925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50508183035b9392505050565b6060610602826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166106c39092919063ffffffff16565b8051909150156104715780806020019051602081101561062157600080fd5b50516104715760405162461bcd60e51b815260040180806020018281038252602a8152602001806108ea602a913960400191505060405180910390fd5b600081836106ad5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561056557818101518382015260200161054d565b5060008385816106b957fe5b0495945050505050565b60606106d284846000856106da565b949350505050565b60608247101561071b5760405162461bcd60e51b81526004018080602001828103825260268152602001806108a36026913960400191505060405180910390fd5b61072485610836565b610775576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106107b45780518252601f199092019160209182019101610795565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610816576040519150601f19603f3d011682016040523d82523d6000602084013e61081b565b606091505b509150915061082b82828661083c565b979650505050505050565b3b151590565b6060831561084b5750816105a6565b82511561085b5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561056557818101518382015260200161054d56fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220bf785c1cb8d9534d813abe5c0e5585c7eab0f6901dc2fbceeae3cd22e975f67464736f6c634300060c0033546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f72652063757272656e742074696d65546f6b656e56657374696e673a2062656e656669636961727920697320746865207a65726f2061646472657373546f6b656e56657374696e673a2062656e65666963696172696573206c656e677468206973206e6f7420657175616c20746f20616d6f756e7473206c656e6774684469737472696275746f723a3a646973747269627574653a205f646973747269627574656420697320747275654469737472696275746f723a3a646973747269627574653a206469737472696275746f72206973206e6f74206465706c6f7965724469737472696275746f723a3a646973747269627574653a206469737472696275746f722062616c616e6365206e6f742030a264697066735822122096960f497d8dbc7f064936f6e801a0b45fd1db00ba9ce069e368570a7412f72164736f6c634300060c0033