More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 8,488 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 20659600 | 63 days ago | IN | 0 ETH | 0.00019357 | ||||
Claim | 20659597 | 63 days ago | IN | 0 ETH | 0.00018475 | ||||
Claim | 20458414 | 91 days ago | IN | 0 ETH | 0.00024951 | ||||
Withdraw | 19736415 | 192 days ago | IN | 0 ETH | 0.00097608 | ||||
Claim | 19736407 | 192 days ago | IN | 0 ETH | 0.00078069 | ||||
Claim | 19736383 | 192 days ago | IN | 0 ETH | 0.00083638 | ||||
Claim | 19736377 | 192 days ago | IN | 0 ETH | 0.00082752 | ||||
Claim | 19576301 | 214 days ago | IN | 0 ETH | 0.00872235 | ||||
Withdraw | 19576287 | 214 days ago | IN | 0 ETH | 0.00833312 | ||||
Withdraw | 19574679 | 214 days ago | IN | 0 ETH | 0.00375065 | ||||
Withdraw | 18403698 | 379 days ago | IN | 0 ETH | 0.00124536 | ||||
Claim | 17624260 | 488 days ago | IN | 0 ETH | 0.00521494 | ||||
Claim | 17469180 | 510 days ago | IN | 0 ETH | 0.00256229 | ||||
Withdraw | 17469178 | 510 days ago | IN | 0 ETH | 0.00280141 | ||||
Claim | 17462685 | 510 days ago | IN | 0 ETH | 0.00273088 | ||||
Withdraw | 17462683 | 510 days ago | IN | 0 ETH | 0.00332189 | ||||
Claim | 16565340 | 637 days ago | IN | 0 ETH | 0.00198028 | ||||
Withdraw | 16565338 | 637 days ago | IN | 0 ETH | 0.00337801 | ||||
Claim | 16522875 | 643 days ago | IN | 0 ETH | 0.00233873 | ||||
Stake | 16501527 | 646 days ago | IN | 0 ETH | 0.0027593 | ||||
Withdraw | 16436716 | 655 days ago | IN | 0 ETH | 0.00441387 | ||||
Withdraw | 16301263 | 674 days ago | IN | 0 ETH | 0.00450778 | ||||
Claim | 16292541 | 675 days ago | IN | 0 ETH | 0.00315001 | ||||
Withdraw | 16292540 | 675 days ago | IN | 0 ETH | 0.00474908 | ||||
Claim | 16257241 | 680 days ago | IN | 0 ETH | 0.0016902 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Pool1
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-08 */ pragma solidity ^0.7.0; library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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); } 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; } } 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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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); } } } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract AzukiToken is ERC20("DokiDokiAzuki", "AZUKI"), Ownable { using SafeMath for uint256; using Address for address; mapping(string => uint) public operationLockTime; mapping(string => bool) public operationTimelockEnabled; string private MINT = "mint"; string private TRANSFER = "transfer"; string private ADDMINTER = "add_minter"; string private BURNRATE = "burn_rate"; uint public unlockDuration = 2 days; // mint for Owner address public mintTo = address(0); uint public mintAmount = 0; // add mint for Owner address public newMinter = address(0); uint public newBurnRate = 0; mapping(address => bool) public minters; // transfer burn uint public burnRate = 5; mapping(address => bool) public transferBlacklist; mapping(address => bool) public transferFromBlacklist; event GonnaMint(address to, uint amount, uint releaseTime); event GonnaAddMinter(address newMinter, uint releaseTime); event GonnaLockTransfer(uint releaseTime); event GonnaChangeBurnRate(uint burnRate); modifier onlyMinter() { require(minters[msg.sender], "Restricted to minters."); _; } function mint(address to, uint amount) public onlyMinter { if (operationTimelockEnabled[MINT]) { require(msg.sender != owner(), "Sorry, this function has been locked for Owner."); } _mint(to, amount); } function burn(uint amount) public { require(amount > 0); require(balanceOf(msg.sender) >= amount); _burn(msg.sender, amount); } function addMinter(address account) public onlyOwner { require(!operationTimelockEnabled[ADDMINTER], "Sorry, this function has been locked for Owner."); minters[account] = true; } function removeMinter(address account) public onlyOwner { minters[account] = false; } function gonnaMint(address to, uint amount) public onlyOwner { mintTo = to; mintAmount = amount; operationLockTime[MINT] = block.timestamp + unlockDuration; emit GonnaMint(to, amount, operationLockTime[MINT]); } function releaseMint() public onlyOwner { require(mintAmount != 0, "mint amount can not be 0."); require(block.timestamp >= operationLockTime[MINT], "Mint operation is pending."); _mint(mintTo, mintAmount); mintTo = address(0); mintAmount = 0; } function gonnaAddMinter(address account) public onlyOwner { newMinter = account; operationLockTime[ADDMINTER] = block.timestamp + unlockDuration; emit GonnaAddMinter(account, operationLockTime[ADDMINTER]); } function releaseNewMinter() public onlyOwner { require(newMinter != address(0), "New minter can not be 0x000."); require(block.timestamp >= operationLockTime[ADDMINTER], "Add minter operation is pending."); minters[newMinter] = true; newMinter = address(0); } function gonnaLockTransfer() public onlyOwner { operationLockTime[TRANSFER] = block.timestamp + unlockDuration; emit GonnaLockTransfer(operationLockTime[TRANSFER]); } function releaseTransferLock() public onlyOwner { require(!operationTimelockEnabled[TRANSFER], "Transfer is being locked."); require(block.timestamp >= operationLockTime[TRANSFER], "Transfer lock operation is pending."); operationTimelockEnabled[TRANSFER] = true; } function unlockTransfer() public onlyOwner { operationTimelockEnabled[TRANSFER] = false; } function gonnaChangeBurnRate(uint newRate) public onlyOwner { newBurnRate = newRate; operationLockTime[BURNRATE] = block.timestamp + unlockDuration; emit GonnaChangeBurnRate(newRate); } function releaseNewBurnRate() public onlyOwner { require(block.timestamp >= operationLockTime[BURNRATE], "Changing to new burning rate is pending."); burnRate = newBurnRate; } function changeTimelockDuration(uint duration) public onlyOwner { require(duration >= 1 days, "Duration must be greater than 1 day."); unlockDuration = duration; } function lockMint() public onlyOwner { operationTimelockEnabled[MINT] = true; } function lockAddMinter() public onlyOwner { operationTimelockEnabled[ADDMINTER] = true; } function addToTransferBlacklist(address account) public onlyOwner { transferBlacklist[account] = true; } function removeFromTransferBlacklist(address account) public onlyOwner { transferBlacklist[account] = false; } function addToTransferFromBlacklist(address account) public onlyOwner { transferFromBlacklist[account] = true; } function removeFromTransferFromBlacklist(address account) public onlyOwner { transferFromBlacklist[account] = false; } function transfer(address recipient, uint256 amount) public override returns (bool) { require(msg.sender == owner() || !operationTimelockEnabled[TRANSFER], "Transfer is being locked."); uint256 burnAmount = 0; if (transferBlacklist[msg.sender]) { burnAmount = amount.mul(burnRate).div(100); } uint256 transferAmount = amount.sub(burnAmount); require(balanceOf(msg.sender) >= amount, "insufficient balance."); super.transfer(recipient, transferAmount); if (burnAmount != 0) { _burn(msg.sender, burnAmount); } return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { require(sender == owner() || !operationTimelockEnabled[TRANSFER], "TransferFrom is being locked."); uint256 burnAmount = 0; if (transferFromBlacklist[recipient]) { burnAmount = amount.mul(burnRate).div(100); } uint256 transferAmount = amount.sub(burnAmount); require(balanceOf(sender) >= amount, "insufficient balance."); super.transferFrom(sender, recipient, transferAmount); if (burnAmount != 0) { _burn(sender, burnAmount); } return true; } } 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"); } } } // Doki Pool contract Pool1 is Ownable { using SafeMath for uint256; using SafeERC20 for AzukiToken; using SafeERC20 for IERC20; using Address for address; AzukiToken private azuki; IERC20 private lpToken; //LP token balances mapping(address => uint256) private _lpBalances; uint private _lpTotalSupply; // decreasing period time uint256 public constant DURATION = 2 weeks; // initial amount of AZUKI uint256 public initReward = 180000 * 1e18; bool public haveStarted = false; // next time of decreasing uint256 public halvingTime = 0; uint256 public lastUpdateTime = 0; // distribution of per second uint256 public rewardRate = 0; uint256 public rewardPerLPToken = 0; mapping(address => uint256) private rewards; mapping(address => uint256) private userRewardPerTokenPaid; // Something about dev. address public devAddr; uint256 public devDistributeRate = 0; uint256 public lastDistributeTime = 0; uint256 public devFinishTime = 0; uint256 public devFundAmount = 158000 * 1e18; uint256 public devDistributeDuration = 365 days; event Stake(address indexed from, uint amount); event Withdraw(address indexed to, uint amount); event Claim(address indexed to, uint amount); event Decreasing(uint amount); event Start(uint amount); constructor(address _azuki, address _lpToken) { azuki = AzukiToken(_azuki); lpToken = IERC20(_lpToken); devAddr = owner(); } function totalSupply() public view returns(uint256) { return _lpTotalSupply; } function balanceOf(address account) public view returns(uint256) { return _lpBalances[account]; } function stake(uint amount) public shouldStarted { updateRewards(msg.sender); checkDecreasing(); require(!address(msg.sender).isContract(), "Please use your individual account."); _lpTotalSupply = _lpTotalSupply.add(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].add(amount); lpToken.safeTransferFrom(msg.sender, address(this), amount); distributeDevFund(); emit Stake(msg.sender, amount); } function withdraw(uint amount) public shouldStarted { updateRewards(msg.sender); checkDecreasing(); require(amount <= _lpBalances[msg.sender] && _lpBalances[msg.sender] > 0, "Bad withdraw."); _lpTotalSupply = _lpTotalSupply.sub(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].sub(amount); lpToken.safeTransfer(msg.sender, amount); distributeDevFund(); emit Withdraw(msg.sender, amount); } function claim(uint amount) public shouldStarted { updateRewards(msg.sender); checkDecreasing(); require(amount <= rewards[msg.sender] && rewards[msg.sender] > 0, "Bad claim."); rewards[msg.sender] = rewards[msg.sender].sub(amount); azuki.safeTransfer(msg.sender, amount); distributeDevFund(); emit Claim(msg.sender, amount); } function checkDecreasing() internal { if (block.timestamp >= halvingTime) { initReward = initReward.mul(94).div(100); azuki.mint(address(this), initReward); rewardRate = initReward.div(DURATION); halvingTime = halvingTime.add(DURATION); updateRewards(msg.sender); emit Decreasing(initReward); } } modifier shouldStarted() { require(haveStarted == true, "Have not started."); _; } function getRewardsAmount(address account) public view returns(uint256) { return balanceOf(account).mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } function rewardPerToken() public view returns (uint256) { if (_lpTotalSupply == 0) { return rewardPerLPToken; } return rewardPerLPToken .add(Math.min(block.timestamp, halvingTime) .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(_lpTotalSupply) ); } function updateRewards(address account) internal { rewardPerLPToken = rewardPerToken(); lastUpdateTime = lastRewardTime(); if (account != address(0)) { rewards[account] = getRewardsAmount(account); userRewardPerTokenPaid[account] = rewardPerLPToken; } } function lastRewardTime() public view returns (uint256) { return Math.min(block.timestamp, halvingTime); } function startFarming() external onlyOwner { updateRewards(address(0)); rewardRate = initReward.div(DURATION); uint256 mintAmount = initReward.add(devFundAmount); azuki.mint(address(this), mintAmount); devDistributeRate = devFundAmount.div(devDistributeDuration); devFinishTime = block.timestamp.add(devDistributeDuration); lastUpdateTime = block.timestamp; lastDistributeTime = block.timestamp; halvingTime = block.timestamp.add(DURATION); haveStarted = true; emit Start(mintAmount); } function transferDevAddr(address newAddr) public onlyDev { require(newAddr != address(0), "zero addr"); devAddr = newAddr; } function distributeDevFund() internal { uint256 nowTime = Math.min(block.timestamp, devFinishTime); uint256 fundAmount = nowTime.sub(lastDistributeTime).mul(devDistributeRate); azuki.safeTransfer(devAddr, fundAmount); lastDistributeTime = nowTime; } modifier onlyDev() { require(msg.sender == devAddr, "This is only for dev."); _; } function lpTokenAddress() view public returns(address) { return address(lpToken); } function azukiAddress() view public returns(address) { return address(azuki); } function testMint() public onlyOwner { azuki.mint(address(this), 1); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_azuki","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Decreasing","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":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Start","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"azukiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFinishTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRewardsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halvingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"haveStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastDistributeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerLPToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startFarming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"testMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"transferDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405269261dd1ce2f20888000006005556000600660006101000a81548160ff0219169083151502179055506000600755600060085560006009556000600a556000600e556000600f5560006010556921753279401f66c000006011556301e133806012553480156200007357600080fd5b50604051620028ba380380620028ba833981810160405260408110156200009957600080fd5b8101908080519060200190929190805190602001909291905050506000620000c66200023e60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f66200024660201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200026f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61263b806200027f6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633ef0cc7b1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633ef0cc7b146102c85780634b438c341461030c57806353b0f08a1461032a576101cf565b80632e1a7d4d116101ad5780632e1a7d4d1461022e57806335f50ade1461025c578063379607f51461027c5780633cf6bcfe146102aa576101cf565b806318160ddd146101d45780631be05289146101f257806322eb936314610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561024457600080fd5b810190808035906020019092919050505061065f565b005b61026461094f565b60405180821515815260200191505060405180910390f35b6102a86004803603602081101561029257600080fd5b8101908080359060200190929190505050610962565b005b6102b2610c37565b6040518082815260200191505060405180910390f35b61030a600480360360208110156102de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3d565b005b610314610de7565b6040518082815260200191505060405180910390f35b610332610ded565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff161515146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6106f133611a6a565b6106f9611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561078757506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b6107f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b61080e81600454611cb690919063ffffffff16565b60048190555061086681600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108f63382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b6108fe611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff161515146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6109f433611a6a565b6109fc611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610a8a57506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b4e81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bde3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b610be6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125986023913960400191505060405180910390fd5b6112d481600454611ec590919063ffffffff16565b60048190555061132c81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec590919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113be333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f4d909392919063ffffffff16565b6113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b6115016212750060055461200e90919063ffffffff16565b6009819055506000611520601154600554611ec590919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e460125460115461200e90919063ffffffff16565b600e819055506115ff60125442611ec590919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611ec590919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611cb690919063ffffffff16565b61205890919063ffffffff16565b61205890919063ffffffff16565b61200e90919063ffffffff16565b600a54611ec590919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611cb690919063ffffffff16565b6117fe88610e17565b61205890919063ffffffff16565b61200e90919063ffffffff16565b611ec590919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125726026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74605e60055461205890919063ffffffff16565b61200e90919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d6212750060055461200e90919063ffffffff16565b600981905550611c6b62127500600754611ec590919063ffffffff16565b600781905550611c7a33611a6a565b7f8f71da3838c672da927ff8d7eab7e3fb263e285972f7f9970d840b84c17801fe6005546040518082815260200191505060405180910390a15b565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b905092915050565b611d9d8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b505050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611cb690919063ffffffff16565b61205890919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611ebc57506000801b8214155b92505050919050565b600080828401905083811015611f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612008846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b50505050565b600061205083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061228d565b905092915050565b60008083141561206b57600090506120d8565b600082840290508284828161207c57fe5b04146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125bb6021913960400191505060405180910390fd5b809150505b92915050565b600083831115829061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612150578082015181840152602081019050612135565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612200826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123539092919063ffffffff16565b90506000815111156122885780806020019051602081101561222157600080fd5b8101908080519060200190929190505050612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125dc602a913960400191505060405180910390fd5b5b505050565b60008083118290612339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122fe5780820151818401526020810190506122e3565b50505050905090810190601f16801561232b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161234557fe5b049050809150509392505050565b6060612362848460008561236b565b90509392505050565b606061237685611e7a565b6123e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124385780518252602082019150602081019050602083039250612415565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b509150915081156124b4578092505050612569565b6000815111156124c75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561252e578082015181840152602081019050612513565b50505050905090810190601f16801561255b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ff40f877a68e0927787d90bef2b847405c954feb56e93c15f9aeef7080fa1b2864736f6c63430007040033000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a59787544
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633ef0cc7b1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633ef0cc7b146102c85780634b438c341461030c57806353b0f08a1461032a576101cf565b80632e1a7d4d116101ad5780632e1a7d4d1461022e57806335f50ade1461025c578063379607f51461027c5780633cf6bcfe146102aa576101cf565b806318160ddd146101d45780631be05289146101f257806322eb936314610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b6040518082815260200191505060405180910390f35b61025a6004803603602081101561024457600080fd5b810190808035906020019092919050505061065f565b005b61026461094f565b60405180821515815260200191505060405180910390f35b6102a86004803603602081101561029257600080fd5b8101908080359060200190929190505050610962565b005b6102b2610c37565b6040518082815260200191505060405180910390f35b61030a600480360360208110156102de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3d565b005b610314610de7565b6040518082815260200191505060405180910390f35b610332610ded565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff161515146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6106f133611a6a565b6106f9611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115801561078757506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b6107f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b61080e81600454611cb690919063ffffffff16565b60048190555061086681600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506108f63382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b6108fe611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff161515146109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b6109f433611a6a565b6109fc611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610a8a57506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b4e81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cb690919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bde3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b610be6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125986023913960400191505060405180910390fd5b6112d481600454611ec590919063ffffffff16565b60048190555061132c81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ec590919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113be333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f4d909392919063ffffffff16565b6113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b6115016212750060055461200e90919063ffffffff16565b6009819055506000611520601154600554611ec590919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e460125460115461200e90919063ffffffff16565b600e819055506115ff60125442611ec590919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611ec590919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611cb690919063ffffffff16565b61205890919063ffffffff16565b61205890919063ffffffff16565b61200e90919063ffffffff16565b600a54611ec590919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611cb690919063ffffffff16565b6117fe88610e17565b61205890919063ffffffff16565b61200e90919063ffffffff16565b611ec590919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125726026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74605e60055461205890919063ffffffff16565b61200e90919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d6212750060055461200e90919063ffffffff16565b600981905550611c6b62127500600754611ec590919063ffffffff16565b600781905550611c7a33611a6a565b7f8f71da3838c672da927ff8d7eab7e3fb263e285972f7f9970d840b84c17801fe6005546040518082815260200191505060405180910390a15b565b6000611cf883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b905092915050565b611d9d8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b505050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611cb690919063ffffffff16565b61205890919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d009092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015611ebc57506000801b8214155b92505050919050565b600080828401905083811015611f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b612008846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061219e565b50505050565b600061205083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061228d565b905092915050565b60008083141561206b57600090506120d8565b600082840290508284828161207c57fe5b04146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125bb6021913960400191505060405180910390fd5b809150505b92915050565b600083831115829061218b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612150578082015181840152602081019050612135565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060612200826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123539092919063ffffffff16565b90506000815111156122885780806020019051602081101561222157600080fd5b8101908080519060200190929190505050612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806125dc602a913960400191505060405180910390fd5b5b505050565b60008083118290612339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122fe5780820151818401526020810190506122e3565b50505050905090810190601f16801561232b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161234557fe5b049050809150509392505050565b6060612362848460008561236b565b90509392505050565b606061237685611e7a565b6123e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124385780518252602082019150602081019050602083039250612415565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461249a576040519150601f19603f3d011682016040523d82523d6000602084013e61249f565b606091505b509150915081156124b4578092505050612569565b6000815111156124c75780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561252e578082015181840152602081019050612513565b50505050905090810190601f16801561255b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220ff40f877a68e0927787d90bef2b847405c954feb56e93c15f9aeef7080fa1b2864736f6c63430007040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a59787544
-----Decoded View---------------
Arg [0] : _azuki (address): 0x910524678C0B1B23FFB9285a81f99C29C11CBaEd
Arg [1] : _lpToken (address): 0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000910524678c0b1b23ffb9285a81f99c29c11cbaed
Arg [1] : 0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a59787544
Deployed Bytecode Sourcemap
35557:6271:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37125:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35935:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36134:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37832:476;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36064:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38316:395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36544:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40969:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36627:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41640:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37225:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25415:148;;;:::i;:::-;;36246:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36501:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36588:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24773:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40237:120;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41741:84;;;:::i;:::-;;36016:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37344:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40365:596;;;:::i;:::-;;36282:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36171:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39492:409;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36472:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39241:243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25718:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41535:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36678:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37125:92;37168:7;37195:14;;37188:21;;37125:92;:::o;35935:42::-;35970:7;35935:42;:::o;36134:30::-;;;;:::o;37832:476::-;39187:4;39172:19;;:11;;;;;;;;;;;:19;;;39164:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37895:25:::1;37909:10;37895:13;:25::i;:::-;37931:17;:15;:17::i;:::-;37977:11;:23;37989:10;37977:23;;;;;;;;;;;;;;;;37967:6;:33;;:64;;;;;38030:1;38004:11;:23;38016:10;38004:23;;;;;;;;;;;;;;;;:27;37967:64;37959:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38077:26;38096:6;38077:14;;:18;;:26;;;;:::i;:::-;38060:14;:43;;;;38140:35;38168:6;38140:11;:23;38152:10;38140:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;38114:11;:23;38126:10;38114:23;;;;;;;;;;;;;;;:61;;;;38186:40;38207:10;38219:6;38186:7;;;;;;;;;;;:20;;;;:40;;;;;:::i;:::-;38237:19;:17;:19::i;:::-;38281:10;38272:28;;;38293:6;38272:28;;;;;;;;;;;;;;;;;;37832:476:::0;:::o;36064:31::-;;;;;;;;;;;;;:::o;38316:395::-;39187:4;39172:19;;:11;;;;;;;;;;;:19;;;39164:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38376:25:::1;38390:10;38376:13;:25::i;:::-;38412:17;:15;:17::i;:::-;38458:7;:19;38466:10;38458:19;;;;;;;;;;;;;;;;38448:6;:29;;:56;;;;;38503:1;38481:7;:19;38489:10;38481:19;;;;;;;;;;;;;;;;:23;38448:56;38440:79;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38552:31;38576:6;38552:7;:19;38560:10;38552:19;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;38530:7;:19;38538:10;38530:19;;;;;;;;;;;;;;;:53;;;;38594:38;38613:10;38625:6;38594:5;;;;;;;;;;;:18;;;;:38;;;;;:::i;:::-;38643:19;:17;:19::i;:::-;38684:10;38678:25;;;38696:6;38678:25;;;;;;;;;;;;;;;;;;38316:395:::0;:::o;36544:37::-;;;;:::o;40969:147::-;41474:7;;;;;;;;;;;41460:21;;:10;:21;;;41452:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41064:1:::1;41045:21;;:7;:21;;;;41037:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41101:7;41091;;:17;;;;;;;;;;;;;;;;;;40969:147:::0;:::o;36627:44::-;;;;:::o;41640:93::-;41684:7;41719:5;;;;;;;;;;;41704:21;;41640:93;:::o;37225:111::-;37281:7;37308:11;:20;37320:7;37308:20;;;;;;;;;;;;;;;;37301:27;;37225:111;;;:::o;25415:148::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25522:1:::1;25485:40;;25506:6;::::0;::::1;;;;;;;;25485:40;;;;;;;;;;;;25553:1;25536:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;25415:148::o:0;36246:29::-;;;;:::o;36501:36::-;;;;:::o;36588:32::-;;;;:::o;24773:79::-;24811:7;24838:6;;;;;;;;;;;24831:13;;24773:79;:::o;40237:120::-;40284:7;40311:38;40320:15;40337:11;;40311:8;:38::i;:::-;40304:45;;40237:120;:::o;41741:84::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41789:5:::1;;;;;;;;;;;:10;;;41808:4;41815:1;41789:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41741:84::o:0;36016:41::-;;;;:::o;37344:480::-;39187:4;39172:19;;:11;;;;;;;;;;;:19;;;39164:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37404:25:::1;37418:10;37404:13;:25::i;:::-;37440:17;:15;:17::i;:::-;37477:32;37485:10;37477:30;;;:32::i;:::-;37476:33;37468:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37577:26;37596:6;37577:14;;:18;;:26;;;;:::i;:::-;37560:14;:43;;;;37640:35;37668:6;37640:11;:23;37652:10;37640:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;37614:11;:23;37626:10;37614:23;;;;;;;;;;;;;;;:61;;;;37686:59;37711:10;37731:4;37738:6;37686:7;;;;;;;;;;;:24;;;;:59;;;;;;:::i;:::-;37756:19;:17;:19::i;:::-;37797:10;37791:25;;;37809:6;37791:25;;;;;;;;;;;;;;;;;;37344:480:::0;:::o;40365:596::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40419:25:::1;40441:1;40419:13;:25::i;:::-;40468:24;35970:7;40468:10;;:14;;:24;;;;:::i;:::-;40455:10;:37;;;;40505:18;40526:29;40541:13;;40526:10;;:14;;:29;;;;:::i;:::-;40505:50;;40566:5;;;;;;;;;;;:10;;;40585:4;40592:10;40566:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40634:40;40652:21;;40634:13;;:17;;:40;;;;:::i;:::-;40614:17;:60;;;;40701:42;40721:21;;40701:15;:19;;:42;;;;:::i;:::-;40685:13;:58;;;;40773:15;40756:14;:32;;;;40820:15;40799:18;:36;;;;40860:29;35970:7;40860:15;:19;;:29;;;;:::i;:::-;40846:11;:43;;;;40916:4;40902:11;;:18;;;;;;;;;;;;;;;;;;40936:17;40942:10;40936:17;;;;;;;;;;;;;;;;;;25055:1;40365:596::o:0;36282:35::-;;;;:::o;36171:33::-;;;;:::o;39492:409::-;39539:7;39581:1;39563:14;;:19;39559:75;;;39606:16;;39599:23;;;;39559:75;39651:242;39686:192;39863:14;;39686:150;39831:4;39686:118;39793:10;;39686:80;39751:14;;39686:38;39695:15;39712:11;;39686:8;:38::i;:::-;:64;;:80;;;;:::i;:::-;:106;;:118;;;;:::i;:::-;:144;;:150;;;;:::i;:::-;:176;;:192;;;;:::i;:::-;39651:16;;:34;;:242;;;;:::i;:::-;39644:249;;39492:409;;:::o;36472:22::-;;;;;;;;;;;;;:::o;39241:243::-;39304:7;39331:145;39459:7;:16;39467:7;39459:16;;;;;;;;;;;;;;;;39331:105;39431:4;39331:77;39354:53;39375:22;:31;39398:7;39375:31;;;;;;;;;;;;;;;;39354:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;39331:18;39341:7;39331:9;:18::i;:::-;:22;;:77;;;;:::i;:::-;:99;;:105;;;;:::i;:::-;:127;;:145;;;;:::i;:::-;39324:152;;39241:243;;;:::o;25718:244::-;24995:12;:10;:12::i;:::-;24985:22;;:6;;;;;;;;;;:22;;;24977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25827:1:::1;25807:22;;:8;:22;;;;25799:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25917:8;25888:38;;25909:6;::::0;::::1;;;;;;;;25888:38;;;;;;;;;;;;25946:8;25937:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;25718:244:::0;:::o;41535:97::-;41581:7;41616;;;;;;;;;;;41601:23;;41535:97;:::o;36678:47::-;;;;:::o;39909:320::-;39988:16;:14;:16::i;:::-;39969;:35;;;;40032:16;:14;:16::i;:::-;40015:14;:33;;;;40082:1;40063:21;;:7;:21;;;40059:163;;40120:25;40137:7;40120:16;:25::i;:::-;40101:7;:16;40109:7;40101:16;;;;;;;;;;;;;;;:44;;;;40194:16;;40160:22;:31;40183:7;40160:31;;;;;;;;;;;;;;;:50;;;;40059:163;39909:320;:::o;38719:401::-;38789:11;;38770:15;:30;38766:347;;38830:27;38853:3;38830:18;38845:2;38830:10;;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;38817:10;:40;;;;38872:5;;;;;;;;;;;:10;;;38891:4;38898:10;;38872:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38939:24;35970:7;38939:10;;:14;;:24;;;;:::i;:::-;38926:10;:37;;;;38992:25;35970:7;38992:11;;:15;;:25;;;;:::i;:::-;38978:11;:39;;;;39034:25;39048:10;39034:13;:25::i;:::-;39079:22;39090:10;;39079:22;;;;;;;;;;;;;;;;;;38766:347;38719:401::o;4477:136::-;4535:7;4562:43;4566:1;4569;4562:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4555:50;;4477:136;;;;:::o;32470:177::-;32553:86;32573:5;32603:23;;;32628:2;32632:5;32580:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32553:19;:86::i;:::-;32470:177;;;:::o;41124:290::-;41173:15;41191:40;41200:15;41217:13;;41191:8;:40::i;:::-;41173:58;;41242:18;41263:54;41299:17;;41263:31;41275:18;;41263:7;:11;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;41242:75;;41328:39;41347:7;;;;;;;;;;;41356:10;41328:5;;;;;;;;;;;:18;;;;:39;;;;;:::i;:::-;41399:7;41378:18;:28;;;;41124:290;;:::o;755:106::-;808:15;843:10;836:17;;755:106;:::o;297:::-;355:7;386:1;382;:5;:13;;394:1;382:13;;;390:1;382:13;375:20;;297:106;;;;:::o;9083:619::-;9143:4;9405:16;9432:19;9454:66;9432:88;;;;9623:7;9611:20;9599:32;;9663:11;9651:8;:23;;:42;;;;;9690:3;9678:15;;:8;:15;;9651:42;9643:51;;;;9083:619;;;:::o;4013:181::-;4071:7;4091:9;4107:1;4103;:5;4091:17;;4132:1;4127;:6;;4119:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185:1;4178:8;;;4013:181;;;;:::o;32655:205::-;32756:96;32776:5;32806:27;;;32835:4;32841:2;32845:5;32783:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32756:19;:96::i;:::-;32655:205;;;;:::o;6314:132::-;6372:7;6399:39;6403:1;6406;6399:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6392:46;;6314:132;;;;:::o;5367:471::-;5425:7;5675:1;5670;:6;5666:47;;;5700:1;5693:8;;;;5666:47;5725:9;5741:1;5737;:5;5725:17;;5770:1;5765;5761;:5;;;;;;:10;5753:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5829:1;5822:8;;;5367:471;;;;;:::o;4916:192::-;5002:7;5035:1;5030;:6;;5038:12;5022:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5062:9;5078:1;5074;:5;5062:17;;5099:1;5092:8;;;4916:192;;;;;:::o;34775:761::-;35199:23;35225:69;35253:4;35225:69;;;;;;;;;;;;;;;;;35233:5;35225:27;;;;:69;;;;;:::i;:::-;35199:95;;35329:1;35309:10;:17;:21;35305:224;;;35451:10;35440:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35432:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35305:224;34775:761;;;:::o;6942:278::-;7028:7;7060:1;7056;:5;7063:12;7048:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7087:9;7103:1;7099;:5;;;;;;7087:17;;7211:1;7204:8;;;6942:278;;;;;:::o;12200:196::-;12303:12;12335:53;12358:6;12366:4;12372:1;12375:12;12335:22;:53::i;:::-;12328:60;;12200:196;;;;;:::o;13577:979::-;13707:12;13740:18;13751:6;13740:10;:18::i;:::-;13732:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13866:12;13880:23;13907:6;:11;;13927:8;13938:4;13907:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13865:78;;;;13958:7;13954:595;;;13989:10;13982:17;;;;;;13954:595;14123:1;14103:10;:17;:21;14099:439;;;14366:10;14360:17;14427:15;14414:10;14410:2;14406:19;14399:44;14314:148;14509:12;14502:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13577:979;;;;;;;:::o
Swarm Source
ipfs://ff40f877a68e0927787d90bef2b847405c954feb56e93c15f9aeef7080fa1b28
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.