ETH Price: $2,381.26 (-0.09%)

Token

yomama.finance (YOMA)
 

Overview

Max Total Supply

20,000 YOMA

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wantgold.eth
Balance
60 YOMA

Value
$0.00
0x4Bf2120F90Feff1E1f443Ad07E542CA6b2F30105
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Yomama

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-14
*/

pragma solidity =0.6.6;


/**
* YOMAMA is so fat, she needed an entire maths library 
* 
* see yomama.finance for more details
*                                        .::`                                                        
*                                      :/hyyyso+`./osyys+:-.                                         
*                                  `--+yyyyyyyyhyyhyyyyyyhhhs+                                       
*                                 .syyyyyyyyyyyyyyyyyyyyyyyhhd`                                      
*                               `:oyyyyyyyyyyyyyyhyyyyyyyyyhhhso.                                    
*                             `+yyyyyyyys+sssssossyyyyyyyyyyyyhhs-..`                                
*                          `-+ydhyyyyys:.-::....-::::ohyyyyyyyhhddhyys+-.                            
*                       `-oyyyhhyyyyys.`.-::...`::--..+hyyyyyyyhhhhdhhhhys+:`                        
*                     .+syyyhhhhyyyyh/``:/++/::-+o-+.../hyyyyyyhhhhhyhhhhhhhys/-`                    
*                   .oyyyyhhhhysyyhy:.`.--//--++--....`.:shyyoohhhhhdhyyhhhhhhhhy+.                  
*                 `+yyyyyhhdhoohyyh.````.:ssosoo.```````.-yhhs/dhhddmdyyyhhhhhhhhhh+`                
*                -syyyyyyhhhdhshhhs```````ossso+`````````-hdhsodddmmddhyyyhhhhhhhhhhy-               
*               :yyhhyyyyyyyyhdhddh-``````:-.`...`````..:yhhsyhddhhhyyyyyyhhhhyyyhhhhh/              
*              /hhhyyyyyyyyyyyhhhysyo/-.``-:::::.``..-/oyhyyyyyyyyyyyyyyyhhhhhyyyyyhhhho`            
*             /hhyyyyyyyyyyyydhhooossso+:--.......-:+yysyhyyyyyyyyyyyyyyyyyhhhyyyyyyhhhho            
*            :hhyyyyyyyyyyyydhhooooooooosssoooooosssooooshyyyyyyyyyyyyyyyyyyyhhyyyyyyhhhh+           
*           `hhyyyyyyyyyyyyhhhsoooooooooooooooooooooooooshyyyyyyyyyyyyyyyyyyyyhdyyyyyyhhhh-          
*           +hyyyyyyyyyyyyydhhooooooooooooooooooooooooooshyyyyyyyyyyyyyyyyyyyyyhdyyyyyyhhhh          
*          `hhyyyyyyyyyyyyhhhsooooosyssosooooooooooosoooohyyyyyyyyyyyyyyyyyyyyhhddyyyyyyhhh:         
*          /dhyyyyyyyyyyyyhhdoossysooooossooooooooooosssohyyyyyyyyyyyyyyyyyyyyhhhdhyyyyyyhhs         
*          /shhyyyyyyyyhhhhhdsssoooooooosyooooooooooooosshyyyyyyyyyyyyyyyyyyyhhhhhdhhhhhhhhh         
*          `yhhhhhhhhhhhhhhhdssooooooooossooooooooooooooshyyyhhyyyyyyyyyyyhhhhhhhhhdyoo++//+         
*           -dhhhhhhhhyyhhhhdsooooooooooooooooooooooooooshyyyyyhhhhhhhhhhhhhhhhdhhhdoh+-s//+         
*           shyyyyyyyyyyyhhhdsooooooooooooooooooooooooooohyyyyyyyyhhhhhhhhhhhhhhhhhhhhsodsy`         
*         `oyyyyyyyyyyyyyhhhdsooooooooooooooooooooooooooohyyyyyyyyyyyyyyyyyyyyhhhhhhhhhhhhho         
*        .yyyyyyyyyyyyyyyhhhdsooooooooooooooooooooooooooohyyyyyyyyyyyyyyyyyyyyyyhhhhhhhhhhhh-        
*        :yyyyyyyyyyyyyyyhhhhsoooooooooooooooooooooooooooshyyyyyyyyyyyyyyyyyyyyyhhhhhhhhhhhh         
*         .hyyyyyyyyyyhhhhhhysooooooooooooooooooooooooooosdhhhhhhhhhhhhhhyyyyhhhhhhhhhhyhhhs         
*          +sooooosssssssssssooooooooooooooooooooooooooooosssyyyyyhhhhhhhhhhhhhhhhyyyysyhho`         
*           /soooooooooooooooooooooooooooooooooooooooooooooooooooosyyyyyyyyyyyyyssssssyhy-           
*           .yoooooooooooooooooooooooooooooooooooooooooooooooooooosssssssssyyysssssssyyh+            
*           .yooooooosssoooooooooooooooooooooooooooooooooooooooooosssssssssyyysssssssyhhs            
*            hooooooooosyssoooosooooooooooooooooooooooooooooooooosssysssssyyyssssyysyhhhh.           
*            sooooooooooossssoosoooooooooooooooooooooooooooooooosyyyysssssyyssssyyhyhhyyy/           
*            .ssysooooooooooooosooooooooooooooooooooooooooooosshhyyysssssssssssyyhho:-..`            
*              .-/ysssyysoooooooooooossssoooooooooossssssyyhyhyyyssssssssssssyyyhhs                  
*                 .:/+o++ossosoooooooossyyyyhhhhhhhhhhhhhyyyyyyyyyyyyyyyyyyyyhhhys.                  
*                     `.-.-:/s///++ooosssosssyyyyyyysyysso+//::::::::/sso++ooos/.                    
*                      .:.-:so             ````..--..``                .:/.`./-                      
*                   `-os+oshds                                          -s-../`                      
*                  `sddddhy+-.                                          .dyo/:s-                     
*                   .----.                                               :oydddd-                    
*                                                                           -///.                    
*                                                                                    
*/



/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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;
    }
}

// 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// 
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // 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);
            }
        }
    }
}

// 
/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// 
/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

/**
 * Smart contract library of mathematical functions operating with signed
 * 64.64-bit fixed point numbers.  Signed 64.64-bit fixed point number is
 * basically a simple fraction whose numerator is signed 128-bit integer and
 * denominator is 2^64.  As long as denominator is always the same, there is no
 * need to store it, thus in Solidity signed 64.64-bit fixed point numbers are
 * represented by int128 type holding only the numerator.
 */
