More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 2,572 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 91134105 | 31 days ago | IN | 0 FTM | 0.00015465 | ||||
Approve | 80667989 | 153 days ago | IN | 0 FTM | 0.00064813 | ||||
Approve | 80161022 | 164 days ago | IN | 0 FTM | 0.00023197 | ||||
Approve | 78098137 | 200 days ago | IN | 0 FTM | 0.0015348 | ||||
Approve | 78098132 | 200 days ago | IN | 0 FTM | 0.00249695 | ||||
Approve | 78098076 | 200 days ago | IN | 0 FTM | 0.00137399 | ||||
Approve | 78098057 | 200 days ago | IN | 0 FTM | 0.00113479 | ||||
Approve | 76112785 | 231 days ago | IN | 0 FTM | 0.00086285 | ||||
Approve | 74304300 | 267 days ago | IN | 0 FTM | 0.000439 | ||||
Approve | 74304300 | 267 days ago | IN | 0 FTM | 0.000439 | ||||
Approve | 73796668 | 277 days ago | IN | 0 FTM | 0.00044663 | ||||
Approve | 73651833 | 280 days ago | IN | 0 FTM | 0.00357931 | ||||
Approve | 73513873 | 284 days ago | IN | 0 FTM | 0.00069501 | ||||
Approve | 70942125 | 324 days ago | IN | 0 FTM | 0.00089065 | ||||
Approve | 70795956 | 327 days ago | IN | 0 FTM | 0.00056817 | ||||
Approve | 70683562 | 329 days ago | IN | 0 FTM | 0.0007217 | ||||
Approve | 68502520 | 382 days ago | IN | 0 FTM | 0.00073111 | ||||
Approve | 66648931 | 432 days ago | IN | 0 FTM | 0.00236876 | ||||
Approve | 65451045 | 458 days ago | IN | 0 FTM | 0.04782714 | ||||
Approve | 64260802 | 480 days ago | IN | 0 FTM | 0.00142303 | ||||
Approve | 63795082 | 489 days ago | IN | 0 FTM | 0.00121647 | ||||
Approve | 58600639 | 561 days ago | IN | 0 FTM | 0.00092551 | ||||
Approve | 58348412 | 564 days ago | IN | 0 FTM | 0.00105772 | ||||
Approve | 57544542 | 576 days ago | IN | 0 FTM | 0.00133434 | ||||
Approve | 57544534 | 576 days ago | IN | 0 FTM | 0.0012891 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
28836907 | 990 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Contract Name:
FuryToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2022-01-23 */ // File: contracts/libs/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/libs/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { 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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: contracts/libs/IBEP20.sol pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/libs/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address 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; } } // File: contracts/libs/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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; } } // File: contracts/libs/BEP20.sol pragma solidity >=0.4.0; /** * @dev Implementation of the {IBEP20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {BEP20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IBEP20-approve}. */ contract BEP20 is Context, IBEP20, Ownable { 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) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the token name. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the token decimals. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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 override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: 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 {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero") ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); 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), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: 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 { require(account != address(0), "BEP20: mint to the zero address"); _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 { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: 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 { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance") ); } } // File: contracts/FuryToken.sol pragma solidity 0.6.12; contract FuryToken is BEP20("Fury Lab Token", "FURY") { event OperatorTransferred(address indexed previousOperator, address indexed newOperator); event MaxTransferRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event updateAntiWhaleStatus(address indexed targetAddress, bool status); using SafeMath for uint256; ///@dev Max transfer amount rate. (default is 3% of total supply) uint16 public maxUserTransferAmountRate = 300; // operator role address internal _operator; // Addresses that are excluded from AntiWhale mapping(address => bool) private _excludedFromAntiWhale; modifier onlyOperator() { require(_operator == _msgSender(), "Forbidden: Youre not operator"); _; } modifier antiWhale(address sender, address recipient, uint256 amount) { if (_maxUserTransferAmount() > 0) { if ( _excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false ) { require(amount <= _maxUserTransferAmount(), "FURY::antiWhale: Transfer amount exceeds the maxUserTransferAmount"); } } _; } constructor() public { _operator = _msgSender(); _excludedFromAntiWhale[_msgSender()] = true; } function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } /// @dev overrides transfer function /// antiWhale Modifier included function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override antiWhale(_sender, _recipient, _amount) { super._transfer(_sender, _recipient, _amount); } ///@dev Max user transfer allowed function _maxUserTransferAmount() public view returns (uint256) { return totalSupply().mul(maxUserTransferAmountRate).div(10000); } function operator() external view returns (address) { return _operator; } ///@dev Update operator address function transferOperator(address newOperator) external onlyOperator { require(newOperator != address(0), "FURY:: transferOperator: new operator is the zero address"); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } ///@dev Updates the max user transfer amount. function updateMaxUserTransferAmountRate(uint16 _maxUserTransferAmountRate) external onlyOperator { require(_maxUserTransferAmountRate >= 100, "FURY::updateMaxUserTransferAmountRate: Anti Whale Limit cannot be lower than 1%"); require(_maxUserTransferAmountRate <= 10000, "FURY::updateMaxUserTransferAmountRate: Anti Whale Limit cannot be more than 100%"); emit MaxTransferRateUpdated(_msgSender(), maxUserTransferAmountRate, _maxUserTransferAmountRate); maxUserTransferAmountRate = _maxUserTransferAmountRate; } /** * @dev Exclude or include an address from antiWhale. * Can only be called by the current operator. */ function updateExclusionFromAntiWhale(address _address, bool result) external onlyOperator { _excludedFromAntiWhale[_address] = result; emit updateAntiWhaleStatus(_address, result); } /** * @dev Returns the address is excluded from antiWhale or not. */ function isExcludedFromAntiWhale(address _account) public view returns (bool) { return _excludedFromAntiWhale[_account]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"MaxTransferRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"targetAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"updateAntiWhaleStatus","type":"event"},{"inputs":[],"name":"_maxUserTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isExcludedFromAntiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserTransferAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"result","type":"bool"}],"name":"updateExclusionFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxUserTransferAmountRate","type":"uint16"}],"name":"updateMaxUserTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261012c600660016101000a81548161ffff021916908361ffff1602179055503480156200003057600080fd5b506040518060400160405280600e81526020017f46757279204c616220546f6b656e0000000000000000000000000000000000008152506040518060400160405280600481526020017f46555259000000000000000000000000000000000000000000000000000000008152506000620000af6200025a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600490805190602001906200016592919062000262565b5080600590805190602001906200017e92919062000262565b506012600660006101000a81548160ff021916908360ff1602179055505050620001ad6200025a60201b60201c565b600660036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000620002036200025a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000308565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a557805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d5578251825591602001919060010190620002b8565b5b509050620002e59190620002e9565b5090565b5b8082111562000304576000816000905550600101620002ea565b5090565b61256580620003186000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a0712d681161007c578063a0712d6814610678578063a457c2d7146106bc578063a9059cbb14610720578063dd62ed3e14610784578063e912d5d0146107fc578063f2fde38b1461081e57610158565b806370a08231146104f9578063715018a614610551578063886a49641461055b578063893d20e81461058d5780638da5cb5b146105c157806395d89b41146105f557610158565b80632d34b576116101155780632d34b57614610384578063313ce567146103a257806338202e3a146103c3578063395093511461041357806340c10f1914610477578063570ca735146104c557610158565b806306fdde031461015d578063095ea7b3146101e057806318160ddd1461024457806323b872dd14610262578063269f534c146102e657806329605e7714610340575b600080fd5b610165610862565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610904565b60405180821515815260200191505060405180910390f35b61024c610922565b6040518082815260200191505060405180910390f35b6102ce6004803603606081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061092c565b60405180821515815260200191505060405180910390f35b610328600480360360208110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a05565b60405180821515815260200191505060405180910390f35b6103826004803603602081101561035657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a5b565b005b61038c610c6b565b6040518082815260200191505060405180910390f35b6103aa610cb4565b604051808260ff16815260200191505060405180910390f35b610411600480360360408110156103d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610ccb565b005b61045f6004803603604081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e40565b60405180821515815260200191505060405180910390f35b6104c36004803603604081101561048d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef3565b005b6104cd610fb0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fda565b6040518082815260200191505060405180910390f35b610559611023565b005b61058b6004803603602081101561057157600080fd5b81019080803561ffff169060200190929190505050611190565b005b6105956113ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c96113bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105fd6113e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063d578082015181840152602081019050610622565b50505050905090810190601f16801561066a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106a46004803603602081101561068e57600080fd5b8101908080359060200190929190505050611486565b60405180821515815260200191505060405180910390f35b610708600480360360408110156106d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611551565b60405180821515815260200191505060405180910390f35b61076c6004803603604081101561073657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061161e565b60405180821515815260200191505060405180910390f35b6107e66004803603604081101561079a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061163c565b6040518082815260200191505060405180910390f35b6108046116c3565b604051808261ffff16815260200191505060405180910390f35b6108606004803603602081101561083457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d7565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b60006109186109116118c9565b84846118d1565b6001905092915050565b6000600354905090565b6000610939848484611ac8565b6109fa846109456118c9565b6109f58560405180606001604052806028815260200161241560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ab6118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b6118d1565b600190509392505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a636118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806123176039913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610caf612710610ca1600660019054906101000a900461ffff1661ffff16610c93610922565b611cbf90919063ffffffff16565b611d4590919063ffffffff16565b905090565b6000600660009054906101000a900460ff16905090565b610cd36118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f783cf8507d8ec34ab23ab0dfcf101fab268145f85a42914a14f02b105e5050f08260405180821515815260200191505060405180910390a25050565b6000610ee9610e4d6118c9565b84610ee48560026000610e5e6118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b6118d1565b6001905092915050565b610efb6118c9565b73ffffffffffffffffffffffffffffffffffffffff16610f196113bb565b73ffffffffffffffffffffffffffffffffffffffff1614610fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610fac8282611e56565b5050565b6000600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102b6118c9565b73ffffffffffffffffffffffffffffffffffffffff166110496113bb565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6111986118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b60648161ffff1610156112b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604f8152602001806123c6604f913960600191505060405180910390fd5b6127108161ffff161115611317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260508152602001806123506050913960600191505060405180910390fd5b61131f6118c9565b73ffffffffffffffffffffffffffffffffffffffff167f165eb4b095e5c43644df103a04ce515f86f1e4490b92ece6992fed2c68bdc891600660019054906101000a900461ffff1683604051808361ffff1681526020018261ffff1681526020019250505060405180910390a280600660016101000a81548161ffff021916908361ffff16021790555050565b60006113b66113bb565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b5050505050905090565b60006114906118c9565b73ffffffffffffffffffffffffffffffffffffffff166114ae6113bb565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115486115426118c9565b83611e56565b60019050919050565b600061161461155e6118c9565b8461160f856040518060600160405280602581526020016124e960259139600260006115886118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b6118d1565b6001905092915050565b600061163261162b6118c9565b8484611ac8565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660019054906101000a900461ffff1681565b6116df6118c9565b73ffffffffffffffffffffffffffffffffffffffff166116fd6113bb565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806123a06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122f36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061250e6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b8282826000611ad5610c6b565b1115611bf25760001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611b8b575060001515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15611bf157611b98610c6b565b811115611bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604281526020018061245e6042913960600191505060405180910390fd5b5b5b611bfd868686612013565b505050505050565b6000838311158290611cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c77578082015181840152602081019050611c5c565b50505050905090810190601f168015611ca45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080831415611cd25760009050611d3f565b6000828402905082848281611ce357fe5b0414611d3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061243d6021913960400191505060405180910390fd5b809150505b92915050565b6000808211611dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381611dc557fe5b04905092915050565b600080828401905083811015611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611f0e81600354611dce90919063ffffffff16565b600381905550611f6681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122ce6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806124c66023913960400191505060405180910390fd5b61218b816040518060600160405280602681526020016124a060269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373465552593a3a207472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f2061646472657373465552593a3a7570646174654d6178557365725472616e73666572416d6f756e74526174653a20416e7469205768616c65204c696d69742063616e6e6f74206265206d6f7265207468616e20313030254f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373465552593a3a7570646174654d6178557365725472616e73666572416d6f756e74526174653a20416e7469205768616c65204c696d69742063616e6e6f74206265206c6f776572207468616e20312542455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77465552593a3a616e74695768616c653a205472616e7366657220616d6f756e74206578636565647320746865206d6178557365725472616e73666572416d6f756e7442455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212209e67249a28b2cc87f565f737f8d15e1da20c6a737bffeb84d529ac99ad97f94e64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a0712d681161007c578063a0712d6814610678578063a457c2d7146106bc578063a9059cbb14610720578063dd62ed3e14610784578063e912d5d0146107fc578063f2fde38b1461081e57610158565b806370a08231146104f9578063715018a614610551578063886a49641461055b578063893d20e81461058d5780638da5cb5b146105c157806395d89b41146105f557610158565b80632d34b576116101155780632d34b57614610384578063313ce567146103a257806338202e3a146103c3578063395093511461041357806340c10f1914610477578063570ca735146104c557610158565b806306fdde031461015d578063095ea7b3146101e057806318160ddd1461024457806323b872dd14610262578063269f534c146102e657806329605e7714610340575b600080fd5b610165610862565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610904565b60405180821515815260200191505060405180910390f35b61024c610922565b6040518082815260200191505060405180910390f35b6102ce6004803603606081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061092c565b60405180821515815260200191505060405180910390f35b610328600480360360208110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a05565b60405180821515815260200191505060405180910390f35b6103826004803603602081101561035657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a5b565b005b61038c610c6b565b6040518082815260200191505060405180910390f35b6103aa610cb4565b604051808260ff16815260200191505060405180910390f35b610411600480360360408110156103d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610ccb565b005b61045f6004803603604081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e40565b60405180821515815260200191505060405180910390f35b6104c36004803603604081101561048d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef3565b005b6104cd610fb0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053b6004803603602081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fda565b6040518082815260200191505060405180910390f35b610559611023565b005b61058b6004803603602081101561057157600080fd5b81019080803561ffff169060200190929190505050611190565b005b6105956113ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c96113bb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105fd6113e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063d578082015181840152602081019050610622565b50505050905090810190601f16801561066a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106a46004803603602081101561068e57600080fd5b8101908080359060200190929190505050611486565b60405180821515815260200191505060405180910390f35b610708600480360360408110156106d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611551565b60405180821515815260200191505060405180910390f35b61076c6004803603604081101561073657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061161e565b60405180821515815260200191505060405180910390f35b6107e66004803603604081101561079a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061163c565b6040518082815260200191505060405180910390f35b6108046116c3565b604051808261ffff16815260200191505060405180910390f35b6108606004803603602081101561083457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d7565b005b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b60006109186109116118c9565b84846118d1565b6001905092915050565b6000600354905090565b6000610939848484611ac8565b6109fa846109456118c9565b6109f58560405180606001604052806028815260200161241560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ab6118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b6118d1565b600190509392505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a636118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806123176039913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610caf612710610ca1600660019054906101000a900461ffff1661ffff16610c93610922565b611cbf90919063ffffffff16565b611d4590919063ffffffff16565b905090565b6000600660009054906101000a900460ff16905090565b610cd36118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f783cf8507d8ec34ab23ab0dfcf101fab268145f85a42914a14f02b105e5050f08260405180821515815260200191505060405180910390a25050565b6000610ee9610e4d6118c9565b84610ee48560026000610e5e6118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b6118d1565b6001905092915050565b610efb6118c9565b73ffffffffffffffffffffffffffffffffffffffff16610f196113bb565b73ffffffffffffffffffffffffffffffffffffffff1614610fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610fac8282611e56565b5050565b6000600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102b6118c9565b73ffffffffffffffffffffffffffffffffffffffff166110496113bb565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6111986118c9565b73ffffffffffffffffffffffffffffffffffffffff16600660039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f466f7262696464656e3a20596f757265206e6f74206f70657261746f7200000081525060200191505060405180910390fd5b60648161ffff1610156112b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604f8152602001806123c6604f913960600191505060405180910390fd5b6127108161ffff161115611317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260508152602001806123506050913960600191505060405180910390fd5b61131f6118c9565b73ffffffffffffffffffffffffffffffffffffffff167f165eb4b095e5c43644df103a04ce515f86f1e4490b92ece6992fed2c68bdc891600660019054906101000a900461ffff1683604051808361ffff1681526020018261ffff1681526020019250505060405180910390a280600660016101000a81548161ffff021916908361ffff16021790555050565b60006113b66113bb565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b5050505050905090565b60006114906118c9565b73ffffffffffffffffffffffffffffffffffffffff166114ae6113bb565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115486115426118c9565b83611e56565b60019050919050565b600061161461155e6118c9565b8461160f856040518060600160405280602581526020016124e960259139600260006115886118c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b6118d1565b6001905092915050565b600061163261162b6118c9565b8484611ac8565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660019054906101000a900461ffff1681565b6116df6118c9565b73ffffffffffffffffffffffffffffffffffffffff166116fd6113bb565b73ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806123a06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611957576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122f36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061250e6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b8282826000611ad5610c6b565b1115611bf25760001515600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611b8b575060001515600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15611bf157611b98610c6b565b811115611bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604281526020018061245e6042913960600191505060405180910390fd5b5b5b611bfd868686612013565b505050505050565b6000838311158290611cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c77578082015181840152602081019050611c5c565b50505050905090810190601f168015611ca45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080831415611cd25760009050611d3f565b6000828402905082848281611ce357fe5b0414611d3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061243d6021913960400191505060405180910390fd5b809150505b92915050565b6000808211611dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381611dc557fe5b04905092915050565b600080828401905083811015611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611f0e81600354611dce90919063ffffffff16565b600381905550611f6681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122ce6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806124c66023913960400191505060405180910390fd5b61218b816040518060600160405280602681526020016124a060269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c059092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061222081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dce90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f2061646472657373465552593a3a207472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f2061646472657373465552593a3a7570646174654d6178557365725472616e73666572416d6f756e74526174653a20416e7469205768616c65204c696d69742063616e6e6f74206265206d6f7265207468616e20313030254f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373465552593a3a7570646174654d6178557365725472616e73666572416d6f756e74526174653a20416e7469205768616c65204c696d69742063616e6e6f74206265206c6f776572207468616e20312542455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77465552593a3a616e74695768616c653a205472616e7366657220616d6f756e74206578636565647320746865206d6178557365725472616e73666572416d6f756e7442455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212209e67249a28b2cc87f565f737f8d15e1da20c6a737bffeb84d529ac99ad97f94e64736f6c634300060c0033
Deployed Bytecode Sourcemap
32217:3600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24294:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25781:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24770:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26413:397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35674:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34344:276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34057:145;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24453:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35372:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27218:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33607:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34212:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24932:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21408:148;;;:::i;:::-;;34682:553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24137:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20757:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24610:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28459:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27930:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25263:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25492:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32659:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21711:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24294:92;24340:13;24373:5;24366:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24294:92;:::o;25781:161::-;25856:4;25873:39;25882:12;:10;:12::i;:::-;25896:7;25905:6;25873:8;:39::i;:::-;25930:4;25923:11;;25781:161;;;;:::o;24770:100::-;24823:7;24850:12;;24843:19;;24770:100;:::o;26413:397::-;26545:4;26562:36;26572:6;26580:9;26591:6;26562:9;:36::i;:::-;26609:171;26632:6;26653:12;:10;:12::i;:::-;26680:89;26718:6;26680:89;;;;;;;;;;;;;;;;;:11;:19;26692:6;26680:19;;;;;;;;;;;;;;;:33;26700:12;:10;:12::i;:::-;26680:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26609:8;:171::i;:::-;26798:4;26791:11;;26413:397;;;;;:::o;35674:136::-;35746:4;35770:22;:32;35793:8;35770:32;;;;;;;;;;;;;;;;;;;;;;;;;35763:39;;35674:136;;;:::o;34344:276::-;32946:12;:10;:12::i;:::-;32932:26;;:9;;;;;;;;;;;:26;;;32924:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34455:1:::1;34432:25;;:11;:25;;;;34424:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34566:11;34535:43;;34555:9;;;;;;;;;;;34535:43;;;;;;;;;;;;34601:11;34589:9;;:23;;;;;;;;;;;;;;;;;;34344:276:::0;:::o;34057:145::-;34112:7;34139:55;34188:5;34139:44;34157:25;;;;;;;;;;;34139:44;;:13;:11;:13::i;:::-;:17;;:44;;;;:::i;:::-;:48;;:55;;;;:::i;:::-;34132:62;;34057:145;:::o;24453:92::-;24503:5;24528:9;;;;;;;;;;;24521:16;;24453:92;:::o;35372:208::-;32946:12;:10;:12::i;:::-;32932:26;;:9;;;;;;;;;;;:26;;;32924:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35509:6:::1;35474:22;:32;35497:8;35474:32;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;35555:8;35533:39;;;35565:6;35533:39;;;;;;;;;;;;;;;;;;;;35372:208:::0;;:::o;27218:210::-;27298:4;27315:83;27324:12;:10;:12::i;:::-;27338:7;27347:50;27386:10;27347:11;:25;27359:12;:10;:12::i;:::-;27347:25;;;;;;;;;;;;;;;:34;27373:7;27347:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;27315:8;:83::i;:::-;27416:4;27409:11;;27218:210;;;;:::o;33607:109::-;20988:12;:10;:12::i;:::-;20977:23;;:7;:5;:7::i;:::-;:23;;;20969:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33679:19:::1;33685:3;33690:7;33679:5;:19::i;:::-;33607:109:::0;;:::o;34212:87::-;34255:7;34282:9;;;;;;;;;;;34275:16;;34212:87;:::o;24932:119::-;24998:7;25025:9;:18;25035:7;25025:18;;;;;;;;;;;;;;;;25018:25;;24932:119;;;:::o;21408:148::-;20988:12;:10;:12::i;:::-;20977:23;;:7;:5;:7::i;:::-;:23;;;20969:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21515:1:::1;21478:40;;21499:6;::::0;::::1;;;;;;;;21478:40;;;;;;;;;;;;21546:1;21529:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21408:148::o:0;34682:553::-;32946:12;:10;:12::i;:::-;32932:26;;:9;;;;;;;;;;;:26;;;32924:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34829:3:::1;34799:26;:33;;;;34791:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34965:5;34935:26;:35;;;;34927:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35094:12;:10;:12::i;:::-;35071:91;;;35108:25;;;;;;;;;;;35135:26;35071:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;35201:26;35173:25;;:54;;;;;;;;;;;;;;;;;;34682:553:::0;:::o;24137:94::-;24189:7;24216;:5;:7::i;:::-;24209:14;;24137:94;:::o;20757:87::-;20803:7;20830:6;;;;;;;;;;;20823:13;;20757:87;:::o;24610:96::-;24658:13;24691:7;24684:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24610:96;:::o;28459:130::-;28515:4;20988:12;:10;:12::i;:::-;20977:23;;:7;:5;:7::i;:::-;:23;;;20969:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532:27:::1;28538:12;:10;:12::i;:::-;28552:6;28532:5;:27::i;:::-;28577:4;28570:11;;28459:130:::0;;;:::o;27930:311::-;28015:4;28032:179;28055:12;:10;:12::i;:::-;28082:7;28104:96;28143:15;28104:96;;;;;;;;;;;;;;;;;:11;:25;28116:12;:10;:12::i;:::-;28104:25;;;;;;;;;;;;;;;:34;28130:7;28104:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;28032:8;:179::i;:::-;28229:4;28222:11;;27930:311;;;;:::o;25263:167::-;25341:4;25358:42;25368:12;:10;:12::i;:::-;25382:9;25393:6;25358:9;:42::i;:::-;25418:4;25411:11;;25263:167;;;;:::o;25492:143::-;25573:7;25600:11;:18;25612:5;25600:18;;;;;;;;;;;;;;;:27;25619:7;25600:27;;;;;;;;;;;;;;;;25593:34;;25492:143;;;;:::o;32659:45::-;;;;;;;;;;;;;:::o;21711:244::-;20988:12;:10;:12::i;:::-;20977:23;;:7;:5;:7::i;:::-;:23;;;20969:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:1:::1;21800:22;;:8;:22;;;;21792:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21910:8;21881:38;;21902:6;::::0;::::1;;;;;;;;21881:38;;;;;;;;;;;;21939:8;21930:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;21711:244:::0;:::o;19308:106::-;19361:15;19396:10;19389:17;;19308:106;:::o;31301:372::-;31446:1;31429:19;;:5;:19;;;;31421:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31527:1;31508:21;;:7;:21;;;;31500:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31611:6;31581:11;:18;31593:5;31581:18;;;;;;;;;;;;;;;:27;31600:7;31581:27;;;;;;;;;;;;;;;:36;;;;31649:7;31633:32;;31642:5;31633:32;;;31658:6;31633:32;;;;;;;;;;;;;;;;;;31301:372;;;:::o;33807:203::-;33916:7;33925:10;33937:7;33132:1;33105:24;:22;:24::i;:::-;:28;33101:348;;;33206:5;33172:39;;:22;:30;33195:6;33172:30;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;:102;;;;;33269:5;33232:42;;:22;:33;33255:9;33232:33;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;33172:102;33150:288;;;33327:24;:22;:24::i;:::-;33317:6;:34;;33309:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33150:288;33101:348;33957:45:::1;33973:7;33982:10;33994:7;33957:15;:45::i;:::-;33807:203:::0;;;;;;:::o;13628:166::-;13714:7;13747:1;13742;:6;;13750:12;13734:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13785:1;13781;:5;13774:12;;13628:166;;;;;:::o;11680:220::-;11738:7;11767:1;11762;:6;11758:20;;;11777:1;11770:8;;;;11758:20;11789:9;11805:1;11801;:5;11789:17;;11834:1;11829;11825;:5;;;;;;:10;11817:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11891:1;11884:8;;;11680:220;;;;;:::o;12378:153::-;12436:7;12468:1;12464;:5;12456:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12522:1;12518;:5;;;;;;12511:12;;12378:153;;;;:::o;10801:179::-;10859:7;10879:9;10895:1;10891;:5;10879:17;;10920:1;10915;:6;;10907:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10971:1;10964:8;;;10801:179;;;;:::o;29873:308::-;29968:1;29949:21;;:7;:21;;;;29941:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30034:24;30051:6;30034:12;;:16;;:24;;;;:::i;:::-;30019:12;:39;;;;30090:30;30113:6;30090:9;:18;30100:7;30090:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;30069:9;:18;30079:7;30069:18;;;;;;;;;;;;;;;:51;;;;30157:7;30136:37;;30153:1;30136:37;;;30166:6;30136:37;;;;;;;;;;;;;;;;;;29873:308;;:::o;29079:513::-;29237:1;29219:20;;:6;:20;;;;29211:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29321:1;29300:23;;:9;:23;;;;29292:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29396;29418:6;29396:71;;;;;;;;;;;;;;;;;:9;:17;29406:6;29396:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;29376:9;:17;29386:6;29376:17;;;;;;;;;;;;;;;:91;;;;29501:32;29526:6;29501:9;:20;29511:9;29501:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;29478:9;:20;29488:9;29478:20;;;;;;;;;;;;;;;:55;;;;29566:9;29549:35;;29558:6;29549:35;;;29577:6;29549:35;;;;;;;;;;;;;;;;;;29079:513;;;:::o
Swarm Source
ipfs://9e67249a28b2cc87f565f737f8d15e1da20c6a737bffeb84d529ac99ad97f94e
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.