ETH Price: $2,642.61 (+0.01%)

Contract

0x59f59809E60FA9b3D47Eb883B58f27CB65C1fF36
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve142457382022-02-20 22:45:41904 days ago1645397141IN
0x59f59809...B65C1fF36
0 ETH0.0011222846.10661285
Approve127838292021-07-08 1:35:251132 days ago1625708125IN
0x59f59809...B65C1fF36
0 ETH0.0016318735
Approve126881662021-06-23 3:58:141147 days ago1624420694IN
0x59f59809...B65C1fF36
0 ETH0.0010723723
Approve126803122021-06-21 22:31:431148 days ago1624314703IN
0x59f59809...B65C1fF36
0 ETH0.0022566548.4
Transfer126172492021-06-12 3:10:041158 days ago1623467404IN
0x59f59809...B65C1fF36
0 ETH0.0006531811
Approve126019782021-06-09 18:41:081160 days ago1623264068IN
0x59f59809...B65C1fF36
0 ETH0.0010257522
Transfer125772462021-06-05 22:56:121164 days ago1622933772IN
0x59f59809...B65C1fF36
0 ETH0.000696913.2
Approve125745062021-06-05 12:42:411164 days ago1622896961IN
0x59f59809...B65C1fF36
0 ETH0.0003741514
Approve125745012021-06-05 12:41:531164 days ago1622896913IN
0x59f59809...B65C1fF36
0 ETH0.0006527514
Transfer125581292021-06-02 23:43:401167 days ago1622677420IN
0x59f59809...B65C1fF36
0 ETH0.0012776624.2
Approve124941942021-05-24 1:52:151177 days ago1621821135IN
0x59f59809...B65C1fF36
0 ETH0.0009261335.00000112
Approve124941902021-05-24 1:51:421177 days ago1621821102IN
0x59f59809...B65C1fF36
0 ETH0.0009261335.00000112
Approve124941482021-05-24 1:41:081177 days ago1621820468IN
0x59f59809...B65C1fF36
0 ETH0.0016226335.00000112
Transfer124940902021-05-24 1:28:521177 days ago1621819732IN
0x59f59809...B65C1fF36
0 ETH0.0055722293.5
Approve124936732021-05-23 23:54:241177 days ago1621814064IN
0x59f59809...B65C1fF36
0 ETH0.0016689936
Transfer124900082021-05-23 10:25:251177 days ago1621765525IN
0x59f59809...B65C1fF36
0 ETH0.0045888977
Transfer124880472021-05-23 3:02:191178 days ago1621738939IN
0x59f59809...B65C1fF36
0 ETH0.0034584445.1
Transfer124879372021-05-23 2:33:551178 days ago1621737235IN
0x59f59809...B65C1fF36
0 ETH0.0055066792.4
Approve124878102021-05-23 2:04:181178 days ago1621735458IN
0x59f59809...B65C1fF36
0 ETH0.0015899134.1
Transfer124877972021-05-23 2:00:211178 days ago1621735221IN
0x59f59809...B65C1fF36
0 ETH0.0020322234.1
Transfer124877692021-05-23 1:53:541178 days ago1621734834IN
0x59f59809...B65C1fF36
0 ETH0.0029527938.5
Approve124851992021-05-22 16:31:271178 days ago1621701087IN
0x59f59809...B65C1fF36
0 ETH0.0018183739
Approve124330332021-05-14 14:29:291186 days ago1621002569IN
0x59f59809...B65C1fF36
0 ETH0.0139875300
Approve124096162021-05-10 23:24:181190 days ago1620689058IN
0x59f59809...B65C1fF36
0 ETH0.00679082254.1
Approve124096162021-05-10 23:24:181190 days ago1620689058IN
0x59f59809...B65C1fF36
0 ETH0.01198262257
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SafeMusk

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-26
*/

//Website: https://safemusk.space/
//Telegram: https://t.me/safemuskfinance
//Twitter: https://twitter.com/SafeMuskFinance

//SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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 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 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 SafeMusk is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 1000000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'SafeMusk';
    string private _symbol = 'SAFEMUSK';
    uint8 private _decimals = 9;
    
    uint256 public _maxTxAmount = 25000000000000 * 10**9;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(sender != owner() && recipient != owner())
          require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private pure returns (uint256, uint256) {
        uint256 tFee = tAmount.div(100).mul(4);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
}