library ABDKMath64x64 {
  /*
   * Minimum value signed 64.64-bit fixed point number may have. 
   */
  int128 private constant MIN_64x64 = -0x80000000000000000000000000000000;

  /*
   * Maximum value signed 64.64-bit fixed point number may have. 
   */
  int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;

  /**
   * Convert signed 256-bit integer number into signed 64.64-bit fixed point
   * number.  Revert on overflow.
   *
   * @param x signed 256-bit integer number
   * @return signed 64.64-bit fixed point number
   */
  function fromInt (int256 x) internal pure returns (int128) {
    require (x >= -0x8000000000000000 && x <= 0x7FFFFFFFFFFFFFFF);
    return int128 (x << 64);
  }

  /**
   * Convert signed 64.64 fixed point number into signed 64-bit integer number
   * rounding down.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64-bit integer number
   */
  function toInt (int128 x) internal pure returns (int64) {
    return int64 (x >> 64);
  }

  /**
   * Convert unsigned 256-bit integer number into signed 64.64-bit fixed point
   * number.  Revert on overflow.
   *
   * @param x unsigned 256-bit integer number
   * @return signed 64.64-bit fixed point number
   */
  function fromUInt (uint256 x) internal pure returns (int128) {
    require (x <= 0x7FFFFFFFFFFFFFFF);
    return int128 (x << 64);
  }

  /**
   * Convert signed 64.64 fixed point number into unsigned 64-bit integer
   * number rounding down.  Revert on underflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @return unsigned 64-bit integer number
   */
  function toUInt (int128 x) internal pure returns (uint64) {
    require (x >= 0);
    return uint64 (x >> 64);
  }

  /**
   * Convert signed 128.128 fixed point number into signed 64.64-bit fixed point
   * number rounding down.  Revert on overflow.
   *
   * @param x signed 128.128-bin fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function from128x128 (int256 x) internal pure returns (int128) {
    int256 result = x >> 64;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Convert signed 64.64 fixed point number into signed 128.128 fixed point
   * number.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 128.128 fixed point number
   */
  function to128x128 (int128 x) internal pure returns (int256) {
    return int256 (x) << 64;
  }

  /**
   * Calculate x + y.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function add (int128 x, int128 y) internal pure returns (int128) {
    int256 result = int256(x) + y;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Calculate x - y.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function sub (int128 x, int128 y) internal pure returns (int128) {
    int256 result = int256(x) - y;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Calculate x * y rounding down.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function mul (int128 x, int128 y) internal pure returns (int128) {
    int256 result = int256(x) * y >> 64;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Calculate x * y rounding towards zero, where x is signed 64.64 fixed point
   * number and y is signed 256-bit integer number.  Revert on overflow.
   *
   * @param x signed 64.64 fixed point number
   * @param y signed 256-bit integer number
   * @return signed 256-bit integer number
   */
  function muli (int128 x, int256 y) internal pure returns (int256) {
    if (x == MIN_64x64) {
      require (y >= -0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF &&
        y <= 0x1000000000000000000000000000000000000000000000000);
      return -y << 63;
    } else {
      bool negativeResult = false;
      if (x < 0) {
        x = -x;
        negativeResult = true;
      }
      if (y < 0) {
        y = -y; // We rely on overflow behavior here
        negativeResult = !negativeResult;
      }
      uint256 absoluteResult = mulu (x, uint256 (y));
      if (negativeResult) {
        require (absoluteResult <=
          0x8000000000000000000000000000000000000000000000000000000000000000);
        return -int256 (absoluteResult); // We rely on overflow behavior here
      } else {
        require (absoluteResult <=
          0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
        return int256 (absoluteResult);
      }
    }
  }

  /**
   * Calculate x * y rounding down, where x is signed 64.64 fixed point number
   * and y is unsigned 256-bit integer number.  Revert on overflow.
   *
   * @param x signed 64.64 fixed point number
   * @param y unsigned 256-bit integer number
   * @return unsigned 256-bit integer number
   */
  function mulu (int128 x, uint256 y) internal pure returns (uint256) {
    if (y == 0) return 0;

    require (x >= 0);

    uint256 lo = (uint256 (x) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64;
    uint256 hi = uint256 (x) * (y >> 128);

    require (hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
    hi <<= 64;

    require (hi <=
      0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo);
    return hi + lo;
  }

  /**
   * Calculate x / y rounding towards zero.  Revert on overflow or when y is
   * zero.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function div (int128 x, int128 y) internal pure returns (int128) {
    require (y != 0);
    int256 result = (int256 (x) << 64) / y;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Calculate x / y rounding towards zero, where x and y are signed 256-bit
   * integer numbers.  Revert on overflow or when y is zero.
   *
   * @param x signed 256-bit integer number
   * @param y signed 256-bit integer number
   * @return signed 64.64-bit fixed point number
   */
  function divi (int256 x, int256 y) internal pure returns (int128) {
    require (y != 0);

    bool negativeResult = false;
    if (x < 0) {
      x = -x; // We rely on overflow behavior here
      negativeResult = true;
    }
    if (y < 0) {
      y = -y; // We rely on overflow behavior here
      negativeResult = !negativeResult;
    }
    uint128 absoluteResult = divuu (uint256 (x), uint256 (y));
    if (negativeResult) {
      require (absoluteResult <= 0x80000000000000000000000000000000);
      return -int128 (absoluteResult); // We rely on overflow behavior here
    } else {
      require (absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
      return int128 (absoluteResult); // We rely on overflow behavior here
    }
  }

  /**
   * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
   * integer numbers.  Revert on overflow or when y is zero.
   *
   * @param x unsigned 256-bit integer number
   * @param y unsigned 256-bit integer number
   * @return signed 64.64-bit fixed point number
   */
  function divu (uint256 x, uint256 y) internal pure returns (int128) {
    require (y != 0);
    uint128 result = divuu (x, y);
    require (result <= uint128 (MAX_64x64));
    return int128 (result);
  }

  /**
   * Calculate -x.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function neg (int128 x) internal pure returns (int128) {
    require (x != MIN_64x64);
    return -x;
  }

  /**
   * Calculate |x|.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function abs (int128 x) internal pure returns (int128) {
    require (x != MIN_64x64);
    return x < 0 ? -x : x;
  }

  /**
   * Calculate 1 / x rounding towards zero.  Revert on overflow or when x is
   * zero.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function inv (int128 x) internal pure returns (int128) {
    require (x != 0);
    int256 result = int256 (0x100000000000000000000000000000000) / x;
    require (result >= MIN_64x64 && result <= MAX_64x64);
    return int128 (result);
  }

  /**
   * Calculate arithmetics average of x and y, i.e. (x + y) / 2 rounding down.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function avg (int128 x, int128 y) internal pure returns (int128) {
    return int128 ((int256 (x) + int256 (y)) >> 1);
  }

  /**
   * Calculate geometric average of x and y, i.e. sqrt (x * y) rounding down.
   * Revert on overflow or in case x * y is negative.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function gavg (int128 x, int128 y) internal pure returns (int128) {
    int256 m = int256 (x) * int256 (y);
    require (m >= 0);
    require (m <
        0x4000000000000000000000000000000000000000000000000000000000000000);
    return int128 (sqrtu (uint256 (m)));
  }

  /**
   * Calculate x^y assuming 0^0 is 1, where x is signed 64.64 fixed point number
   * and y is unsigned 256-bit integer number.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @param y uint256 value
   * @return signed 64.64-bit fixed point number
   */
  function pow (int128 x, uint256 y) internal pure returns (int128) {
    uint256 absoluteResult;
    bool negativeResult = false;
    if (x >= 0) {
      absoluteResult = powu (uint256 (x) << 63, y);
    } else {
      // We rely on overflow behavior here
      absoluteResult = powu (uint256 (uint128 (-x)) << 63, y);
      negativeResult = y & 1 > 0;
    }

    absoluteResult >>= 63;

    if (negativeResult) {
      require (absoluteResult <= 0x80000000000000000000000000000000);
      return -int128 (absoluteResult); // We rely on overflow behavior here
    } else {
      require (absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
      return int128 (absoluteResult); // We rely on overflow behavior here
    }
  }

  /**
   * Calculate sqrt (x) rounding down.  Revert if x < 0.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function sqrt (int128 x) internal pure returns (int128) {
    require (x >= 0);
    return int128 (sqrtu (uint256 (x) << 64));
  }

  /**
   * Calculate binary logarithm of x.  Revert if x <= 0.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function log_2 (int128 x) internal pure returns (int128) {
    require (x > 0);

    int256 msb = 0;
    int256 xc = x;
    if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; }
    if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
    if (xc >= 0x10000) { xc >>= 16; msb += 16; }
    if (xc >= 0x100) { xc >>= 8; msb += 8; }
    if (xc >= 0x10) { xc >>= 4; msb += 4; }
    if (xc >= 0x4) { xc >>= 2; msb += 2; }
    if (xc >= 0x2) msb += 1;  // No need to shift xc anymore

    int256 result = msb - 64 << 64;
    uint256 ux = uint256 (x) << uint256 (127 - msb);
    for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) {
      ux *= ux;
      uint256 b = ux >> 255;
      ux >>= 127 + b;
      result += bit * int256 (b);
    }

    return int128 (result);
  }

  /**
   * Calculate natural logarithm of x.  Revert if x <= 0.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function ln (int128 x) internal pure returns (int128) {
    require (x > 0);

    return int128 (
        uint256 (log_2 (x)) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF >> 128);
  }

  /**
   * Calculate binary exponent of x.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function exp_2 (int128 x) internal pure returns (int128) {
    require (x < 0x400000000000000000); // Overflow

    if (x < -0x400000000000000000) return 0; // Underflow

    uint256 result = 0x80000000000000000000000000000000;

    if (x & 0x8000000000000000 > 0)
      result = result * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128;
    if (x & 0x4000000000000000 > 0)
      result = result * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128;
    if (x & 0x2000000000000000 > 0)
      result = result * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128;
    if (x & 0x1000000000000000 > 0)
      result = result * 0x10B5586CF9890F6298B92B71842A98363 >> 128;
    if (x & 0x800000000000000 > 0)
      result = result * 0x1059B0D31585743AE7C548EB68CA417FD >> 128;
    if (x & 0x400000000000000 > 0)
      result = result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128;
    if (x & 0x200000000000000 > 0)
      result = result * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128;
    if (x & 0x100000000000000 > 0)
      result = result * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128;
    if (x & 0x80000000000000 > 0)
      result = result * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128;
    if (x & 0x40000000000000 > 0)
      result = result * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128;
    if (x & 0x20000000000000 > 0)
      result = result * 0x100162F3904051FA128BCA9C55C31E5DF >> 128;
    if (x & 0x10000000000000 > 0)
      result = result * 0x1000B175EFFDC76BA38E31671CA939725 >> 128;
    if (x & 0x8000000000000 > 0)
      result = result * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128;
    if (x & 0x4000000000000 > 0)
      result = result * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128;
    if (x & 0x2000000000000 > 0)
      result = result * 0x1000162E525EE054754457D5995292026 >> 128;
    if (x & 0x1000000000000 > 0)
      result = result * 0x10000B17255775C040618BF4A4ADE83FC >> 128;
    if (x & 0x800000000000 > 0)
      result = result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128;
    if (x & 0x400000000000 > 0)
      result = result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128;
    if (x & 0x200000000000 > 0)
      result = result * 0x10000162E43F4F831060E02D839A9D16D >> 128;
    if (x & 0x100000000000 > 0)
      result = result * 0x100000B1721BCFC99D9F890EA06911763 >> 128;
    if (x & 0x80000000000 > 0)
      result = result * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128;
    if (x & 0x40000000000 > 0)
      result = result * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128;
    if (x & 0x20000000000 > 0)
      result = result * 0x100000162E430E5A18F6119E3C02282A5 >> 128;
    if (x & 0x10000000000 > 0)
      result = result * 0x1000000B1721835514B86E6D96EFD1BFE >> 128;
    if (x & 0x8000000000 > 0)
      result = result * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128;
    if (x & 0x4000000000 > 0)
      result = result * 0x10000002C5C8601CC6B9E94213C72737A >> 128;
    if (x & 0x2000000000 > 0)
      result = result * 0x1000000162E42FFF037DF38AA2B219F06 >> 128;
    if (x & 0x1000000000 > 0)
      result = result * 0x10000000B17217FBA9C739AA5819F44F9 >> 128;
    if (x & 0x800000000 > 0)
      result = result * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128;
    if (x & 0x400000000 > 0)
      result = result * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128;
    if (x & 0x200000000 > 0)
      result = result * 0x10000000162E42FF0999CE3541B9FFFCF >> 128;
    if (x & 0x100000000 > 0)
      result = result * 0x100000000B17217F80F4EF5AADDA45554 >> 128;
    if (x & 0x80000000 > 0)
      result = result * 0x10000000058B90BFBF8479BD5A81B51AD >> 128;
    if (x & 0x40000000 > 0)
      result = result * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128;
    if (x & 0x20000000 > 0)
      result = result * 0x100000000162E42FEFB2FED257559BDAA >> 128;
    if (x & 0x10000000 > 0)
      result = result * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128;
    if (x & 0x8000000 > 0)
      result = result * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128;
    if (x & 0x4000000 > 0)
      result = result * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128;
    if (x & 0x2000000 > 0)
      result = result * 0x1000000000162E42FEFA494F1478FDE05 >> 128;
    if (x & 0x1000000 > 0)
      result = result * 0x10000000000B17217F7D20CF927C8E94C >> 128;
    if (x & 0x800000 > 0)
      result = result * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128;
    if (x & 0x400000 > 0)
      result = result * 0x100000000002C5C85FDF477B662B26945 >> 128;
    if (x & 0x200000 > 0)
      result = result * 0x10000000000162E42FEFA3AE53369388C >> 128;
    if (x & 0x100000 > 0)
      result = result * 0x100000000000B17217F7D1D351A389D40 >> 128;
    if (x & 0x80000 > 0)
      result = result * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128;
    if (x & 0x40000 > 0)
      result = result * 0x1000000000002C5C85FDF4741BEA6E77E >> 128;
    if (x & 0x20000 > 0)
      result = result * 0x100000000000162E42FEFA39FE95583C2 >> 128;
    if (x & 0x10000 > 0)
      result = result * 0x1000000000000B17217F7D1CFB72B45E1 >> 128;
    if (x & 0x8000 > 0)
      result = result * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128;
    if (x & 0x4000 > 0)
      result = result * 0x10000000000002C5C85FDF473E242EA38 >> 128;
    if (x & 0x2000 > 0)
      result = result * 0x1000000000000162E42FEFA39F02B772C >> 128;
    if (x & 0x1000 > 0)
      result = result * 0x10000000000000B17217F7D1CF7D83C1A >> 128;
    if (x & 0x800 > 0)
      result = result * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128;
    if (x & 0x400 > 0)
      result = result * 0x100000000000002C5C85FDF473DEA871F >> 128;
    if (x & 0x200 > 0)
      result = result * 0x10000000000000162E42FEFA39EF44D91 >> 128;
    if (x & 0x100 > 0)
      result = result * 0x100000000000000B17217F7D1CF79E949 >> 128;
    if (x & 0x80 > 0)
      result = result * 0x10000000000000058B90BFBE8E7BCE544 >> 128;
    if (x & 0x40 > 0)
      result = result * 0x1000000000000002C5C85FDF473DE6ECA >> 128;
    if (x & 0x20 > 0)
      result = result * 0x100000000000000162E42FEFA39EF366F >> 128;
    if (x & 0x10 > 0)
      result = result * 0x1000000000000000B17217F7D1CF79AFA >> 128;
    if (x & 0x8 > 0)
      result = result * 0x100000000000000058B90BFBE8E7BCD6D >> 128;
    if (x & 0x4 > 0)
      result = result * 0x10000000000000002C5C85FDF473DE6B2 >> 128;
    if (x & 0x2 > 0)
      result = result * 0x1000000000000000162E42FEFA39EF358 >> 128;
    if (x & 0x1 > 0)
      result = result * 0x10000000000000000B17217F7D1CF79AB >> 128;

    result >>= uint256 (63 - (x >> 64));
    require (result <= uint256 (MAX_64x64));

    return int128 (result);
  }

  /**
   * Calculate natural exponent of x.  Revert on overflow.
   *
   * @param x signed 64.64-bit fixed point number
   * @return signed 64.64-bit fixed point number
   */
  function exp (int128 x) internal pure returns (int128) {
    require (x < 0x400000000000000000); // Overflow

    if (x < -0x400000000000000000) return 0; // Underflow

    return exp_2 (
        int128 (int256 (x) * 0x171547652B82FE1777D0FFDA0D23A7D12 >> 128));
  }

  /**
   * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
   * integer numbers.  Revert on overflow or when y is zero.
   *
   * @param x unsigned 256-bit integer number
   * @param y unsigned 256-bit integer number
   * @return unsigned 64.64-bit fixed point number
   */
  function divuu (uint256 x, uint256 y) private pure returns (uint128) {
    require (y != 0);

    uint256 result;

    if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
      result = (x << 64) / y;
    else {
      uint256 msb = 192;
      uint256 xc = x >> 192;
      if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
      if (xc >= 0x10000) { xc >>= 16; msb += 16; }
      if (xc >= 0x100) { xc >>= 8; msb += 8; }
      if (xc >= 0x10) { xc >>= 4; msb += 4; }
      if (xc >= 0x4) { xc >>= 2; msb += 2; }
      if (xc >= 0x2) msb += 1;  // No need to shift xc anymore

      result = (x << 255 - msb) / ((y - 1 >> msb - 191) + 1);
      require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);

      uint256 hi = result * (y >> 128);
      uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);

      uint256 xh = x >> 192;
      uint256 xl = x << 64;

      if (xl < lo) xh -= 1;
      xl -= lo; // We rely on overflow behavior here
      lo = hi << 128;
      if (xl < lo) xh -= 1;
      xl -= lo; // We rely on overflow behavior here

      assert (xh == hi >> 128);

      result += xl / y;
    }

    require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
    return uint128 (result);
  }

  /**
   * Calculate x^y assuming 0^0 is 1, where x is unsigned 129.127 fixed point
   * number and y is unsigned 256-bit integer number.  Revert on overflow.
   *
   * @param x unsigned 129.127-bit fixed point number
   * @param y uint256 value
   * @return unsigned 129.127-bit fixed point number
   */
  function powu (uint256 x, uint256 y) private pure returns (uint256) {
    if (y == 0) return 0x80000000000000000000000000000000;
    else if (x == 0) return 0;
    else {
      int256 msb = 0;
      uint256 xc = x;
      if (xc >= 0x100000000000000000000000000000000) { xc >>= 128; msb += 128; }
      if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; }
      if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
      if (xc >= 0x10000) { xc >>= 16; msb += 16; }
      if (xc >= 0x100) { xc >>= 8; msb += 8; }
      if (xc >= 0x10) { xc >>= 4; msb += 4; }
      if (xc >= 0x4) { xc >>= 2; msb += 2; }
      if (xc >= 0x2) msb += 1;  // No need to shift xc anymore

      int256 xe = msb - 127;
      if (xe > 0) x >>= uint256 (xe);
      else x <<= uint256 (-xe);

      uint256 result = 0x80000000000000000000000000000000;
      int256 re = 0;

      while (y > 0) {
        if (y & 1 > 0) {
          result = result * x;
          y -= 1;
          re += xe;
          if (result >=
            0x8000000000000000000000000000000000000000000000000000000000000000) {
            result >>= 128;
            re += 1;
          } else result >>= 127;
          if (re < -127) return 0; // Underflow
          require (re < 128); // Overflow
        } else {
          x = x * x;
          y >>= 1;
          xe <<= 1;
          if (x >=
            0x8000000000000000000000000000000000000000000000000000000000000000) {
            x >>= 128;
            xe += 1;
          } else x >>= 127;
          if (xe < -127) return 0; // Underflow
          require (xe < 128); // Overflow
        }
      }

      if (re > 0) result <<= uint256 (re);
      else if (re < 0) result >>= uint256 (-re);

      return result;
    }
  }

  /**
   * Calculate sqrt (x) rounding down, where x is unsigned 256-bit integer
   * number.
   *
   * @param x unsigned 256-bit integer number
   * @return unsigned 128-bit integer number
   */
  function sqrtu (uint256 x) private pure returns (uint128) {
    if (x == 0) return 0;
    else {
      uint256 xx = x;
      uint256 r = 1;
      if (xx >= 0x100000000000000000000000000000000) { xx >>= 128; r <<= 64; }
      if (xx >= 0x10000000000000000) { xx >>= 64; r <<= 32; }
      if (xx >= 0x100000000) { xx >>= 32; r <<= 16; }
      if (xx >= 0x10000) { xx >>= 16; r <<= 8; }
      if (xx >= 0x100) { xx >>= 8; r <<= 4; }
      if (xx >= 0x10) { xx >>= 4; r <<= 2; }
      if (xx >= 0x8) { r <<= 1; }
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1;
      r = (r + x / r) >> 1; // Seven iterations should be enough
      uint256 r1 = x / r;
      return uint128 (r < r1 ? r : r1);
    }
  }
}



/**
* YOMAMA is so fat, she needed an entire maths library to provide the calculations
* 
* 
*/



contract Yomama is ERC20, Ownable, Pausable {
    using SafeMath for uint256;


    uint256 public constant halfLifeTimeInSeconds = 86400;

    uint256 public burnStartTimeStamp;

    address public stakingVaultAddress = address(0);

    bool public burnEnabled = false;

    mapping(address => bool) public merchantAddresses;

    uint256 private constant startingBurnPercentage = 50;

    // plateau value of 3.125 using 3 digits precision
    uint256 private constant _plateauBurnFactor = 3125;
    
    // just to do div/mul with 3 digits precision
    uint256 private constant _PRECISIONCONVERT = 1000;
    
    uint256 private _PRECISIONCONVERT_TOPERCENT;

    constructor(
        address _presaleAddress,
        address _liquidityAddress,
        address _yieldFarmingAddress,
        address _teamAddress,
        address _promotionsAddress
    )
    public
    Ownable()
    ERC20("yomama.finance", "YOMA")
    {   
        _PRECISIONCONVERT_TOPERCENT = _PRECISIONCONVERT.mul(100);   
        _mintAllTokens(_presaleAddress, _liquidityAddress, _yieldFarmingAddress, _teamAddress, _promotionsAddress);
        _pause();
    }

    /**
     * @dev Sets a merchant address (liquidity provision)
     */
    function addMerchantAddress(address _address, bool _burnFlag) public onlyOwner {
        merchantAddresses[_address] = _burnFlag;
    }

    function _mintAllTokens(
        address _presaleAddress,
        address _liquidityAddress,
        address _yieldFarmingAddress,
        address _teamAddress,
        address _promotionsAddress
    ) 
    internal
    {
        // presale 7000 tokens
        _mint(_presaleAddress, 7000 * 1e18);

        // liquidity provision 2500 tokens
        _mint(_liquidityAddress, 2500 * 1e18);

        // yield farming vault 9800 tokens
        _mint(_yieldFarmingAddress, 9800 * 1e18);

        // team 500 tokens
        _mint(_teamAddress, 500 * 1e18);

        // promotions 200 tokens
        _mint(_promotionsAddress, 200 * 1e18);       
    }

    function _isMerchant(address _address) internal view returns (bool) {
        return merchantAddresses[_address];
    }

    // updates the staking vault address on contract deploy
    function setStakingVaultAddress(address _address) external onlyOwner {
        stakingVaultAddress = _address;
    }

    function _transfer(address sender, address recipient, uint256 amount)
        internal
        virtual
        override
    {   
        // if sending from merchant address
        if(_isMerchant(sender)){
            uint256 amountToBurn = amount.mul(getCurrentBurn()).div(_PRECISIONCONVERT_TOPERCENT);
            super._transfer(sender, stakingVaultAddress, amountToBurn);
            amount = amount.sub(amountToBurn);
        }
        super._transfer(sender, recipient, amount);
    }

    function getCurrentBurn() internal view returns (uint256) {
        // burn calculation with the help of ABDKMath library

        // get time since burn started
        uint256 _timeSinceBurnStart = now - burnStartTimeStamp;
        
        uint256 burnf;

        // if 4 days have passed
        if(_timeSinceBurnStart>345600){
            burnf = _plateauBurnFactor;
        } else{
            int128 _normalizedTime = ABDKMath64x64.divu(_timeSinceBurnStart,86400);
            int128 _halfLifeFraction = ABDKMath64x64.exp_2(_normalizedTime);
            
            // calculate the burn fraction with PRECISIONCONVERT
            int128 burnFraction = ABDKMath64x64.mul(ABDKMath64x64.div(ABDKMath64x64.fromUInt(50), _halfLifeFraction), ABDKMath64x64.fromUInt(_PRECISIONCONVERT));
            
            burnf = uint256(ABDKMath64x64.toUInt(burnFraction));
        }
        return burnf;
    }

    // starts the burn timer on initial liquidity provision using blocktime
    function startBurnTimer() external onlyOwner {
        require(!burnEnabled, "Burn can only be enabled once");
        burnStartTimeStamp = now;
        burnEnabled = true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_presaleAddress","type":"address"},{"internalType":"address","name":"_liquidityAddress","type":"address"},{"internalType":"address","name":"_yieldFarmingAddress","type":"address"},{"internalType":"address","name":"_teamAddress","type":"address"},{"internalType":"address","name":"_promotionsAddress","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_burnFlag","type":"bool"}],"name":"addMerchantAddress","outputs":[],"stateMutability":"nonpayable","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":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnStartTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halfLifeTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"merchantAddresses","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setStakingVaultAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingVaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBurnTimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760146101000a81548160ff0219169083151502179055503480156200006e57600080fd5b50604051620036f7380380620036f7833981810160405260a08110156200009457600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600e81526020017f796f6d616d612e66696e616e63650000000000000000000000000000000000008152506040518060400160405280600481526020017f594f4d41000000000000000000000000000000000000000000000000000000008152508160039080519060200190620001519291906200074a565b5080600490805190602001906200016a9291906200074a565b506012600560006101000a81548160ff021916908360ff160217905550505060006200019b620002a860201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000600560156101000a81548160ff0219169083151502179055506200027260646103e8620002b060201b6200194e1790919060201c565b6009819055506200028d85858585856200033b60201b60201c565b6200029d620003cb60201b60201c565b5050505050620007f9565b600033905090565b600080831415620002c5576000905062000335565b6000828402905082848281620002d757fe5b041462000330576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620036d66021913960400191505060405180910390fd5b809150505b92915050565b620003578569017b7883c06916600000620004de60201b60201c565b620003728468878678326eac900000620004de60201b60201c565b6200038e8369021342520d5fec200000620004de60201b60201c565b620003a982681b1ae4d6e2ef500000620004de60201b60201c565b620003c481680ad78ebc5ac6200000620004de60201b60201c565b5050505050565b600560159054906101000a900460ff16156200044f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560156101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200049b620002a860201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200059660008383620006bc60201b60201c565b620005b281600254620006c160201b620017e61790919060201c565b60028190555062000610816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006c160201b620017e61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200078d57805160ff1916838001178555620007be565b82800160010185558215620007be579182015b82811115620007bd578251825591602001919060010190620007a0565b5b509050620007cd9190620007d1565b5090565b620007f691905b80821115620007f2576000816000905550600101620007d8565b5090565b90565b612ecd80620008096000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610634578063a81bf07f1461069a578063a9059cbb146106a4578063dd62ed3e1461070a578063f2fde38b14610782578063fb87ffa2146107c65761014d565b806370a0823114610471578063715018a6146104c957806383f191e2146104d35780638da5cb5b1461052357806395d89b411461056d5780639bb62426146105f05761014d565b80632746f34b116101155780632746f34b1461033b578063313ce5671461035957806339160dd21461037d57806339509351146103c75780635c975abb1461042d5780635dc96d161461044f5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780632131518b1461025957806323b872dd146102b5575b600080fd5b61015a6107e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610886565b604051808215151515815260200191505060405180910390f35b6102436108a4565b6040518082815260200191505060405180910390f35b61029b6004803603602081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108ae565b604051808215151515815260200191505060405180910390f35b610321600480360360608110156102cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ce565b604051808215151515815260200191505060405180910390f35b6103436109a7565b6040518082815260200191505060405180910390f35b6103616109ae565b604051808260ff1660ff16815260200191505060405180910390f35b6103856109c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610413600480360360408110156103dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109eb565b604051808215151515815260200191505060405180910390f35b610435610a9e565b604051808215151515815260200191505060405180910390f35b610457610ab5565b604051808215151515815260200191505060405180910390f35b6104b36004803603602081101561048757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ac8565b6040518082815260200191505060405180910390f35b6104d1610b10565b005b610521600480360360408110156104e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610c9b565b005b61052b610dc0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610575610dea565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b557808201518184015260208101905061059a565b50505050905090810190601f1680156105e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106326004803603602081101561060657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e8c565b005b6106806004803603604081101561064a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f9a565b604051808215151515815260200191505060405180910390f35b6106a2611067565b005b6106f0600480360360408110156106ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d8565b604051808215151515815260200191505060405180910390f35b61076c6004803603604081101561072057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111f6565b6040518082815260200191505060405180910390f35b6107c46004803603602081101561079857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061127d565b005b6107ce61148d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b600061089a610893611493565b848461149b565b6001905092915050565b6000600254905090565b60086020528060005260406000206000915054906101000a900460ff1681565b60006108db848484611692565b61099c846108e7611493565b61099785604051806060016040528060288152602001612e0260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061094d611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b61149b565b600190509392505050565b6201518081565b6000600560009054906101000a900460ff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a946109f8611493565b84610a8f8560016000610a09611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e690919063ffffffff16565b61149b565b6001905092915050565b6000600560159054906101000a900460ff16905090565b600760149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b18611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ca3611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b5050505050905090565b610e94611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061105d610fa7611493565b8461105885604051806060016040528060258152602001612e736025913960016000610fd1611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b61149b565b6001905092915050565b61106f611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760149054906101000a900460ff16156111b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4275726e2063616e206f6e6c7920626520656e61626c6564206f6e636500000081525060200191505060405180910390fd5b426006819055506001600760146101000a81548160ff021916908315150217905550565b60006111ec6111e5611493565b8484611692565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611285611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e4f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612d996022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61169b8361186e565b156117165760006116d06009546116c26116b36118c4565b8561194e90919063ffffffff16565b6119d490919063ffffffff16565b90506116ff84600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a1e565b6117128183611cdf90919063ffffffff16565b9150505b611721838383611a1e565b505050565b60008383111582906117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561179857808201518184015260208101905061177d565b50505050905090810190601f1680156117c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080600654420390506000620546008211156118e557610c359050611946565b60006118f48362015180611d29565b9050600061190182611d91565b9050600061192b61191b6119156032612991565b846129b4565b6119266103e8612991565b612a37565b905061193681612aa2565b67ffffffffffffffff1693505050505b809250505090565b60008083141561196157600090506119ce565b600082840290508284828161197257fe5b04146119c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612de16021913960400191505060405180910390fd5b809150505b92915050565b6000611a1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ac3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e2a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612d506023913960400191505060405180910390fd5b611b35838383612b89565b611ba081604051806060016040528060268152602001612dbb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c33816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000611d2183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611726565b905092915050565b600080821415611d3857600080fd5b6000611d448484612b8e565b90506f7fffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff16816fffffffffffffffffffffffffffffffff161115611d8757600080fd5b8091505092915050565b60006840000000000000000082600f0b12611dab57600080fd5b7fffffffffffffffffffffffffffffffffffffffffffffffc0000000000000000082600f0b1215611ddf576000905061298c565b60006f80000000000000000000000000000000905060006780000000000000008416600f0b1315611e2557608070016a09e667f3bcc908b2fb1366ea957d3e8202901c90505b60006740000000000000008416600f0b1315611e565760807001306fe0a31b7152de8d5a46305c85edec8202901c90505b60006720000000000000008416600f0b1315611e875760807001172b83c7d517adcdf7c8c50eb14a791f8202901c90505b60006710000000000000008416600f0b1315611eb857608070010b5586cf9890f6298b92b71842a983638202901c90505b60006708000000000000008416600f0b1315611ee95760807001059b0d31585743ae7c548eb68ca417fd8202901c90505b60006704000000000000008416600f0b1315611f1a576080700102c9a3e778060ee6f7caca4f7a29bde88202901c90505b60006702000000000000008416600f0b1315611f4b57608070010163da9fb33356d84a66ae336dcdfa3f8202901c90505b60006701000000000000008416600f0b1315611f7c576080700100b1afa5abcbed6129ab13ec11dc95438202901c90505b600066800000000000008416600f0b1315611fac57608070010058c86da1c09ea1ff19d294cf2f679b8202901c90505b600066400000000000008416600f0b1315611fdc5760807001002c605e2e8cec506d21bfc89a23a00f8202901c90505b600066200000000000008416600f0b131561200c576080700100162f3904051fa128bca9c55c31e5df8202901c90505b600066100000000000008416600f0b131561203c5760807001000b175effdc76ba38e31671ca9397258202901c90505b600066080000000000008416600f0b131561206c576080700100058ba01fb9f96d6cacd4b180917c3d8202901c90505b600066040000000000008416600f0b131561209c57608070010002c5cc37da9491d0985c348c68e7b38202901c90505b600066020000000000008416600f0b13156120cc5760807001000162e525ee054754457d59952920268202901c90505b600066010000000000008416600f0b13156120fc57608070010000b17255775c040618bf4a4ade83fc8202901c90505b6000658000000000008416600f0b131561212b5760807001000058b91b5bc9ae2eed81e9b7d4cfab8202901c90505b6000654000000000008416600f0b131561215a576080700100002c5c89d5ec6ca4d7c8acc017b7c98202901c90505b6000652000000000008416600f0b131561218957608070010000162e43f4f831060e02d839a9d16d8202901c90505b6000651000000000008416600f0b13156121b8576080700100000b1721bcfc99d9f890ea069117638202901c90505b6000650800000000008416600f0b13156121e757608070010000058b90cf1e6d97f9ca14dbcc16288202901c90505b6000650400000000008416600f0b13156122165760807001000002c5c863b73f016468f6bac5ca2b8202901c90505b6000650200000000008416600f0b1315612245576080700100000162e430e5a18f6119e3c02282a58202901c90505b6000650100000000008416600f0b13156122745760807001000000b1721835514b86e6d96efd1bfe8202901c90505b60006480000000008416600f0b13156122a2576080700100000058b90c0b48c6be5df846c5b2ef8202901c90505b60006440000000008416600f0b13156122d057608070010000002c5c8601cc6b9e94213c72737a8202901c90505b60006420000000008416600f0b13156122fe5760807001000000162e42fff037df38aa2b219f068202901c90505b60006410000000008416600f0b131561232c57608070010000000b17217fba9c739aa5819f44f98202901c90505b60006408000000008416600f0b131561235a5760807001000000058b90bfcdee5acd3c1cedc8238202901c90505b60006404000000008416600f0b1315612388576080700100000002c5c85fe31f35a6a30da1be508202901c90505b60006402000000008416600f0b13156123b657608070010000000162e42ff0999ce3541b9fffcf8202901c90505b60006401000000008416600f0b13156123e4576080700100000000b17217f80f4ef5aadda455548202901c90505b600063800000008416600f0b131561241157608070010000000058b90bfbf8479bd5a81b51ad8202901c90505b600063400000008416600f0b131561243e5760807001000000002c5c85fdf84bd62ae30a74cc8202901c90505b600063200000008416600f0b131561246b576080700100000000162e42fefb2fed257559bdaa8202901c90505b600063100000008416600f0b13156124985760807001000000000b17217f7d5a7716bba4a9ae8202901c90505b600063080000008416600f0b13156124c5576080700100000000058b90bfbe9ddbac5e109cce8202901c90505b600063040000008416600f0b13156124f257608070010000000002c5c85fdf4b15de6f17eb0d8202901c90505b600063020000008416600f0b131561251f5760807001000000000162e42fefa494f1478fde058202901c90505b600063010000008416600f0b131561254c57608070010000000000b17217f7d20cf927c8e94c8202901c90505b6000628000008416600f0b13156125785760807001000000000058b90bfbe8f71cb4e4b33d8202901c90505b6000624000008416600f0b13156125a4576080700100000000002c5c85fdf477b662b269458202901c90505b6000622000008416600f0b13156125d057608070010000000000162e42fefa3ae53369388c8202901c90505b6000621000008416600f0b13156125fc576080700100000000000b17217f7d1d351a389d408202901c90505b6000620800008416600f0b131561262857608070010000000000058b90bfbe8e8b2d3d4ede8202901c90505b6000620400008416600f0b13156126545760807001000000000002c5c85fdf4741bea6e77e8202901c90505b6000620200008416600f0b1315612680576080700100000000000162e42fefa39fe95583c28202901c90505b6000620100008416600f0b13156126ac5760807001000000000000b17217f7d1cfb72b45e18202901c90505b60006180008416600f0b13156126d7576080700100000000000058b90bfbe8e7cc35c3f08202901c90505b60006140008416600f0b131561270257608070010000000000002c5c85fdf473e242ea388202901c90505b60006120008416600f0b131561272d5760807001000000000000162e42fefa39f02b772c8202901c90505b60006110008416600f0b131561275857608070010000000000000b17217f7d1cf7d83c1a8202901c90505b60006108008416600f0b13156127835760807001000000000000058b90bfbe8e7bdcbe2e8202901c90505b60006104008416600f0b13156127ae576080700100000000000002c5c85fdf473dea871f8202901c90505b60006102008416600f0b13156127d957608070010000000000000162e42fefa39ef44d918202901c90505b60006101008416600f0b1315612804576080700100000000000000b17217f7d1cf79e9498202901c90505b600060808416600f0b131561282e57608070010000000000000058b90bfbe8e7bce5448202901c90505b600060408416600f0b13156128585760807001000000000000002c5c85fdf473de6eca8202901c90505b600060208416600f0b1315612882576080700100000000000000162e42fefa39ef366f8202901c90505b600060108416600f0b13156128ac5760807001000000000000000b17217f7d1cf79afa8202901c90505b600060088416600f0b13156128d6576080700100000000000000058b90bfbe8e7bcd6d8202901c90505b600060048416600f0b131561290057608070010000000000000002c5c85fdf473de6b28202901c90505b600060028416600f0b131561292a5760807001000000000000000162e42fefa39ef3588202901c90505b600060018416600f0b131561295457608070010000000000000000b17217f7d1cf79ab8202901c90505b604083600f0b901d603f03600f0b81901c90506f7fffffffffffffffffffffffffffffff600f0b81111561298757600080fd5b809150505b919050565b6000677fffffffffffffff8211156129a857600080fd5b604082901b9050919050565b60008082600f0b14156129c657600080fd5b600082600f0b604085600f0b901b816129db57fe5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015612a2457506f7fffffffffffffffffffffffffffffff600f0b8113155b612a2d57600080fd5b8091505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015612a8f57506f7fffffffffffffffffffffffffffffff600f0b8113155b612a9857600080fd5b8091505092915050565b60008082600f0b1215612ab457600080fd5b604082600f0b901d9050919050565b60008083118290612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b34578082015181840152602081019050612b19565b50505050905090810190601f168015612b615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b7b57fe5b049050809150509392505050565b505050565b600080821415612b9d57600080fd5b600077ffffffffffffffffffffffffffffffffffffffffffffffff8411612bd35782604085901b81612bcb57fe5b049050612d28565b600060c09050600060c086901c90506401000000008110612bfc57602081901c90506020820191505b620100008110612c1457601081901c90506010820191505b6101008110612c2b57600881901c90506008820191505b60108110612c4157600481901c90506004820191505b60048110612c5757600281901c90506002820191505b60028110612c66576001820191505b600160bf830360018703901c018260ff0387901b81612c8157fe5b0492506fffffffffffffffffffffffffffffffff831115612ca157600080fd5b6000608086901c8402905060006fffffffffffffffffffffffffffffffff871685029050600060c089901c9050600060408a901b905082811015612ce6576001820391505b8281039050608084901b925082811015612d01576001820391505b8281039050608084901c8214612d1357fe5b888181612d1c57fe5b04870196505050505050505b6fffffffffffffffffffffffffffffffff811115612d4557600080fd5b809150509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d1eab974fea0333c7a08b60a7b12ccdbcaf40a1617a791ccce27573ab0d4067664736f6c63430006060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7700000000000000000000000019c46d86d35e823793cd4fc3c38541e278d1c30f0000000000000000000000002568d26a1da03edded09097236bb04b6096f7a060000000000000000000000001bcb60f3e65414dfea6cb5b65a12947bede1850c00000000000000000000000031cc59177054973c7c6a09e228f7a39de2c0b10a000000000000000000000000d7bd1fba90efadd6ef4947c9b67d905f7ebe35f8

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610634578063a81bf07f1461069a578063a9059cbb146106a4578063dd62ed3e1461070a578063f2fde38b14610782578063fb87ffa2146107c65761014d565b806370a0823114610471578063715018a6146104c957806383f191e2146104d35780638da5cb5b1461052357806395d89b411461056d5780639bb62426146105f05761014d565b80632746f34b116101155780632746f34b1461033b578063313ce5671461035957806339160dd21461037d57806339509351146103c75780635c975abb1461042d5780635dc96d161461044f5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780632131518b1461025957806323b872dd146102b5575b600080fd5b61015a6107e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610886565b604051808215151515815260200191505060405180910390f35b6102436108a4565b6040518082815260200191505060405180910390f35b61029b6004803603602081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108ae565b604051808215151515815260200191505060405180910390f35b610321600480360360608110156102cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ce565b604051808215151515815260200191505060405180910390f35b6103436109a7565b6040518082815260200191505060405180910390f35b6103616109ae565b604051808260ff1660ff16815260200191505060405180910390f35b6103856109c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610413600480360360408110156103dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109eb565b604051808215151515815260200191505060405180910390f35b610435610a9e565b604051808215151515815260200191505060405180910390f35b610457610ab5565b604051808215151515815260200191505060405180910390f35b6104b36004803603602081101561048757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ac8565b6040518082815260200191505060405180910390f35b6104d1610b10565b005b610521600480360360408110156104e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610c9b565b005b61052b610dc0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610575610dea565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b557808201518184015260208101905061059a565b50505050905090810190601f1680156105e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106326004803603602081101561060657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e8c565b005b6106806004803603604081101561064a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f9a565b604051808215151515815260200191505060405180910390f35b6106a2611067565b005b6106f0600480360360408110156106ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d8565b604051808215151515815260200191505060405180910390f35b61076c6004803603604081101561072057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111f6565b6040518082815260200191505060405180910390f35b6107c46004803603602081101561079857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061127d565b005b6107ce61148d565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b600061089a610893611493565b848461149b565b6001905092915050565b6000600254905090565b60086020528060005260406000206000915054906101000a900460ff1681565b60006108db848484611692565b61099c846108e7611493565b61099785604051806060016040528060288152602001612e0260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061094d611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b61149b565b600190509392505050565b6201518081565b6000600560009054906101000a900460ff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a946109f8611493565b84610a8f8560016000610a09611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e690919063ffffffff16565b61149b565b6001905092915050565b6000600560159054906101000a900460ff16905090565b600760149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b18611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ca3611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e825780601f10610e5757610100808354040283529160200191610e82565b820191906000526020600020905b815481529060010190602001808311610e6557829003601f168201915b5050505050905090565b610e94611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061105d610fa7611493565b8461105885604051806060016040528060258152602001612e736025913960016000610fd1611493565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b61149b565b6001905092915050565b61106f611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760149054906101000a900460ff16156111b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4275726e2063616e206f6e6c7920626520656e61626c6564206f6e636500000081525060200191505060405180910390fd5b426006819055506001600760146101000a81548160ff021916908315150217905550565b60006111ec6111e5611493565b8484611692565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611285611493565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612d736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e4f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612d996022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b61169b8361186e565b156117165760006116d06009546116c26116b36118c4565b8561194e90919063ffffffff16565b6119d490919063ffffffff16565b90506116ff84600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a1e565b6117128183611cdf90919063ffffffff16565b9150505b611721838383611a1e565b505050565b60008383111582906117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561179857808201518184015260208101905061177d565b50505050905090810190601f1680156117c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080600654420390506000620546008211156118e557610c359050611946565b60006118f48362015180611d29565b9050600061190182611d91565b9050600061192b61191b6119156032612991565b846129b4565b6119266103e8612991565b612a37565b905061193681612aa2565b67ffffffffffffffff1693505050505b809250505090565b60008083141561196157600090506119ce565b600082840290508284828161197257fe5b04146119c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612de16021913960400191505060405180910390fd5b809150505b92915050565b6000611a1683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ac3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e2a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612d506023913960400191505060405180910390fd5b611b35838383612b89565b611ba081604051806060016040528060268152602001612dbb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117269092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c33816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000611d2183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611726565b905092915050565b600080821415611d3857600080fd5b6000611d448484612b8e565b90506f7fffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff16816fffffffffffffffffffffffffffffffff161115611d8757600080fd5b8091505092915050565b60006840000000000000000082600f0b12611dab57600080fd5b7fffffffffffffffffffffffffffffffffffffffffffffffc0000000000000000082600f0b1215611ddf576000905061298c565b60006f80000000000000000000000000000000905060006780000000000000008416600f0b1315611e2557608070016a09e667f3bcc908b2fb1366ea957d3e8202901c90505b60006740000000000000008416600f0b1315611e565760807001306fe0a31b7152de8d5a46305c85edec8202901c90505b60006720000000000000008416600f0b1315611e875760807001172b83c7d517adcdf7c8c50eb14a791f8202901c90505b60006710000000000000008416600f0b1315611eb857608070010b5586cf9890f6298b92b71842a983638202901c90505b60006708000000000000008416600f0b1315611ee95760807001059b0d31585743ae7c548eb68ca417fd8202901c90505b60006704000000000000008416600f0b1315611f1a576080700102c9a3e778060ee6f7caca4f7a29bde88202901c90505b60006702000000000000008416600f0b1315611f4b57608070010163da9fb33356d84a66ae336dcdfa3f8202901c90505b60006701000000000000008416600f0b1315611f7c576080700100b1afa5abcbed6129ab13ec11dc95438202901c90505b600066800000000000008416600f0b1315611fac57608070010058c86da1c09ea1ff19d294cf2f679b8202901c90505b600066400000000000008416600f0b1315611fdc5760807001002c605e2e8cec506d21bfc89a23a00f8202901c90505b600066200000000000008416600f0b131561200c576080700100162f3904051fa128bca9c55c31e5df8202901c90505b600066100000000000008416600f0b131561203c5760807001000b175effdc76ba38e31671ca9397258202901c90505b600066080000000000008416600f0b131561206c576080700100058ba01fb9f96d6cacd4b180917c3d8202901c90505b600066040000000000008416600f0b131561209c57608070010002c5cc37da9491d0985c348c68e7b38202901c90505b600066020000000000008416600f0b13156120cc5760807001000162e525ee054754457d59952920268202901c90505b600066010000000000008416600f0b13156120fc57608070010000b17255775c040618bf4a4ade83fc8202901c90505b6000658000000000008416600f0b131561212b5760807001000058b91b5bc9ae2eed81e9b7d4cfab8202901c90505b6000654000000000008416600f0b131561215a576080700100002c5c89d5ec6ca4d7c8acc017b7c98202901c90505b6000652000000000008416600f0b131561218957608070010000162e43f4f831060e02d839a9d16d8202901c90505b6000651000000000008416600f0b13156121b8576080700100000b1721bcfc99d9f890ea069117638202901c90505b6000650800000000008416600f0b13156121e757608070010000058b90cf1e6d97f9ca14dbcc16288202901c90505b6000650400000000008416600f0b13156122165760807001000002c5c863b73f016468f6bac5ca2b8202901c90505b6000650200000000008416600f0b1315612245576080700100000162e430e5a18f6119e3c02282a58202901c90505b6000650100000000008416600f0b13156122745760807001000000b1721835514b86e6d96efd1bfe8202901c90505b60006480000000008416600f0b13156122a2576080700100000058b90c0b48c6be5df846c5b2ef8202901c90505b60006440000000008416600f0b13156122d057608070010000002c5c8601cc6b9e94213c72737a8202901c90505b60006420000000008416600f0b13156122fe5760807001000000162e42fff037df38aa2b219f068202901c90505b60006410000000008416600f0b131561232c57608070010000000b17217fba9c739aa5819f44f98202901c90505b60006408000000008416600f0b131561235a5760807001000000058b90bfcdee5acd3c1cedc8238202901c90505b60006404000000008416600f0b1315612388576080700100000002c5c85fe31f35a6a30da1be508202901c90505b60006402000000008416600f0b13156123b657608070010000000162e42ff0999ce3541b9fffcf8202901c90505b60006401000000008416600f0b13156123e4576080700100000000b17217f80f4ef5aadda455548202901c90505b600063800000008416600f0b131561241157608070010000000058b90bfbf8479bd5a81b51ad8202901c90505b600063400000008416600f0b131561243e5760807001000000002c5c85fdf84bd62ae30a74cc8202901c90505b600063200000008416600f0b131561246b576080700100000000162e42fefb2fed257559bdaa8202901c90505b600063100000008416600f0b13156124985760807001000000000b17217f7d5a7716bba4a9ae8202901c90505b600063080000008416600f0b13156124c5576080700100000000058b90bfbe9ddbac5e109cce8202901c90505b600063040000008416600f0b13156124f257608070010000000002c5c85fdf4b15de6f17eb0d8202901c90505b600063020000008416600f0b131561251f5760807001000000000162e42fefa494f1478fde058202901c90505b600063010000008416600f0b131561254c57608070010000000000b17217f7d20cf927c8e94c8202901c90505b6000628000008416600f0b13156125785760807001000000000058b90bfbe8f71cb4e4b33d8202901c90505b6000624000008416600f0b13156125a4576080700100000000002c5c85fdf477b662b269458202901c90505b6000622000008416600f0b13156125d057608070010000000000162e42fefa3ae53369388c8202901c90505b6000621000008416600f0b13156125fc576080700100000000000b17217f7d1d351a389d408202901c90505b6000620800008416600f0b131561262857608070010000000000058b90bfbe8e8b2d3d4ede8202901c90505b6000620400008416600f0b13156126545760807001000000000002c5c85fdf4741bea6e77e8202901c90505b6000620200008416600f0b1315612680576080700100000000000162e42fefa39fe95583c28202901c90505b6000620100008416600f0b13156126ac5760807001000000000000b17217f7d1cfb72b45e18202901c90505b60006180008416600f0b13156126d7576080700100000000000058b90bfbe8e7cc35c3f08202901c90505b60006140008416600f0b131561270257608070010000000000002c5c85fdf473e242ea388202901c90505b60006120008416600f0b131561272d5760807001000000000000162e42fefa39f02b772c8202901c90505b60006110008416600f0b131561275857608070010000000000000b17217f7d1cf7d83c1a8202901c90505b60006108008416600f0b13156127835760807001000000000000058b90bfbe8e7bdcbe2e8202901c90505b60006104008416600f0b13156127ae576080700100000000000002c5c85fdf473dea871f8202901c90505b60006102008416600f0b13156127d957608070010000000000000162e42fefa39ef44d918202901c90505b60006101008416600f0b1315612804576080700100000000000000b17217f7d1cf79e9498202901c90505b600060808416600f0b131561282e57608070010000000000000058b90bfbe8e7bce5448202901c90505b600060408416600f0b13156128585760807001000000000000002c5c85fdf473de6eca8202901c90505b600060208416600f0b1315612882576080700100000000000000162e42fefa39ef366f8202901c90505b600060108416600f0b13156128ac5760807001000000000000000b17217f7d1cf79afa8202901c90505b600060088416600f0b13156128d6576080700100000000000000058b90bfbe8e7bcd6d8202901c90505b600060048416600f0b131561290057608070010000000000000002c5c85fdf473de6b28202901c90505b600060028416600f0b131561292a5760807001000000000000000162e42fefa39ef3588202901c90505b600060018416600f0b131561295457608070010000000000000000b17217f7d1cf79ab8202901c90505b604083600f0b901d603f03600f0b81901c90506f7fffffffffffffffffffffffffffffff600f0b81111561298757600080fd5b809150505b919050565b6000677fffffffffffffff8211156129a857600080fd5b604082901b9050919050565b60008082600f0b14156129c657600080fd5b600082600f0b604085600f0b901b816129db57fe5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015612a2457506f7fffffffffffffffffffffffffffffff600f0b8113155b612a2d57600080fd5b8091505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b8112158015612a8f57506f7fffffffffffffffffffffffffffffff600f0b8113155b612a9857600080fd5b8091505092915050565b60008082600f0b1215612ab457600080fd5b604082600f0b901d9050919050565b60008083118290612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b34578082015181840152602081019050612b19565b50505050905090810190601f168015612b615780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b7b57fe5b049050809150509392505050565b505050565b600080821415612b9d57600080fd5b600077ffffffffffffffffffffffffffffffffffffffffffffffff8411612bd35782604085901b81612bcb57fe5b049050612d28565b600060c09050600060c086901c90506401000000008110612bfc57602081901c90506020820191505b620100008110612c1457601081901c90506010820191505b6101008110612c2b57600881901c90506008820191505b60108110612c4157600481901c90506004820191505b60048110612c5757600281901c90506002820191505b60028110612c66576001820191505b600160bf830360018703901c018260ff0387901b81612c8157fe5b0492506fffffffffffffffffffffffffffffffff831115612ca157600080fd5b6000608086901c8402905060006fffffffffffffffffffffffffffffffff871685029050600060c089901c9050600060408a901b905082811015612ce6576001820391505b8281039050608084901b925082811015612d01576001820391505b8281039050608084901c8214612d1357fe5b888181612d1c57fe5b04870196505050505050505b6fffffffffffffffffffffffffffffffff811115612d4557600080fd5b809150509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d1eab974fea0333c7a08b60a7b12ccdbcaf40a1617a791ccce27573ab0d4067664736f6c63430006060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000019c46d86d35e823793cd4fc3c38541e278d1c30f0000000000000000000000002568d26a1da03edded09097236bb04b6096f7a060000000000000000000000001bcb60f3e65414dfea6cb5b65a12947bede1850c00000000000000000000000031cc59177054973c7c6a09e228f7a39de2c0b10a000000000000000000000000d7bd1fba90efadd6ef4947c9b67d905f7ebe35f8

-----Decoded View---------------
Arg [0] : _presaleAddress (address): 0x19c46d86d35e823793CD4fc3C38541E278D1C30f
Arg [1] : _liquidityAddress (address): 0x2568d26A1DA03edDed09097236bb04B6096f7A06
Arg [2] : _yieldFarmingAddress (address): 0x1bCB60f3E65414dfEa6cB5b65a12947beDE1850c
Arg [3] : _teamAddress (address): 0x31cC59177054973c7c6a09E228F7a39dE2c0B10A
Arg [4] : _promotionsAddress (address): 0xD7bd1FbA90efadD6ef4947c9B67D905f7ebe35f8

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000019c46d86d35e823793cd4fc3c38541e278d1c30f
Arg [1] : 0000000000000000000000002568d26a1da03edded09097236bb04b6096f7a06
Arg [2] : 0000000000000000000000001bcb60f3e65414dfea6cb5b65a12947bede1850c
Arg [3] : 00000000000000000000000031cc59177054973c7c6a09e228f7a39de2c0b10a
Arg [4] : 000000000000000000000000d7bd1fba90efadd6ef4947c9b67d905f7ebe35f8


Deployed Bytecode Sourcemap

63970:4102:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63970:4102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;29855:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;29855:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31961:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31961:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30930:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64258:49;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;64258:49:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32604:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;32604:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;64058:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30782:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;64162:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33334:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;33334:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26579:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;64218:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31093:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31093:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7212:148;;;:::i;:::-;;65228:137;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;65228:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6570:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30057:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30057:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66239:118;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;66239:118:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;34055:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;34055:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;67885:182;;;:::i;:::-;;31425:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31425:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31663:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;31663:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7515:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;7515:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;64120:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29855:83;29892:13;29925:5;29918:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29855:83;:::o;31961:169::-;32044:4;32061:39;32070:12;:10;:12::i;:::-;32084:7;32093:6;32061:8;:39::i;:::-;32118:4;32111:11;;31961:169;;;;:::o;30930:100::-;30983:7;31010:12;;31003:19;;30930:100;:::o;64258:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;32604:321::-;32710:4;32727:36;32737:6;32745:9;32756:6;32727:9;:36::i;:::-;32774:121;32783:6;32791:12;:10;:12::i;:::-;32805:89;32843:6;32805:89;;;;;;;;;;;;;;;;;:11;:19;32817:6;32805:19;;;;;;;;;;;;;;;:33;32825:12;:10;:12::i;:::-;32805:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32774:8;:121::i;:::-;32913:4;32906:11;;32604:321;;;;;:::o;64058:53::-;64106:5;64058:53;:::o;30782:83::-;30823:5;30848:9;;;;;;;;;;;30841:16;;30782:83;:::o;64162:47::-;;;;;;;;;;;;;:::o;33334:218::-;33422:4;33439:83;33448:12;:10;:12::i;:::-;33462:7;33471:50;33510:10;33471:11;:25;33483:12;:10;:12::i;:::-;33471:25;;;;;;;;;;;;;;;:34;33497:7;33471:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33439:8;:83::i;:::-;33540:4;33533:11;;33334:218;;;;:::o;26579:78::-;26618:4;26642:7;;;;;;;;;;;26635:14;;26579:78;:::o;64218:31::-;;;;;;;;;;;;;:::o;31093:119::-;31159:7;31186:9;:18;31196:7;31186:18;;;;;;;;;;;;;;;;31179:25;;31093:119;;;:::o;7212:148::-;6792:12;:10;:12::i;:::-;6782:22;;:6;;;;;;;;;;;:22;;;6774:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7319:1:::1;7282:40;;7303:6;;;;;;;;;;;7282:40;;;;;;;;;;;;7350:1;7333:6;;:19;;;;;;;;;;;;;;;;;;7212:148::o:0;65228:137::-;6792:12;:10;:12::i;:::-;6782:22;;:6;;;;;;;;;;;:22;;;6774:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65348:9:::1;65318:17;:27;65336:8;65318:27;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;65228:137:::0;;:::o;6570:79::-;6608:7;6635:6;;;;;;;;;;;6628:13;;6570:79;:::o;30057:87::-;30096:13;30129:7;30122:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30057:87;:::o;66239:118::-;6792:12;:10;:12::i;:::-;6782:22;;:6;;;;;;;;;;;:22;;;6774:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66341:8:::1;66319:19;;:30;;;;;;;;;;;;;;;;;;66239:118:::0;:::o;34055:269::-;34148:4;34165:129;34174:12;:10;:12::i;:::-;34188:7;34197:96;34236:15;34197:96;;;;;;;;;;;;;;;;;:11;:25;34209:12;:10;:12::i;:::-;34197:25;;;;;;;;;;;;;;;:34;34223:7;34197:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;34165:8;:129::i;:::-;34312:4;34305:11;;34055:269;;;;:::o;67885:182::-;6792:12;:10;:12::i;:::-;6782:22;;:6;;;;;;;;;;;:22;;;6774:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67950:11:::1;;;;;;;;;;;67949:12;67941:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;68027:3;68006:18;:24;;;;68055:4;68041:11;;:18;;;;;;;;;;;;;;;;;;67885:182::o:0;31425:175::-;31511:4;31528:42;31538:12;:10;:12::i;:::-;31552:9;31563:6;31528:9;:42::i;:::-;31588:4;31581:11;;31425:175;;;;:::o;31663:151::-;31752:7;31779:11;:18;31791:5;31779:18;;;;;;;;;;;;;;;:27;31798:7;31779:27;;;;;;;;;;;;;;;;31772:34;;31663:151;;;;:::o;7515:244::-;6792:12;:10;:12::i;:::-;6782:22;;:6;;;;;;;;;;;:22;;;6774:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7624:1:::1;7604:22;;:8;:22;;;;7596:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7714:8;7685:38;;7706:6;;;;;;;;;;;7685:38;;;;;;;;;;;;7743:8;7734:6;;:17;;;;;;;;;;;;;;;;;;7515:244:::0;:::o;64120:33::-;;;;:::o;5203:106::-;5256:15;5291:10;5284:17;;5203:106;:::o;37202:346::-;37321:1;37304:19;;:5;:19;;;;37296:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37402:1;37383:21;;:7;:21;;;;37375:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37486:6;37456:11;:18;37468:5;37456:18;;;;;;;;;;;;;;;:27;37475:7;37456:27;;;;;;;;;;;;;;;:36;;;;37524:7;37508:32;;37517:5;37508:32;;;37533:6;37508:32;;;;;;;;;;;;;;;;;;37202:346;;;:::o;66365:502::-;66555:19;66567:6;66555:11;:19::i;:::-;66552:255;;;66590:20;66613:61;66646:27;;66613:28;66624:16;:14;:16::i;:::-;66613:6;:10;;:28;;;;:::i;:::-;:32;;:61;;;;:::i;:::-;66590:84;;66689:58;66705:6;66713:19;;;;;;;;;;;66734:12;66689:15;:58::i;:::-;66771:24;66782:12;66771:6;:10;;:24;;;;:::i;:::-;66762:33;;66552:255;;66817:42;66833:6;66841:9;66852:6;66817:15;:42::i;:::-;66365:502;;;:::o;12232:192::-;12318:7;12351:1;12346;:6;;12354:12;12338:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12338:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12378:9;12394:1;12390;:5;12378:17;;12415:1;12408:8;;;12232:192;;;;;:::o;11329:181::-;11387:7;11407:9;11423:1;11419;:5;11407:17;;11448:1;11443;:6;;11435:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11501:1;11494:8;;;11329:181;;;;:::o;66049:121::-;66111:4;66135:17;:27;66153:8;66135:27;;;;;;;;;;;;;;;;;;;;;;;;;66128:34;;66049:121;;;:::o;66875:925::-;66924:7;67049:27;67085:18;;67079:3;:24;67049:54;;67124:13;67207:6;67187:19;:26;67184:586;;;64479:4;67229:26;;67184:586;;;67287:22;67312:45;67331:19;67351:5;67312:18;:45::i;:::-;67287:70;;67372:24;67399:36;67419:15;67399:19;:36::i;:::-;67372:63;;67530:19;67552:126;67570:64;67588:26;67611:2;67588:22;:26::i;:::-;67616:17;67570;:64::i;:::-;67636:41;64592:4;67636:22;:41::i;:::-;67552:17;:126::i;:::-;67530:148;;67723:34;67744:12;67723:20;:34::i;:::-;67715:43;;67707:51;;67184:586;;;;67787:5;67780:12;;;;66875:925;:::o;12683:471::-;12741:7;12991:1;12986;:6;12982:47;;;13016:1;13009:8;;;;12982:47;13041:9;13057:1;13053;:5;13041:17;;13086:1;13081;13077;:5;;;;;;:10;13069:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13145:1;13138:8;;;12683:471;;;;;:::o;13630:132::-;13688:7;13715:39;13719:1;13722;13715:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;13708:46;;13630:132;;;;:::o;34814:539::-;34938:1;34920:20;;:6;:20;;;;34912:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35022:1;35001:23;;:9;:23;;;;34993:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35077:47;35098:6;35106:9;35117:6;35077:20;:47::i;:::-;35157:71;35179:6;35157:71;;;;;;;;;;;;;;;;;:9;:17;35167:6;35157:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;35137:9;:17;35147:6;35137:17;;;;;;;;;;;;;;;:91;;;;35262:32;35287:6;35262:9;:20;35272:9;35262:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;35239:9;:20;35249:9;35239:20;;;;;;;;;;;;;;;:55;;;;35327:9;35310:35;;35319:6;35310:35;;;35338:6;35310:35;;;;;;;;;;;;;;;;;;34814:539;;;:::o;11793:136::-;11851:7;11878:43;11882:1;11885;11878:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;11871:50;;11793:136;;;;:::o;46912:208::-;46972:6;47001:1;46996;:6;;46987:16;;12:1:-1;9;2:12;46987:16:0;47010:14;47027:12;47034:1;47037;47027:5;:12::i;:::-;47010:29;;39431:34;47055:29;;:6;:29;;;;47046:39;;12:1:-1;9;2:12;47046:39:0;47107:6;47092:22;;;46912:208;;;;:::o;52013:6664::-;52062:6;52090:20;52086:1;:24;;;52077:34;;12:1:-1;9;2:12;52077:34:0;52140:21;52136:1;:25;;;52132:39;;;52170:1;52163:8;;;;52132:39;52193:14;52210:34;52193:51;;52282:1;52261:18;52257:1;:22;:26;;;52253:99;;;52349:3;52310:35;52301:6;:44;:51;;52292:60;;52253:99;52388:1;52367:18;52363:1;:22;:26;;;52359:99;;;52455:3;52416:35;52407:6;:44;:51;;52398:60;;52359:99;52494:1;52473:18;52469:1;:22;:26;;;52465:99;;;52561:3;52522:35;52513:6;:44;:51;;52504:60;;52465:99;52600:1;52579:18;52575:1;:22;:26;;;52571:99;;;52667:3;52628:35;52619:6;:44;:51;;52610:60;;52571:99;52705:1;52685:17;52681:1;:21;:25;;;52677:98;;;52772:3;52733:35;52724:6;:44;:51;;52715:60;;52677:98;52810:1;52790:17;52786:1;:21;:25;;;52782:98;;;52877:3;52838:35;52829:6;:44;:51;;52820:60;;52782:98;52915:1;52895:17;52891:1;:21;:25;;;52887:98;;;52982:3;52943:35;52934:6;:44;:51;;52925:60;;52887:98;53020:1;53000:17;52996:1;:21;:25;;;52992:98;;;53087:3;53048:35;53039:6;:44;:51;;53030:60;;52992:98;53124:1;53105:16;53101:1;:20;:24;;;53097:97;;;53191:3;53152:35;53143:6;:44;:51;;53134:60;;53097:97;53228:1;53209:16;53205:1;:20;:24;;;53201:97;;;53295:3;53256:35;53247:6;:44;:51;;53238:60;;53201:97;53332:1;53313:16;53309:1;:20;:24;;;53305:97;;;53399:3;53360:35;53351:6;:44;:51;;53342:60;;53305:97;53436:1;53417:16;53413:1;:20;:24;;;53409:97;;;53503:3;53464:35;53455:6;:44;:51;;53446:60;;53409:97;53539:1;53521:15;53517:1;:19;:23;;;53513:96;;;53606:3;53567:35;53558:6;:44;:51;;53549:60;;53513:96;53642:1;53624:15;53620:1;:19;:23;;;53616:96;;;53709:3;53670:35;53661:6;:44;:51;;53652:60;;53616:96;53745:1;53727:15;53723:1;:19;:23;;;53719:96;;;53812:3;53773:35;53764:6;:44;:51;;53755:60;;53719:96;53848:1;53830:15;53826:1;:19;:23;;;53822:96;;;53915:3;53876:35;53867:6;:44;:51;;53858:60;;53822:96;53950:1;53933:14;53929:1;:18;:22;;;53925:95;;;54017:3;53978:35;53969:6;:44;:51;;53960:60;;53925:95;54052:1;54035:14;54031:1;:18;:22;;;54027:95;;;54119:3;54080:35;54071:6;:44;:51;;54062:60;;54027:95;54154:1;54137:14;54133:1;:18;:22;;;54129:95;;;54221:3;54182:35;54173:6;:44;:51;;54164:60;;54129:95;54256:1;54239:14;54235:1;:18;:22;;;54231:95;;;54323:3;54284:35;54275:6;:44;:51;;54266:60;;54231:95;54357:1;54341:13;54337:1;:17;:21;;;54333:94;;;54424:3;54385:35;54376:6;:44;:51;;54367:60;;54333:94;54458:1;54442:13;54438:1;:17;:21;;;54434:94;;;54525:3;54486:35;54477:6;:44;:51;;54468:60;;54434:94;54559:1;54543:13;54539:1;:17;:21;;;54535:94;;;54626:3;54587:35;54578:6;:44;:51;;54569:60;;54535:94;54660:1;54644:13;54640:1;:17;:21;;;54636:94;;;54727:3;54688:35;54679:6;:44;:51;;54670:60;;54636:94;54760:1;54745:12;54741:1;:16;:20;;;54737:93;;;54827:3;54788:35;54779:6;:44;:51;;54770:60;;54737:93;54860:1;54845:12;54841:1;:16;:20;;;54837:93;;;54927:3;54888:35;54879:6;:44;:51;;54870:60;;54837:93;54960:1;54945:12;54941:1;:16;:20;;;54937:93;;;55027:3;54988:35;54979:6;:44;:51;;54970:60;;54937:93;55060:1;55045:12;55041:1;:16;:20;;;55037:93;;;55127:3;55088:35;55079:6;:44;:51;;55070:60;;55037:93;55159:1;55145:11;55141:1;:15;:19;;;55137:92;;;55226:3;55187:35;55178:6;:44;:51;;55169:60;;55137:92;55258:1;55244:11;55240:1;:15;:19;;;55236:92;;;55325:3;55286:35;55277:6;:44;:51;;55268:60;;55236:92;55357:1;55343:11;55339:1;:15;:19;;;55335:92;;;55424:3;55385:35;55376:6;:44;:51;;55367:60;;55335:92;55456:1;55442:11;55438:1;:15;:19;;;55434:92;;;55523:3;55484:35;55475:6;:44;:51;;55466:60;;55434:92;55554:1;55541:10;55537:1;:14;:18;;;55533:91;;;55621:3;55582:35;55573:6;:44;:51;;55564:60;;55533:91;55652:1;55639:10;55635:1;:14;:18;;;55631:91;;;55719:3;55680:35;55671:6;:44;:51;;55662:60;;55631:91;55750:1;55737:10;55733:1;:14;:18;;;55729:91;;;55817:3;55778:35;55769:6;:44;:51;;55760:60;;55729:91;55848:1;55835:10;55831:1;:14;:18;;;55827:91;;;55915:3;55876:35;55867:6;:44;:51;;55858:60;;55827:91;55945:1;55933:9;55929:1;:13;:17;;;55925:90;;;56012:3;55973:35;55964:6;:44;:51;;55955:60;;55925:90;56042:1;56030:9;56026:1;:13;:17;;;56022:90;;;56109:3;56070:35;56061:6;:44;:51;;56052:60;;56022:90;56139:1;56127:9;56123:1;:13;:17;;;56119:90;;;56206:3;56167:35;56158:6;:44;:51;;56149:60;;56119:90;56236:1;56224:9;56220:1;:13;:17;;;56216:90;;;56303:3;56264:35;56255:6;:44;:51;;56246:60;;56216:90;56332:1;56321:8;56317:1;:12;:16;;;56313:89;;;56399:3;56360:35;56351:6;:44;:51;;56342:60;;56313:89;56428:1;56417:8;56413:1;:12;:16;;;56409:89;;;56495:3;56456:35;56447:6;:44;:51;;56438:60;;56409:89;56524:1;56513:8;56509:1;:12;:16;;;56505:89;;;56591:3;56552:35;56543:6;:44;:51;;56534:60;;56505:89;56620:1;56609:8;56605:1;:12;:16;;;56601:89;;;56687:3;56648:35;56639:6;:44;:51;;56630:60;;56601:89;56715:1;56705:7;56701:1;:11;:15;;;56697:88;;;56782:3;56743:35;56734:6;:44;:51;;56725:60;;56697:88;56810:1;56800:7;56796:1;:11;:15;;;56792:88;;;56877:3;56838:35;56829:6;:44;:51;;56820:60;;56792:88;56905:1;56895:7;56891:1;:11;:15;;;56887:88;;;56972:3;56933:35;56924:6;:44;:51;;56915:60;;56887:88;57000:1;56990:7;56986:1;:11;:15;;;56982:88;;;57067:3;57028:35;57019:6;:44;:51;;57010:60;;56982:88;57094:1;57085:6;57081:1;:10;:14;;;57077:87;;;57161:3;57122:35;57113:6;:44;:51;;57104:60;;57077:87;57188:1;57179:6;57175:1;:10;:14;;;57171:87;;;57255:3;57216:35;57207:6;:44;:51;;57198:60;;57171:87;57282:1;57273:6;57269:1;:10;:14;;;57265:87;;;57349:3;57310:35;57301:6;:44;:51;;57292:60;;57265:87;57376:1;57367:6;57363:1;:10;:14;;;57359:87;;;57443:3;57404:35;57395:6;:44;:51;;57386:60;;57359:87;57469:1;57461:5;57457:1;:9;:13;;;57453:86;;;57536:3;57497:35;57488:6;:44;:51;;57479:60;;57453:86;57562:1;57554:5;57550:1;:9;:13;;;57546:86;;;57629:3;57590:35;57581:6;:44;:51;;57572:60;;57546:86;57655:1;57647:5;57643:1;:9;:13;;;57639:86;;;57722:3;57683:35;57674:6;:44;:51;;57665:60;;57639:86;57748:1;57740:5;57736:1;:9;:13;;;57732:86;;;57815:3;57776:35;57767:6;:44;:51;;57758:60;;57732:86;57840:1;57833:4;57829:1;:8;:12;;;57825:85;;;57907:3;57868:35;57859:6;:44;:51;;57850:60;;57825:85;57932:1;57925:4;57921:1;:8;:12;;;57917:85;;;57999:3;57960:35;57951:6;:44;:51;;57942:60;;57917:85;58024:1;58017:4;58013:1;:8;:12;;;58009:85;;;58091:3;58052:35;58043:6;:44;:51;;58034:60;;58009:85;58116:1;58109:4;58105:1;:8;:12;;;58101:85;;;58183:3;58144:35;58135:6;:44;:51;;58126:60;;58101:85;58207:1;58201:3;58197:1;:7;:11;;;58193:84;;;58274:3;58235:35;58226:6;:44;:51;;58217:60;;58193:84;58298:1;58292:3;58288:1;:7;:11;;;58284:84;;;58365:3;58326:35;58317:6;:44;:51;;58308:60;;58284:84;58389:1;58383:3;58379:1;:7;:11;;;58375:84;;;58456:3;58417:35;58408:6;:44;:51;;58399:60;;58375:84;58480:1;58474:3;58470:1;:7;:11;;;58466:84;;;58547:3;58508:35;58499:6;:44;:51;;58490:60;;58466:84;58590:2;58585:1;:7;;;;58579:2;:14;58570:24;;58559:35;;;;;39431:34;58620:19;;58610:6;:29;;58601:39;;12:1:-1;9;2:12;58601:39:0;58664:6;58649:22;;;52013:6664;;;;:::o;40413:137::-;40466:6;40495:18;40490:1;:23;;40481:33;;12:1:-1;9;2:12;40481:33:0;40541:2;40536:1;:7;;40521:23;;40413:137;;;:::o;45304:227::-;45361:6;45390:1;45385;:6;;;;45376:16;;12:1:-1;9;2:12;45376:16:0;45399:13;45436:1;45415:22;;45430:2;45424:1;45416:10;;:16;;45415:22;;;;;;45399:38;;39273:35;45453:19;;:6;:19;;:42;;;;;39431:34;45476:19;;:6;:19;;45453:42;45444:52;;12:1:-1;9;2:12;45444:52:0;45518:6;45503:22;;;45304:227;;;;:::o;42745:201::-;42802:6;42817:13;42850:2;42845:1;42833:13;;42840:1;42833:9;;:13;:19;;42817:35;;39273;42868:19;;:6;:19;;:42;;;;;39431:34;42891:19;;:6;:19;;42868:42;42859:52;;12:1:-1;9;2:12;42859:52:0;42933:6;42918:22;;;42745:201;;;;:::o;40797:117::-;40847:6;40876:1;40871;:6;;;;40862:16;;12:1:-1;9;2:12;40862:16:0;40905:2;40900:1;:7;;;;40885:23;;40797:117;;;:::o;14258:278::-;14344:7;14376:1;14372;:5;14379:12;14364:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;14364:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14403:9;14419:1;14415;:5;;;;;;14403:17;;14527:1;14520:8;;;14258:278;;;;;:::o;38573:92::-;;;;:::o;59451:1257::-;59511:7;59541:1;59536;:6;;59527:16;;12:1:-1;9;2:12;59527:16:0;59552:14;59584:50;59579:1;:55;59575:1035;;59664:1;59658:2;59653:1;:7;;59652:13;;;;;;59643:22;;59575:1035;;;59686:11;59700:3;59686:17;;59712:10;59730:3;59725:1;:8;;59712:21;;59752:11;59746:2;:17;59742:48;;59774:2;59767:9;;;;;59785:2;59778:9;;;;59742:48;59808:7;59802:2;:13;59798:44;;59826:2;59819:9;;;;;59837:2;59830:9;;;;59798:44;59860:5;59854:2;:11;59850:40;;59876:1;59869:8;;;;;59886:1;59879:8;;;;59850:40;59908:4;59902:2;:10;59898:39;;59923:1;59916:8;;;;;59933:1;59926:8;;;;59898:39;59955:3;59949:2;:9;59945:38;;59969:1;59962:8;;;;;59979:1;59972:8;;;;59945:38;60001:3;59995:2;:9;59991:23;;60013:1;60006:8;;;;59991:23;60109:1;60102:3;60096;:9;60091:1;60087;:5;:18;;60086:24;60078:3;60072;:9;60067:1;:14;;60066:45;;;;;;60057:54;;60139:34;60129:6;:44;;60120:54;;12:1:-1;9;2:12;60120:54:0;60185:10;60213:3;60208:1;:8;;60198:6;:19;60185:32;;60226:10;60253:34;60249:1;:38;60239:6;:49;60226:62;;60299:10;60317:3;60312:1;:8;;60299:21;;60329:10;60347:2;60342:1;:7;;60329:20;;60369:2;60364;:7;60360:20;;;60379:1;60373:7;;;;60360:20;60395:2;60389:8;;;;60454:3;60448:2;:9;;60443:14;;60475:2;60470;:7;60466:20;;;60485:1;60479:7;;;;60466:20;60501:2;60495:8;;;;60571:3;60565:2;:9;;60559:2;:15;60551:24;;;;60601:1;60596:2;:6;;;;;;60586:16;;;;59575:1035;;;;;;;60637:34;60627:6;:44;;60618:54;;12:1:-1;9;2:12;60618:54:0;60695:6;60679:23;;;59451:1257;;;;:::o

Swarm Source

ipfs://d1eab974fea0333c7a08b60a7b12ccdbcaf40a1617a791ccce27573ab0d40676
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.