ETH Price: $3,170.85 (+2.34%)

Token

CoiCoin (Coi)
 

Overview

Max Total Supply

1,000,000,000 Coi

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
581,565.077666820069541557 Coi

Value
$0.00
0xc32d109e89f62741be904254ed777ee0a83e191a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CoiCoin

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-09
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint256) values;
        mapping(address => uint256) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint256) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key)
        public
        view
        returns (int256)
    {
        if (!map.inserted[key]) {
            return -1;
        }
        return int256(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint256 index)
        public
        view
        returns (address)
    {
        return map.keys[index];
    }

    function size(Map storage map) public view returns (uint256) {
        return map.keys.length;
    }

    function set(
        Map storage map,
        address key,
        uint256 val
    ) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint256 index = map.indexOf[key];
        uint256 lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

interface IFTPAntiBot {
    // Here we create the interface to interact with AntiBot
    function scanAddress(
        address _address,
        address _safeAddress,
        address _origin
    ) external returns (bool);

    function registerBlock(address _recipient, address _sender) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface DividendPayingTokenInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) external view returns (uint256);

    /// @notice Distributes ether to token holders as dividends.
    /// @dev SHOULD distribute the paid ether to token holders as dividends.
    ///  SHOULD NOT directly transfer ether to token holders in this function.
    ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
    function distributeDividends() external payable;

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
    ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
    function withdrawDividend() external;

    /// @dev This event MUST emit when ether is distributed to token holders.
    /// @param from The address which sends ether to this contract.
    /// @param weiAmount The amount of distributed ether in wei.
    event DividendsDistributed(address indexed from, uint256 weiAmount);

    /// @dev This event MUST emit when an address withdraws their dividend.
    /// @param to The address which withdraws ether from this contract.
    /// @param weiAmount The amount of withdrawn ether in wei.
    event DividendWithdrawn(
        address indexed to,
        uint256 weiAmount,
        address received
    );
}

interface DividendPayingTokenOptionalInterface {
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        external
        view
        returns (uint256);

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        external
        view
        returns (uint256);
}

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

contract DividendPayingToken is
    ERC20,
    DividendPayingTokenInterface,
    DividendPayingTokenOptionalInterface
{
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;

    // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
    // For more discussion about choosing the value of `magnitude`,
    //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
    uint256 internal constant magnitude = 2**128;

    uint256 internal magnifiedDividendPerShare;

    // About dividendCorrection:
    // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
    // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
    //   `dividendOf(_user)` should not be changed,
    //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
    // To keep the `dividendOf(_user)` unchanged, we add a correction term:
    //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
    //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
    //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
    // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;

    uint256 public totalDividendsDistributed;

    constructor(string memory _name, string memory _symbol)
        public
        ERC20(_name, _symbol)
    {}

    /// @dev Distributes dividends whenever ether is paid to this contract.
    receive() external payable {
        distributeDividends();
    }

    /// @notice Distributes ether to token holders as dividends.
    /// @dev It reverts if the total supply of tokens is 0.
    /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
    /// About undistributed ether:
    ///   In each distribution, there is a small amount of ether not distributed,
    ///     the magnified amount of which is
    ///     `(msg.value * magnitude) % totalSupply()`.
    ///   With a well-chosen `magnitude`, the amount of undistributed ether
    ///     (de-magnified) in a distribution can be less than 1 wei.
    ///   We can actually keep track of the undistributed ether in a distribution
    ///     and try to distribute it in the next distribution,
    ///     but keeping track of such data on-chain costs much more than
    ///     the saved ether, so we don't do that.
    function distributeDividends() public payable override {
        require(totalSupply() > 0);

        if (msg.value > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (msg.value).mul(magnitude) / totalSupply()
            );
            emit DividendsDistributed(msg.sender, msg.value);

            totalDividendsDistributed = totalDividendsDistributed.add(
                msg.value
            );
        }
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function withdrawDividend() public virtual override {
        _withdrawDividendOfUser(msg.sender, msg.sender);
    }

    /// @notice Withdraws the ether distributed to the sender.
    /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
    function _withdrawDividendOfUser(address payable user, address payable to)
        internal
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(
                _withdrawableDividend
            );
            emit DividendWithdrawn(user, _withdrawableDividend, to);
            (bool success, ) = to.call{value: _withdrawableDividend}("");

            if (!success) {
                withdrawnDividends[user] = withdrawnDividends[user].sub(
                    _withdrawableDividend
                );
                return 0;
            }

            return _withdrawableDividend;
        }

        return 0;
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function dividendOf(address _owner) public view override returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return withdrawnDividends[_owner];
    }

    /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner)
        public
        view
        override
        returns (uint256)
    {
        return
            magnifiedDividendPerShare
                .mul(balanceOf(_owner))
                .toInt256Safe()
                .add(magnifiedDividendCorrections[_owner])
                .toUint256Safe() / magnitude;
    }

    /// @dev Internal function that mints tokens to an account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account that will receive the created tokens.
    /// @param value The amount that will be created.
    function _mint(address account, uint256 value) internal override {
        super._mint(account, value);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

    /// @dev Internal function that burns an amount of the token of a given account.
    /// Update magnifiedDividendCorrections to keep dividends unchanged.
    /// @param account The account whose tokens will be burnt.
    /// @param value The amount that will be burnt.
    function _burn(address account, uint256 value) internal override {
        super._burn(account, value);
        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[
            account
        ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe());
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = balanceOf(account);

        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }

    function getAccount(address _account)
        public
        view
        returns (uint256 _withdrawableDividends, uint256 _withdrawnDividends)
    {
        _withdrawableDividends = withdrawableDividendOf(_account);
        _withdrawnDividends = withdrawnDividends[_account];
    }
}

contract CoiCoinDividendTracker is DividendPayingToken, Ownable {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;

    mapping(address => bool) public excludedFromDividends;

    uint256 public minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);

    constructor()
        public
        DividendPayingToken(
            "CoiCoin_Dividend_Tracker",
            "CoiCoin_Dividend_Tracker"
        )
    {
        minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens
    }

    function _approve(
        address,
        address,
        uint256
    ) internal override {
        require(false, "CoiCoin_Dividend_Tracker: No approvals allowed");
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal override {
        require(false, "CoiCoin_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public override {
        require(
            false,
            "CoiCoin_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main CoiCoin contract."
        );
    }

    function excludeFromDividends(address account) external onlyOwner {
        require(!excludedFromDividends[account]);
        excludedFromDividends[account] = true;

        _setBalance(account, 0);
        tokenHoldersMap.remove(account);

        emit ExcludeFromDividends(account);
    }

    function getNumberOfTokenHolders() external view returns (uint256) {
        return tokenHoldersMap.keys.length;
    }

    function setBalance(address payable account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }

        if (newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
            tokenHoldersMap.set(account, newBalance);
        } else {
            _setBalance(account, 0);
            tokenHoldersMap.remove(account);
        }
    }

    function processAccount(address payable account, address payable toAccount)
        public
        onlyOwner
        returns (uint256)
    {
        uint256 amount = _withdrawDividendOfUser(account, toAccount);
        return amount;
    }
}

