ETH Price: $3,061.43 (+1.99%)
Gas: 6 Gwei

Contract

0x5B685863494C33F344081F75e5430C260c224A32
 

Overview

ETH Balance

0.021 ETH

Eth Value

$64.29 (@ $3,061.43/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve196737562024-04-17 7:39:232 days ago1713339563IN
CORE MultiChain: CMCX Token
0 ETH0.000562711.42172299
Transfer196737512024-04-17 7:38:232 days ago1713339503IN
CORE MultiChain: CMCX Token
0 ETH0.00081414.84510251
Approve196518572024-04-14 6:01:595 days ago1713074519IN
CORE MultiChain: CMCX Token
0 ETH0.0005508211.18062387
Transfer196518472024-04-14 5:59:595 days ago1713074399IN
CORE MultiChain: CMCX Token
0 ETH0.0006649212.12630951
Transfer195366002024-03-29 2:10:4722 days ago1711678247IN
CORE MultiChain: CMCX Token
0 ETH0.0008300825.19599962
Transfer195308972024-03-28 6:42:4722 days ago1711608167IN
CORE MultiChain: CMCX Token
0 ETH0.0013589524.7834827
Transfer194518892024-03-17 3:26:4734 days ago1710646007IN
CORE MultiChain: CMCX Token
0 ETH0.0014654626.7318762
Transfer193363212024-02-29 23:02:4750 days ago1709247767IN
CORE MultiChain: CMCX Token
0 ETH0.0030651861.24860503
Transfer193351772024-02-29 19:12:4750 days ago1709233967IN
CORE MultiChain: CMCX Token
0 ETH0.0019795760.15294887
Transfer193350392024-02-29 18:45:1150 days ago1709232311IN
CORE MultiChain: CMCX Token
0 ETH0.0033339366.65080378
Transfer193272062024-02-28 16:26:2351 days ago1709137583IN
CORE MultiChain: CMCX Token
0 ETH0.0044818481.75410968
Transfer192632562024-02-19 17:27:4760 days ago1708363667IN
CORE MultiChain: CMCX Token
0 ETH0.0025709251.40925717
Transfer192632082024-02-19 17:17:4760 days ago1708363067IN
CORE MultiChain: CMCX Token
0 ETH0.002938153.60626634
Transfer192486632024-02-17 16:07:4762 days ago1708186067IN
CORE MultiChain: CMCX Token
0 ETH0.0013074123.84358476
Transfer191296432024-01-31 23:09:5979 days ago1706742599IN
CORE MultiChain: CMCX Token
0 ETH0.0011232334.11925233
Transfer189354392024-01-04 17:26:11106 days ago1704389171IN
CORE MultiChain: CMCX Token
0 ETH0.0014843439.35069985
Transfer189311732024-01-04 3:04:59107 days ago1704337499IN
CORE MultiChain: CMCX Token
0 ETH0.0011319930
Transfer189044102023-12-31 8:56:23110 days ago1704012983IN
CORE MultiChain: CMCX Token
0 ETH0.0008111414.79306753
Transfer188101042023-12-18 3:08:35124 days ago1702868915IN
CORE MultiChain: CMCX Token
0 ETH0.0060964111.18128306
Transfer187987712023-12-16 12:57:35125 days ago1702731455IN
CORE MultiChain: CMCX Token
0 ETH0.00752101137.13225566
Transfer187353322023-12-07 15:33:35134 days ago1701963215IN
CORE MultiChain: CMCX Token
0 ETH0.0051848394.55684222
Approve187000512023-12-02 16:56:11139 days ago1701536171IN
CORE MultiChain: CMCX Token
0 ETH0.0016434633.35900911
Transfer187000482023-12-02 16:55:35139 days ago1701536135IN
CORE MultiChain: CMCX Token
0 ETH0.001921135.03561136
Transfer186699392023-11-28 11:51:23143 days ago1701172283IN
CORE MultiChain: CMCX Token
0 ETH0.0014162325.8281433
Transfer186633222023-11-27 13:37:35144 days ago1701092255IN
CORE MultiChain: CMCX Token
0 ETH0.0019384935.35278248
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CMCXToken

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-22
*/

pragma solidity 0.8.1; /*

======================= Quick Stats ===================
    => Name        : CORE MultiChain Token
    => Symbol      : CMCX
    => Total supply: 20,000,000,000 (20 Billion)
    => Decimals    : 18
============= Independant Audit of the code ============
    => Community Audit by Bug Bounty program
----------------------------------------------------------------------------
 SPDX-License-Identifier: MIT
 Copyright (c) 2021 CORE. ( https://www.coremultichain.com/ )
-----------------------------------------------------------------------------
*/ 

//*******************************************************************//
//------------------------ SafeMath Library -------------------------//
//*******************************************************************//
/**
    * @title SafeMath
    * @dev Math operations with safety checks that throw on error
    */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
        return 0;
    }
    uint256 c = a * b;
    require(c / a == b, 'SafeMath mul failed');
    return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, 'SafeMath sub failed');
    return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, 'SafeMath add failed');
    return c;
    }
}


//*******************************************************************//
//------------------ Contract to Manage Ownership -------------------//
//*******************************************************************//
    
contract owned {
    address payable public owner;
    address payable internal newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() {
        owner = payable(msg.sender);
        emit OwnershipTransferred(address(0), owner);
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address payable _newOwner) external onlyOwner {
        newOwner = _newOwner;
    }

    //this flow is to prevent transferring ownership to wrong wallet by mistake
    function acceptOwnership() external {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = payable(address(0));
    }
}


interface IERC1363Spender {
    /*
     * Note: the ERC-165 identifier for this interface is 0x7b04a2d0.
     * 0x7b04a2d0 === bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))
     */

    /**
     * @notice Handle the approval of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after an `approve`. This function MAY throw to revert and reject the
     * approval. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param sender address The address which called `approveAndCall` function
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` unless throwing
     */
    function onApprovalReceived(address sender, uint256 amount, bytes calldata data) external returns (bytes4);
}

interface IERC1363Receiver {
    /*
     * Note: the ERC-165 identifier for this interface is 0x88a7ca5c.
     * 0x88a7ca5c === bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))
     */

    /**
     * @notice Handle the receipt of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the
     * transfer. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param operator address The address which called `transferAndCall` or `transferFromAndCall` function
     * @param sender address The address which are token transferred from
     * @param amount uint256 The amount of tokens transferred
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` unless throwing
     */
    function onTransferReceived(address operator, address sender, uint256 amount, bytes calldata data) external returns (bytes4);
}

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(type(IERC165).interfaceId);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}
 

    
//****************************************************************************//
//---------------------        MAIN CODE STARTS HERE     ---------------------//
//****************************************************************************//
    