Contract Security Audit

Contract ABI

[{"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":"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"},{"inputs":[],"name":"_maxTxAmount","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":[{"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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269d3c21bcecceda1000000600019816200001a57fe5b06600019036006556040518060400160405280600881526020017f536166654d75736b000000000000000000000000000000000000000000000000815250600890805190602001906200006f92919062000288565b506040518060400160405280600881526020017f534146454d55534b00000000000000000000000000000000000000000000000081525060099080519060200190620000bd92919062000288565b506009600a60006101000a81548160ff021916908360ff16021790555069054b40b1f852bda00000600b55348015620000f557600080fd5b506000620001086200028060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460016000620001bd6200028060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200020b6200028060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69d3c21bcecceda10000006040518082815260200191505060405180910390a36200032e565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002cb57805160ff1916838001178555620002fc565b82800160010185558215620002fc579182015b82811115620002fb578251825591602001919060010190620002de565b5b5090506200030b91906200030f565b5090565b5b808211156200032a57600081600090555060010162000310565b5090565b612d55806200033e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610552578063a9059cbb146105b6578063cba0e9961461061a578063dd62ed3e14610674578063f2fde38b146106ec5761012c565b806370a082311461041b578063715018a6146104735780637d1db4a51461047d5780638da5cb5b1461049b57806395d89b41146104cf5761012c565b806323b872dd116100f457806323b872dd146102825780632d83811914610306578063313ce5671461034857806339509351146103695780634549b039146103cd5761012c565b8063053ab1821461013157806306fdde031461015f578063095ea7b3146101e257806313114a9d1461024657806318160ddd14610264575b600080fd5b61015d6004803603602081101561014757600080fd5b8101908080359060200190929190505050610730565b005b6101676108c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a757808201518184015260208101905061018c565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022e600480360360408110156101f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610962565b60405180821515815260200191505060405180910390f35b61024e610980565b6040518082815260200191505060405180910390f35b61026c61098a565b6040518082815260200191505060405180910390f35b6102ee6004803603606081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099c565b60405180821515815260200191505060405180910390f35b6103326004803603602081101561031c57600080fd5b8101908080359060200190929190505050610a75565b6040518082815260200191505060405180910390f35b610350610af9565b604051808260ff16815260200191505060405180910390f35b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b60405180821515815260200191505060405180910390f35b610405600480360360408110156103e357600080fd5b8101908080359060200190929190803515159060200190929190505050610bc3565b6040518082815260200191505060405180910390f35b61045d6004803603602081101561043157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b6040518082815260200191505060405180910390f35b61047b610d6b565b005b610485610ef1565b6040518082815260200191505060405180910390f35b6104a3610ef7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d7610f20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105175780820151818401526020810190506104fc565b50505050905090810190601f1680156105445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc2565b60405180821515815260200191505060405180910390f35b610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061108f565b60405180821515815260200191505060405180910390f35b61065c6004803603602081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ad565b60405180821515815260200191505060405180910390f35b6106d66004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b61072e6004803603602081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118a565b005b600061073a611395565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180612ccf602c913960400191505060405180910390fd5b60006107ea8361139d565b50505050905061084281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061089a816006546113f590919063ffffffff16565b6006819055506108b58360075461143f90919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061097661096f611395565b84846114c7565b6001905092915050565b6000600754905090565b600069d3c21bcecceda1000000905090565b60006109a98484846116be565b610a6a846109b5611395565b610a6585604051806060016040528060288152602001612c3560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a1b611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b600190509392505050565b6000600654821115610ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612b7a602a913960400191505060405180910390fd5b6000610adc611cae565b9050610af18184611cd990919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610bb9610b1d611395565b84610bb48560036000610b2e611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b6114c7565b6001905092915050565b600069d3c21bcecceda1000000831115610c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c64576000610c558461139d565b50505050905080915050610c7a565b6000610c6f8461139d565b505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d1b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d66565b610d63600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a75565b90505b919050565b610d73611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050905090565b6000611085610fcf611395565b8461108085604051806060016040528060258152602001612cfb6025913960036000610ff9611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b6001905092915050565b60006110a361109c611395565b84846116be565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611192611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ba46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008060008060008060006113b188611d23565b9150915060006113bf611cae565b905060008060006113d18c8686611d75565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061143783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bee565b905092915050565b6000808284019050838110156114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612cab6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612bca6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611744576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612c866025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612b576023913960400191505060405180910390fd5b60008111611823576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612c5d6029913960400191505060405180910390fd5b61182b610ef7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118995750611869610ef7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fa57600b548111156118f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612bec6028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561199d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119b2576119ad838383611dd3565b611be9565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a555750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a6a57611a65838383612026565b611be8565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b0e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2357611b1e838383612279565b611be7565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bc55750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bda57611bd5838383612437565b611be6565b611be5838383612279565b5b5b5b5b505050565b6000838311158290611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c60578082015181840152602081019050611c45565b50505050905090810190601f168015611c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611cbb61271f565b91509150611cd28183611cd990919063ffffffff16565b9250505090565b6000611d1b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129d0565b905092915050565b6000806000611d4f6004611d41606487611cd990919063ffffffff16565b612a9690919063ffffffff16565b90506000611d6682866113f590919063ffffffff16565b90508082935093505050915091565b600080600080611d8e8588612a9690919063ffffffff16565b90506000611da58688612a9690919063ffffffff16565b90506000611dbc82846113f590919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000806000611de48661139d565b94509450945094509450611e4086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ed585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f6a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fb78382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006120378661139d565b9450945094509450945061209385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061212882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bd84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220a8382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061228a8661139d565b945094509450945094506122e685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061237b84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c88382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006124488661139d565b945094509450945094506124a486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061253985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ce82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061266384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126b08382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069d3c21bcecceda1000000905060005b6005805490508110156129835782600160006005848154811061275a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284157508160026000600584815481106127d957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156128605760065469d3c21bcecceda1000000945094505050506129cc565b6128e9600160006005848154811061287457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113f590919063ffffffff16565b925061297460026000600584815481106128ff57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836113f590919063ffffffff16565b9150808060010191505061273b565b506129a369d3c21bcecceda1000000600654611cd990919063ffffffff16565b8210156129c35760065469d3c21bcecceda10000009350935050506129cc565b81819350935050505b9091565b60008083118290612a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a41578082015181840152602081019050612a26565b50505050905090810190601f168015612a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612a8857fe5b049050809150509392505050565b600080831415612aa95760009050612b16565b6000828402905082848281612aba57fe5b0414612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612c146021913960400191505060405180910390fd5b809150505b92915050565b612b31826006546113f590919063ffffffff16565b600681905550612b4c8160075461143f90919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bb437e8b1c6a416832ccf28deef60d66aba2edb1b3f722550d3de27f477110964736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610552578063a9059cbb146105b6578063cba0e9961461061a578063dd62ed3e14610674578063f2fde38b146106ec5761012c565b806370a082311461041b578063715018a6146104735780637d1db4a51461047d5780638da5cb5b1461049b57806395d89b41146104cf5761012c565b806323b872dd116100f457806323b872dd146102825780632d83811914610306578063313ce5671461034857806339509351146103695780634549b039146103cd5761012c565b8063053ab1821461013157806306fdde031461015f578063095ea7b3146101e257806313114a9d1461024657806318160ddd14610264575b600080fd5b61015d6004803603602081101561014757600080fd5b8101908080359060200190929190505050610730565b005b6101676108c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a757808201518184015260208101905061018c565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022e600480360360408110156101f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610962565b60405180821515815260200191505060405180910390f35b61024e610980565b6040518082815260200191505060405180910390f35b61026c61098a565b6040518082815260200191505060405180910390f35b6102ee6004803603606081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061099c565b60405180821515815260200191505060405180910390f35b6103326004803603602081101561031c57600080fd5b8101908080359060200190929190505050610a75565b6040518082815260200191505060405180910390f35b610350610af9565b604051808260ff16815260200191505060405180910390f35b6103b56004803603604081101561037f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b60405180821515815260200191505060405180910390f35b610405600480360360408110156103e357600080fd5b8101908080359060200190929190803515159060200190929190505050610bc3565b6040518082815260200191505060405180910390f35b61045d6004803603602081101561043157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b6040518082815260200191505060405180910390f35b61047b610d6b565b005b610485610ef1565b6040518082815260200191505060405180910390f35b6104a3610ef7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d7610f20565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105175780820151818401526020810190506104fc565b50505050905090810190601f1680156105445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61059e6004803603604081101561056857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc2565b60405180821515815260200191505060405180910390f35b610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061108f565b60405180821515815260200191505060405180910390f35b61065c6004803603602081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ad565b60405180821515815260200191505060405180910390f35b6106d66004803603604081101561068a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611103565b6040518082815260200191505060405180910390f35b61072e6004803603602081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118a565b005b600061073a611395565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180612ccf602c913960400191505060405180910390fd5b60006107ea8361139d565b50505050905061084281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061089a816006546113f590919063ffffffff16565b6006819055506108b58360075461143f90919063ffffffff16565b600781905550505050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061097661096f611395565b84846114c7565b6001905092915050565b6000600754905090565b600069d3c21bcecceda1000000905090565b60006109a98484846116be565b610a6a846109b5611395565b610a6585604051806060016040528060288152602001612c3560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a1b611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b600190509392505050565b6000600654821115610ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612b7a602a913960400191505060405180910390fd5b6000610adc611cae565b9050610af18184611cd990919063ffffffff16565b915050919050565b6000600a60009054906101000a900460ff16905090565b6000610bb9610b1d611395565b84610bb48560036000610b2e611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b6114c7565b6001905092915050565b600069d3c21bcecceda1000000831115610c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610c64576000610c558461139d565b50505050905080915050610c7a565b6000610c6f8461139d565b505050915050809150505b92915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d1b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610d66565b610d63600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a75565b90505b919050565b610d73611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fb85780601f10610f8d57610100808354040283529160200191610fb8565b820191906000526020600020905b815481529060010190602001808311610f9b57829003601f168201915b5050505050905090565b6000611085610fcf611395565b8461108085604051806060016040528060258152602001612cfb6025913960036000610ff9611395565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bee9092919063ffffffff16565b6114c7565b6001905092915050565b60006110a361109c611395565b84846116be565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611192611395565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612ba46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008060008060008060006113b188611d23565b9150915060006113bf611cae565b905060008060006113d18c8686611d75565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061143783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bee565b905092915050565b6000808284019050838110156114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612cab6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612bca6022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611744576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612c866025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612b576023913960400191505060405180910390fd5b60008111611823576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180612c5d6029913960400191505060405180910390fd5b61182b610ef7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118995750611869610ef7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fa57600b548111156118f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612bec6028913960400191505060405180910390fd5b5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561199d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119b2576119ad838383611dd3565b611be9565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a555750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a6a57611a65838383612026565b611be8565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b0e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2357611b1e838383612279565b611be7565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bc55750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611bda57611bd5838383612437565b611be6565b611be5838383612279565b5b5b5b5b505050565b6000838311158290611c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c60578082015181840152602081019050611c45565b50505050905090810190601f168015611c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000611cbb61271f565b91509150611cd28183611cd990919063ffffffff16565b9250505090565b6000611d1b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129d0565b905092915050565b6000806000611d4f6004611d41606487611cd990919063ffffffff16565b612a9690919063ffffffff16565b90506000611d6682866113f590919063ffffffff16565b90508082935093505050915091565b600080600080611d8e8588612a9690919063ffffffff16565b90506000611da58688612a9690919063ffffffff16565b90506000611dbc82846113f590919063ffffffff16565b905082818395509550955050505093509350939050565b6000806000806000611de48661139d565b94509450945094509450611e4086600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ed585600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f6a84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fb78382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006120378661139d565b9450945094509450945061209385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061212882600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506121bd84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220a8382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061228a8661139d565b945094509450945094506122e685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061237b84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123c88382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006124488661139d565b945094509450945094506124a486600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061253985600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f590919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125ce82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061266384600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461143f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126b08382612b1c565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006006549050600069d3c21bcecceda1000000905060005b6005805490508110156129835782600160006005848154811061275a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284157508160026000600584815481106127d957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156128605760065469d3c21bcecceda1000000945094505050506129cc565b6128e9600160006005848154811061287457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846113f590919063ffffffff16565b925061297460026000600584815481106128ff57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836113f590919063ffffffff16565b9150808060010191505061273b565b506129a369d3c21bcecceda1000000600654611cd990919063ffffffff16565b8210156129c35760065469d3c21bcecceda10000009350935050506129cc565b81819350935050505b9091565b60008083118290612a7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a41578082015181840152602081019050612a26565b50505050905090810190601f168015612a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612a8857fe5b049050809150509392505050565b600080831415612aa95760009050612b16565b6000828402905082848281612aba57fe5b0414612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612c146021913960400191505060405180910390fd5b809150505b92915050565b612b31826006546113f590919063ffffffff16565b600681905550612b4c8160075461143f90919063ffffffff16565b600781905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bb437e8b1c6a416832ccf28deef60d66aba2edb1b3f722550d3de27f477110964736f6c634300060c0033

Deployed Bytecode Sourcemap

15735:9565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18776:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16654:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17566:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18677:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16931:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17735:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19602:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16840:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18056:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19160:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17034:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15177:148;;;:::i;:::-;;16454:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14535:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16745:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18282:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17240:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18559:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17415:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15480:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18776:376;18828:14;18845:12;:10;:12::i;:::-;18828:29;;18877:11;:19;18889:6;18877:19;;;;;;;;;;;;;;;;;;;;;;;;;18876:20;18868:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18957:15;18980:19;18991:7;18980:10;:19::i;:::-;18956:43;;;;;;19028:28;19048:7;19028;:15;19036:6;19028:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;19010:7;:15;19018:6;19010:15;;;;;;;;;;;;;;;:46;;;;19077:20;19089:7;19077;;:11;;:20;;;;:::i;:::-;19067:7;:30;;;;19121:23;19136:7;19121:10;;:14;;:23;;;;:::i;:::-;19108:10;:36;;;;18776:376;;;:::o;16654:83::-;16691:13;16724:5;16717:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16654:83;:::o;17566:161::-;17641:4;17658:39;17667:12;:10;:12::i;:::-;17681:7;17690:6;17658:8;:39::i;:::-;17715:4;17708:11;;17566:161;;;;:::o;18677:87::-;18719:7;18746:10;;18739:17;;18677:87;:::o;16931:95::-;16984:7;16210:24;17004:14;;16931:95;:::o;17735:313::-;17833:4;17850:36;17860:6;17868:9;17879:6;17850:9;:36::i;:::-;17897:121;17906:6;17914:12;:10;:12::i;:::-;17928:89;17966:6;17928:89;;;;;;;;;;;;;;;;;:11;:19;17940:6;17928:19;;;;;;;;;;;;;;;:33;17948:12;:10;:12::i;:::-;17928:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;17897:8;:121::i;:::-;18036:4;18029:11;;17735:313;;;;;:::o;19602:253::-;19668:7;19707;;19696;:18;;19688:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19772:19;19795:10;:8;:10::i;:::-;19772:33;;19823:24;19835:11;19823:7;:11;;:24;;;;:::i;:::-;19816:31;;;19602:253;;;:::o;16840:83::-;16881:5;16906:9;;;;;;;;;;;16899:16;;16840:83;:::o;18056:218::-;18144:4;18161:83;18170:12;:10;:12::i;:::-;18184:7;18193:50;18232:10;18193:11;:25;18205:12;:10;:12::i;:::-;18193:25;;;;;;;;;;;;;;;:34;18219:7;18193:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18161:8;:83::i;:::-;18262:4;18255:11;;18056:218;;;;:::o;19160:434::-;19250:7;16210:24;19278:7;:18;;19270:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19348:17;19343:244;;19383:15;19406:19;19417:7;19406:10;:19::i;:::-;19382:43;;;;;;19447:7;19440:14;;;;;19343:244;19489:23;19519:19;19530:7;19519:10;:19::i;:::-;19487:51;;;;;;19560:15;19553:22;;;19160:434;;;;;:::o;17034:198::-;17100:7;17124:11;:20;17136:7;17124:20;;;;;;;;;;;;;;;;;;;;;;;;;17120:49;;;17153:7;:16;17161:7;17153:16;;;;;;;;;;;;;;;;17146:23;;;;17120:49;17187:37;17207:7;:16;17215:7;17207:16;;;;;;;;;;;;;;;;17187:19;:37::i;:::-;17180:44;;17034:198;;;;:::o;15177:148::-;14757:12;:10;:12::i;:::-;14747:22;;:6;;;;;;;;;;:22;;;14739:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15284:1:::1;15247:40;;15268:6;::::0;::::1;;;;;;;;15247:40;;;;;;;;;;;;15315:1;15298:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15177:148::o:0;16454:52::-;;;;:::o;14535:79::-;14573:7;14600:6;;;;;;;;;;;14593:13;;14535:79;:::o;16745:87::-;16784:13;16817:7;16810:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16745:87;:::o;18282:269::-;18375:4;18392:129;18401:12;:10;:12::i;:::-;18415:7;18424:96;18463:15;18424:96;;;;;;;;;;;;;;;;;:11;:25;18436:12;:10;:12::i;:::-;18424:25;;;;;;;;;;;;;;;:34;18450:7;18424:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18392:8;:129::i;:::-;18539:4;18532:11;;18282:269;;;;:::o;17240:167::-;17318:4;17335:42;17345:12;:10;:12::i;:::-;17359:9;17370:6;17335:9;:42::i;:::-;17395:4;17388:11;;17240:167;;;;:::o;18559:110::-;18617:4;18641:11;:20;18653:7;18641:20;;;;;;;;;;;;;;;;;;;;;;;;;18634:27;;18559:110;;;:::o;17415:143::-;17496:7;17523:11;:18;17535:5;17523:18;;;;;;;;;;;;;;;:27;17542:7;17523:27;;;;;;;;;;;;;;;;17516:34;;17415:143;;;;:::o;15480:244::-;14757:12;:10;:12::i;:::-;14747:22;;:6;;;;;;;;;;:22;;;14739:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15589:1:::1;15569:22;;:8;:22;;;;15561:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15679:8;15650:38;;15671:6;::::0;::::1;;;;;;;;15650:38;;;;;;;;;;;;15708:8;15699:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15480:244:::0;:::o;230:106::-;283:15;318:10;311:17;;230:106;:::o;23566:411::-;23625:7;23634;23643;23652;23661;23682:23;23707:12;23723:20;23735:7;23723:11;:20::i;:::-;23681:62;;;;23754:19;23777:10;:8;:10::i;:::-;23754:33;;23799:15;23816:23;23841:12;23857:39;23869:7;23878:4;23884:11;23857;:39::i;:::-;23798:98;;;;;;23915:7;23924:15;23941:4;23947:15;23964:4;23907:62;;;;;;;;;;;;;;;;23566:411;;;;;;;:::o;3950:136::-;4008:7;4035:43;4039:1;4042;4035:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4028:50;;3950:136;;;;:::o;3486:181::-;3544:7;3564:9;3580:1;3576;:5;3564:17;;3605:1;3600;:6;;3592:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3658:1;3651:8;;;3486:181;;;;:::o;19863:337::-;19973:1;19956:19;;:5;:19;;;;19948:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20054:1;20035:21;;:7;:21;;;;20027:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20138:6;20108:11;:18;20120:5;20108:18;;;;;;;;;;;;;;;:27;20127:7;20108:27;;;;;;;;;;;;;;;:36;;;;20176:7;20160:32;;20169:5;20160:32;;;20185:6;20160:32;;;;;;;;;;;;;;;;;;19863:337;;;:::o;20208:1088::-;20323:1;20305:20;;:6;:20;;;;20297:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20407:1;20386:23;;:9;:23;;;;20378:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20477:1;20468:6;:10;20460:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20548:7;:5;:7::i;:::-;20538:17;;:6;:17;;;;:41;;;;;20572:7;:5;:7::i;:::-;20559:20;;:9;:20;;;;20538:41;20535:132;;;20610:12;;20600:6;:22;;20592:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20535:132;20696:11;:19;20708:6;20696:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;20720:11;:22;20732:9;20720:22;;;;;;;;;;;;;;;;;;;;;;;;;20719:23;20696:46;20692:597;;;20759:48;20781:6;20789:9;20800:6;20759:21;:48::i;:::-;20692:597;;;20830:11;:19;20842:6;20830:19;;;;;;;;;;;;;;;;;;;;;;;;;20829:20;:46;;;;;20853:11;:22;20865:9;20853:22;;;;;;;;;;;;;;;;;;;;;;;;;20829:46;20825:464;;;20892:46;20912:6;20920:9;20931:6;20892:19;:46::i;:::-;20825:464;;;20961:11;:19;20973:6;20961:19;;;;;;;;;;;;;;;;;;;;;;;;;20960:20;:47;;;;;20985:11;:22;20997:9;20985:22;;;;;;;;;;;;;;;;;;;;;;;;;20984:23;20960:47;20956:333;;;21024:44;21042:6;21050:9;21061:6;21024:17;:44::i;:::-;20956:333;;;21090:11;:19;21102:6;21090:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;21113:11;:22;21125:9;21113:22;;;;;;;;;;;;;;;;;;;;;;;;;21090:45;21086:203;;;21152:48;21174:6;21182:9;21193:6;21152:21;:48::i;:::-;21086:203;;;21233:44;21251:6;21259:9;21270:6;21233:17;:44::i;:::-;21086:203;20956:333;20825:464;20692:597;20208:1088;;;:::o;4389:192::-;4475:7;4508:1;4503;:6;;4511:12;4495:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:9;4551:1;4547;:5;4535:17;;4572:1;4565:8;;;4389:192;;;;;:::o;24565:163::-;24606:7;24627:15;24644;24663:19;:17;:19::i;:::-;24626:56;;;;24700:20;24712:7;24700;:11;;:20;;;;:::i;:::-;24693:27;;;;24565:163;:::o;5787:132::-;5845:7;5872:39;5876:1;5879;5872:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5865:46;;5787:132;;;;:::o;23985:230::-;24045:7;24054;24074:12;24089:23;24110:1;24089:16;24101:3;24089:7;:11;;:16;;;;:::i;:::-;:20;;:23;;;;:::i;:::-;24074:38;;24123:23;24149:17;24161:4;24149:7;:11;;:17;;;;:::i;:::-;24123:43;;24185:15;24202:4;24177:30;;;;;;23985:230;;;:::o;24223:334::-;24318:7;24327;24336;24356:15;24374:24;24386:11;24374:7;:11;;:24;;;;:::i;:::-;24356:42;;24409:12;24424:21;24433:11;24424:4;:8;;:21;;;;:::i;:::-;24409:36;;24456:23;24482:17;24494:4;24482:7;:11;;:17;;;;:::i;:::-;24456:43;;24518:7;24527:15;24544:4;24510:39;;;;;;;;;24223:334;;;;;;;:::o;22301:509::-;22404:15;22421:23;22446:12;22460:23;22485:12;22501:19;22512:7;22501:10;:19::i;:::-;22403:117;;;;;;;;;;22549:28;22569:7;22549;:15;22557:6;22549:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;22531:7;:15;22539:6;22531:15;;;;;;;;;;;;;;;:46;;;;22606:28;22626:7;22606;:15;22614:6;22606:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;22588:7;:15;22596:6;22588:15;;;;;;;;;;;;;;;:46;;;;22666:39;22689:15;22666:7;:18;22674:9;22666:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;22645:7;:18;22653:9;22645:18;;;;;;;;;;;;;;;:60;;;;22719:23;22731:4;22737;22719:11;:23::i;:::-;22775:9;22758:44;;22767:6;22758:44;;;22786:15;22758:44;;;;;;;;;;;;;;;;;;22301:509;;;;;;;;:::o;21764:529::-;21865:15;21882:23;21907:12;21921:23;21946:12;21962:19;21973:7;21962:10;:19::i;:::-;21864:117;;;;;;;;;;22010:28;22030:7;22010;:15;22018:6;22010:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;21992:7;:15;22000:6;21992:15;;;;;;;;;;;;;;;:46;;;;22070:39;22093:15;22070:7;:18;22078:9;22070:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;22049:7;:18;22057:9;22049:18;;;;;;;;;;;;;;;:60;;;;22141:39;22164:15;22141:7;:18;22149:9;22141:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;22120:7;:18;22128:9;22120:18;;;;;;;;;;;;;;;:60;;;;22202:23;22214:4;22220;22202:11;:23::i;:::-;22258:9;22241:44;;22250:6;22241:44;;;22269:15;22241:44;;;;;;;;;;;;;;;;;;21764:529;;;;;;;;:::o;21304:452::-;21403:15;21420:23;21445:12;21459:23;21484:12;21500:19;21511:7;21500:10;:19::i;:::-;21402:117;;;;;;;;;;21548:28;21568:7;21548;:15;21556:6;21548:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;21530:7;:15;21538:6;21530:15;;;;;;;;;;;;;;;:46;;;;21608:39;21631:15;21608:7;:18;21616:9;21608:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;21587:7;:18;21595:9;21587:18;;;;;;;;;;;;;;;:60;;;;21665:23;21677:4;21683;21665:11;:23::i;:::-;21721:9;21704:44;;21713:6;21704:44;;;21732:15;21704:44;;;;;;;;;;;;;;;;;;21304:452;;;;;;;;:::o;22818:585::-;22921:15;22938:23;22963:12;22977:23;23002:12;23018:19;23029:7;23018:10;:19::i;:::-;22920:117;;;;;;;;;;23066:28;23086:7;23066;:15;23074:6;23066:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23048:7;:15;23056:6;23048:15;;;;;;;;;;;;;;;:46;;;;23123:28;23143:7;23123;:15;23131:6;23123:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;23105:7;:15;23113:6;23105:15;;;;;;;;;;;;;;;:46;;;;23183:39;23206:15;23183:7;:18;23191:9;23183:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23162:7;:18;23170:9;23162:18;;;;;;;;;;;;;;;:60;;;;23254:39;23277:15;23254:7;:18;23262:9;23254:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;23233:7;:18;23241:9;23233:18;;;;;;;;;;;;;;;:60;;;;23312:23;23324:4;23330;23312:11;:23::i;:::-;23368:9;23351:44;;23360:6;23351:44;;;23379:15;23351:44;;;;;;;;;;;;;;;;;;22818:585;;;;;;;;:::o;24736:561::-;24786:7;24795;24815:15;24833:7;;24815:25;;24851:15;16210:24;24851:25;;24898:9;24893:289;24917:9;:16;;;;24913:1;:20;24893:289;;;24983:7;24959;:21;24967:9;24977:1;24967:12;;;;;;;;;;;;;;;;;;;;;;;;;24959:21;;;;;;;;;;;;;;;;:31;:66;;;;25018:7;24994;:21;25002:9;25012:1;25002:12;;;;;;;;;;;;;;;;;;;;;;;;;24994:21;;;;;;;;;;;;;;;;:31;24959:66;24955:97;;;25035:7;;16210:24;25027:25;;;;;;;;;24955:97;25077:34;25089:7;:21;25097:9;25107:1;25097:12;;;;;;;;;;;;;;;;;;;;;;;;;25089:21;;;;;;;;;;;;;;;;25077:7;:11;;:34;;;;:::i;:::-;25067:44;;25136:34;25148:7;:21;25156:9;25166:1;25156:12;;;;;;;;;;;;;;;;;;;;;;;;;25148:21;;;;;;;;;;;;;;;;25136:7;:11;;:34;;;;:::i;:::-;25126:44;;24935:3;;;;;;;24893:289;;;;25206:20;16210:24;25206:7;;:11;;:20;;;;:::i;:::-;25196:7;:30;25192:61;;;25236:7;;16210:24;25228:25;;;;;;;;25192:61;25272:7;25281;25264:25;;;;;;24736:561;;;:::o;6415:278::-;6501:7;6533:1;6529;:5;6536:12;6521:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6560:9;6576:1;6572;:5;;;;;;6560:17;;6684:1;6677:8;;;6415:278;;;;;:::o;4840:471::-;4898:7;5148:1;5143;:6;5139:47;;;5173:1;5166:8;;;;5139:47;5198:9;5214:1;5210;:5;5198:17;;5243:1;5238;5234;:5;;;;;;:10;5226:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5302:1;5295:8;;;4840:471;;;;;:::o;23411:147::-;23489:17;23501:4;23489:7;;:11;;:17;;;;:::i;:::-;23479:7;:27;;;;23530:20;23545:4;23530:10;;:14;;:20;;;;:::i;:::-;23517:10;:33;;;;23411:147;;:::o

Swarm Source

ipfs://7bb437e8b1c6a416832ccf28deef60d66aba2edb1b3f722550d3de27f4771109

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.