contract CoiCoin is ERC20, Ownable {
    using SafeMath for uint256;

    IFTPAntiBot private antiBot;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;
    bool private reinvesting;
    bool public antibotEnabled = false;
    bool public maxPurchaseEnabled = true;

    CoiCoinDividendTracker public dividendTracker;

    address payable private devAddress;

    uint256 public ethFee = 5;
    uint256 public devFee = 5;
    uint256 public totalFee = 10;

    uint256 public tradingStartTime = 1628609400;

    uint256 minimumTokenBalanceForDividends = 10000 * (10**18);

    //maximum purchase amount for initial launch
    uint256 maxPurchaseAmount = 5000000 * (10**18);

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;

    // addresses that can make transfers before presale is over
    mapping(address => bool) public canTransferBeforeTradingIsEnabled;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    // the last time an address transferred
    // used to detect if an account can be reinvest inactive funds to the vault
    mapping(address => uint256) public lastTransfer;

    event UpdateDividendTracker(
        address indexed newAddress,
        address indexed oldAddress
    );
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SendDividends(uint256 amount);
    event DividendClaimed(
        uint256 ethAmount,
        uint256 tokenAmount,
        address account
    );

    constructor(address payable _devAddress) public ERC20("CoiCoin", "Coi") {
        devAddress = _devAddress;

        IFTPAntiBot _antiBot = IFTPAntiBot(
            0x590C2B20f7920A2D21eD32A21B616906b4209A43
        );
        antiBot = _antiBot;

        dividendTracker = new CoiCoinDividendTracker();

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(address(this), true);
        excludeFromFees(owner(), true);

        // enable owner and fixed-sale wallet to send tokens before presales are over
        canTransferBeforeTradingIsEnabled[owner()] = true;

        _mint(owner(), 1000000000 * (10**18));
    }

    receive() external payable {}

    function setTradingStartTime(uint256 newStartTime) public onlyOwner {
        require(
            tradingStartTime > block.timestamp,
            "Trading has already started"
        );
        require(
            newStartTime > block.timestamp,
            "Start time must be in the future"
        );

        tradingStartTime = newStartTime;
    }

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(
            newAddress != address(dividendTracker),
            "CoiCoin: The dividend tracker already has that address"
        );

        CoiCoinDividendTracker newDividendTracker = CoiCoinDividendTracker(
            payable(newAddress)
        );

        require(
            newDividendTracker.owner() == address(this),
            "CoiCoin: The new dividend tracker must be owned by the CoiCoin token contract"
        );

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "CoiCoin: The router already has that address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "CoiCoin: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(
        address[] memory accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "CoiCoin: The UniSwap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "CoiCoin: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function allowPreTrading(address account, bool allowed) public onlyOwner {
        // used for owner and pre sale addresses
        require(
            canTransferBeforeTradingIsEnabled[account] != allowed,
            "CoiCoin: Pre trading is already the value of 'excluded'"
        );
        canTransferBeforeTradingIsEnabled[account] = allowed;
    }

    function setMaxPurchaseEnabled(bool enabled) public onlyOwner {
        require(
            maxPurchaseEnabled != enabled,
            "CoiCoin: Max purchase enabled is already the value of 'enabled'"
        );
        maxPurchaseEnabled = enabled;
    }

    function setMaxPurchaseAmount(uint256 newAmount) public onlyOwner {
        maxPurchaseAmount = newAmount;
    }

    function updateDevAddress(address payable newAddress) public onlyOwner {
        devAddress = newAddress;
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.balanceOf(account);
    }

    function reinvestInactive(address payable account) public onlyOwner {
        uint256 tokenBalance = dividendTracker.balanceOf(account);
        require(
            tokenBalance <= minimumTokenBalanceForDividends,
            "CoiCoin: Account balance must be less then minimum token balance for dividends"
        );

        uint256 _lastTransfer = lastTransfer[account];
        require(
            block.timestamp.sub(_lastTransfer) > 12 weeks,
            "CoiCoin: Account must have been inactive for at least 12 weeks"
        );

        dividendTracker.processAccount(account, address(this));
        uint256 dividends = address(this).balance;
        (bool success, ) = address(dividendTracker).call{value: dividends}("");

        if (success) {
            emit SendDividends(dividends);
            try dividendTracker.setBalance(account, 0) {} catch {}
        }
    }

    function claim(bool reinvest, uint256 minTokens) external {
        _claim(msg.sender, reinvest, minTokens);
    }

    function _claim(
        address payable account,
        bool reinvest,
        uint256 minTokens
    ) private {
        uint256 withdrawableAmount = dividendTracker.withdrawableDividendOf(
            account
        );
        require(
            withdrawableAmount > 0,
            "CoiCoin: Claimer has no withdrawable dividend"
        );

        if (!reinvest) {
            uint256 ethAmount = dividendTracker.processAccount(
                account,
                account
            );
            if (ethAmount > 0) {
                emit DividendClaimed(ethAmount, 0, account);
            }
            return;
        }

        uint256 ethAmount = dividendTracker.processAccount(
            account,
            address(this)
        );

        if (ethAmount > 0) {
            reinvesting = true;
            uint256 tokenAmount = swapEthForTokens(
                ethAmount,
                minTokens,
                account
            );
            reinvesting = false;
            emit DividendClaimed(ethAmount, tokenAmount, account);
        }
    }

    function getNumberOfDividendTokenHolders() external view returns (uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }

    function getAccount(address _account)
        public
        view
        returns (
            uint256 withdrawableDividends,
            uint256 withdrawnDividends,
            uint256 balance
        )
    {
        (withdrawableDividends, withdrawnDividends) = dividendTracker
            .getAccount(_account);
        return (withdrawableDividends, withdrawnDividends, balanceOf(_account));
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        // address must be permitted to transfer before tradingStartTime
        if (tradingStartTime > block.timestamp) {
            require(
                canTransferBeforeTradingIsEnabled[from],
                "CoiCoin: This account cannot send tokens until trading is enabled"
            );
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (antibotEnabled) {
            if (automatedMarketMakerPairs[from]) {
                require(
                    !antiBot.scanAddress(to, from, tx.origin),
                    "Beep Beep Boop, You're a piece of poop"
                );
            }
            if (automatedMarketMakerPairs[to]) {
                require(
                    !antiBot.scanAddress(from, to, tx.origin),
                    "Beep Beep Boop, You're a piece of poop"
                );
            }
        }

        // make sure amount does not exceed max on a purchase
        if (maxPurchaseEnabled && automatedMarketMakerPairs[from]) {
            require(
                amount <= maxPurchaseAmount,
                "CoiCoin: Exceeds max purchase amount"
            );
        }

        if (
            !swapping &&
            !reinvesting &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapAndDistribute();
            swapping = false;
        }

        bool takeFee = !swapping && !reinvesting;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        // don't take a fee unless it's a buy / sell
        if (
            (_isExcludedFromFees[from] || _isExcludedFromFees[to]) ||
            (!automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to])
        ) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = amount.mul(totalFee).div(100);
            amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try
            dividendTracker.setBalance(payable(from), balanceOf(from))
        {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if (antibotEnabled) {
            try antiBot.registerBlock(from, to) {} catch {}
        }

        lastTransfer[from] = block.timestamp;
        lastTransfer[to] = block.timestamp;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapEthForTokens(
        uint256 ethAmount,
        uint256 minTokens,
        address account
    ) internal returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        uint256 balanceBefore = balanceOf(account);

        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: ethAmount
        }(minTokens, path, account, block.timestamp);

        uint256 tokenAmount = balanceOf(account).sub(balanceBefore);
        return tokenAmount;
    }

    function swapAndDistribute() private {
        uint256 tokenBalance = balanceOf(address(this));
        swapTokensForEth(tokenBalance);

        uint256 ethBalance = address(this).balance;
        uint256 devPortion = ethBalance.mul(devFee).div(totalFee);
        devAddress.transfer(devPortion);

        uint256 dividends = address(this).balance;
        (bool success, ) = address(dividendTracker).call{value: dividends}("");

        if (success) {
            emit SendDividends(dividends);
        }
    }

    function assignAntiBot(address _address) external onlyOwner {
        IFTPAntiBot _antiBot = IFTPAntiBot(_address);
        antiBot = _antiBot;
    }

    function toggleAntiBot() external onlyOwner {
        if (antibotEnabled) {
            antibotEnabled = false;
        } else {
            antibotEnabled = true;
        }
    }

    function getDay() internal view returns (uint256) {
        return block.timestamp.div(1 days);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_devAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"DividendClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"allowPreTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antibotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"assignAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canTransferBeforeTradingIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"reinvest","type":"bool"},{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract CoiCoinDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"withdrawnDividends","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchaseEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"reinvestInactive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxPurchaseAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMaxPurchaseEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setTradingStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526008805461ffff60b01b1916600160b81b1790556005600b819055600c55600a600d556361129b78600e5569021e19e0c9bab2400000600f556a0422ca8b0a00a4250000006010553480156200005957600080fd5b5060405162005ff438038062005ff4833981810160405260208110156200007f57600080fd5b5051604080518082018252600781526621b7b4a1b7b4b760c91b60208281019182528351808501909452600380855262436f6960e81b918501919091528251929392620000cd9290620009b3565b508051620000e3906004906020840190620009b3565b5050506000620000f8620005ca60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a80546001600160a01b03199081166001600160a01b038416179091556006805473590c2b20f7920a2d21ed32a21b616906b4209a43921682179055604051620001919062000a38565b604051809103906000f080158015620001ae573d6000803e3d6000fd5b50600960006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022a57600080fd5b505afa1580156200023f573d6000803e3d6000fd5b505050506040513d60208110156200025657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002a757600080fd5b505afa158015620002bc573d6000803e3d6000fd5b505050506040513d6020811015620002d357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032657600080fd5b505af11580156200033b573d6000803e3d6000fd5b505050506040513d60208110156200035257600080fd5b5051600780546001600160a01b038086166001600160a01b0319928316179092556008805492841692909116919091179055905062000393816001620005ce565b6009546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b158015620003e157600080fd5b505af1158015620003f6573d6000803e3d6000fd5b50506009546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200044757600080fd5b505af11580156200045c573d6000803e3d6000fd5b50506009546001600160a01b031691506331e79db090506200047d62000701565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620004bd57600080fd5b505af1158015620004d2573d6000803e3d6000fd5b50506009546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200052557600080fd5b505af11580156200053a573d6000803e3d6000fd5b50505050620005513060016200071060201b60201c565b620005676200055f62000701565b600162000710565b6001601260006200057762000701565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620005c0620005ad62000701565b6b033b2e3c9fd0803ce80000006200083d565b5050505062000a5d565b3390565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156200062e5760405162461bcd60e51b815260040180806020018281038252604181526020018062005f806041913960600191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155620006c5576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015620006ab57600080fd5b505af1158015620006c0573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6200071a620005ca565b6005546001600160a01b039081169116146200077d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415620007dd5760405162461bcd60e51b815260040180806020018281038252603381526020018062005fc16033913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b03821662000899576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620008a7600083836200094c565b620008c3816002546200095160201b620021721790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620008f69183906200217262000951821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620009ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009f657805160ff191683800117855562000a26565b8280016001018555821562000a26579182015b8281111562000a2657825182559160200191906001019062000a09565b5062000a3492915062000a46565b5090565b611b2c806200445483390190565b5b8082111562000a34576000815560010162000a47565b6139e78062000a6d6000396000f3fe6080604052600436106102815760003560e01c80636843cd841161014f578063a457c2d7116100c1578063c02466681161007a578063c024666814610957578063c492f04614610992578063d505a36414610a44578063dd62ed3e14610a76578063f2fde38b14610ab1578063fbcbc0f114610ae457610288565b8063a457c2d714610840578063a5fa12f014610879578063a8b9d240146108a3578063a9059cbb146108d6578063af74ff5b1461090f578063b62496f51461092457610288565b80638503376211610113578063850337621461076057806388bdd9be146107935780638da5cb5b146107c65780638db038f5146107db57806395d89b41146107f05780639a7a23d61461080557610288565b80636843cd841461069d57806370a08231146106d057806370b7b80c14610703578063715018a6146107185780637e0e155c1461072d57610288565b806339509351116101f35780635b6612ad116101ac5780635b6612ad146105a757806362caa704146105da57806363c6ad761461060d57806364b0f6531461064057806365b8dbc0146106555780636827e7641461068857610288565b806339509351146104d257806341bf9fdc1461050b57806349bd5a5e146105205780634cf1115d146105355780634ef901dc1461054a5780634fbee1931461057457610288565b80632354a17c116102455780632354a17c146103d157806323b872dd146103ff5780632c1f5216146104425780632f9c45691461045757806330bb4cff14610492578063313ce567146104a757610288565b806306fdde031461028d578063095ea7b3146103175780631694505e1461036457806318160ddd146103955780631df4ccfc146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610b35565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610bcb565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610be9565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610bf8565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103aa610bfe565b3480156103dd57600080fd5b506103fd600480360360208110156103f457600080fd5b50351515610c04565b005b34801561040b57600080fd5b506103506004803603606081101561042257600080fd5b506001600160a01b03813581169160208101359091169060400135610cca565b34801561044e57600080fd5b50610379610d51565b34801561046357600080fd5b506103fd6004803603604081101561047a57600080fd5b506001600160a01b0381351690602001351515610d60565b34801561049e57600080fd5b506103aa610e41565b3480156104b357600080fd5b506104bc610eb7565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b50610350600480360360408110156104f557600080fd5b506001600160a01b038135169060200135610ebc565b34801561051757600080fd5b50610350610f0a565b34801561052c57600080fd5b50610379610f1a565b34801561054157600080fd5b506103aa610f29565b34801561055657600080fd5b506103fd6004803603602081101561056d57600080fd5b5035610f2f565b34801561058057600080fd5b506103506004803603602081101561059757600080fd5b50356001600160a01b0316611036565b3480156105b357600080fd5b506103aa600480360360208110156105ca57600080fd5b50356001600160a01b0316611054565b3480156105e657600080fd5b506103fd600480360360208110156105fd57600080fd5b50356001600160a01b0316611066565b34801561061957600080fd5b506103fd6004803603602081101561063057600080fd5b50356001600160a01b03166110e0565b34801561064c57600080fd5b506103aa6113dd565b34801561066157600080fd5b506103fd6004803603602081101561067857600080fd5b50356001600160a01b0316611422565b34801561069457600080fd5b506103aa611524565b3480156106a957600080fd5b506103aa600480360360208110156106c057600080fd5b50356001600160a01b031661152a565b3480156106dc57600080fd5b506103aa600480360360208110156106f357600080fd5b50356001600160a01b03166115ad565b34801561070f57600080fd5b506103aa6115c8565b34801561072457600080fd5b506103fd6115ce565b34801561073957600080fd5b506103506004803603602081101561075057600080fd5b50356001600160a01b0316611670565b34801561076c57600080fd5b506103fd6004803603602081101561078357600080fd5b50356001600160a01b0316611685565b34801561079f57600080fd5b506103fd600480360360208110156107b657600080fd5b50356001600160a01b03166116ff565b3480156107d257600080fd5b50610379611a56565b3480156107e757600080fd5b50610350611a65565b3480156107fc57600080fd5b506102a2611a75565b34801561081157600080fd5b506103fd6004803603604081101561082857600080fd5b506001600160a01b0381351690602001351515611ad6565b34801561084c57600080fd5b506103506004803603604081101561086357600080fd5b506001600160a01b038135169060200135611b89565b34801561088557600080fd5b506103fd6004803603602081101561089c57600080fd5b5035611bf1565b3480156108af57600080fd5b506103aa600480360360208110156108c657600080fd5b50356001600160a01b0316611c4e565b3480156108e257600080fd5b50610350600480360360408110156108f957600080fd5b506001600160a01b038135169060200135611c9f565b34801561091b57600080fd5b506103fd611cb3565b34801561093057600080fd5b506103506004803603602081101561094757600080fd5b50356001600160a01b0316611d45565b34801561096357600080fd5b506103fd6004803603604081101561097a57600080fd5b506001600160a01b0381351690602001351515611d5a565b34801561099e57600080fd5b506103fd600480360360408110156109b557600080fd5b8101906020810181356401000000008111156109d057600080fd5b8201836020820111156109e257600080fd5b80359060200191846020830284011164010000000083111715610a0457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505050503515159050611e70565b348015610a5057600080fd5b506103fd60048036036040811015610a6757600080fd5b50803515159060200135611fa3565b348015610a8257600080fd5b506103aa60048036036040811015610a9957600080fd5b506001600160a01b0381358116916020013516611fae565b348015610abd57600080fd5b506103fd60048036036020811015610ad457600080fd5b50356001600160a01b0316611fd9565b348015610af057600080fd5b50610b1760048036036020811015610b0757600080fd5b50356001600160a01b03166120d2565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bdf610bd86121d3565b84846121d7565b5060015b92915050565b6007546001600160a01b031681565b60025490565b600d5481565b610c0c6121d3565b6005546001600160a01b03908116911614610c5c576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b60085460ff600160b81b9091041615158115151415610cac5760405162461bcd60e51b815260040180806020018281038252603f8152602001806137d4603f913960400191505060405180910390fd5b60088054911515600160b81b0260ff60b81b19909216919091179055565b6000610cd78484846122c3565b610d4784610ce36121d3565b610d428560405180606001604052806028815260200161378c602891396001600160a01b038a16600090815260016020526040812090610d216121d3565b6001600160a01b031681526020810191909152604001600020549190612971565b6121d7565b5060019392505050565b6009546001600160a01b031681565b610d686121d3565b6005546001600160a01b03908116911614610db8576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526012602052604090205460ff1615158115151415610e165760405162461bcd60e51b81526004018080602001828103825260378152602001806137346037913960400191505060405180910390fd5b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e8657600080fd5b505afa158015610e9a573d6000803e3d6000fd5b505050506040513d6020811015610eb057600080fd5b5051905090565b601290565b6000610bdf610ec96121d3565b84610d428560016000610eda6121d3565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612172565b600854600160b01b900460ff1681565b6008546001600160a01b031681565b600b5481565b610f376121d3565b6005546001600160a01b03908116911614610f87576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b42600e5411610fdd576040805162461bcd60e51b815260206004820152601b60248201527f54726164696e672068617320616c726561647920737461727465640000000000604482015290519081900360640190fd5b428111611031576040805162461bcd60e51b815260206004820181905260248201527f53746172742074696d65206d75737420626520696e2074686520667574757265604482015290519081900360640190fd5b600e55565b6001600160a01b031660009081526011602052604090205460ff1690565b60146020526000908152604090205481565b61106e6121d3565b6005546001600160a01b039081169116146110be576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6110e86121d3565b6005546001600160a01b03908116911614611138576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d60208110156111b357600080fd5b5051600f549091508111156111f95760405162461bcd60e51b815260040180806020018281038252604e8152602001806136e6604e913960600191505060405180910390fd5b6001600160a01b038216600090815260146020526040902054626ebe006112204283612a08565b1161125c5760405162461bcd60e51b815260040180806020018281038252603e815260200180613646603e913960400191505060405180910390fd5b600954604080516352b5f81d60e01b81526001600160a01b038681166004830152306024830152915191909216916352b5f81d9160448083019260209291908290030181600087803b1580156112b157600080fd5b505af11580156112c5573d6000803e3d6000fd5b505050506040513d60208110156112db57600080fd5b505060095460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461132e576040519150601f19603f3d011682016040523d82523d6000602084013e611333565b606091505b5050905080156113d6576040805183815290517fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19181900360200190a1600954604080516338c110ef60e21b81526001600160a01b038881166004830152600060248301819052925193169263e30443bc9260448084019391929182900301818387803b1580156113c357600080fd5b505af19250505080156113d4575060015b505b5050505050565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e8657600080fd5b61142a6121d3565b6005546001600160a01b0390811691161461147a576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156114c75760405162461bcd60e51b815260040180806020018281038252602c8152602001806136ba602c913960400191505060405180910390fd5b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561157b57600080fd5b505afa15801561158f573d6000803e3d6000fd5b505050506040513d60208110156115a557600080fd5b505192915050565b6001600160a01b031660009081526020819052604090205490565b600e5481565b6115d66121d3565b6005546001600160a01b03908116911614611626576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60126020526000908152604090205460ff1681565b61168d6121d3565b6005546001600160a01b039081169116146116dd576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6117076121d3565b6005546001600160a01b03908116911614611757576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6009546001600160a01b03828116911614156117a45760405162461bcd60e51b81526004018080602001828103825260368152602001806136846036913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ec57600080fd5b505afa158015611800573d6000803e3d6000fd5b505050506040513d602081101561181657600080fd5b50516001600160a01b03161461185d5760405162461bcd60e51b815260040180806020018281038252604d8152602001806138d0604d913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156118ac57600080fd5b505af11580156118c0573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b15801561190b57600080fd5b505af115801561191f573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db061193a611a56565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561197957600080fd5b505af115801561198d573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b1580156119df57600080fd5b505af11580156119f3573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b600854600160b81b900460ff1681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bc15780601f10610b9657610100808354040283529160200191610bc1565b611ade6121d3565b6005546001600160a01b03908116911614611b2e576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6008546001600160a01b0383811691161415611b7b5760405162461bcd60e51b815260040180806020018281038252604a815260200180613968604a913960600191505060405180910390fd5b611b858282612a4a565b5050565b6000610bdf611b966121d3565b84610d42856040518060600160405280602581526020016139436025913960016000611bc06121d3565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612971565b611bf96121d3565b6005546001600160a01b03908116911614611c49576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b601055565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561157b57600080fd5b6000610bdf611cac6121d3565b84846122c3565b611cbb6121d3565b6005546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600854600160b01b900460ff1615611d2f576008805460ff60b01b19169055611d43565b6008805460ff60b01b1916600160b01b1790555b565b60136020526000908152604090205460ff1681565b611d626121d3565b6005546001600160a01b03908116911614611db2576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e105760405162461bcd60e51b815260040180806020018281038252603381526020018061389d6033913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611e786121d3565b6005546001600160a01b03908116911614611ec8576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b60005b8251811015611f1f578160116000858481518110611ee557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611ecb565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35828260405180806020018315158152602001828103825284818151815260200191508051906020019060200280838360005b83811015611f8b578181015183820152602001611f73565b50505050905001935050505060405180910390a15050565b611b85338383612b78565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611fe16121d3565b6005546001600160a01b03908116911614612031576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b0381166120765760405162461bcd60e51b81526004018080602001828103825260268152602001806135876026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6009546040805163fbcbc0f160e01b81526001600160a01b038481166004830152825160009485948594939091169263fbcbc0f19260248083019392829003018186803b15801561212257600080fd5b505afa158015612136573d6000803e3d6000fd5b505050506040513d604081101561214c57600080fd5b50805160209091015190935091508282612165866115ad565b9250925092509193909250565b6000828201838110156121cc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661221c5760405162461bcd60e51b81526004018080602001828103825260248152602001806138796024913960400191505060405180910390fd5b6001600160a01b0382166122615760405162461bcd60e51b81526004018080602001828103825260228152602001806135ad6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123085760405162461bcd60e51b81526004018080602001828103825260258152602001806138136025913960400191505060405180910390fd5b6001600160a01b03821661234d5760405162461bcd60e51b81526004018080602001828103825260238152602001806135236023913960400191505060405180910390fd5b42600e5411156123ae576001600160a01b03831660009081526012602052604090205460ff166123ae5760405162461bcd60e51b81526004018080602001828103825260418152602001806135466041913960600191505060405180910390fd5b806123c4576123bf83836000612e22565b61296c565b600854600160b01b900460ff16156125a2576001600160a01b03831660009081526013602052604090205460ff16156124bc57600654604080516312bdf42360e01b81526001600160a01b0385811660048301528681166024830152326044830152915191909216916312bdf4239160648083019260209291908290030181600087803b15801561245457600080fd5b505af1158015612468573d6000803e3d6000fd5b505050506040513d602081101561247e57600080fd5b5051156124bc5760405162461bcd60e51b815260040180806020018281038252602681526020018061391d6026913960400191505060405180910390fd5b6001600160a01b03821660009081526013602052604090205460ff16156125a257600654604080516312bdf42360e01b81526001600160a01b0386811660048301528581166024830152326044830152915191909216916312bdf4239160648083019260209291908290030181600087803b15801561253a57600080fd5b505af115801561254e573d6000803e3d6000fd5b505050506040513d602081101561256457600080fd5b5051156125a25760405162461bcd60e51b815260040180806020018281038252602681526020018061391d6026913960400191505060405180910390fd5b600854600160b81b900460ff1680156125d357506001600160a01b03831660009081526013602052604090205460ff165b15612619576010548111156126195760405162461bcd60e51b81526004018080602001828103825260248152602001806135cf6024913960400191505060405180910390fd5b600854600160a01b900460ff1615801561263d5750600854600160a81b900460ff16155b801561266257506001600160a01b03831660009081526013602052604090205460ff16155b801561268757506001600160a01b03831660009081526011602052604090205460ff16155b80156126ac57506001600160a01b03821660009081526011602052604090205460ff16155b156126da576008805460ff60a01b1916600160a01b1790556126cc612f7d565b6008805460ff60a01b191690555b600854600090600160a01b900460ff161580156127015750600854600160a81b900460ff16155b6001600160a01b03851660009081526011602052604090205490915060ff168061274357506001600160a01b03831660009081526011602052604090205460ff165b8061278b57506001600160a01b03841660009081526013602052604090205460ff1615801561278b57506001600160a01b03831660009081526013602052604090205460ff16155b15612794575060005b80156127d75760006127bc60646127b6600d548661308b90919063ffffffff16565b906130e4565b90506127c88382612a08565b92506127d5853083612e22565b505b6127e2848484612e22565b6009546001600160a01b031663e30443bc856127fd816115ad565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561284357600080fd5b505af1925050508015612854575060015b506009546001600160a01b031663e30443bc84612870816115ad565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156128b657600080fd5b505af19250505080156128c7575060015b50600854600160b01b900460ff1615612943576006546040805163b25d625960e01b81526001600160a01b03878116600483015286811660248301529151919092169163b25d625991604480830192600092919082900301818387803b15801561293057600080fd5b505af1925050508015612941575060015b505b506001600160a01b03808416600090815260146020526040808220429081905592851682529020555b505050565b60008184841115612a005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129c55781810151838201526020016129ad565b50505050905090810190601f1680156129f25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006121cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612971565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415612aa85760405162461bcd60e51b81526004018080602001828103825260418152602001806138386041913960600191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155612b3c576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612b2357600080fd5b505af1158015612b37573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600954604080516302a2e74960e61b81526001600160a01b0386811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015612bc957600080fd5b505afa158015612bdd573d6000803e3d6000fd5b505050506040513d6020811015612bf357600080fd5b5051905080612c335760405162461bcd60e51b815260040180806020018281038252602d815260200180613619602d913960400191505060405180910390fd5b82612d1557600954604080516352b5f81d60e01b81526001600160a01b03878116600483018190526024830152915160009392909216916352b5f81d9160448082019260209290919082900301818787803b158015612c9157600080fd5b505af1158015612ca5573d6000803e3d6000fd5b505050506040513d6020811015612cbb57600080fd5b505190508015612d0e5760408051828152600060208201526001600160a01b0387168183015290517f67dd3d116bf53e0ddda53bb148a5fdc129854e1c507c0eeda9190049a9bbc84f9181900360600190a15b505061296c565b600954604080516352b5f81d60e01b81526001600160a01b038781166004830152306024830152915160009392909216916352b5f81d9160448082019260209290919082900301818787803b158015612d6d57600080fd5b505af1158015612d81573d6000803e3d6000fd5b505050506040513d6020811015612d9757600080fd5b5051905080156113d6576008805460ff60a81b1916600160a81b1790556000612dc1828588613126565b6008805460ff60a81b1916905560408051848152602081018390526001600160a01b0389168183015290519192507f67dd3d116bf53e0ddda53bb148a5fdc129854e1c507c0eeda9190049a9bbc84f919081900360600190a1505050505050565b6001600160a01b038316612e675760405162461bcd60e51b81526004018080602001828103825260258152602001806138136025913960400191505060405180910390fd5b6001600160a01b038216612eac5760405162461bcd60e51b81526004018080602001828103825260238152602001806135236023913960400191505060405180910390fd5b612eb783838361296c565b612ef4816040518060600160405280602681526020016135f3602691396001600160a01b0386166000908152602081905260409020549190612971565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f239082612172565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612f88306115ad565b9050612f9381613317565b60004790506000612fb5600d546127b6600c548561308b90919063ffffffff16565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612ff0573d6000803e3d6000fd5b5060095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114613042576040519150601f19603f3d011682016040523d82523d6000602084013e613047565b606091505b5050905080156113d6576040805183815290517fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19181900360200190a15050505050565b60008261309a57506000610be3565b828202828482816130a757fe5b04146121cc5760405162461bcd60e51b815260040180806020018281038252602181526020018061376b6021913960400191505060405180910390fd5b60006121cc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134bd565b60408051600280825260608083018452600093909291906020830190803683375050600754604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561319057600080fd5b505afa1580156131a4573d6000803e3d6000fd5b505050506040513d60208110156131ba57600080fd5b5051815182906000906131c957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106131f757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506000613222846115ad565b9050600760009054906101000a90046001600160a01b03166001600160a01b031663b6f9de9587878588426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156132b757818101518382015260200161329f565b50505050905001955050505050506000604051808303818588803b1580156132de57600080fd5b505af11580156132f2573d6000803e3d6000fd5b5050505050600061330c82613306876115ad565b90612a08565b979650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061334557fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561339957600080fd5b505afa1580156133ad573d6000803e3d6000fd5b505050506040513d60208110156133c357600080fd5b50518151829060019081106133d457fe5b6001600160a01b0392831660209182029290920101526007546133fa91309116846121d7565b60075460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613480578181015183820152602001613468565b505050509050019650505050505050600060405180830381600087803b1580156134a957600080fd5b505af11580156113d4573d6000803e3d6000fd5b6000818361350c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129c55781810151838201526020016129ad565b50600083858161351857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f69436f696e3a2054686973206163636f756e742063616e6e6f742073656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c65644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373436f69436f696e3a2045786365656473206d617820707572636861736520616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f69436f696e3a20436c61696d657220686173206e6f20776974686472617761626c65206469766964656e64436f69436f696e3a204163636f756e74206d7573742068617665206265656e20696e61637469766520666f72206174206c65617374203132207765656b73436f69436f696e3a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373436f69436f696e3a2054686520726f7574657220616c72656164792068617320746861742061646472657373436f69436f696e3a204163636f756e742062616c616e6365206d757374206265206c657373207468656e206d696e696d756d20746f6b656e2062616c616e636520666f72206469766964656e6473436f69436f696e3a205072652074726164696e6720697320616c7265616479207468652076616c7565206f6620276578636c7564656427536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f69436f696e3a204d617820707572636861736520656e61626c656420697320616c7265616479207468652076616c7565206f662027656e61626c65642745524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f69436f696e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f69436f696e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427436f69436f696e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520436f69436f696e20746f6b656e20636f6e747261637442656570204265657020426f6f702c20596f752772652061207069656365206f6620706f6f7045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f436f69436f696e3a2054686520556e695377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273a2646970667358221220bd134f2ecccfd1eb2dda0eec2cf006d63820f4a82adf9aee64aacc8465039a0364736f6c634300060c003360806040523480156200001157600080fd5b5060408051808201825260188082527f436f69436f696e5f4469766964656e645f547261636b65720000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000101565b5080516200008490600490602084019062000101565b505050505060006200009b620000fd60201b60201c565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35069021e19e0c9bab2400000600f556200019d565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b5b8082111562000182576000815560010162000187565b61197f80620001ad6000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a9059cbb1161008a578063dd62ed3e11610064578063dd62ed3e1461063d578063e30443bc14610678578063f2fde38b146106b1578063fbcbc0f1146106e4576101ca565b8063a9059cbb146105bc578063aafd847a146105f5578063be10b61414610628576101ca565b806391b89fba116100c657806391b89fba1461050857806395d89b411461053b578063a457c2d714610550578063a8b9d24014610589576101ca565b8063715018a6146104ad57806385a6b3ae146104c25780638da5cb5b146104d7576101ca565b8063313ce567116101595780634e7b827f116101335780634e7b827f146103f757806352b5f81d1461042a5780636a4740021461046557806370a082311461047a576101ca565b8063313ce5671461036057806331e79db01461038b57806339509351146103be576101ca565b806309bbedde1161019557806309bbedde146102ae57806318160ddd146102d557806323b872dd146102ea57806327ce01471461032d576101ca565b806303c83302146101cf57806306fdde03146101d7578063095ea7b314610261576101ca565b366101ca576101c8610730565b005b600080fd5b6101c8610730565b3480156101e357600080fd5b506101ec6107c1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022657818101518382015260200161020e565b50505050905090810190601f1680156102535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026d57600080fd5b5061029a6004803603604081101561028457600080fd5b506001600160a01b038135169060200135610857565b604080519115158252519081900360200190f35b3480156102ba57600080fd5b506102c3610875565b60408051918252519081900360200190f35b3480156102e157600080fd5b506102c361087b565b3480156102f657600080fd5b5061029a6004803603606081101561030d57600080fd5b506001600160a01b03813581169160208101359091169060400135610881565b34801561033957600080fd5b506102c36004803603602081101561035057600080fd5b50356001600160a01b0316610908565b34801561036c57600080fd5b50610375610965565b6040805160ff9092168252519081900360200190f35b34801561039757600080fd5b506101c8600480360360208110156103ae57600080fd5b50356001600160a01b031661096a565b3480156103ca57600080fd5b5061029a600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610ac6565b34801561040357600080fd5b5061029a6004803603602081101561041a57600080fd5b50356001600160a01b0316610b14565b34801561043657600080fd5b506102c36004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b29565b34801561047157600080fd5b506101c8610b97565b34801561048657600080fd5b506102c36004803603602081101561049d57600080fd5b50356001600160a01b0316610bce565b3480156104b957600080fd5b506101c8610be9565b3480156104ce57600080fd5b506102c3610c8b565b3480156104e357600080fd5b506104ec610c91565b604080516001600160a01b039092168252519081900360200190f35b34801561051457600080fd5b506102c36004803603602081101561052b57600080fd5b50356001600160a01b0316610ca0565b34801561054757600080fd5b506101ec610cab565b34801561055c57600080fd5b5061029a6004803603604081101561057357600080fd5b506001600160a01b038135169060200135610d0c565b34801561059557600080fd5b506102c3600480360360208110156105ac57600080fd5b50356001600160a01b0316610d74565b3480156105c857600080fd5b5061029a600480360360408110156105df57600080fd5b506001600160a01b038135169060200135610da0565b34801561060157600080fd5b506102c36004803603602081101561061857600080fd5b50356001600160a01b0316610db4565b34801561063457600080fd5b506102c3610dcf565b34801561064957600080fd5b506102c36004803603604081101561066057600080fd5b506001600160a01b0381358116916020013516610dd5565b34801561068457600080fd5b506101c86004803603604081101561069b57600080fd5b506001600160a01b038135169060200135610e00565b3480156106bd57600080fd5b506101c8600480360360208110156106d457600080fd5b50356001600160a01b0316610f9f565b3480156106f057600080fd5b506107176004803603602081101561070757600080fd5b50356001600160a01b0316611098565b6040805192835260208301919091528051918290030190f35b600061073a61087b565b1161074457600080fd5b34156107bf5761077561075561087b565b61076334600160801b6110c5565b8161076a57fe5b600554919004611125565b60055560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a26008546107bb9034611125565b6008555b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084d5780601f106108225761010080835404028352916020019161084d565b820191906000526020600020905b81548152906001019060200180831161083057829003601f168201915b5050505050905090565b600061086b61086461117f565b8484611183565b5060015b92915050565b600a5490565b60025490565b600061088e8484846111bf565b6108fe8461089a61117f565b6108f985604051806060016040528060288152602001611823602891396001600160a01b038a166000908152600160205260408120906108d861117f565b6001600160a01b0316815260208101919091526040016000205491906111f6565b611183565b5060019392505050565b6001600160a01b038116600090815260066020526040812054600160801b90610957906109529061094c61094761093e88610bce565b600554906110c5565b61128d565b9061129d565b6112d0565b8161095e57fe5b0492915050565b601290565b61097261117f565b6009546001600160a01b039081169116146109c2576040805162461bcd60e51b8152602060048201819052602482015260008051602061184b833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600e602052604090205460ff16156109e857600080fd5b6001600160a01b0381166000908152600e60205260408120805460ff19166001179055610a169082906112e3565b6040805163131836e760e21b8152600a60048201526001600160a01b0383166024820152905173e3dfd76a146d8df416e497369ee439b3a2c7149191634c60db9c916044808301926000929190829003018186803b158015610a7757600080fd5b505af4158015610a8b573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b600061086b610ad361117f565b846108f98560016000610ae461117f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611125565b600e6020526000908152604090205460ff1681565b6000610b3361117f565b6009546001600160a01b03908116911614610b83576040805162461bcd60e51b8152602060048201819052602482015260008051602061184b833981519152604482015290519081900360640190fd5b6000610b8f848461133c565b949350505050565b60405162461bcd60e51b815260040180806020018281038252606b81526020018061186b606b913960800191505060405180910390fd5b6001600160a01b031660009081526020819052604090205490565b610bf161117f565b6009546001600160a01b03908116911614610c41576040805162461bcd60e51b8152602060048201819052602482015260008051602061184b833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60085481565b6009546001600160a01b031690565b600061086f82610d74565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084d5780601f106108225761010080835404028352916020019161084d565b600061086b610d1961117f565b846108f9856040518060600160405280602581526020016119256025913960016000610d4361117f565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111f6565b6001600160a01b03811660009081526007602052604081205461086f90610d9a84610908565b90611483565b600061086b610dad61117f565b84846111bf565b6001600160a01b031660009081526007602052604090205490565b600f5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e0861117f565b6009546001600160a01b03908116911614610e58576040805162461bcd60e51b8152602060048201819052602482015260008051602061184b833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610e7e57610f9b565b600f548110610f1657610e9182826112e3565b60408051632f0ad01760e21b8152600a60048201526001600160a01b038416602482015260448101839052905173e3dfd76a146d8df416e497369ee439b3a2c714919163bc2b405c916064808301926000929190829003018186803b158015610ef957600080fd5b505af4158015610f0d573d6000803e3d6000fd5b50505050610f9b565b610f218260006112e3565b6040805163131836e760e21b8152600a60048201526001600160a01b0384166024820152905173e3dfd76a146d8df416e497369ee439b3a2c7149191634c60db9c916044808301926000929190829003018186803b158015610f8257600080fd5b505af4158015610f96573d6000803e3d6000fd5b505050505b5050565b610fa761117f565b6009546001600160a01b03908116911614610ff7576040805162461bcd60e51b8152602060048201819052602482015260008051602061184b833981519152604482015290519081900360640190fd5b6001600160a01b03811661103c5760405162461bcd60e51b81526004018080602001828103825260268152602001806117ae6026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110a483610d74565b6001600160a01b039093166000908152600760205260409020549293915050565b6000826110d45750600061086f565b828202828482816110e157fe5b041461111e5760405162461bcd60e51b81526004018080602001828103825260218152602001806118026021913960400191505060405180910390fd5b9392505050565b60008282018381101561111e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b60405162461bcd60e51b815260040180806020018281038252602e8152602001806117d4602e913960400191505060405180910390fd5b505050565b60405162461bcd60e51b815260040180806020018281038252602e8152602001806118f7602e913960400191505060405180910390fd5b600081848411156112855760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561124a578181015183820152602001611232565b50505050905090810190601f1680156112775780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818181121561086f57600080fd5b60008282018183128015906112b25750838112155b806112c757506000831280156112c757508381125b61111e57600080fd5b6000808212156112df57600080fd5b5090565b60006112ee83610bce565b9050808211156113165760006113048383611483565b905061131084826114c5565b506111ba565b808210156111ba57600061132a8284611483565b90506113368482611529565b50505050565b60008061134884610d74565b90508015611479576001600160a01b0384166000908152600760205260409020546113739082611125565b6001600160a01b0380861660008181526007602090815260409182902094909455805185815292871693830193909352825190927feb063efb53b3790d2bc15284b59af7544466c8787c2883321ee27095647911b6928290030190a26040516000906001600160a01b0385169083908381818185875af1925050503d806000811461141a576040519150601f19603f3d011682016040523d82523d6000602084013e61141f565b606091505b5050905080611471576001600160a01b03851660009081526007602052604090205461144b9083611483565b6001600160a01b038616600090815260076020526040812091909155925061086f915050565b50905061086f565b5060009392505050565b600061111e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111f6565b6114cf828261156d565b6115096114ea610947836005546110c590919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549061165d565b6001600160a01b0390921660009081526006602052604090209190915550565b611533828261168f565b61150961154e610947836005546110c590919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549061129d565b6001600160a01b0382166115c8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6115d4600083836111ba565b6002546115e19082611125565b6002556001600160a01b0382166000908152602081905260409020546116079082611125565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183038183128015906116725750838113155b806112c757506000831280156112c7575083811361111e57600080fd5b6001600160a01b0382166116d45760405162461bcd60e51b81526004018080602001828103825260218152602001806118d66021913960400191505060405180910390fd5b6116e0826000836111ba565b61171d8160405180606001604052806022815260200161178c602291396001600160a01b03851660009081526020819052604090205491906111f6565b6001600160a01b0383166000908152602081905260409020556002546117439082611483565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373436f69436f696e5f4469766964656e645f547261636b65723a204e6f20617070726f76616c7320616c6c6f776564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f69436f696e5f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e20436f69436f696e20636f6e74726163742e45524332303a206275726e2066726f6d20746865207a65726f2061646472657373436f69436f696e5f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220289693e784866bce24f24be4ee94e054edf7af91b2a6cacab213bf9d50584aef64736f6c634300060c0033436f69436f696e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565436f69436f696e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427000000000000000000000000188c8f8abcb097202ddda044fa929f7c9e6ef846

Deployed Bytecode

0x6080604052600436106102815760003560e01c80636843cd841161014f578063a457c2d7116100c1578063c02466681161007a578063c024666814610957578063c492f04614610992578063d505a36414610a44578063dd62ed3e14610a76578063f2fde38b14610ab1578063fbcbc0f114610ae457610288565b8063a457c2d714610840578063a5fa12f014610879578063a8b9d240146108a3578063a9059cbb146108d6578063af74ff5b1461090f578063b62496f51461092457610288565b80638503376211610113578063850337621461076057806388bdd9be146107935780638da5cb5b146107c65780638db038f5146107db57806395d89b41146107f05780639a7a23d61461080557610288565b80636843cd841461069d57806370a08231146106d057806370b7b80c14610703578063715018a6146107185780637e0e155c1461072d57610288565b806339509351116101f35780635b6612ad116101ac5780635b6612ad146105a757806362caa704146105da57806363c6ad761461060d57806364b0f6531461064057806365b8dbc0146106555780636827e7641461068857610288565b806339509351146104d257806341bf9fdc1461050b57806349bd5a5e146105205780634cf1115d146105355780634ef901dc1461054a5780634fbee1931461057457610288565b80632354a17c116102455780632354a17c146103d157806323b872dd146103ff5780632c1f5216146104425780632f9c45691461045757806330bb4cff14610492578063313ce567146104a757610288565b806306fdde031461028d578063095ea7b3146103175780631694505e1461036457806318160ddd146103955780631df4ccfc146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610b35565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610bcb565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610be9565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610bf8565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103aa610bfe565b3480156103dd57600080fd5b506103fd600480360360208110156103f457600080fd5b50351515610c04565b005b34801561040b57600080fd5b506103506004803603606081101561042257600080fd5b506001600160a01b03813581169160208101359091169060400135610cca565b34801561044e57600080fd5b50610379610d51565b34801561046357600080fd5b506103fd6004803603604081101561047a57600080fd5b506001600160a01b0381351690602001351515610d60565b34801561049e57600080fd5b506103aa610e41565b3480156104b357600080fd5b506104bc610eb7565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b50610350600480360360408110156104f557600080fd5b506001600160a01b038135169060200135610ebc565b34801561051757600080fd5b50610350610f0a565b34801561052c57600080fd5b50610379610f1a565b34801561054157600080fd5b506103aa610f29565b34801561055657600080fd5b506103fd6004803603602081101561056d57600080fd5b5035610f2f565b34801561058057600080fd5b506103506004803603602081101561059757600080fd5b50356001600160a01b0316611036565b3480156105b357600080fd5b506103aa600480360360208110156105ca57600080fd5b50356001600160a01b0316611054565b3480156105e657600080fd5b506103fd600480360360208110156105fd57600080fd5b50356001600160a01b0316611066565b34801561061957600080fd5b506103fd6004803603602081101561063057600080fd5b50356001600160a01b03166110e0565b34801561064c57600080fd5b506103aa6113dd565b34801561066157600080fd5b506103fd6004803603602081101561067857600080fd5b50356001600160a01b0316611422565b34801561069457600080fd5b506103aa611524565b3480156106a957600080fd5b506103aa600480360360208110156106c057600080fd5b50356001600160a01b031661152a565b3480156106dc57600080fd5b506103aa600480360360208110156106f357600080fd5b50356001600160a01b03166115ad565b34801561070f57600080fd5b506103aa6115c8565b34801561072457600080fd5b506103fd6115ce565b34801561073957600080fd5b506103506004803603602081101561075057600080fd5b50356001600160a01b0316611670565b34801561076c57600080fd5b506103fd6004803603602081101561078357600080fd5b50356001600160a01b0316611685565b34801561079f57600080fd5b506103fd600480360360208110156107b657600080fd5b50356001600160a01b03166116ff565b3480156107d257600080fd5b50610379611a56565b3480156107e757600080fd5b50610350611a65565b3480156107fc57600080fd5b506102a2611a75565b34801561081157600080fd5b506103fd6004803603604081101561082857600080fd5b506001600160a01b0381351690602001351515611ad6565b34801561084c57600080fd5b506103506004803603604081101561086357600080fd5b506001600160a01b038135169060200135611b89565b34801561088557600080fd5b506103fd6004803603602081101561089c57600080fd5b5035611bf1565b3480156108af57600080fd5b506103aa600480360360208110156108c657600080fd5b50356001600160a01b0316611c4e565b3480156108e257600080fd5b50610350600480360360408110156108f957600080fd5b506001600160a01b038135169060200135611c9f565b34801561091b57600080fd5b506103fd611cb3565b34801561093057600080fd5b506103506004803603602081101561094757600080fd5b50356001600160a01b0316611d45565b34801561096357600080fd5b506103fd6004803603604081101561097a57600080fd5b506001600160a01b0381351690602001351515611d5a565b34801561099e57600080fd5b506103fd600480360360408110156109b557600080fd5b8101906020810181356401000000008111156109d057600080fd5b8201836020820111156109e257600080fd5b80359060200191846020830284011164010000000083111715610a0457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505050503515159050611e70565b348015610a5057600080fd5b506103fd60048036036040811015610a6757600080fd5b50803515159060200135611fa3565b348015610a8257600080fd5b506103aa60048036036040811015610a9957600080fd5b506001600160a01b0381358116916020013516611fae565b348015610abd57600080fd5b506103fd60048036036020811015610ad457600080fd5b50356001600160a01b0316611fd9565b348015610af057600080fd5b50610b1760048036036020811015610b0757600080fd5b50356001600160a01b03166120d2565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b6000610bdf610bd86121d3565b84846121d7565b5060015b92915050565b6007546001600160a01b031681565b60025490565b600d5481565b610c0c6121d3565b6005546001600160a01b03908116911614610c5c576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b60085460ff600160b81b9091041615158115151415610cac5760405162461bcd60e51b815260040180806020018281038252603f8152602001806137d4603f913960400191505060405180910390fd5b60088054911515600160b81b0260ff60b81b19909216919091179055565b6000610cd78484846122c3565b610d4784610ce36121d3565b610d428560405180606001604052806028815260200161378c602891396001600160a01b038a16600090815260016020526040812090610d216121d3565b6001600160a01b031681526020810191909152604001600020549190612971565b6121d7565b5060019392505050565b6009546001600160a01b031681565b610d686121d3565b6005546001600160a01b03908116911614610db8576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526012602052604090205460ff1615158115151415610e165760405162461bcd60e51b81526004018080602001828103825260378152602001806137346037913960400191505060405180910390fd5b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e8657600080fd5b505afa158015610e9a573d6000803e3d6000fd5b505050506040513d6020811015610eb057600080fd5b5051905090565b601290565b6000610bdf610ec96121d3565b84610d428560016000610eda6121d3565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612172565b600854600160b01b900460ff1681565b6008546001600160a01b031681565b600b5481565b610f376121d3565b6005546001600160a01b03908116911614610f87576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b42600e5411610fdd576040805162461bcd60e51b815260206004820152601b60248201527f54726164696e672068617320616c726561647920737461727465640000000000604482015290519081900360640190fd5b428111611031576040805162461bcd60e51b815260206004820181905260248201527f53746172742074696d65206d75737420626520696e2074686520667574757265604482015290519081900360640190fd5b600e55565b6001600160a01b031660009081526011602052604090205460ff1690565b60146020526000908152604090205481565b61106e6121d3565b6005546001600160a01b039081169116146110be576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6110e86121d3565b6005546001600160a01b03908116911614611138576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d60208110156111b357600080fd5b5051600f549091508111156111f95760405162461bcd60e51b815260040180806020018281038252604e8152602001806136e6604e913960600191505060405180910390fd5b6001600160a01b038216600090815260146020526040902054626ebe006112204283612a08565b1161125c5760405162461bcd60e51b815260040180806020018281038252603e815260200180613646603e913960400191505060405180910390fd5b600954604080516352b5f81d60e01b81526001600160a01b038681166004830152306024830152915191909216916352b5f81d9160448083019260209291908290030181600087803b1580156112b157600080fd5b505af11580156112c5573d6000803e3d6000fd5b505050506040513d60208110156112db57600080fd5b505060095460405147916000916001600160a01b039091169083908381818185875af1925050503d806000811461132e576040519150601f19603f3d011682016040523d82523d6000602084013e611333565b606091505b5050905080156113d6576040805183815290517fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19181900360200190a1600954604080516338c110ef60e21b81526001600160a01b038881166004830152600060248301819052925193169263e30443bc9260448084019391929182900301818387803b1580156113c357600080fd5b505af19250505080156113d4575060015b505b5050505050565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e8657600080fd5b61142a6121d3565b6005546001600160a01b0390811691161461147a576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156114c75760405162461bcd60e51b815260040180806020018281038252602c8152602001806136ba602c913960400191505060405180910390fd5b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561157b57600080fd5b505afa15801561158f573d6000803e3d6000fd5b505050506040513d60208110156115a557600080fd5b505192915050565b6001600160a01b031660009081526020819052604090205490565b600e5481565b6115d66121d3565b6005546001600160a01b03908116911614611626576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60126020526000908152604090205460ff1681565b61168d6121d3565b6005546001600160a01b039081169116146116dd576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6117076121d3565b6005546001600160a01b03908116911614611757576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6009546001600160a01b03828116911614156117a45760405162461bcd60e51b81526004018080602001828103825260368152602001806136846036913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ec57600080fd5b505afa158015611800573d6000803e3d6000fd5b505050506040513d602081101561181657600080fd5b50516001600160a01b03161461185d5760405162461bcd60e51b815260040180806020018281038252604d8152602001806138d0604d913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156118ac57600080fd5b505af11580156118c0573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b15801561190b57600080fd5b505af115801561191f573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db061193a611a56565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561197957600080fd5b505af115801561198d573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b1580156119df57600080fd5b505af11580156119f3573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b600854600160b81b900460ff1681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bc15780601f10610b9657610100808354040283529160200191610bc1565b611ade6121d3565b6005546001600160a01b03908116911614611b2e576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6008546001600160a01b0383811691161415611b7b5760405162461bcd60e51b815260040180806020018281038252604a815260200180613968604a913960600191505060405180910390fd5b611b858282612a4a565b5050565b6000610bdf611b966121d3565b84610d42856040518060600160405280602581526020016139436025913960016000611bc06121d3565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612971565b611bf96121d3565b6005546001600160a01b03908116911614611c49576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b601055565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561157b57600080fd5b6000610bdf611cac6121d3565b84846122c3565b611cbb6121d3565b6005546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b600854600160b01b900460ff1615611d2f576008805460ff60b01b19169055611d43565b6008805460ff60b01b1916600160b01b1790555b565b60136020526000908152604090205460ff1681565b611d626121d3565b6005546001600160a01b03908116911614611db2576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e105760405162461bcd60e51b815260040180806020018281038252603381526020018061389d6033913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611e786121d3565b6005546001600160a01b03908116911614611ec8576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b60005b8251811015611f1f578160116000858481518110611ee557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611ecb565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35828260405180806020018315158152602001828103825284818151815260200191508051906020019060200280838360005b83811015611f8b578181015183820152602001611f73565b50505050905001935050505060405180910390a15050565b611b85338383612b78565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611fe16121d3565b6005546001600160a01b03908116911614612031576040805162461bcd60e51b815260206004820181905260248201526000805160206137b4833981519152604482015290519081900360640190fd5b6001600160a01b0381166120765760405162461bcd60e51b81526004018080602001828103825260268152602001806135876026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6009546040805163fbcbc0f160e01b81526001600160a01b038481166004830152825160009485948594939091169263fbcbc0f19260248083019392829003018186803b15801561212257600080fd5b505afa158015612136573d6000803e3d6000fd5b505050506040513d604081101561214c57600080fd5b50805160209091015190935091508282612165866115ad565b9250925092509193909250565b6000828201838110156121cc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661221c5760405162461bcd60e51b81526004018080602001828103825260248152602001806138796024913960400191505060405180910390fd5b6001600160a01b0382166122615760405162461bcd60e51b81526004018080602001828103825260228152602001806135ad6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123085760405162461bcd60e51b81526004018080602001828103825260258152602001806138136025913960400191505060405180910390fd5b6001600160a01b03821661234d5760405162461bcd60e51b81526004018080602001828103825260238152602001806135236023913960400191505060405180910390fd5b42600e5411156123ae576001600160a01b03831660009081526012602052604090205460ff166123ae5760405162461bcd60e51b81526004018080602001828103825260418152602001806135466041913960600191505060405180910390fd5b806123c4576123bf83836000612e22565b61296c565b600854600160b01b900460ff16156125a2576001600160a01b03831660009081526013602052604090205460ff16156124bc57600654604080516312bdf42360e01b81526001600160a01b0385811660048301528681166024830152326044830152915191909216916312bdf4239160648083019260209291908290030181600087803b15801561245457600080fd5b505af1158015612468573d6000803e3d6000fd5b505050506040513d602081101561247e57600080fd5b5051156124bc5760405162461bcd60e51b815260040180806020018281038252602681526020018061391d6026913960400191505060405180910390fd5b6001600160a01b03821660009081526013602052604090205460ff16156125a257600654604080516312bdf42360e01b81526001600160a01b0386811660048301528581166024830152326044830152915191909216916312bdf4239160648083019260209291908290030181600087803b15801561253a57600080fd5b505af115801561254e573d6000803e3d6000fd5b505050506040513d602081101561256457600080fd5b5051156125a25760405162461bcd60e51b815260040180806020018281038252602681526020018061391d6026913960400191505060405180910390fd5b600854600160b81b900460ff1680156125d357506001600160a01b03831660009081526013602052604090205460ff165b15612619576010548111156126195760405162461bcd60e51b81526004018080602001828103825260248152602001806135cf6024913960400191505060405180910390fd5b600854600160a01b900460ff1615801561263d5750600854600160a81b900460ff16155b801561266257506001600160a01b03831660009081526013602052604090205460ff16155b801561268757506001600160a01b03831660009081526011602052604090205460ff16155b80156126ac57506001600160a01b03821660009081526011602052604090205460ff16155b156126da576008805460ff60a01b1916600160a01b1790556126cc612f7d565b6008805460ff60a01b191690555b600854600090600160a01b900460ff161580156127015750600854600160a81b900460ff16155b6001600160a01b03851660009081526011602052604090205490915060ff168061274357506001600160a01b03831660009081526011602052604090205460ff165b8061278b57506001600160a01b03841660009081526013602052604090205460ff1615801561278b57506001600160a01b03831660009081526013602052604090205460ff16155b15612794575060005b80156127d75760006127bc60646127b6600d548661308b90919063ffffffff16565b906130e4565b90506127c88382612a08565b92506127d5853083612e22565b505b6127e2848484612e22565b6009546001600160a01b031663e30443bc856127fd816115ad565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561284357600080fd5b505af1925050508015612854575060015b506009546001600160a01b031663e30443bc84612870816115ad565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156128b657600080fd5b505af19250505080156128c7575060015b50600854600160b01b900460ff1615612943576006546040805163b25d625960e01b81526001600160a01b03878116600483015286811660248301529151919092169163b25d625991604480830192600092919082900301818387803b15801561293057600080fd5b505af1925050508015612941575060015b505b506001600160a01b03808416600090815260146020526040808220429081905592851682529020555b505050565b60008184841115612a005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129c55781810151838201526020016129ad565b50505050905090810190601f1680156129f25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006121cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612971565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415612aa85760405162461bcd60e51b81526004018080602001828103825260418152602001806138386041913960600191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155612b3c576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612b2357600080fd5b505af1158015612b37573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b600954604080516302a2e74960e61b81526001600160a01b0386811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b158015612bc957600080fd5b505afa158015612bdd573d6000803e3d6000fd5b505050506040513d6020811015612bf357600080fd5b5051905080612c335760405162461bcd60e51b815260040180806020018281038252602d815260200180613619602d913960400191505060405180910390fd5b82612d1557600954604080516352b5f81d60e01b81526001600160a01b03878116600483018190526024830152915160009392909216916352b5f81d9160448082019260209290919082900301818787803b158015612c9157600080fd5b505af1158015612ca5573d6000803e3d6000fd5b505050506040513d6020811015612cbb57600080fd5b505190508015612d0e5760408051828152600060208201526001600160a01b0387168183015290517f67dd3d116bf53e0ddda53bb148a5fdc129854e1c507c0eeda9190049a9bbc84f9181900360600190a15b505061296c565b600954604080516352b5f81d60e01b81526001600160a01b038781166004830152306024830152915160009392909216916352b5f81d9160448082019260209290919082900301818787803b158015612d6d57600080fd5b505af1158015612d81573d6000803e3d6000fd5b505050506040513d6020811015612d9757600080fd5b5051905080156113d6576008805460ff60a81b1916600160a81b1790556000612dc1828588613126565b6008805460ff60a81b1916905560408051848152602081018390526001600160a01b0389168183015290519192507f67dd3d116bf53e0ddda53bb148a5fdc129854e1c507c0eeda9190049a9bbc84f919081900360600190a1505050505050565b6001600160a01b038316612e675760405162461bcd60e51b81526004018080602001828103825260258152602001806138136025913960400191505060405180910390fd5b6001600160a01b038216612eac5760405162461bcd60e51b81526004018080602001828103825260238152602001806135236023913960400191505060405180910390fd5b612eb783838361296c565b612ef4816040518060600160405280602681526020016135f3602691396001600160a01b0386166000908152602081905260409020549190612971565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612f239082612172565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612f88306115ad565b9050612f9381613317565b60004790506000612fb5600d546127b6600c548561308b90919063ffffffff16565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612ff0573d6000803e3d6000fd5b5060095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114613042576040519150601f19603f3d011682016040523d82523d6000602084013e613047565b606091505b5050905080156113d6576040805183815290517fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19181900360200190a15050505050565b60008261309a57506000610be3565b828202828482816130a757fe5b04146121cc5760405162461bcd60e51b815260040180806020018281038252602181526020018061376b6021913960400191505060405180910390fd5b60006121cc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506134bd565b60408051600280825260608083018452600093909291906020830190803683375050600754604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561319057600080fd5b505afa1580156131a4573d6000803e3d6000fd5b505050506040513d60208110156131ba57600080fd5b5051815182906000906131c957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106131f757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506000613222846115ad565b9050600760009054906101000a90046001600160a01b03166001600160a01b031663b6f9de9587878588426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156132b757818101518382015260200161329f565b50505050905001955050505050506000604051808303818588803b1580156132de57600080fd5b505af11580156132f2573d6000803e3d6000fd5b5050505050600061330c82613306876115ad565b90612a08565b979650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061334557fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561339957600080fd5b505afa1580156133ad573d6000803e3d6000fd5b505050506040513d60208110156133c357600080fd5b50518151829060019081106133d457fe5b6001600160a01b0392831660209182029290920101526007546133fa91309116846121d7565b60075460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015613480578181015183820152602001613468565b505050509050019650505050505050600060405180830381600087803b1580156134a957600080fd5b505af11580156113d4573d6000803e3d6000fd5b6000818361350c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129c55781810151838201526020016129ad565b50600083858161351857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f69436f696e3a2054686973206163636f756e742063616e6e6f742073656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c65644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373436f69436f696e3a2045786365656473206d617820707572636861736520616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f69436f696e3a20436c61696d657220686173206e6f20776974686472617761626c65206469766964656e64436f69436f696e3a204163636f756e74206d7573742068617665206265656e20696e61637469766520666f72206174206c65617374203132207765656b73436f69436f696e3a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373436f69436f696e3a2054686520726f7574657220616c72656164792068617320746861742061646472657373436f69436f696e3a204163636f756e742062616c616e6365206d757374206265206c657373207468656e206d696e696d756d20746f6b656e2062616c616e636520666f72206469766964656e6473436f69436f696e3a205072652074726164696e6720697320616c7265616479207468652076616c7565206f6620276578636c7564656427536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f69436f696e3a204d617820707572636861736520656e61626c656420697320616c7265616479207468652076616c7565206f662027656e61626c65642745524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f69436f696e3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f69436f696e3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427436f69436f696e3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520436f69436f696e20746f6b656e20636f6e747261637442656570204265657020426f6f702c20596f752772652061207069656365206f6620706f6f7045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f436f69436f696e3a2054686520556e695377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273a2646970667358221220bd134f2ecccfd1eb2dda0eec2cf006d63820f4a82adf9aee64aacc8465039a0364736f6c634300060c0033

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

000000000000000000000000188c8f8abcb097202ddda044fa929f7c9e6ef846

-----Decoded View---------------
Arg [0] : _devAddress (address): 0x188C8F8aBCb097202dDda044Fa929f7C9e6Ef846

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000188c8f8abcb097202ddda044fa929f7c9e6ef846


Libraries Used


Deployed Bytecode Sourcemap

47125:16055:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29317:210;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29317:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47236:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47236:41:0;;;;;;;;;;;;;;28129:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47628:28;;;;;;;;;;;;;:::i;54206:262::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54206:262:0;;;;:::i;:::-;;30009:454;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30009:454:0;;;;;;;;;;;;;;;;;:::i;47467:45::-;;;;;;;;;;;;;:::i;53835:363::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53835:363:0;;;;;;;;;;:::i;54719:141::-;;;;;;;;;;;;;:::i;27971:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30872:300;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30872:300:0;;;;;;;;:::i;47380:34::-;;;;;;;;;;;;;:::i;47284:28::-;;;;;;;;;;;;;:::i;47564:25::-;;;;;;;;;;;;;:::i;50687:365::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50687:365:0;;:::i;54868:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54868:126:0;-1:-1:-1;;;;;54868:126:0;;:::i;48484:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48484:47:0;-1:-1:-1;;;;;48484:47:0;;:::i;62721:152::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62721:152:0;-1:-1:-1;;;;;62721:152:0;;:::i;55373:905::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55373:905:0;-1:-1:-1;;;;;55373:905:0;;:::i;57537:142::-;;;;;;;;;;;;;:::i;52011:353::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52011:353:0;-1:-1:-1;;;;;52011:353:0;;:::i;47596:25::-;;;;;;;;;;;;;:::i;55194:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55194:171:0;-1:-1:-1;;;;;55194:171:0;;:::i;28300:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28300:177:0;-1:-1:-1;;;;;28300:177:0;;:::i;47665:44::-;;;;;;;;;;;;;:::i;25596:148::-;;;;;;;;;;;;;:::i;48069:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48069:65:0;-1:-1:-1;;;;;48069:65:0;;:::i;54598:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54598:113:0;-1:-1:-1;;;;;54598:113:0;;:::i;51060:943::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51060:943:0;-1:-1:-1;;;;;51060:943:0;;:::i;24954:79::-;;;;;;;;;;;;;:::i;47421:37::-;;;;;;;;;;;;;:::i;27228:104::-;;;;;;;;;;;;;:::i;53052:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53052:321:0;;;;;;;;;;:::i;31675:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31675:400:0;;;;;;;;:::i;54476:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54476:114:0;;:::i;55002:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55002:184:0;-1:-1:-1;;;;;55002:184:0;;:::i;28690:216::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28690:216:0;;;;;;;;:::i;62881:185::-;;;;;;;;;;;;;:::i;48292:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48292:57:0;-1:-1:-1;;;;;48292:57:0;;:::i;52372:336::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52372:336:0;;;;;;;;;;:::i;52716:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52716:328:0;;-1:-1:-1;;;;52716:328:0;;;;-1:-1:-1;52716:328:0;:::i;56286:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56286:116:0;;;;;;;;;:::i;28969:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28969:201:0;;;;;;;;;;:::i;25899:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25899:281:0;-1:-1:-1;;;;;25899:281:0;;:::i;57687:414::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57687:414:0;-1:-1:-1;;;;;57687:414:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:100;27096:5;27089:12;;;;;;;;-1:-1:-1;;27089:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27063:13;;27089:12;;27096:5;;27089:12;;27096:5;27089:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:100;:::o;29317:210::-;29436:4;29458:39;29467:12;:10;:12::i;:::-;29481:7;29490:6;29458:8;:39::i;:::-;-1:-1:-1;29515:4:0;29317:210;;;;;:::o;47236:41::-;;;-1:-1:-1;;;;;47236:41:0;;:::o;28129:108::-;28217:12;;28129:108;:::o;47628:28::-;;;;:::o;54206:262::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;54301:18:::1;::::0;::::1;-1:-1:-1::0;;;54301:18:0;;::::1;;:29;;::::0;::::1;;;;54279:142;;;;-1:-1:-1::0;;;54279:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54432:18;:28:::0;;;::::1;;-1:-1:-1::0;;;54432:28:0::1;-1:-1:-1::0;;;;54432:28:0;;::::1;::::0;;;::::1;::::0;;54206:262::o;30009:454::-;30149:4;30166:36;30176:6;30184:9;30195:6;30166:9;:36::i;:::-;30213:220;30236:6;30257:12;:10;:12::i;:::-;30284:138;30340:6;30284:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30284:19:0;;;;;;:11;:19;;;;;;30304:12;:10;:12::i;:::-;-1:-1:-1;;;;;30284:33:0;;;;;;;;;;;;-1:-1:-1;30284:33:0;;;:138;:37;:138::i;:::-;30213:8;:220::i;:::-;-1:-1:-1;30451:4:0;30009:454;;;;;:::o;47467:45::-;;;-1:-1:-1;;;;;47467:45:0;;:::o;53835:363::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;53991:42:0;::::1;;::::0;;;:33:::1;:42;::::0;;;;;::::1;;:53;;::::0;::::1;;;;53969:158;;;;-1:-1:-1::0;;;53969:158:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54138:42:0;;;::::1;;::::0;;;:33:::1;:42;::::0;;;;:52;;-1:-1:-1;;54138:52:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53835:363::o;54719:141::-;54809:15;;:43;;;-1:-1:-1;;;54809:43:0;;;;54782:7;;-1:-1:-1;;;;;54809:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54809:43:0;;-1:-1:-1;54719:141:0;:::o;27971:93::-;28054:2;27971:93;:::o;30872:300::-;30987:4;31009:133;31032:12;:10;:12::i;:::-;31059:7;31081:50;31120:10;31081:11;:25;31093:12;:10;:12::i;:::-;-1:-1:-1;;;;;31081:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31081:25:0;;;:34;;;;;;;;;;;:38;:50::i;47380:34::-;;;-1:-1:-1;;;47380:34:0;;;;;:::o;47284:28::-;;;-1:-1:-1;;;;;47284:28:0;;:::o;47564:25::-;;;;:::o;50687:365::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;50807:15:::1;50788:16;;:34;50766:111;;;::::0;;-1:-1:-1;;;50766:111:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50925:15;50910:12;:30;50888:112;;;::::0;;-1:-1:-1;;;50888:112:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;51013:16;:31:::0;50687:365::o;54868:126::-;-1:-1:-1;;;;;54958:28:0;54934:4;54958:28;;;:19;:28;;;;;;;;;54868:126::o;48484:47::-;;;;;;;;;;;;;:::o;62721:152::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;62847:7:::1;:18:::0;;-1:-1:-1;;;;;;62847:18:0::1;-1:-1:-1::0;;;;;62847:18:0;;;::::1;::::0;;;::::1;::::0;;62721:152::o;55373:905::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;55475:15:::1;::::0;:34:::1;::::0;;-1:-1:-1;;;55475:34:0;;-1:-1:-1;;;;;55475:34:0;;::::1;;::::0;::::1;::::0;;;55452:20:::1;::::0;55475:15;;;::::1;::::0;:25:::1;::::0;:34;;;;;::::1;::::0;;;;;;;;;:15;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55475:34:0;55558:31:::1;::::0;55475:34;;-1:-1:-1;55542:47:0;::::1;;55520:175;;;;-1:-1:-1::0;;;55520:175:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;55732:21:0;::::1;55708;55732::::0;;;:12:::1;:21;::::0;;;;;55823:8:::1;55786:34;:15;55732:21:::0;55786:19:::1;:34::i;:::-;:45;55764:157;;;;-1:-1:-1::0;;;55764:157:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55934:15;::::0;:54:::1;::::0;;-1:-1:-1;;;55934:54:0;;-1:-1:-1;;;;;55934:54:0;;::::1;;::::0;::::1;::::0;55982:4:::1;55934:54:::0;;;;;;:15;;;::::1;::::0;:30:::1;::::0;:54;;;;;::::1;::::0;;;;;;;;:15:::1;::::0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;56078:15:0::1;::::0;56070:51:::1;::::0;56019:21:::1;::::0;55999:17:::1;::::0;-1:-1:-1;;;;;56078:15:0;;::::1;::::0;56019:21;;55999:17;56070:51;55999:17;56070:51;56019:21;56078:15;56070:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56051:70;;;56138:7;56134:137;;;56167:24;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;56210:15;::::0;:38:::1;::::0;;-1:-1:-1;;;56210:38:0;;-1:-1:-1;;;;;56210:38:0;;::::1;;::::0;::::1;::::0;:15:::1;:38:::0;;;;;;;;:15;::::1;::::0;:26:::1;::::0;:38;;;;;:15;;:38;;;;;;:15;;:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;;;;;56206:54:::0;::::1;25236:1;;;;55373:905:::0;:::o;57537:142::-;57630:15;;:41;;;-1:-1:-1;;;57630:41:0;;;;57603:7;;-1:-1:-1;;;;;57630:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;52011:353;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;52134:15:::1;::::0;-1:-1:-1;;;;;52112:38:0;;::::1;52134:15:::0;::::1;52112:38;;52090:132;;;;-1:-1:-1::0;;;52090:132:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52280:15;::::0;52238:59:::1;::::0;-1:-1:-1;;;;;52280:15:0;;::::1;::::0;52238:59;::::1;::::0;::::1;::::0;52280:15:::1;::::0;52238:59:::1;52308:15;:48:::0;;-1:-1:-1;;;;;;52308:48:0::1;-1:-1:-1::0;;;;;52308:48:0;;;::::1;::::0;;;::::1;::::0;;52011:353::o;47596:25::-;;;;:::o;55194:171::-;55323:15;;:34;;;-1:-1:-1;;;55323:34:0;;-1:-1:-1;;;;;55323:34:0;;;;;;;;;55291:7;;55323:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55323:34:0;;55194:171;-1:-1:-1;;55194:171:0:o;28300:177::-;-1:-1:-1;;;;;28451:18:0;28419:7;28451:18;;;;;;;;;;;;28300:177::o;47665:44::-;;;;:::o;25596:148::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;25687:6:::1;::::0;25666:40:::1;::::0;25703:1:::1;::::0;-1:-1:-1;;;;;25687:6:0::1;::::0;25666:40:::1;::::0;25703:1;;25666:40:::1;25717:6;:19:::0;;-1:-1:-1;;;;;;25717:19:0::1;::::0;;25596:148::o;48069:65::-;;;;;;;;;;;;;;;:::o;54598:113::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;54680:10:::1;:23:::0;;-1:-1:-1;;;;;;54680:23:0::1;-1:-1:-1::0;;;;;54680:23:0;;;::::1;::::0;;;::::1;::::0;;54598:113::o;51060:943::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;51183:15:::1;::::0;-1:-1:-1;;;;;51161:38:0;;::::1;51183:15:::0;::::1;51161:38;;51139:142;;;;-1:-1:-1::0;;;51139:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51294:41;51383:10;51294:111;;51478:4;-1:-1:-1::0;;;;;51440:43:0::1;:18;-1:-1:-1::0;;;;;51440:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;51440:26:0;-1:-1:-1;;;;;51440:43:0::1;;51418:170;;;;-1:-1:-1::0;;;51418:170:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51601:18;-1:-1:-1::0;;;;;51601:39:0::1;;51649:18;51601:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;51601:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51680:54:0::1;::::0;;-1:-1:-1;;;51680:54:0;;51728:4:::1;51680:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;51680:39:0;::::1;::::0;-1:-1:-1;51680:39:0::1;::::0;-1:-1:-1;51680:54:0;;;;;-1:-1:-1;;51680:54:0;;;;;;;-1:-1:-1;51680:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51745:18;-1:-1:-1::0;;;;;51745:39:0::1;;51785:7;:5;:7::i;:::-;51745:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;51745:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51852:15:0::1;::::0;51804:65:::1;::::0;;-1:-1:-1;;;51804:65:0;;-1:-1:-1;;;;;51852:15:0;;::::1;51804:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;51804:39:0::1;::::0;-1:-1:-1;51804:65:0;;;;;51852:15:::1;::::0;51804:65;;;;;;;;51852:15;51804:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51929:15:0::1;::::0;51887:59:::1;::::0;-1:-1:-1;;;;;51929:15:0;;::::1;::::0;-1:-1:-1;51887:59:0;;::::1;::::0;-1:-1:-1;51887:59:0::1;::::0;51929:15:::1;::::0;51887:59:::1;51959:15;:36:::0;;-1:-1:-1;;;;;;51959:36:0::1;-1:-1:-1::0;;;;;51959:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;51060:943:0:o;24954:79::-;25019:6;;-1:-1:-1;;;;;25019:6:0;24954:79;:::o;47421:37::-;;;-1:-1:-1;;;47421:37:0;;;;;:::o;27228:104::-;27317:7;27310:14;;;;;;;;-1:-1:-1;;27310:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:13;;27310:14;;27317:7;;27310:14;;27317:7;27310:14;;;;;;;;;;;;;;;;;;;;;;;;53052:321;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;53196:13:::1;::::0;-1:-1:-1;;;;;53188:21:0;;::::1;53196:13:::0;::::1;53188:21;;53166:145;;;;-1:-1:-1::0;;;53166:145:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53324:41;53353:4;53359:5;53324:28;:41::i;:::-;53052:321:::0;;:::o;31675:400::-;31795:4;31817:228;31840:12;:10;:12::i;:::-;31867:7;31889:145;31946:15;31889:145;;;;;;;;;;;;;;;;;:11;:25;31901:12;:10;:12::i;:::-;-1:-1:-1;;;;;31889:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31889:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;54476:114::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;54553:17:::1;:29:::0;54476:114::o;55002:184::-;55131:15;;:47;;;-1:-1:-1;;;55131:47:0;;-1:-1:-1;;;;;55131:47:0;;;;;;;;;55099:7;;55131:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;28690:216;28812:4;28834:42;28844:12;:10;:12::i;:::-;28858:9;28869:6;28834:9;:42::i;62881:185::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;62940:14:::1;::::0;-1:-1:-1;;;62940:14:0;::::1;;;62936:123;;;62971:14;:22:::0;;-1:-1:-1;;;;62971:22:0::1;::::0;;62936:123:::1;;;63026:14;:21:::0;;-1:-1:-1;;;;63026:21:0::1;-1:-1:-1::0;;;63026:21:0::1;::::0;;62936:123:::1;62881:185::o:0;48292:57::-;;;;;;;;;;;;;;;:::o;52372:336::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52479:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;52457:141;;;;-1:-1:-1::0;;;52457:141:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;52609:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;52609:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;52666:34;;;;;;;::::1;::::0;;;;;;;;::::1;52372:336:::0;;:::o;52716:328::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;52857:9:::1;52852:116;52876:8;:15;52872:1;:19;52852:116;;;52948:8;52913:19;:32;52933:8;52942:1;52933:11;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;52913:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;52913:32:0;:43;;-1:-1:-1;;52913:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;52893:3:0::1;52852:116;;;;52985:51;53017:8;53027;52985:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;52716:328:::0;;:::o;56286:116::-;56355:39;56362:10;56374:8;56384:9;56355:6;:39::i;28969:201::-;-1:-1:-1;;;;;29135:18:0;;;29103:7;29135:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28969:201::o;25899:281::-;25176:12;:10;:12::i;:::-;25166:6;;-1:-1:-1;;;;;25166:6:0;;;:22;;;25158:67;;;;;-1:-1:-1;;;25158:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25158:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26002:22:0;::::1;25980:110;;;;-1:-1:-1::0;;;25980:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26127:6;::::0;26106:38:::1;::::0;-1:-1:-1;;;;;26106:38:0;;::::1;::::0;26127:6:::1;::::0;26106:38:::1;::::0;26127:6:::1;::::0;26106:38:::1;26155:6;:17:::0;;-1:-1:-1;;;;;;26155:17:0::1;-1:-1:-1::0;;;;;26155:17:0;;;::::1;::::0;;;::::1;::::0;;25899:281::o;57687:414::-;57961:15;;:50;;;-1:-1:-1;;;57961:50:0;;-1:-1:-1;;;;;57961:50:0;;;;;;;;;57787:29;;;;;;57961:15;;;;;:40;;:50;;;;;;;;;;;:15;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57961:50:0;;;;;;;;;-1:-1:-1;57961:50:0;-1:-1:-1;57961:50:0;;58073:19;58083:8;58073:9;:19::i;:::-;58022:71;;;;;;57687:414;;;;;:::o;2295:181::-;2353:7;2385:5;;;2409:6;;;;2401:46;;;;;-1:-1:-1;;;2401:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2467:1;2295:181;-1:-1:-1;;;2295:181:0:o;24326:98::-;24406:10;24326:98;:::o;35066:380::-;-1:-1:-1;;;;;35202:19:0;;35194:68;;;;-1:-1:-1;;;35194:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35281:21:0;;35273:68;;;;-1:-1:-1;;;35273:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35354:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35406:32;;;;;;;;;;;;;;;;;35066:380;;;:::o;58109:2868::-;-1:-1:-1;;;;;58241:18:0;;58233:68;;;;-1:-1:-1;;;58233:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58320:16:0;;58312:64;;;;-1:-1:-1;;;58312:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58486:15;58467:16;;:34;58463:233;;;-1:-1:-1;;;;;58544:39:0;;;;;;:33;:39;;;;;;;;58518:166;;;;-1:-1:-1;;;58518:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58712:11;58708:93;;58740:28;58756:4;58762:2;58766:1;58740:15;:28::i;:::-;58783:7;;58708:93;58817:14;;-1:-1:-1;;;58817:14:0;;;;58813:508;;;-1:-1:-1;;;;;58852:31:0;;;;;;:25;:31;;;;;;;;58848:225;;;58935:7;;:40;;;-1:-1:-1;;;58935:40:0;;-1:-1:-1;;;;;58935:40:0;;;;;;;;;;;;;;58965:9;58935:40;;;;;;:7;;;;;:19;;:40;;;;;;;;;;;;;;:7;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58935:40:0;58934:41;58904:153;;;;-1:-1:-1;;;58904:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59091:29:0;;;;;;:25;:29;;;;;;;;59087:223;;;59172:7;;:40;;;-1:-1:-1;;;59172:40:0;;-1:-1:-1;;;;;59172:40:0;;;;;;;;;;;;;;59202:9;59172:40;;;;;;:7;;;;;:19;;:40;;;;;;;;;;;;;;:7;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59172:40:0;59171:41;59141:153;;;;-1:-1:-1;;;59141:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59400:18;;-1:-1:-1;;;59400:18:0;;;;:53;;;;-1:-1:-1;;;;;;59422:31:0;;;;;;:25;:31;;;;;;;;59400:53;59396:211;;;59506:17;;59496:6;:27;;59470:125;;;;-1:-1:-1;;;59470:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59638:8;;-1:-1:-1;;;59638:8:0;;;;59637:9;:38;;;;-1:-1:-1;59664:11:0;;-1:-1:-1;;;59664:11:0;;;;59663:12;59637:38;:87;;;;-1:-1:-1;;;;;;59693:31:0;;;;;;:25;:31;;;;;;;;59692:32;59637:87;:130;;;;-1:-1:-1;;;;;;59742:25:0;;;;;;:19;:25;;;;;;;;59741:26;59637:130;:171;;;;-1:-1:-1;;;;;;59785:23:0;;;;;;:19;:23;;;;;;;;59784:24;59637:171;59619:308;;;59835:8;:15;;-1:-1:-1;;;;59835:15:0;-1:-1:-1;;;59835:15:0;;;59865:19;:17;:19::i;:::-;59899:8;:16;;-1:-1:-1;;;;59899:16:0;;;59619:308;59955:8;;59939:12;;-1:-1:-1;;;59955:8:0;;;;59954:9;:25;;;;-1:-1:-1;59968:11:0;;-1:-1:-1;;;59968:11:0;;;;59967:12;59954:25;-1:-1:-1;;;;;60150:25:0;;;;;;:19;:25;;;;;;59939:40;;-1:-1:-1;60150:25:0;;;:52;;-1:-1:-1;;;;;;60179:23:0;;;;;;:19;:23;;;;;;;;60150:52;60149:139;;;-1:-1:-1;;;;;;60222:31:0;;;;;;:25;:31;;;;;;;;60221:32;:66;;;;-1:-1:-1;;;;;;60258:29:0;;;;;;:25;:29;;;;;;;;60257:30;60221:66;60131:211;;;-1:-1:-1;60325:5:0;60131:211;60358:7;60354:183;;;60382:12;60397:29;60422:3;60397:20;60408:8;;60397:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;60382:44;-1:-1:-1;60450:16:0;:6;60382:44;60450:10;:16::i;:::-;60441:25;;60483:42;60499:4;60513;60520;60483:15;:42::i;:::-;60354:183;;60549:33;60565:4;60571:2;60575:6;60549:15;:33::i;:::-;60612:15;;-1:-1:-1;;;;;60612:15:0;:26;60647:4;60654:15;60647:4;60654:9;:15::i;:::-;60612:58;;;;;;;;;;;;;-1:-1:-1;;;;;60612:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60595:96;60705:15;;-1:-1:-1;;;;;60705:15:0;:26;60740:2;60745:13;60740:2;60745:9;:13::i;:::-;60705:54;;;;;;;;;;;;;-1:-1:-1;;;;;60705:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60701:70;60787:14;;-1:-1:-1;;;60787:14:0;;;;60783:93;;;60822:7;;:31;;;-1:-1:-1;;;60822:31:0;;-1:-1:-1;;;;;60822:31:0;;;;;;;;;;;;;;;;:7;;;;;:21;;:31;;;;;:7;;:31;;;;;;;:7;;:31;;;;;;;;;;;;;;;;;;;;;;;;;60818:47;;-1:-1:-1;;;;;;60888:18:0;;;;;;;:12;:18;;;;;;60909:15;60888:36;;;;60935:16;;;;;;;:34;58109:2868;;;;:::o;3198:226::-;3318:7;3354:12;3346:6;;;;3338:29;;;;-1:-1:-1;;;3338:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3390:5:0;;;3198:226::o;2759:136::-;2817:7;2844:43;2848:1;2851;2844:43;;;;;;;;;;;;;;;;;:3;:43::i;53381:446::-;-1:-1:-1;;;;;53486:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;53464:155;;;;-1:-1:-1;;;53464:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53630:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;53630:39:0;;;;;;;;;;;;53682:80;;53708:15;;:42;;;-1:-1:-1;;;53708:42:0;;-1:-1:-1;;;;;53708:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53682:80;53779:40;;;;;;-1:-1:-1;;;;;53779:40:0;;;;;;;;53381:446;;:::o;56410:1119::-;56567:15;;:71;;;-1:-1:-1;;;56567:71:0;;-1:-1:-1;;;;;56567:71:0;;;;;;;;;56538:26;;56567:15;;;;;:38;;:71;;;;;;;;;;;;;;;:15;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56567:71:0;;-1:-1:-1;56671:22:0;56649:117;;;;-1:-1:-1;;;56649:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56784:8;56779:291;;56829:15;;:97;;;-1:-1:-1;;;56829:97:0;;-1:-1:-1;;;;;56829:97:0;;;;;;;;;;;;;;;56809:17;;56829:15;;;;;:30;;:97;;;;;;;;;;;;;;;56809:17;56829:15;:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56829:97:0;;-1:-1:-1;56945:13:0;;56941:97;;56984:38;;;;;;57011:1;56984:38;;;;-1:-1:-1;;;;;56984:38:0;;;;;;;;;;;;;;;;;56941:97;57052:7;;;;56779:291;57102:15;;:91;;;-1:-1:-1;;;57102:91:0;;-1:-1:-1;;;;;57102:91:0;;;;;;;57177:4;57102:91;;;;;;57082:17;;57102:15;;;;;:30;;:91;;;;;;;;;;;;;;;57082:17;57102:15;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57102:91:0;;-1:-1:-1;57210:13:0;;57206:316;;57240:11;:18;;-1:-1:-1;;;;57240:18:0;-1:-1:-1;;;57240:18:0;;;;57295:113;57330:9;57358;57386:7;57295:16;:113::i;:::-;57423:11;:19;;-1:-1:-1;;;;57423:19:0;;;57462:48;;;;;;;;;;;;-1:-1:-1;;;;;57462:48:0;;;;;;;;57273:135;;-1:-1:-1;57462:48:0;;;;;;;;;;57206:316;56410:1119;;;;;:::o;32565:610::-;-1:-1:-1;;;;;32705:20:0;;32697:70;;;;-1:-1:-1;;;32697:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32786:23:0;;32778:71;;;;-1:-1:-1;;;32778:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32862:47;32883:6;32891:9;32902:6;32862:20;:47::i;:::-;32942:108;32978:6;32942:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32942:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;32922:17:0;;;:9;:17;;;;;;;;;;;:128;;;;33084:20;;;;;;;:32;;33109:6;33084:24;:32::i;:::-;-1:-1:-1;;;;;33061:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33132:35;;;;;;;33061:20;;33132:35;;;;;;;;;;;;;32565:610;;;:::o;62188:525::-;62236:20;62259:24;62277:4;62259:9;:24::i;:::-;62236:47;;62294:30;62311:12;62294:16;:30::i;:::-;62337:18;62358:21;62337:42;;62390:18;62411:36;62438:8;;62411:22;62426:6;;62411:10;:14;;:22;;;;:::i;:36::-;62458:10;;:31;;62390:57;;-1:-1:-1;;;;;;62458:10:0;;:31;;;;;62390:57;;62458:10;:31;:10;:31;62390:57;62458:10;:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62581:15:0;;62573:51;;62522:21;;62502:17;;-1:-1:-1;;;;;62581:15:0;;;;62522:21;;62502:17;62573:51;62502:17;62573:51;62522:21;62581:15;62573:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62554:70;;;62641:7;62637:69;;;62670:24;;;;;;;;;;;;;;;;;62188:525;;;;;:::o;3683:471::-;3741:7;3986:6;3982:47;;-1:-1:-1;4016:1:0;4009:8;;3982:47;4053:5;;;4057:1;4053;:5;:1;4077:5;;;;;:10;4069:56;;;;-1:-1:-1;;;4069:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4630:132;4688:7;4715:39;4719:1;4722;4715:39;;;;;;;;;;;;;;;;;:3;:39::i;61582:598::-;61759:16;;;61773:1;61759:16;;;61735:21;61759:16;;;;;61715:7;;61735:21;;61759:16;61773:1;61759:16;;;;;;;;-1:-1:-1;;61796:15:0;;:22;;;-1:-1:-1;;;61796:22:0;;;;61735:40;;-1:-1:-1;;;;;;61796:15:0;;;;:20;;-1:-1:-1;61796:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61796:22:0;61786:7;;:4;;61791:1;;61786:7;;;;;;;;;:32;-1:-1:-1;;;;;61786:32:0;;;-1:-1:-1;;;;;61786:32:0;;;;;61847:4;61829;61834:1;61829:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;61829:23:0;;;-1:-1:-1;;;;;61829:23:0;;;;;61865:21;61889:18;61899:7;61889:9;:18::i;:::-;61865:42;;61920:15;;;;;;;;;-1:-1:-1;;;;;61920:15:0;-1:-1:-1;;;;;61920:66:0;;62008:9;62029;62040:4;62046:7;62055:15;61920:151;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61920:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62084:19;62106:37;62129:13;62106:18;62116:7;62106:9;:18::i;:::-;:22;;:37::i;:::-;62084:59;61582:598;-1:-1:-1;;;;;;;61582:598:0:o;60985:589::-;61135:16;;;61149:1;61135:16;;;61111:21;61135:16;;;;;61111:21;61135:16;;;;;;;;;;-1:-1:-1;61135:16:0;61111:40;;61180:4;61162;61167:1;61162:7;;;;;;;;-1:-1:-1;;;;;61162:23:0;;;:7;;;;;;;;;;:23;;;;61206:15;;:22;;;-1:-1:-1;;;61206:22:0;;;;:15;;;;;:20;;:22;;;;;61162:7;;61206:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61206:22:0;61196:7;;:4;;61201:1;;61196:7;;;;;;-1:-1:-1;;;;;61196:32:0;;;:7;;;;;;;;;:32;61273:15;;61241:62;;61258:4;;61273:15;61291:11;61241:8;:62::i;:::-;61342:15;;:224;;-1:-1:-1;;;61342:224:0;;;;;;;;:15;:224;;;;;;61520:4;61342:224;;;;;;61540:15;61342:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61342:15:0;;;;:66;;61423:11;;61493:4;;61520;61540:15;61342:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5258:312;5378:7;5413:12;5406:5;5398:28;;;;-1:-1:-1;;;5398:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5437:9;5453:1;5449;:5;;;;;;;5258:312;-1:-1:-1;;;;;5258:312:0:o

Swarm Source

ipfs://289693e784866bce24f24be4ee94e054edf7af91b2a6cacab213bf9d50584aef
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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