contract CMCXToken is owned, ERC165 {
    

    /*===============================
    =         DATA STORAGE          =
    ===============================*/

    // Public variables of the token
    using SafeMath for uint256;
    string constant private _name = "CORE MultiChain Token";
    string constant private _symbol = "CMCX";
    uint256 constant private _decimals = 18;
    uint256 private _totalSupply = 20000000000 * (10**_decimals);         //20 billion tokens
    uint256 constant public maxSupply = 20000000000 * (10**_decimals);    //20 billion tokens
    bool public safeguard;  //putting safeguard on will halt all non-owner functions

    // This creates a mapping with all data storage
    mapping (address => uint256) private _balanceOf;
    mapping (address => mapping (address => uint256)) private _allowance;


    /*===============================
    =         PUBLIC EVENTS         =
    ===============================*/

    // This generates a public event of token transfer
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);
        
    // This generates a public event for frozen (blacklisting) accounts
    event FrozenAccounts(address target, bool frozen);
    
    // This will log approval of token Transfer
    event Approval(address indexed from, address indexed spender, uint256 value);



    /*======================================
    =       STANDARD ERC20 FUNCTIONS       =
    ======================================*/
    
    /**
     * Returns name of token 
     */
    function name() external pure returns(string memory){
        return _name;
    }
    
    /**
     * Returns symbol of token 
     */
    function symbol() external pure returns(string memory){
        return _symbol;
    }
    
    /**
     * Returns decimals of token 
     */
    function decimals() external pure returns(uint256){
        return _decimals;
    }
    
    /**
     * Returns totalSupply of token.
     */
    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }
    
    /**
     * Returns balance of token 
     */
    function balanceOf(address user) external view returns(uint256){
        return _balanceOf[user];
    }
    
    /**
     * Returns allowance of token 
     */
    function allowance(address owner, address spender) external view returns (uint256) {
        return _allowance[owner][spender];
    }
    
    /**
     * Internal transfer, only can be called by this contract 
     */
    function _transfer(address _from, address _to, uint _value) internal {
        
        //checking conditions
        require(!safeguard);
        require (_to != address(0));                      // Prevent transfer to 0x0 address. Use burn() instead
        
        // overflow and undeflow checked by SafeMath Library
        _balanceOf[_from] = _balanceOf[_from].sub(_value);    // Subtract from the sender
        _balanceOf[_to] = _balanceOf[_to].add(_value);        // Add the same to the recipient
        
        // emit Transfer event
        emit Transfer(_from, _to, _value);
    }

    /**
        * Transfer tokens
        *
        * Send `_value` tokens to `_to` from your account
        *
        * @param _to The address of the recipient
        * @param _value the amount to send
        */
    function transfer(address _to, uint256 _value) public returns (bool success) {
        //no need to check for input validations, as that is ruled by SafeMath
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
        * Transfer tokens from other address
        *
        * Send `_value` tokens to `_to` in behalf of `_from`
        *
        * @param _from The address of the sender
        * @param _to The address of the recipient
        * @param _value the amount to send
        */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        //checking of allowance and token value is done by SafeMath
        _allowance[_from][msg.sender] = _allowance[_from][msg.sender].sub(_value);
        _transfer(_from, _to, _value);
        return true;
    }

    /**
        * Set allowance for other address
        *
        * Allows `_spender` to spend no more than `_value` tokens in your behalf
        *
        * @param _spender The address authorized to spend
        * @param _value the max amount they can spend
        */
    function approve(address _spender, uint256 _value) public returns (bool success) {
        require(!safeguard);
        /* AUDITOR NOTE:
            Many dex and dapps pre-approve large amount of tokens to save gas for subsequent transaction. This is good use case.
            On flip-side, some malicious dapp, may pre-approve large amount and then drain all token balance from user.
            So following condition is kept in commented. It can be be kept that way or not based on client's consent.
        */
        //require(_balanceOf[msg.sender] >= _value, "Balance does not have enough tokens");
        _allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to increase the allowance by.
     */
    function increase_allowance(address spender, uint256 value) external returns (bool) {
        require(spender != address(0));
        _allowance[msg.sender][spender] = _allowance[msg.sender][spender].add(value);
        emit Approval(msg.sender, spender, _allowance[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to decrease the allowance by.
     */
    function decrease_allowance(address spender, uint256 value) external returns (bool) {
        require(spender != address(0));
        _allowance[msg.sender][spender] = _allowance[msg.sender][spender].sub(value);
        emit Approval(msg.sender, spender, _allowance[msg.sender][spender]);
        return true;
    }


    /*=====================================
    =       CUSTOM PUBLIC FUNCTIONS       =
    ======================================*/
    
    constructor(){
        //sending all the tokens to Owner
        _balanceOf[owner] = _totalSupply;
        
        //firing event which logs this transaction
        emit Transfer(address(0), owner, _totalSupply);
        
        // register the supported interfaces to conform to ERC1363 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1363_TRANSFER);
        _registerInterface(_INTERFACE_ID_ERC1363_APPROVE);
    }
    
    receive () external payable {  }

    /**
        * Destroy tokens
        *
        * Remove `_value` tokens from the system irreversibly
        *
        * @param _value the amount of money to burn
        */
    function burn(uint256 _value) external returns (bool success) {
        require(!safeguard);
        //checking of enough token balance is done by SafeMath
        _balanceOf[msg.sender] = _balanceOf[msg.sender].sub(_value);  // Subtract from the sender
        _totalSupply = _totalSupply.sub(_value);                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        emit Transfer(msg.sender, address(0), _value);
        return true;
    }


    
    /** 
        * @notice Create `mintedAmount` tokens and send it to `target`
        * @param target Address to receive the tokens
        * @param mintedAmount the amount of tokens it will receive
        */
    function mintToken(address target, uint256 mintedAmount) onlyOwner external {
        require(_totalSupply.add(mintedAmount) <= maxSupply, "Cannot Mint more than maximum supply");
        _balanceOf[target] = _balanceOf[target].add(mintedAmount);
        _totalSupply = _totalSupply.add(mintedAmount);
        emit Transfer(address(0), target, mintedAmount);
    }

        

    /**
        * Owner can transfer tokens from contract to owner address
        *
        * When safeguard is true, then all the non-owner functions will stop working.
        * When safeguard is false, then all the functions will resume working back again!
        */
    
    function manualWithdrawTokens(uint256 tokenAmount) external onlyOwner{
        // no need for overflow checking as that will be done in transfer function
        _transfer(address(this), owner, tokenAmount);
    }
    
    //Just in rare case, owner wants to transfer Ether from contract to owner address
    function manualWithdrawEther()onlyOwner external{
        owner.transfer(address(this).balance);
    }
    
    /**
        * Change safeguard status on or off
        *
        * When safeguard is true, then all the non-owner functions will stop working.
        * When safeguard is false, then all the functions will resume working back again!
        */
    function changeSafeguardStatus() onlyOwner external{
        if (safeguard == false){
            safeguard = true;
        }
        else{
            safeguard = false;    
        }
    }
    

    
    /*************************************/
    /*    Section for User Air drop      */
    /*************************************/
    
    /**
     * Run an ACTIVE Air-Drop
     *
     * It requires an array of all the addresses and amount of tokens to distribute
     * It will only process first 100 recipients. That limit is fixed to prevent gas limit
     */
    function airdropACTIVE(address[] memory recipients,uint256[] memory tokenAmount) external returns(bool) {
        uint256 totalAddresses = recipients.length;
        address msgSender = msg.sender; //make a local variable to save gas cost in loop
        require(totalAddresses <= 100,"Too many recipients");
        for(uint i = 0; i < totalAddresses; i++)
        {
          //This will loop through all the recipients and send them the specified tokens
          //Input data validation is unncessary, as that is done by SafeMath and which also saves some gas.
          _transfer(msgSender, recipients[i], tokenAmount[i]);
        }
        return true;
    }
   
    /*****************************************/
    /*  Section for ERC1363 Implementation   */
    /*****************************************/
    
    
    /*
     * Note: the ERC-165 identifier for this interface is 0x4bbee2df.
     * 0x4bbee2df ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)'))
     */
    bytes4 internal constant _INTERFACE_ID_ERC1363_TRANSFER = 0x4bbee2df;

    /*
     * Note: the ERC-165 identifier for this interface is 0xfb9ec8ce.
     * 0xfb9ec8ce ===
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */
    bytes4 internal constant _INTERFACE_ID_ERC1363_APPROVE = 0xfb9ec8ce;

    // Equals to `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC1363Receiver(0).onTransferReceived.selector`
    bytes4 private constant _ERC1363_RECEIVED = 0x88a7ca5c;

    // Equals to `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))`
    // which can be also obtained as `IERC1363Spender(0).onApprovalReceived.selector`
    bytes4 private constant _ERC1363_APPROVED = 0x7b04a2d0;


    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(address recipient, uint256 amount) public virtual  returns (bool) {
        return transferAndCall(recipient, amount, "");
    }

    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to
     * @param amount The amount to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(address recipient, uint256 amount, bytes memory data) public virtual  returns (bool) {
        transfer(recipient, amount);
        require(_checkAndCallTransfer(_msgSender(), recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount) public virtual  returns (bool) {
        return transferFromAndCall(sender, recipient, amount, "");
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount, bytes memory data) public virtual  returns (bool) {
        transferFrom(sender, recipient, amount);
        require(_checkAndCallTransfer(sender, recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to
     * @param amount The amount allowed to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(address spender, uint256 amount) public virtual  returns (bool) {
        return approveAndCall(spender, amount, "");
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to.
     * @param amount The amount allowed to be transferred.
     * @param data Additional data with no specified format.
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(address spender, uint256 amount, bytes memory data) public virtual  returns (bool) {
        approve(spender, amount);
        require(_checkAndCallApprove(spender, amount, data), "ERC1363: _checkAndCallApprove reverts");
        return true;
    }

    /**
     * @dev Internal function to invoke `onTransferReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param sender address Representing the previous owner of the given token value
     * @param recipient address Target address that will receive the tokens
     * @param amount uint256 The amount mount of tokens to be transferred
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallTransfer(address sender, address recipient, uint256 amount, bytes memory data) internal virtual returns (bool) {
        if (!isContract(recipient)) {
            return false;
        }
        bytes4 retval = IERC1363Receiver(recipient).onTransferReceived(
            _msgSender(), sender, amount, data
        );
        return (retval == _ERC1363_RECEIVED);
    }

    /**
     * @dev Internal function to invoke `onApprovalReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallApprove(address spender, uint256 amount, bytes memory data) internal virtual returns (bool) {
        if (!isContract(spender)) {
            return false;
        }
        bytes4 retval = IERC1363Spender(spender).onApprovalReceived(
            _msgSender(), amount, data
        );
        return (retval == _ERC1363_APPROVED);
    }
    
    
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
    
    /**
     * returns msg.sender
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
    
    
    /**
     * returns msg.data
     */
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"FrozenAccounts","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","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":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"tokenAmount","type":"uint256[]"}],"name":"airdropACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSafeguardStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"decrease_allowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"increase_allowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualWithdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"manualWithdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"safeguard","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","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":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526012600a62000014919062000406565b6404a817c80062000026919062000543565b6003553480156200003657600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3620001237f01ffc9a7000000000000000000000000000000000000000000000000000000006200024a60201b60201c565b600354600560008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200020c91906200037d565b60405180910390a36200022c634bbee2df60e01b6200024a60201b60201c565b6200024463fb9ec8ce60e01b6200024a60201b60201c565b62000613565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ad906200035b565b60405180910390fd5b600160026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600062000332601c836200039a565b91506200033f82620005ea565b602082019050919050565b6200035581620005a4565b82525050565b60006020820190508181036000830152620003768162000323565b9050919050565b60006020820190506200039460008301846200034a565b92915050565b600082825260208201905092915050565b6000808291508390505b6001851115620003fd57808604811115620003d557620003d4620005ae565b5b6001851615620003e55780820291505b8081029050620003f585620005dd565b9450620003b5565b94509492505050565b60006200041382620005a4565b91506200042083620005a4565b92506200044f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000457565b905092915050565b6000826200046957600190506200053c565b816200047957600090506200053c565b81600181146200049257600281146200049d57620004d3565b60019150506200053c565b60ff841115620004b257620004b1620005ae565b5b8360020a915084821115620004cc57620004cb620005ae565b5b506200053c565b5060208310610133831016604e8410600b84101617156200050d5782820a905083811115620005075762000506620005ae565b5b6200053c565b6200051c8484846001620003ab565b92509050818404811115620005365762000535620005ae565b5b81810290505b9392505050565b60006200055082620005a4565b91506200055d83620005a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005995762000598620005ae565b5b828202905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b612e7b80620006236000396000f3fe6080604052600436106101c65760003560e01c806379ba5097116100f7578063b57dbdc611610095578063d8fbe99411610064578063d8fbe994146106c3578063dd62ed3e14610700578063f2fde38b1461073d578063fbde8d7514610766576101cd565b8063b57dbdc6146105f3578063c1d34b891461061e578063cae9ca511461065b578063d5abeb0114610698576101cd565b80638da5cb5b116100d15780638da5cb5b1461052357806395d89b411461054e578063a9059cbb14610579578063a972f673146105b6576101cd565b806379ba5097146104a657806379c65068146104bd57806382aade08146104e6576101cd565b80633177029f116101645780634bec83351161013e5780634bec8335146103fe5780635954c8c5146104155780636ece08ac1461042c57806370a0823114610469576101cd565b80633177029f146103475780634000aea01461038457806342966c68146103c1576101cd565b80631296ee62116101a05780631296ee621461027757806318160ddd146102b457806323b872dd146102df578063313ce5671461031c576101cd565b806301ffc9a7146101d257806306fdde031461020f578063095ea7b31461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123d0565b61078f565b6040516102069190612670565b60405180910390f35b34801561021b57600080fd5b506102246107f7565b604051610231919061268b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906122c1565b610834565b60405161026e9190612670565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906122c1565b610940565b6040516102ab9190612670565b60405180910390f35b3480156102c057600080fd5b506102c9610964565b6040516102d6919061276d565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906121f7565b61096e565b6040516103139190612670565b60405180910390f35b34801561032857600080fd5b50610331610a95565b60405161033e919061276d565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906122c1565b610a9e565b60405161037b9190612670565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a691906122fd565b610ac2565b6040516103b89190612670565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612422565b610b2c565b6040516103f59190612670565b60405180910390f35b34801561040a57600080fd5b50610413610cb5565b005b34801561042157600080fd5b5061042a610d67565b005b34801561043857600080fd5b50610453600480360381019061044e91906122c1565b610e28565b6040516104609190612670565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612169565b61105d565b60405161049d919061276d565b60405180910390f35b3480156104b257600080fd5b506104bb6110a6565b005b3480156104c957600080fd5b506104e460048036038101906104df91906122c1565b611242565b005b3480156104f257600080fd5b5061050d600480360381019061050891906122c1565b611428565b60405161051a9190612670565b60405180910390f35b34801561052f57600080fd5b5061053861165d565b60405161054591906125cb565b60405180910390f35b34801561055a57600080fd5b50610563611681565b604051610570919061268b565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906122c1565b6116be565b6040516105ad9190612670565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612364565b6116d5565b6040516105ea9190612670565b60405180910390f35b3480156105ff57600080fd5b506106086117db565b6040516106159190612670565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190612246565b6117ee565b6040516106529190612670565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906122fd565b611853565b60405161068f9190612670565b60405180910390f35b3480156106a457600080fd5b506106ad6118b5565b6040516106ba919061276d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e591906121f7565b6118d6565b6040516106f79190612670565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906121bb565b6118fc565b604051610734919061276d565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612192565b611983565b005b34801561077257600080fd5b5061078d60048036038101906107889190612422565b611a1f565b005b600060026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606040518060400160405280601581526020017f434f5245204d756c7469436861696e20546f6b656e0000000000000000000000815250905090565b6000600460009054906101000a900460ff161561085057600080fd5b81600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092e919061276d565b60405180910390a36001905092915050565b600061095c838360405180602001604052806000815250610ac2565b905092915050565b6000600354905090565b60006109ff82600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a8a848484611afe565b600190509392505050565b60006012905090565b6000610aba838360405180602001604052806000815250611853565b905092915050565b6000610ace84846116be565b50610ae2610ada611ce6565b858585611cee565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906126ed565b60405180910390fd5b600190509392505050565b6000600460009054906101000a900460ff1615610b4857600080fd5b610b9a82600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bf282600354611aa590919063ffffffff16565b6003819055503373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca583604051610c3e919061276d565b60405180910390a2600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca4919061276d565b60405180910390a360019050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0d57600080fd5b60001515600460009054906101000a900460ff1615151415610d49576001600460006101000a81548160ff021916908315150217905550610d65565b6000600460006101000a81548160ff0219169083151502179055505b565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbf57600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e25573d6000803e3d6000fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6357600080fd5b610ef282600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161104b919061276d565b60405180910390a36001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110057600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129a57600080fd5b6012600a6112a89190612917565b6404a817c8006112b89190612a35565b6112cd82600354611df690919063ffffffff16565b111561130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113059061270d565b60405180910390fd5b61136081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113b881600354611df690919063ffffffff16565b6003819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141c919061276d565b60405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561146357600080fd5b6114f282600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161164b919061276d565b60405180910390a36001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600481526020017f434d435800000000000000000000000000000000000000000000000000000000815250905090565b60006116cb338484611afe565b6001905092915050565b6000808351905060003390506064821115611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c906126cd565b60405180910390fd5b60005b828110156117ce576117bb8287838151811061176d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518784815181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611afe565b80806117c690612bbc565b915050611728565b5060019250505092915050565b600460009054906101000a900460ff1681565b60006117fb85858561096e565b5061180885858585611cee565b611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e906126ed565b60405180910390fd5b60019050949350505050565b600061185f8484610834565b5061186b848484611e54565b6118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a1906126ad565b60405180910390fd5b600190509392505050565b6012600a6118c39190612917565b6404a817c8006118d39190612a35565b81565b60006118f3848484604051806020016040528060008152506117ee565b90509392505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119db57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7757600080fd5b611aa23060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611afe565b50565b600082821115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae19061272d565b60405180910390fd5b8183611af69190612a8f565b905092915050565b600460009054906101000a900460ff1615611b1857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5257600080fd5b611ba481600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c3981600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cd9919061276d565b60405180910390a3505050565b600033905090565b6000611cf984611f59565b611d065760009050611dee565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c611d2c611ce6565b8887876040518563ffffffff1660e01b8152600401611d4e94939291906125e6565b602060405180830381600087803b158015611d6857600080fd5b505af1158015611d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da091906123f9565b90506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6000808284611e05919061286e565b905083811015611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061274d565b60405180910390fd5b8091505092915050565b6000611e5f84611f59565b611e6c5760009050611f52565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d0611e92611ce6565b86866040518463ffffffff1660e01b8152600401611eb293929190612632565b602060405180830381600087803b158015611ecc57600080fd5b505af1158015611ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0491906123f9565b9050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b600080823b905060008111915050919050565b6000611f7f611f7a846127ad565b612788565b90508083825260208201905082856020860282011115611f9e57600080fd5b60005b85811015611fce5781611fb48882612082565b845260208401935060208301925050600181019050611fa1565b5050509392505050565b6000611feb611fe6846127d9565b612788565b9050808382526020820190508285602086028201111561200a57600080fd5b60005b8581101561203a57816120208882612154565b84526020840193506020830192505060018101905061200d565b5050509392505050565b600061205761205284612805565b612788565b90508281526020810184848401111561206f57600080fd5b61207a848285612b49565b509392505050565b60008135905061209181612de9565b92915050565b6000813590506120a681612e00565b92915050565b600082601f8301126120bd57600080fd5b81356120cd848260208601611f6c565b91505092915050565b600082601f8301126120e757600080fd5b81356120f7848260208601611fd8565b91505092915050565b60008135905061210f81612e17565b92915050565b60008151905061212481612e17565b92915050565b600082601f83011261213b57600080fd5b813561214b848260208601612044565b91505092915050565b60008135905061216381612e2e565b92915050565b60006020828403121561217b57600080fd5b600061218984828501612082565b91505092915050565b6000602082840312156121a457600080fd5b60006121b284828501612097565b91505092915050565b600080604083850312156121ce57600080fd5b60006121dc85828601612082565b92505060206121ed85828601612082565b9150509250929050565b60008060006060848603121561220c57600080fd5b600061221a86828701612082565b935050602061222b86828701612082565b925050604061223c86828701612154565b9150509250925092565b6000806000806080858703121561225c57600080fd5b600061226a87828801612082565b945050602061227b87828801612082565b935050604061228c87828801612154565b925050606085013567ffffffffffffffff8111156122a957600080fd5b6122b58782880161212a565b91505092959194509250565b600080604083850312156122d457600080fd5b60006122e285828601612082565b92505060206122f385828601612154565b9150509250929050565b60008060006060848603121561231257600080fd5b600061232086828701612082565b935050602061233186828701612154565b925050604084013567ffffffffffffffff81111561234e57600080fd5b61235a8682870161212a565b9150509250925092565b6000806040838503121561237757600080fd5b600083013567ffffffffffffffff81111561239157600080fd5b61239d858286016120ac565b925050602083013567ffffffffffffffff8111156123ba57600080fd5b6123c6858286016120d6565b9150509250929050565b6000602082840312156123e257600080fd5b60006123f084828501612100565b91505092915050565b60006020828403121561240b57600080fd5b600061241984828501612115565b91505092915050565b60006020828403121561243457600080fd5b600061244284828501612154565b91505092915050565b61245481612ad5565b82525050565b61246381612ac3565b82525050565b61247281612ae7565b82525050565b600061248382612836565b61248d818561284c565b935061249d818560208601612b58565b6124a681612c63565b840191505092915050565b60006124bc82612841565b6124c6818561285d565b93506124d6818560208601612b58565b6124df81612c63565b840191505092915050565b60006124f760258361285d565b915061250282612c81565b604082019050919050565b600061251a60138361285d565b915061252582612cd0565b602082019050919050565b600061253d60268361285d565b915061254882612cf9565b604082019050919050565b600061256060248361285d565b915061256b82612d48565b604082019050919050565b600061258360138361285d565b915061258e82612d97565b602082019050919050565b60006125a660138361285d565b91506125b182612dc0565b602082019050919050565b6125c581612b3f565b82525050565b60006020820190506125e0600083018461244b565b92915050565b60006080820190506125fb600083018761245a565b612608602083018661245a565b61261560408301856125bc565b81810360608301526126278184612478565b905095945050505050565b6000606082019050612647600083018661245a565b61265460208301856125bc565b81810360408301526126668184612478565b9050949350505050565b60006020820190506126856000830184612469565b92915050565b600060208201905081810360008301526126a581846124b1565b905092915050565b600060208201905081810360008301526126c6816124ea565b9050919050565b600060208201905081810360008301526126e68161250d565b9050919050565b6000602082019050818103600083015261270681612530565b9050919050565b6000602082019050818103600083015261272681612553565b9050919050565b6000602082019050818103600083015261274681612576565b9050919050565b6000602082019050818103600083015261276681612599565b9050919050565b600060208201905061278260008301846125bc565b92915050565b60006127926127a3565b905061279e8282612b8b565b919050565b6000604051905090565b600067ffffffffffffffff8211156127c8576127c7612c34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127f4576127f3612c34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156128205761281f612c34565b5b61282982612c63565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061287982612b3f565b915061288483612b3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612c05565b5b828201905092915050565b6000808291508390505b600185111561290e578086048111156128ea576128e9612c05565b5b60018516156128f95780820291505b808102905061290785612c74565b94506128ce565b94509492505050565b600061292282612b3f565b915061292d83612b3f565b925061295a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612962565b905092915050565b6000826129725760019050612a2e565b816129805760009050612a2e565b816001811461299657600281146129a0576129cf565b6001915050612a2e565b60ff8411156129b2576129b1612c05565b5b8360020a9150848211156129c9576129c8612c05565b5b50612a2e565b5060208310610133831016604e8410600b8410161715612a045782820a9050838111156129ff576129fe612c05565b5b612a2e565b612a1184848460016128c4565b92509050818404811115612a2857612a27612c05565b5b81810290505b9392505050565b6000612a4082612b3f565b9150612a4b83612b3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a8457612a83612c05565b5b828202905092915050565b6000612a9a82612b3f565b9150612aa583612b3f565b925082821015612ab857612ab7612c05565b5b828203905092915050565b6000612ace82612b1f565b9050919050565b6000612ae082612b1f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b76578082015181840152602081019050612b5b565b83811115612b85576000848401525b50505050565b612b9482612c63565b810181811067ffffffffffffffff82111715612bb357612bb2612c34565b5b80604052505050565b6000612bc782612b3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bfa57612bf9612c05565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f455243313336333a205f636865636b416e6443616c6c417070726f766520726560008201527f7665727473000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920726563697069656e747300000000000000000000000000600082015250565b7f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260008201527f6576657274730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74204d696e74206d6f7265207468616e206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d61746820737562206661696c656400000000000000000000000000600082015250565b7f536166654d61746820616464206661696c656400000000000000000000000000600082015250565b612df281612ac3565b8114612dfd57600080fd5b50565b612e0981612ad5565b8114612e1457600080fd5b50565b612e2081612af3565b8114612e2b57600080fd5b50565b612e3781612b3f565b8114612e4257600080fd5b5056fea2646970667358221220e9702fe4faadae7c7e2e32689011db43da66ca88f281a4ff494fa92563aabbd464736f6c63430008010033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806379ba5097116100f7578063b57dbdc611610095578063d8fbe99411610064578063d8fbe994146106c3578063dd62ed3e14610700578063f2fde38b1461073d578063fbde8d7514610766576101cd565b8063b57dbdc6146105f3578063c1d34b891461061e578063cae9ca511461065b578063d5abeb0114610698576101cd565b80638da5cb5b116100d15780638da5cb5b1461052357806395d89b411461054e578063a9059cbb14610579578063a972f673146105b6576101cd565b806379ba5097146104a657806379c65068146104bd57806382aade08146104e6576101cd565b80633177029f116101645780634bec83351161013e5780634bec8335146103fe5780635954c8c5146104155780636ece08ac1461042c57806370a0823114610469576101cd565b80633177029f146103475780634000aea01461038457806342966c68146103c1576101cd565b80631296ee62116101a05780631296ee621461027757806318160ddd146102b457806323b872dd146102df578063313ce5671461031c576101cd565b806301ffc9a7146101d257806306fdde031461020f578063095ea7b31461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123d0565b61078f565b6040516102069190612670565b60405180910390f35b34801561021b57600080fd5b506102246107f7565b604051610231919061268b565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906122c1565b610834565b60405161026e9190612670565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906122c1565b610940565b6040516102ab9190612670565b60405180910390f35b3480156102c057600080fd5b506102c9610964565b6040516102d6919061276d565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906121f7565b61096e565b6040516103139190612670565b60405180910390f35b34801561032857600080fd5b50610331610a95565b60405161033e919061276d565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906122c1565b610a9e565b60405161037b9190612670565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a691906122fd565b610ac2565b6040516103b89190612670565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612422565b610b2c565b6040516103f59190612670565b60405180910390f35b34801561040a57600080fd5b50610413610cb5565b005b34801561042157600080fd5b5061042a610d67565b005b34801561043857600080fd5b50610453600480360381019061044e91906122c1565b610e28565b6040516104609190612670565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612169565b61105d565b60405161049d919061276d565b60405180910390f35b3480156104b257600080fd5b506104bb6110a6565b005b3480156104c957600080fd5b506104e460048036038101906104df91906122c1565b611242565b005b3480156104f257600080fd5b5061050d600480360381019061050891906122c1565b611428565b60405161051a9190612670565b60405180910390f35b34801561052f57600080fd5b5061053861165d565b60405161054591906125cb565b60405180910390f35b34801561055a57600080fd5b50610563611681565b604051610570919061268b565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b91906122c1565b6116be565b6040516105ad9190612670565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612364565b6116d5565b6040516105ea9190612670565b60405180910390f35b3480156105ff57600080fd5b506106086117db565b6040516106159190612670565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190612246565b6117ee565b6040516106529190612670565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906122fd565b611853565b60405161068f9190612670565b60405180910390f35b3480156106a457600080fd5b506106ad6118b5565b6040516106ba919061276d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e591906121f7565b6118d6565b6040516106f79190612670565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906121bb565b6118fc565b604051610734919061276d565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190612192565b611983565b005b34801561077257600080fd5b5061078d60048036038101906107889190612422565b611a1f565b005b600060026000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60606040518060400160405280601581526020017f434f5245204d756c7469436861696e20546f6b656e0000000000000000000000815250905090565b6000600460009054906101000a900460ff161561085057600080fd5b81600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092e919061276d565b60405180910390a36001905092915050565b600061095c838360405180602001604052806000815250610ac2565b905092915050565b6000600354905090565b60006109ff82600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a8a848484611afe565b600190509392505050565b60006012905090565b6000610aba838360405180602001604052806000815250611853565b905092915050565b6000610ace84846116be565b50610ae2610ada611ce6565b858585611cee565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906126ed565b60405180910390fd5b600190509392505050565b6000600460009054906101000a900460ff1615610b4857600080fd5b610b9a82600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610bf282600354611aa590919063ffffffff16565b6003819055503373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca583604051610c3e919061276d565b60405180910390a2600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca4919061276d565b60405180910390a360019050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0d57600080fd5b60001515600460009054906101000a900460ff1615151415610d49576001600460006101000a81548160ff021916908315150217905550610d65565b6000600460006101000a81548160ff0219169083151502179055505b565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbf57600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e25573d6000803e3d6000fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6357600080fd5b610ef282600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161104b919061276d565b60405180910390a36001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110057600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461129a57600080fd5b6012600a6112a89190612917565b6404a817c8006112b89190612a35565b6112cd82600354611df690919063ffffffff16565b111561130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113059061270d565b60405180910390fd5b61136081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113b881600354611df690919063ffffffff16565b6003819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141c919061276d565b60405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561146357600080fd5b6114f282600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460405161164b919061276d565b60405180910390a36001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600481526020017f434d435800000000000000000000000000000000000000000000000000000000815250905090565b60006116cb338484611afe565b6001905092915050565b6000808351905060003390506064821115611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c906126cd565b60405180910390fd5b60005b828110156117ce576117bb8287838151811061176d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518784815181106117ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611afe565b80806117c690612bbc565b915050611728565b5060019250505092915050565b600460009054906101000a900460ff1681565b60006117fb85858561096e565b5061180885858585611cee565b611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e906126ed565b60405180910390fd5b60019050949350505050565b600061185f8484610834565b5061186b848484611e54565b6118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a1906126ad565b60405180910390fd5b600190509392505050565b6012600a6118c39190612917565b6404a817c8006118d39190612a35565b81565b60006118f3848484604051806020016040528060008152506117ee565b90509392505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119db57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a7757600080fd5b611aa23060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611afe565b50565b600082821115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae19061272d565b60405180910390fd5b8183611af69190612a8f565b905092915050565b600460009054906101000a900460ff1615611b1857600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5257600080fd5b611ba481600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa590919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c3981600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611df690919063ffffffff16565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cd9919061276d565b60405180910390a3505050565b600033905090565b6000611cf984611f59565b611d065760009050611dee565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c611d2c611ce6565b8887876040518563ffffffff1660e01b8152600401611d4e94939291906125e6565b602060405180830381600087803b158015611d6857600080fd5b505af1158015611d7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da091906123f9565b90506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6000808284611e05919061286e565b905083811015611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061274d565b60405180910390fd5b8091505092915050565b6000611e5f84611f59565b611e6c5760009050611f52565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d0611e92611ce6565b86866040518463ffffffff1660e01b8152600401611eb293929190612632565b602060405180830381600087803b158015611ecc57600080fd5b505af1158015611ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0491906123f9565b9050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b600080823b905060008111915050919050565b6000611f7f611f7a846127ad565b612788565b90508083825260208201905082856020860282011115611f9e57600080fd5b60005b85811015611fce5781611fb48882612082565b845260208401935060208301925050600181019050611fa1565b5050509392505050565b6000611feb611fe6846127d9565b612788565b9050808382526020820190508285602086028201111561200a57600080fd5b60005b8581101561203a57816120208882612154565b84526020840193506020830192505060018101905061200d565b5050509392505050565b600061205761205284612805565b612788565b90508281526020810184848401111561206f57600080fd5b61207a848285612b49565b509392505050565b60008135905061209181612de9565b92915050565b6000813590506120a681612e00565b92915050565b600082601f8301126120bd57600080fd5b81356120cd848260208601611f6c565b91505092915050565b600082601f8301126120e757600080fd5b81356120f7848260208601611fd8565b91505092915050565b60008135905061210f81612e17565b92915050565b60008151905061212481612e17565b92915050565b600082601f83011261213b57600080fd5b813561214b848260208601612044565b91505092915050565b60008135905061216381612e2e565b92915050565b60006020828403121561217b57600080fd5b600061218984828501612082565b91505092915050565b6000602082840312156121a457600080fd5b60006121b284828501612097565b91505092915050565b600080604083850312156121ce57600080fd5b60006121dc85828601612082565b92505060206121ed85828601612082565b9150509250929050565b60008060006060848603121561220c57600080fd5b600061221a86828701612082565b935050602061222b86828701612082565b925050604061223c86828701612154565b9150509250925092565b6000806000806080858703121561225c57600080fd5b600061226a87828801612082565b945050602061227b87828801612082565b935050604061228c87828801612154565b925050606085013567ffffffffffffffff8111156122a957600080fd5b6122b58782880161212a565b91505092959194509250565b600080604083850312156122d457600080fd5b60006122e285828601612082565b92505060206122f385828601612154565b9150509250929050565b60008060006060848603121561231257600080fd5b600061232086828701612082565b935050602061233186828701612154565b925050604084013567ffffffffffffffff81111561234e57600080fd5b61235a8682870161212a565b9150509250925092565b6000806040838503121561237757600080fd5b600083013567ffffffffffffffff81111561239157600080fd5b61239d858286016120ac565b925050602083013567ffffffffffffffff8111156123ba57600080fd5b6123c6858286016120d6565b9150509250929050565b6000602082840312156123e257600080fd5b60006123f084828501612100565b91505092915050565b60006020828403121561240b57600080fd5b600061241984828501612115565b91505092915050565b60006020828403121561243457600080fd5b600061244284828501612154565b91505092915050565b61245481612ad5565b82525050565b61246381612ac3565b82525050565b61247281612ae7565b82525050565b600061248382612836565b61248d818561284c565b935061249d818560208601612b58565b6124a681612c63565b840191505092915050565b60006124bc82612841565b6124c6818561285d565b93506124d6818560208601612b58565b6124df81612c63565b840191505092915050565b60006124f760258361285d565b915061250282612c81565b604082019050919050565b600061251a60138361285d565b915061252582612cd0565b602082019050919050565b600061253d60268361285d565b915061254882612cf9565b604082019050919050565b600061256060248361285d565b915061256b82612d48565b604082019050919050565b600061258360138361285d565b915061258e82612d97565b602082019050919050565b60006125a660138361285d565b91506125b182612dc0565b602082019050919050565b6125c581612b3f565b82525050565b60006020820190506125e0600083018461244b565b92915050565b60006080820190506125fb600083018761245a565b612608602083018661245a565b61261560408301856125bc565b81810360608301526126278184612478565b905095945050505050565b6000606082019050612647600083018661245a565b61265460208301856125bc565b81810360408301526126668184612478565b9050949350505050565b60006020820190506126856000830184612469565b92915050565b600060208201905081810360008301526126a581846124b1565b905092915050565b600060208201905081810360008301526126c6816124ea565b9050919050565b600060208201905081810360008301526126e68161250d565b9050919050565b6000602082019050818103600083015261270681612530565b9050919050565b6000602082019050818103600083015261272681612553565b9050919050565b6000602082019050818103600083015261274681612576565b9050919050565b6000602082019050818103600083015261276681612599565b9050919050565b600060208201905061278260008301846125bc565b92915050565b60006127926127a3565b905061279e8282612b8b565b919050565b6000604051905090565b600067ffffffffffffffff8211156127c8576127c7612c34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127f4576127f3612c34565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156128205761281f612c34565b5b61282982612c63565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061287982612b3f565b915061288483612b3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612c05565b5b828201905092915050565b6000808291508390505b600185111561290e578086048111156128ea576128e9612c05565b5b60018516156128f95780820291505b808102905061290785612c74565b94506128ce565b94509492505050565b600061292282612b3f565b915061292d83612b3f565b925061295a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612962565b905092915050565b6000826129725760019050612a2e565b816129805760009050612a2e565b816001811461299657600281146129a0576129cf565b6001915050612a2e565b60ff8411156129b2576129b1612c05565b5b8360020a9150848211156129c9576129c8612c05565b5b50612a2e565b5060208310610133831016604e8410600b8410161715612a045782820a9050838111156129ff576129fe612c05565b5b612a2e565b612a1184848460016128c4565b92509050818404811115612a2857612a27612c05565b5b81810290505b9392505050565b6000612a4082612b3f565b9150612a4b83612b3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a8457612a83612c05565b5b828202905092915050565b6000612a9a82612b3f565b9150612aa583612b3f565b925082821015612ab857612ab7612c05565b5b828203905092915050565b6000612ace82612b1f565b9050919050565b6000612ae082612b1f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b76578082015181840152602081019050612b5b565b83811115612b85576000848401525b50505050565b612b9482612c63565b810181811067ffffffffffffffff82111715612bb357612bb2612c34565b5b80604052505050565b6000612bc782612b3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bfa57612bf9612c05565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f455243313336333a205f636865636b416e6443616c6c417070726f766520726560008201527f7665727473000000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920726563697069656e747300000000000000000000000000600082015250565b7f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260008201527f6576657274730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74204d696e74206d6f7265207468616e206d6178696d756d20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d61746820737562206661696c656400000000000000000000000000600082015250565b7f536166654d61746820616464206661696c656400000000000000000000000000600082015250565b612df281612ac3565b8114612dfd57600080fd5b50565b612e0981612ad5565b8114612e1457600080fd5b50565b612e2081612af3565b8114612e2b57600080fd5b50565b612e3781612b3f565b8114612e4257600080fd5b5056fea2646970667358221220e9702fe4faadae7c7e2e32689011db43da66ca88f281a4ff494fa92563aabbd464736f6c63430008010033

Deployed Bytecode Sourcemap

7248:19489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6222:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8946:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11938:748;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20184:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9397:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11329:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9244:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22670:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20697:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15105:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17172:197;;;;;;;;;;;;;:::i;:::-;;16801:104;;;;;;;;;;;;;:::i;:::-;;13960:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9554:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2564:207;;;;;;;;;;;;;:::i;:::-;;15813:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13165:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1998:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9092:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10793:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17764:675;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7834:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22037:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23190:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7739:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21393:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9725:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2363:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16486:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6222:150;6307:4;6331:20;:33;6352:11;6331:33;;;;;;;;;;;;;;;;;;;;;;;;;;;6324:40;;6222:150;;;:::o;8946:83::-;8984:13;9016:5;;;;;;;;;;;;;;;;;9009:12;;8946:83;:::o;11938:748::-;12005:12;12039:9;;;;;;;;;;;12038:10;12030:19;;;;;;12596:6;12561:10;:22;12572:10;12561:22;;;;;;;;;;;;;;;:32;12584:8;12561:32;;;;;;;;;;;;;;;:41;;;;12639:8;12618:38;;12627:10;12618:38;;;12649:6;12618:38;;;;;;:::i;:::-;;;;;;;;12674:4;12667:11;;11938:748;;;;:::o;20184:155::-;20269:4;20293:38;20309:9;20320:6;20293:38;;;;;;;;;;;;:15;:38::i;:::-;20286:45;;20184:155;;;;:::o;9397:93::-;9443:7;9470:12;;9463:19;;9397:93;:::o;11329:319::-;11411:12;11537:41;11571:6;11537:10;:17;11548:5;11537:17;;;;;;;;;;;;;;;:29;11555:10;11537:29;;;;;;;;;;;;;;;;:33;;:41;;;;:::i;:::-;11505:10;:17;11516:5;11505:17;;;;;;;;;;;;;;;:29;11523:10;11505:29;;;;;;;;;;;;;;;:73;;;;11589:29;11599:5;11606:3;11611:6;11589:9;:29::i;:::-;11636:4;11629:11;;11329:319;;;;;:::o;9244:85::-;9286:7;7635:2;9305:16;;9244:85;:::o;22670:149::-;22752:4;22776:35;22791:7;22800:6;22776:35;;;;;;;;;;;;:14;:35::i;:::-;22769:42;;22670:149;;;;:::o;20697:300::-;20801:4;20818:27;20827:9;20838:6;20818:8;:27::i;:::-;;20864:60;20886:12;:10;:12::i;:::-;20900:9;20911:6;20919:4;20864:21;:60::i;:::-;20856:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;20985:4;20978:11;;20697:300;;;;;:::o;15105:475::-;15153:12;15187:9;;;;;;;;;;;15186:10;15178:19;;;;;;15297:34;15324:6;15297:10;:22;15308:10;15297:22;;;;;;;;;;;;;;;;:26;;:34;;;;:::i;:::-;15272:10;:22;15283:10;15272:22;;;;;;;;;;;;;;;:59;;;;15386:24;15403:6;15386:12;;:16;;:24;;;;:::i;:::-;15371:12;:39;;;;15475:10;15470:24;;;15487:6;15470:24;;;;;;:::i;:::-;;;;;;;;15539:1;15510:40;;15519:10;15510:40;;;15543:6;15510:40;;;;;;:::i;:::-;;;;;;;;15568:4;15561:11;;15105:475;;;:::o;17172:197::-;2329:5;;;;;;;;;;2315:19;;:10;:19;;;2307:28;;;;;;17251:5:::1;17238:18;;:9;;;;;;;;;;;:18;;;17234:128;;;17284:4;17272:9;;:16;;;;;;;;;;;;;;;;;;17234:128;;;17341:5;17329:9;;:17;;;;;;;;;;;;;;;;;;17234:128;17172:197::o:0;16801:104::-;2329:5;;;;;;;;;;2315:19;;:10;:19;;;2307:28;;;;;;16860:5:::1;::::0;::::1;;;;;;;;:14;;:37;16875:21;16860:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;16801:104::o:0;13960:320::-;14038:4;14082:1;14063:21;;:7;:21;;;;14055:30;;;;;;14130:42;14166:5;14130:10;:22;14141:10;14130:22;;;;;;;;;;;;;;;:31;14153:7;14130:31;;;;;;;;;;;;;;;;:35;;:42;;;;:::i;:::-;14096:10;:22;14107:10;14096:22;;;;;;;;;;;;;;;:31;14119:7;14096:31;;;;;;;;;;;;;;;:76;;;;14209:7;14188:62;;14197:10;14188:62;;;14218:10;:22;14229:10;14218:22;;;;;;;;;;;;;;;:31;14241:7;14218:31;;;;;;;;;;;;;;;;14188:62;;;;;;:::i;:::-;;;;;;;;14268:4;14261:11;;13960:320;;;;:::o;9554:105::-;9609:7;9635:10;:16;9646:4;9635:16;;;;;;;;;;;;;;;;9628:23;;9554:105;;;:::o;2564:207::-;2633:8;;;;;;;;;;;2619:22;;:10;:22;;;2611:31;;;;;;2686:8;;;;;;;;;;;2658:37;;2679:5;;;;;;;;;;2658:37;;;;;;;;;;;;2714:8;;;;;;;;;;;2706:5;;:16;;;;;;;;;;;;;;;;;;2760:1;2733:8;;:30;;;;;;;;;;;;;;;;;;2564:207::o;15813:369::-;2329:5;;;;;;;;;;2315:19;;:10;:19;;;2307:28;;;;;;7635:2:::1;7790;:13;;;;:::i;:::-;7775:11;:29;;;;:::i;:::-;15908:30;15925:12;15908;;:16;;:30;;;;:::i;:::-;:43;;15900:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;16024:36;16047:12;16024:10;:18;16035:6;16024:18;;;;;;;;;;;;;;;;:22;;:36;;;;:::i;:::-;16003:10;:18;16014:6;16003:18;;;;;;;;;;;;;;;:57;;;;16086:30;16103:12;16086;;:16;;:30;;;;:::i;:::-;16071:12;:45;;;;16153:6;16132:42;;16149:1;16132:42;;;16161:12;16132:42;;;;;;:::i;:::-;;;;;;;;15813:369:::0;;:::o;13165:320::-;13243:4;13287:1;13268:21;;:7;:21;;;;13260:30;;;;;;13335:42;13371:5;13335:10;:22;13346:10;13335:22;;;;;;;;;;;;;;;:31;13358:7;13335:31;;;;;;;;;;;;;;;;:35;;:42;;;;:::i;:::-;13301:10;:22;13312:10;13301:22;;;;;;;;;;;;;;;:31;13324:7;13301:31;;;;;;;;;;;;;;;:76;;;;13414:7;13393:62;;13402:10;13393:62;;;13423:10;:22;13434:10;13423:22;;;;;;;;;;;;;;;:31;13446:7;13423:31;;;;;;;;;;;;;;;;13393:62;;;;;;:::i;:::-;;;;;;;;13473:4;13466:11;;13165:320;;;;:::o;1998:28::-;;;;;;;;;;;;:::o;9092:87::-;9132:13;9164:7;;;;;;;;;;;;;;;;;9157:14;;9092:87;:::o;10793:232::-;10856:12;10961:34;10971:10;10983:3;10988:6;10961:9;:34::i;:::-;11013:4;11006:11;;10793:232;;;;:::o;17764:675::-;17862:4;17879:22;17904:10;:17;17879:42;;17932:17;17952:10;17932:30;;18048:3;18030:14;:21;;18022:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;18089:6;18085:325;18105:14;18101:1;:18;18085:325;;;18347:51;18357:9;18368:10;18379:1;18368:13;;;;;;;;;;;;;;;;;;;;;;18383:11;18395:1;18383:14;;;;;;;;;;;;;;;;;;;;;;18347:9;:51::i;:::-;18121:3;;;;;:::i;:::-;;;;18085:325;;;;18427:4;18420:11;;;;17764:675;;;;:::o;7834:21::-;;;;;;;;;;;;;:::o;22037:326::-;22161:4;22178:39;22191:6;22199:9;22210:6;22178:12;:39::i;:::-;;22236:54;22258:6;22266:9;22277:6;22285:4;22236:21;:54::i;:::-;22228:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;22351:4;22344:11;;22037:326;;;;;;:::o;23190:276::-;23291:4;23308:24;23316:7;23325:6;23308:7;:24::i;:::-;;23351:43;23372:7;23381:6;23389:4;23351:20;:43::i;:::-;23343:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;23454:4;23447:11;;23190:276;;;;;:::o;7739:65::-;7635:2;7790;:13;;;;:::i;:::-;7775:11;:29;;;;:::i;:::-;7739:65;:::o;21393:187::-;21498:4;21522:50;21542:6;21550:9;21561:6;21522:50;;;;;;;;;;;;:19;:50::i;:::-;21515:57;;21393:187;;;;;:::o;9725:135::-;9799:7;9826:10;:17;9837:5;9826:17;;;;;;;;;;;;;;;:26;9844:7;9826:26;;;;;;;;;;;;;;;;9819:33;;9725:135;;;;:::o;2363:112::-;2329:5;;;;;;;;;;2315:19;;:10;:19;;;2307:28;;;;;;2458:9:::1;2447:8;;:20;;;;;;;;;;;;;;;;;;2363:112:::0;:::o;16486:216::-;2329:5;;;;;;;;;;2315:19;;:10;:19;;;2307:28;;;;;;16650:44:::1;16668:4;16675:5;::::0;::::1;;;;;;;;16682:11;16650:9;:44::i;:::-;16486:216:::0;:::o;1436:139::-;1494:7;1523:1;1518;:6;;1510:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1566:1;1562;:5;;;;:::i;:::-;1555:12;;1436:139;;;;:::o;9954:607::-;10084:9;;;;;;;;;;;10083:10;10075:19;;;;;;10129:1;10114:17;;:3;:17;;;;10105:27;;;;;;10311:29;10333:6;10311:10;:17;10322:5;10311:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;10291:10;:17;10302:5;10291:17;;;;;;;;;;;;;;;:49;;;;10400:27;10420:6;10400:10;:15;10411:3;10400:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;10382:10;:15;10393:3;10382:15;;;;;;;;;;;;;;;:45;;;;10541:3;10525:28;;10534:5;10525:28;;;10546:6;10525:28;;;;;;:::i;:::-;;;;;;;;9954:607;;;:::o;26340:98::-;26393:7;26420:10;26413:17;;26340:98;:::o;24032:398::-;24159:4;24181:21;24192:9;24181:10;:21::i;:::-;24176:67;;24226:5;24219:12;;;;24176:67;24253:13;24286:9;24269:46;;;24330:12;:10;:12::i;:::-;24344:6;24352;24360:4;24269:106;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24253:122;;19639:10;24404:17;;24394:27;;;:6;:27;;;;24386:36;;;24032:398;;;;;;;:::o;1583:159::-;1641:7;1657:9;1673:1;1669;:5;;;;:::i;:::-;1657:17;;1694:1;1689;:6;;1681:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1733:1;1726:8;;;1583:159;;;;:::o;24890:366::-;24998:4;25020:19;25031:7;25020:10;:19::i;:::-;25015:65;;25063:5;25056:12;;;;25015:65;25090:13;25122:7;25106:43;;;25164:12;:10;:12::i;:::-;25178:6;25186:4;25106:95;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25090:111;;19872:10;25230:17;;25220:27;;;:6;:27;;;;25212:36;;;24890:366;;;;;;:::o;25861:422::-;25921:4;26129:12;26240:7;26228:20;26220:28;;26274:1;26267:4;:8;26260:15;;;25861:422;;;:::o;24:623:1:-;;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;274:6;267:5;260:21;300:4;293:5;289:16;282:23;;325:6;375:3;367:4;359:6;355:17;350:3;346:27;343:36;340:2;;;392:1;389;382:12;340:2;420:1;405:236;430:6;427:1;424:13;405:236;;;497:3;525:37;558:3;546:10;525:37;:::i;:::-;520:3;513:50;592:4;587:3;583:14;576:21;;626:4;621:3;617:14;610:21;;465:176;452:1;449;445:9;440:14;;405:236;;;409:14;126:521;;;;;;;:::o;670:623::-;;791:81;807:64;864:6;807:64;:::i;:::-;791:81;:::i;:::-;782:90;;892:5;920:6;913:5;906:21;946:4;939:5;935:16;928:23;;971:6;1021:3;1013:4;1005:6;1001:17;996:3;992:27;989:36;986:2;;;1038:1;1035;1028:12;986:2;1066:1;1051:236;1076:6;1073:1;1070:13;1051:236;;;1143:3;1171:37;1204:3;1192:10;1171:37;:::i;:::-;1166:3;1159:50;1238:4;1233:3;1229:14;1222:21;;1272:4;1267:3;1263:14;1256:21;;1111:176;1098:1;1095;1091:9;1086:14;;1051:236;;;1055:14;772:521;;;;;;;:::o;1299:343::-;;1401:65;1417:48;1458:6;1417:48;:::i;:::-;1401:65;:::i;:::-;1392:74;;1489:6;1482:5;1475:21;1527:4;1520:5;1516:16;1565:3;1556:6;1551:3;1547:16;1544:25;1541:2;;;1582:1;1579;1572:12;1541:2;1595:41;1629:6;1624:3;1619;1595:41;:::i;:::-;1382:260;;;;;;:::o;1648:139::-;;1732:6;1719:20;1710:29;;1748:33;1775:5;1748:33;:::i;:::-;1700:87;;;;:::o;1793:155::-;;1885:6;1872:20;1863:29;;1901:41;1936:5;1901:41;:::i;:::-;1853:95;;;;:::o;1971:303::-;;2091:3;2084:4;2076:6;2072:17;2068:27;2058:2;;2109:1;2106;2099:12;2058:2;2149:6;2136:20;2174:94;2264:3;2256:6;2249:4;2241:6;2237:17;2174:94;:::i;:::-;2165:103;;2048:226;;;;;:::o;2297:303::-;;2417:3;2410:4;2402:6;2398:17;2394:27;2384:2;;2435:1;2432;2425:12;2384:2;2475:6;2462:20;2500:94;2590:3;2582:6;2575:4;2567:6;2563:17;2500:94;:::i;:::-;2491:103;;2374:226;;;;;:::o;2606:137::-;;2689:6;2676:20;2667:29;;2705:32;2731:5;2705:32;:::i;:::-;2657:86;;;;:::o;2749:141::-;;2836:6;2830:13;2821:22;;2852:32;2878:5;2852:32;:::i;:::-;2811:79;;;;:::o;2909:271::-;;3013:3;3006:4;2998:6;2994:17;2990:27;2980:2;;3031:1;3028;3021:12;2980:2;3071:6;3058:20;3096:78;3170:3;3162:6;3155:4;3147:6;3143:17;3096:78;:::i;:::-;3087:87;;2970:210;;;;;:::o;3186:139::-;;3270:6;3257:20;3248:29;;3286:33;3313:5;3286:33;:::i;:::-;3238:87;;;;:::o;3331:262::-;;3439:2;3427:9;3418:7;3414:23;3410:32;3407:2;;;3455:1;3452;3445:12;3407:2;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3397:196;;;;:::o;3599:278::-;;3715:2;3703:9;3694:7;3690:23;3686:32;3683:2;;;3731:1;3728;3721:12;3683:2;3774:1;3799:61;3852:7;3843:6;3832:9;3828:22;3799:61;:::i;:::-;3789:71;;3745:125;3673:204;;;;:::o;3883:407::-;;;4008:2;3996:9;3987:7;3983:23;3979:32;3976:2;;;4024:1;4021;4014:12;3976:2;4067:1;4092:53;4137:7;4128:6;4117:9;4113:22;4092:53;:::i;:::-;4082:63;;4038:117;4194:2;4220:53;4265:7;4256:6;4245:9;4241:22;4220:53;:::i;:::-;4210:63;;4165:118;3966:324;;;;;:::o;4296:552::-;;;;4438:2;4426:9;4417:7;4413:23;4409:32;4406:2;;;4454:1;4451;4444:12;4406:2;4497:1;4522:53;4567:7;4558:6;4547:9;4543:22;4522:53;:::i;:::-;4512:63;;4468:117;4624:2;4650:53;4695:7;4686:6;4675:9;4671:22;4650:53;:::i;:::-;4640:63;;4595:118;4752:2;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4723:118;4396:452;;;;;:::o;4854:809::-;;;;;5022:3;5010:9;5001:7;4997:23;4993:33;4990:2;;;5039:1;5036;5029:12;4990:2;5082:1;5107:53;5152:7;5143:6;5132:9;5128:22;5107:53;:::i;:::-;5097:63;;5053:117;5209:2;5235:53;5280:7;5271:6;5260:9;5256:22;5235:53;:::i;:::-;5225:63;;5180:118;5337:2;5363:53;5408:7;5399:6;5388:9;5384:22;5363:53;:::i;:::-;5353:63;;5308:118;5493:2;5482:9;5478:18;5465:32;5524:18;5516:6;5513:30;5510:2;;;5556:1;5553;5546:12;5510:2;5584:62;5638:7;5629:6;5618:9;5614:22;5584:62;:::i;:::-;5574:72;;5436:220;4980:683;;;;;;;:::o;5669:407::-;;;5794:2;5782:9;5773:7;5769:23;5765:32;5762:2;;;5810:1;5807;5800:12;5762:2;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;5752:324;;;;;:::o;6082:663::-;;;;6233:2;6221:9;6212:7;6208:23;6204:32;6201:2;;;6249:1;6246;6239:12;6201:2;6292:1;6317:53;6362:7;6353:6;6342:9;6338:22;6317:53;:::i;:::-;6307:63;;6263:117;6419:2;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6390:118;6575:2;6564:9;6560:18;6547:32;6606:18;6598:6;6595:30;6592:2;;;6638:1;6635;6628:12;6592:2;6666:62;6720:7;6711:6;6700:9;6696:22;6666:62;:::i;:::-;6656:72;;6518:220;6191:554;;;;;:::o;6751:693::-;;;6926:2;6914:9;6905:7;6901:23;6897:32;6894:2;;;6942:1;6939;6932:12;6894:2;7013:1;7002:9;6998:17;6985:31;7043:18;7035:6;7032:30;7029:2;;;7075:1;7072;7065:12;7029:2;7103:78;7173:7;7164:6;7153:9;7149:22;7103:78;:::i;:::-;7093:88;;6956:235;7258:2;7247:9;7243:18;7230:32;7289:18;7281:6;7278:30;7275:2;;;7321:1;7318;7311:12;7275:2;7349:78;7419:7;7410:6;7399:9;7395:22;7349:78;:::i;:::-;7339:88;;7201:236;6884:560;;;;;:::o;7450:260::-;;7557:2;7545:9;7536:7;7532:23;7528:32;7525:2;;;7573:1;7570;7563:12;7525:2;7616:1;7641:52;7685:7;7676:6;7665:9;7661:22;7641:52;:::i;:::-;7631:62;;7587:116;7515:195;;;;:::o;7716:282::-;;7834:2;7822:9;7813:7;7809:23;7805:32;7802:2;;;7850:1;7847;7840:12;7802:2;7893:1;7918:63;7973:7;7964:6;7953:9;7949:22;7918:63;:::i;:::-;7908:73;;7864:127;7792:206;;;;:::o;8004:262::-;;8112:2;8100:9;8091:7;8087:23;8083:32;8080:2;;;8128:1;8125;8118:12;8080:2;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8070:196;;;;:::o;8272:142::-;8375:32;8401:5;8375:32;:::i;:::-;8370:3;8363:45;8353:61;;:::o;8420:118::-;8507:24;8525:5;8507:24;:::i;:::-;8502:3;8495:37;8485:53;;:::o;8544:109::-;8625:21;8640:5;8625:21;:::i;:::-;8620:3;8613:34;8603:50;;:::o;8659:360::-;;8773:38;8805:5;8773:38;:::i;:::-;8827:70;8890:6;8885:3;8827:70;:::i;:::-;8820:77;;8906:52;8951:6;8946:3;8939:4;8932:5;8928:16;8906:52;:::i;:::-;8983:29;9005:6;8983:29;:::i;:::-;8978:3;8974:39;8967:46;;8749:270;;;;;:::o;9025:364::-;;9141:39;9174:5;9141:39;:::i;:::-;9196:71;9260:6;9255:3;9196:71;:::i;:::-;9189:78;;9276:52;9321:6;9316:3;9309:4;9302:5;9298:16;9276:52;:::i;:::-;9353:29;9375:6;9353:29;:::i;:::-;9348:3;9344:39;9337:46;;9117:272;;;;;:::o;9395:366::-;;9558:67;9622:2;9617:3;9558:67;:::i;:::-;9551:74;;9634:93;9723:3;9634:93;:::i;:::-;9752:2;9747:3;9743:12;9736:19;;9541:220;;;:::o;9767:366::-;;9930:67;9994:2;9989:3;9930:67;:::i;:::-;9923:74;;10006:93;10095:3;10006:93;:::i;:::-;10124:2;10119:3;10115:12;10108:19;;9913:220;;;:::o;10139:366::-;;10302:67;10366:2;10361:3;10302:67;:::i;:::-;10295:74;;10378:93;10467:3;10378:93;:::i;:::-;10496:2;10491:3;10487:12;10480:19;;10285:220;;;:::o;10511:366::-;;10674:67;10738:2;10733:3;10674:67;:::i;:::-;10667:74;;10750:93;10839:3;10750:93;:::i;:::-;10868:2;10863:3;10859:12;10852:19;;10657:220;;;:::o;10883:366::-;;11046:67;11110:2;11105:3;11046:67;:::i;:::-;11039:74;;11122:93;11211:3;11122:93;:::i;:::-;11240:2;11235:3;11231:12;11224:19;;11029:220;;;:::o;11255:366::-;;11418:67;11482:2;11477:3;11418:67;:::i;:::-;11411:74;;11494:93;11583:3;11494:93;:::i;:::-;11612:2;11607:3;11603:12;11596:19;;11401:220;;;:::o;11627:118::-;11714:24;11732:5;11714:24;:::i;:::-;11709:3;11702:37;11692:53;;:::o;11751:254::-;;11898:2;11887:9;11883:18;11875:26;;11911:87;11995:1;11984:9;11980:17;11971:6;11911:87;:::i;:::-;11865:140;;;;:::o;12011:640::-;;12244:3;12233:9;12229:19;12221:27;;12258:71;12326:1;12315:9;12311:17;12302:6;12258:71;:::i;:::-;12339:72;12407:2;12396:9;12392:18;12383:6;12339:72;:::i;:::-;12421;12489:2;12478:9;12474:18;12465:6;12421:72;:::i;:::-;12540:9;12534:4;12530:20;12525:2;12514:9;12510:18;12503:48;12568:76;12639:4;12630:6;12568:76;:::i;:::-;12560:84;;12211:440;;;;;;;:::o;12657:529::-;;12862:2;12851:9;12847:18;12839:26;;12875:71;12943:1;12932:9;12928:17;12919:6;12875:71;:::i;:::-;12956:72;13024:2;13013:9;13009:18;13000:6;12956:72;:::i;:::-;13075:9;13069:4;13065:20;13060:2;13049:9;13045:18;13038:48;13103:76;13174:4;13165:6;13103:76;:::i;:::-;13095:84;;12829:357;;;;;;:::o;13192:210::-;;13317:2;13306:9;13302:18;13294:26;;13330:65;13392:1;13381:9;13377:17;13368:6;13330:65;:::i;:::-;13284:118;;;;:::o;13408:313::-;;13559:2;13548:9;13544:18;13536:26;;13608:9;13602:4;13598:20;13594:1;13583:9;13579:17;13572:47;13636:78;13709:4;13700:6;13636:78;:::i;:::-;13628:86;;13526:195;;;;:::o;13727:419::-;;13931:2;13920:9;13916:18;13908:26;;13980:9;13974:4;13970:20;13966:1;13955:9;13951:17;13944:47;14008:131;14134:4;14008:131;:::i;:::-;14000:139;;13898:248;;;:::o;14152:419::-;;14356:2;14345:9;14341:18;14333:26;;14405:9;14399:4;14395:20;14391:1;14380:9;14376:17;14369:47;14433:131;14559:4;14433:131;:::i;:::-;14425:139;;14323:248;;;:::o;14577:419::-;;14781:2;14770:9;14766:18;14758:26;;14830:9;14824:4;14820:20;14816:1;14805:9;14801:17;14794:47;14858:131;14984:4;14858:131;:::i;:::-;14850:139;;14748:248;;;:::o;15002:419::-;;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15173:248;;;:::o;15427:419::-;;15631:2;15620:9;15616:18;15608:26;;15680:9;15674:4;15670:20;15666:1;15655:9;15651:17;15644:47;15708:131;15834:4;15708:131;:::i;:::-;15700:139;;15598:248;;;:::o;15852:419::-;;16056:2;16045:9;16041:18;16033:26;;16105:9;16099:4;16095:20;16091:1;16080:9;16076:17;16069:47;16133:131;16259:4;16133:131;:::i;:::-;16125:139;;16023:248;;;:::o;16277:222::-;;16408:2;16397:9;16393:18;16385:26;;16421:71;16489:1;16478:9;16474:17;16465:6;16421:71;:::i;:::-;16375:124;;;;:::o;16505:129::-;;16566:20;;:::i;:::-;16556:30;;16595:33;16623:4;16615:6;16595:33;:::i;:::-;16546:88;;;:::o;16640:75::-;;16706:2;16700:9;16690:19;;16680:35;:::o;16721:311::-;;16888:18;16880:6;16877:30;16874:2;;;16910:18;;:::i;:::-;16874:2;16960:4;16952:6;16948:17;16940:25;;17020:4;17014;17010:15;17002:23;;16803:229;;;:::o;17038:311::-;;17205:18;17197:6;17194:30;17191:2;;;17227:18;;:::i;:::-;17191:2;17277:4;17269:6;17265:17;17257:25;;17337:4;17331;17327:15;17319:23;;17120:229;;;:::o;17355:307::-;;17506:18;17498:6;17495:30;17492:2;;;17528:18;;:::i;:::-;17492:2;17566:29;17588:6;17566:29;:::i;:::-;17558:37;;17650:4;17644;17640:15;17632:23;;17421:241;;;:::o;17668:98::-;;17753:5;17747:12;17737:22;;17726:40;;;:::o;17772:99::-;;17858:5;17852:12;17842:22;;17831:40;;;:::o;17877:168::-;;17994:6;17989:3;17982:19;18034:4;18029:3;18025:14;18010:29;;17972:73;;;;:::o;18051:169::-;;18169:6;18164:3;18157:19;18209:4;18204:3;18200:14;18185:29;;18147:73;;;;:::o;18226:305::-;;18285:20;18303:1;18285:20;:::i;:::-;18280:25;;18319:20;18337:1;18319:20;:::i;:::-;18314:25;;18473:1;18405:66;18401:74;18398:1;18395:81;18392:2;;;18479:18;;:::i;:::-;18392:2;18523:1;18520;18516:9;18509:16;;18270:261;;;;:::o;18537:848::-;;;18629:6;18620:15;;18653:5;18644:14;;18667:712;18688:1;18678:8;18675:15;18667:712;;;18783:4;18778:3;18774:14;18768:4;18765:24;18762:2;;;18792:18;;:::i;:::-;18762:2;18842:1;18832:8;18828:16;18825:2;;;19257:4;19250:5;19246:16;19237:25;;18825:2;19307:4;19301;19297:15;19289:23;;19337:32;19360:8;19337:32;:::i;:::-;19325:44;;18667:712;;;18610:775;;;;;;;:::o;19391:285::-;;19475:23;19493:4;19475:23;:::i;:::-;19467:31;;19519:27;19537:8;19519:27;:::i;:::-;19507:39;;19565:104;19602:66;19592:8;19586:4;19565:104;:::i;:::-;19556:113;;19457:219;;;;:::o;19682:1073::-;;19927:8;19917:2;;19948:1;19939:10;;19950:5;;19917:2;19976:4;19966:2;;19993:1;19984:10;;19995:5;;19966:2;20062:4;20110:1;20105:27;;;;20146:1;20141:191;;;;20055:277;;20105:27;20123:1;20114:10;;20125:5;;;20141:191;20186:3;20176:8;20173:17;20170:2;;;20193:18;;:::i;:::-;20170:2;20242:8;20239:1;20235:16;20226:25;;20277:3;20270:5;20267:14;20264:2;;;20284:18;;:::i;:::-;20264:2;20317:5;;;20055:277;;20441:2;20431:8;20428:16;20422:3;20416:4;20413:13;20409:36;20391:2;20381:8;20378:16;20373:2;20367:4;20364:12;20360:35;20344:111;20341:2;;;20497:8;20491:4;20487:19;20478:28;;20532:3;20525:5;20522:14;20519:2;;;20539:18;;:::i;:::-;20519:2;20572:5;;20341:2;20612:42;20650:3;20640:8;20634:4;20631:1;20612:42;:::i;:::-;20597:57;;;;20686:4;20681:3;20677:14;20670:5;20667:25;20664:2;;;20695:18;;:::i;:::-;20664:2;20744:4;20737:5;20733:16;20724:25;;19742:1013;;;;;;:::o;20761:348::-;;20824:20;20842:1;20824:20;:::i;:::-;20819:25;;20858:20;20876:1;20858:20;:::i;:::-;20853:25;;21046:1;20978:66;20974:74;20971:1;20968:81;20963:1;20956:9;20949:17;20945:105;20942:2;;;21053:18;;:::i;:::-;20942:2;21101:1;21098;21094:9;21083:20;;20809:300;;;;:::o;21115:191::-;;21175:20;21193:1;21175:20;:::i;:::-;21170:25;;21209:20;21227:1;21209:20;:::i;:::-;21204:25;;21248:1;21245;21242:8;21239:2;;;21253:18;;:::i;:::-;21239:2;21298:1;21295;21291:9;21283:17;;21160:146;;;;:::o;21312:96::-;;21378:24;21396:5;21378:24;:::i;:::-;21367:35;;21357:51;;;:::o;21414:104::-;;21488:24;21506:5;21488:24;:::i;:::-;21477:35;;21467:51;;;:::o;21524:90::-;;21601:5;21594:13;21587:21;21576:32;;21566:48;;;:::o;21620:149::-;;21696:66;21689:5;21685:78;21674:89;;21664:105;;;:::o;21775:126::-;;21852:42;21845:5;21841:54;21830:65;;21820:81;;;:::o;21907:77::-;;21973:5;21962:16;;21952:32;;;:::o;21990:154::-;22074:6;22069:3;22064;22051:30;22136:1;22127:6;22122:3;22118:16;22111:27;22041:103;;;:::o;22150:307::-;22218:1;22228:113;22242:6;22239:1;22236:13;22228:113;;;22327:1;22322:3;22318:11;22312:18;22308:1;22303:3;22299:11;22292:39;22264:2;22261:1;22257:10;22252:15;;22228:113;;;22359:6;22356:1;22353:13;22350:2;;;22439:1;22430:6;22425:3;22421:16;22414:27;22350:2;22199:258;;;;:::o;22463:281::-;22546:27;22568:4;22546:27;:::i;:::-;22538:6;22534:40;22676:6;22664:10;22661:22;22640:18;22628:10;22625:34;22622:62;22619:2;;;22687:18;;:::i;:::-;22619:2;22727:10;22723:2;22716:22;22506:238;;;:::o;22750:233::-;;22812:24;22830:5;22812:24;:::i;:::-;22803:33;;22858:66;22851:5;22848:77;22845:2;;;22928:18;;:::i;:::-;22845:2;22975:1;22968:5;22964:13;22957:20;;22793:190;;;:::o;22989:180::-;23037:77;23034:1;23027:88;23134:4;23131:1;23124:15;23158:4;23155:1;23148:15;23175:180;23223:77;23220:1;23213:88;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23361:102;;23453:2;23449:7;23444:2;23437:5;23433:14;23429:28;23419:38;;23409:54;;;:::o;23469:102::-;;23558:5;23555:1;23551:13;23530:34;;23520:51;;;:::o;23577:224::-;23717:34;23713:1;23705:6;23701:14;23694:58;23786:7;23781:2;23773:6;23769:15;23762:32;23683:118;:::o;23807:169::-;23947:21;23943:1;23935:6;23931:14;23924:45;23913:63;:::o;23982:225::-;24122:34;24118:1;24110:6;24106:14;24099:58;24191:8;24186:2;24178:6;24174:15;24167:33;24088:119;:::o;24213:223::-;24353:34;24349:1;24341:6;24337:14;24330:58;24422:6;24417:2;24409:6;24405:15;24398:31;24319:117;:::o;24442:169::-;24582:21;24578:1;24570:6;24566:14;24559:45;24548:63;:::o;24617:169::-;24757:21;24753:1;24745:6;24741:14;24734:45;24723:63;:::o;24792:122::-;24865:24;24883:5;24865:24;:::i;:::-;24858:5;24855:35;24845:2;;24904:1;24901;24894:12;24845:2;24835:79;:::o;24920:138::-;25001:32;25027:5;25001:32;:::i;:::-;24994:5;24991:43;24981:2;;25048:1;25045;25038:12;24981:2;24971:87;:::o;25064:120::-;25136:23;25153:5;25136:23;:::i;:::-;25129:5;25126:34;25116:2;;25174:1;25171;25164:12;25116:2;25106:78;:::o;25190:122::-;25263:24;25281:5;25263:24;:::i;:::-;25256:5;25253:35;25243:2;;25302:1;25299;25292:12;25243:2;25233:79;:::o

Swarm Source

ipfs://e9702fe4faadae7c7e2e32689011db43da66ca88f281a4ff494fa92563aabbd4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Multi Chain PoS Network focused on interoperability, scalability, and usability. It utilizes AI-Enabled Proof of stake algorithm, a multi-layered consensus model, and voting-based governance.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.