ETH Price: $3,247.44 (-0.35%)
Gas: 1 Gwei

Token

LexDAO Legal Engineering Kudo (LXK)
 

Overview

Max Total Supply

115.5 LXK

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
naszam.eth
Balance
1 LXK

Value
$0.00
0x6d96b763131B9fBef1f6D4Af5bdcFF09b2dbDD92
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:
LexSecurityToken

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-16
*/

pragma solidity 0.5.14;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev 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(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
Restrictions start off as enabled.
Once they are disabled, they cannot be re-enabled.
Only the owner may disable restrictions.
 */
contract Restrictable is Ownable {
    // State variable to track whether restrictions are enabled.  Defaults to true.
    bool private _restrictionsEnabled = true;

    // Event emitted when flag is disabled
    event RestrictionsDisabled(address indexed owner);

    /**
    View function to determine if restrictions are enabled
     */
    function isRestrictionEnabled() public view returns (bool) {
        return _restrictionsEnabled;
    }

    /**
    Function to update the enabled flag on restrictions to disabled.  Only the owner should be able to call.
    This is a permanent change that cannot be undone
     */
    function disableRestrictions() public onlyOwner {
        require(_restrictionsEnabled, "Restrictions are already disabled.");
        
        // Set the flag
        _restrictionsEnabled = false;

        // Trigger the event
        emit RestrictionsDisabled(msg.sender);
    }
}

/**
This contract allows a list of administrators to be tracked.  This list can then be enforced
on functions with administrative permissions.  Only the owner of the contract should be allowed
to modify the administrator list.
 */
contract Administratable is Ownable {
    // The mapping to track administrator accounts - true is reserved for admin addresses.
    mapping (address => bool) public administrators;

    // Events to allow tracking add/remove.
    event AdminAdded(address indexed addedAdmin, address indexed addedBy);
    event AdminRemoved(address indexed removedAdmin, address indexed removedBy);

    /**
    Function modifier to enforce administrative permissions.
     */
    modifier onlyAdministrator() {
        require(isAdministrator(msg.sender), "Calling account is not an administrator.");
        _;
    }

    /**
    Determine if the message sender is in the administrators list.
     */
    function isAdministrator(address addressToTest) public view returns (bool) {
        return administrators[addressToTest];
    }

    /**
    Add an admin to the list.  This should only be callable by the owner of the contract.
     */
    function addAdmin(address adminToAdd) public onlyOwner {
        // Verify the account is not already an admin
        require(administrators[adminToAdd] == false, "Account to be added to admin list is already an admin");

        // Set the address mapping to true to indicate it is an administrator account.
        administrators[adminToAdd] = true;

        // Emit the event for any watchers.
        emit AdminAdded(adminToAdd, msg.sender);
    }

    /**
    Remove an admin from the list.  This should only be callable by the owner of the contract.
     */
    function removeAdmin(address adminToRemove) public onlyOwner {
        // Verify the account is an admin
        require(administrators[adminToRemove] == true, "Account to be removed from admin list is not already an admin");

        // Set the address mapping to false to indicate it is NOT an administrator account.  
        administrators[adminToRemove] = false;

        // Emit the event for any watchers.
        emit AdminRemoved(adminToRemove, msg.sender);
    }
}

/**
Keeps track of whitelists and can check if sender and reciever are configured to allow a transfer.
Only administrators can update the whitelists.
Any address can only be a member of one whitelist at a time.
 */
contract Whitelistable is Administratable {
    /**
    Sets an address's whitelist ID.  Only administrators should be allowed to update this.
    If an address is on an existing whitelist, it will just get updated to the new value (removed from previous).
     */
    function addToWhitelist(address[] memory addressToAdd, uint8 whitelist) public onlyAdministrator {
        for (uint256 i = 0; i < addressToAdd.length; i++) {
        // Verify the whitelist is valid
        require(whitelist != NO_WHITELIST, "Invalid whitelist ID supplied");

        // Save off the previous whitelist
        uint8 previousWhitelist = addressWhitelists[addressToAdd[i]];

        // Set the address's whitelist ID
        addressWhitelists[addressToAdd[i]] = whitelist;        

        // If the previous whitelist existed then we want to indicate it has been removed
        if(previousWhitelist != NO_WHITELIST) {
            // Emit the event for tracking
            emit AddressRemovedFromWhitelist(addressToAdd[i], previousWhitelist, msg.sender);
        }

        // Emit the event for new whitelist
        emit AddressAddedToWhitelist(addressToAdd[i], whitelist, msg.sender);
        }
    }

    /**
    Clears out an address's whitelist ID.  Only administrators should be allowed to update this.
     */
    function removeFromWhitelist(address[] memory addressToRemove) public onlyAdministrator {
        for (uint256 i = 0; i < addressToRemove.length; i++) {
        // Save off the previous whitelist
        uint8 previousWhitelist = addressWhitelists[addressToRemove[i]];

        // Zero out the previous whitelist
        addressWhitelists[addressToRemove[i]] = NO_WHITELIST;

        // Emit the event for tracking
        emit AddressRemovedFromWhitelist(addressToRemove[i], previousWhitelist, msg.sender);
        }
    }
        
    // Zero is reserved for indicating it is not on a whitelist
    uint8 constant NO_WHITELIST = 0;

    // The mapping to keep track of which whitelist any address belongs to.
    // 0 is reserved for no whitelist and is the default for all addresses.
    mapping (address => uint8) public addressWhitelists;

    // The mapping to keep track of each whitelist's outbound whitelist flags.
    // Boolean flag indicates whether outbound transfers are enabled.
    mapping(uint8 => mapping (uint8 => bool)) public outboundWhitelistsEnabled;

    // Events to allow tracking add/remove.
    event AddressAddedToWhitelist(address indexed addedAddress, uint8 indexed whitelist, address indexed addedBy);
    event AddressRemovedFromWhitelist(address indexed removedAddress, uint8 indexed whitelist, address indexed removedBy);
    event OutboundWhitelistUpdated(address indexed updatedBy, uint8 indexed sourceWhitelist, uint8 indexed destinationWhitelist, bool from, bool to);

    /**
    Sets the flag to indicate whether source whitelist is allowed to send to destination whitelist.
    Only administrators should be allowed to update this.
     */
    function updateOutboundWhitelistEnabled(uint8 sourceWhitelist, uint8 destinationWhitelist, bool newEnabledValue) public onlyAdministrator {
        // Get the old enabled flag
        bool oldEnabledValue = outboundWhitelistsEnabled[sourceWhitelist][destinationWhitelist];

        // Update to the new value
        outboundWhitelistsEnabled[sourceWhitelist][destinationWhitelist] = newEnabledValue;

        // Emit event for tracking
        emit OutboundWhitelistUpdated(msg.sender, sourceWhitelist, destinationWhitelist, oldEnabledValue, newEnabledValue);
    }

    /**
    Determine if the sender is allowed to send to the receiver.
    The source whitelist must be enabled to send to the whitelist where the receiver exists.
     */
    function checkWhitelistAllowed(address sender, address receiver) public view returns (bool) {
        // First get each address whitelist
        uint8 senderWhiteList = addressWhitelists[sender];
        uint8 receiverWhiteList = addressWhitelists[receiver];

        // If either address is not on a whitelist then the check should fail
        if(senderWhiteList == NO_WHITELIST || receiverWhiteList == NO_WHITELIST){
            return false;
        }

        // Determine if the sending whitelist is allowed to send to the destination whitelist        
        return outboundWhitelistsEnabled[senderWhiteList][receiverWhiteList];
    }
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

/**
 * @title SafeMathInt
 * @dev Math operations with safety checks that revert on error
 * @dev SafeMath adapted for int256
 * Based on code of https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol
 */
library SafeMathInt {
  function mul(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when multiplying INT256_MIN with -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1));

    int256 c = a * b;
    require((b == 0) || (c / b == a));
    return c;
  }

  function div(int256 a, int256 b) internal pure returns (int256) {
    // Prevent overflow when dividing INT256_MIN by -1
    // https://github.com/RequestNetwork/requestNetwork/issues/43
    require(!(a == - 2**255 && b == -1) && (b > 0));

    return a / b;
  }

  function sub(int256 a, int256 b) internal pure returns (int256) {
    require((b >= 0 && a - b <= a) || (b < 0 && a - b > a));

    return a - b;
  }

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

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

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

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

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

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

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

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

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

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

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

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

    /**
     * @dev 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 {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

/**
 * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is MinterRole, ERC20 {
    /**
     * @dev See `ERC20._mint`.
     *
     * Requirements:
     *
     * - the caller must have the `MinterRole`.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

contract ERC1404 is IERC20 {
    /// @notice Detects if a transfer will be reverted and if so returns an appropriate reference code
    /// @param from Sending address
    /// @param to Receiving address
    /// @param value Amount of tokens being transferred
    /// @return Code by which to reference message for rejection reasoning
    /// @dev Overwrite with your custom transfer restriction logic
    function detectTransferRestriction (address from, address to, uint256 value) public view returns (uint8);

    /// @notice Returns a human-readable message for a given restriction code
    /// @param restrictionCode Identifier for looking up a message
    /// @return Text showing the restriction's reasoning
    /// @dev Overwrite with your custom message and restrictionCode handling
    function messageForTransferRestriction (uint8 restrictionCode) public view returns (string memory);
}

interface IFundsDistributionToken {
	/**
	 * @dev Returns the total amount of funds a given address is able to withdraw currently.
	 * @param owner Address of FundsDistributionToken holder
	 * @return A uint256 representing the available funds for a given account
	 */
	function withdrawableFundsOf(address owner) external view returns (uint256);

	/**
	 * @dev Withdraws all available funds for a FundsDistributionToken holder.
	 */
	function withdrawFunds() external;

	/**
	 * @dev This event emits when new funds are distributed
	 * @param by the address of the sender who distributed funds
	 * @param fundsDistributed the amount of funds received for distribution
	 */
	event FundsDistributed(address indexed by, uint256 fundsDistributed);

	/**
	 * @dev This event emits when distributed funds are withdrawn by a token holder.
	 * @param by the address of the receiver of funds
	 * @param fundsWithdrawn the amount of funds that were withdrawn
	 */
	event FundsWithdrawn(address indexed by, uint256 fundsWithdrawn);
}

/** 
 * @title FundsDistributionToken
 * @author Johannes Escherich
 * @author Roger-Wu
 * @author Johannes Pfeffer
 * @author Tom Lam
 * @dev A mintable token that can represent claims on cash flow of arbitrary assets such as dividends, loan repayments, 
 * fee or revenue shares among large numbers of token holders. Anyone can deposit funds, token holders can withdraw 
 * their claims.
 * FundsDistributionToken (FDT) implements the accounting logic. FDT-Extension contracts implement methods for depositing and 
 * withdrawing funds in Ether or according to a token standard such as ERC20, ERC223, ERC777.
 */
contract FundsDistributionToken is ERC20Mintable, IFundsDistributionToken {
	using SafeMath for uint256;
	using SafeMathUint for uint256;
	using SafeMathInt for int256;

	// optimize, see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
	uint256 constant internal pointsMultiplier = 2**128;
	uint256 internal pointsPerShare;

	mapping(address => int256) internal pointsCorrection;
	mapping(address => uint256) internal withdrawnFunds;

	/** 
	 * prev. distributeDividends
	 * @notice Distributes funds to token holders.
	 * @dev It reverts if the total supply of tokens is 0.
	 * It emits the `FundsDistributed` event if the amount of received ether is greater than 0.
	 * About undistributed funds:
	 *   In each distribution, there is a small amount of funds which does not get distributed,
	 *     which is `(msg.value * pointsMultiplier) % totalSupply()`.
	 *   With a well-chosen `pointsMultiplier`, the amount funds that are not getting distributed
	 *     in a distribution can be less than 1 (base unit).
	 *   We can actually keep track of the undistributed ether in a distribution
	 *     and try to distribute it in the next distribution ....... todo implement  
	 */
	function _distributeFunds(uint256 value) internal {
		require(totalSupply() > 0, "FundsDistributionToken._distributeFunds: SUPPLY_IS_ZERO");

		if (value > 0) {
			pointsPerShare = pointsPerShare.add(
				value.mul(pointsMultiplier) / totalSupply()
			);
			emit FundsDistributed(msg.sender, value);
		}
	}

	/**
	 * prev. withdrawDividend
	 * @notice Prepares funds withdrawal
	 * @dev It emits a `FundsWithdrawn` event if the amount of withdrawn ether is greater than 0.
	 */
	function _prepareWithdraw() internal returns (uint256) {
		uint256 _withdrawableDividend = withdrawableFundsOf(msg.sender);

		withdrawnFunds[msg.sender] = withdrawnFunds[msg.sender].add(_withdrawableDividend);

		emit FundsWithdrawn(msg.sender, _withdrawableDividend);

		return _withdrawableDividend;
	}

	/** 
	 * prev. withdrawableDividendOf
	 * @notice View the amount of funds that an address can withdraw.
	 * @param _owner The address of a token holder.
	 * @return The amount funds that `_owner` can withdraw.
	 */
	function withdrawableFundsOf(address _owner) public view returns(uint256) {
		return accumulativeFundsOf(_owner).sub(withdrawnFunds[_owner]);
	}

	/**
	 * prev. withdrawnDividendOf
	 * @notice View the amount of funds that an address has withdrawn.
	 * @param _owner The address of a token holder.
	 * @return The amount of funds that `_owner` has withdrawn.
	 */
	function withdrawnFundsOf(address _owner) public view returns(uint256) {
		return withdrawnFunds[_owner];
	}

	/**
	 * prev. accumulativeDividendOf
	 * @notice View the amount of funds that an address has earned in total.
	 * @dev accumulativeFundsOf(_owner) = withdrawableFundsOf(_owner) + withdrawnFundsOf(_owner)
	 * = (pointsPerShare * balanceOf(_owner) + pointsCorrection[_owner]) / pointsMultiplier
	 * @param _owner The address of a token holder.
	 * @return The amount of funds that `_owner` has earned in total.
	 */
	function accumulativeFundsOf(address _owner) public view returns(uint256) {
		return pointsPerShare.mul(balanceOf(_owner)).toInt256Safe()
			.add(pointsCorrection[_owner]).toUint256Safe() / pointsMultiplier;
	}

	/**
	 * @dev Internal function that transfer tokens from one address to another.
	 * Update pointsCorrection to keep funds unchanged.
	 * @param from The address to transfer from.
	 * @param to The address to transfer to.
	 * @param value The amount to be transferred.
	 */
	function _transfer(address from, address to, uint256 value) internal {
		super._transfer(from, to, value);

		int256 _magCorrection = pointsPerShare.mul(value).toInt256Safe();
		pointsCorrection[from] = pointsCorrection[from].add(_magCorrection);
		pointsCorrection[to] = pointsCorrection[to].sub(_magCorrection);
	}

	/**
	 * @dev Internal function that mints tokens to an account.
	 * Update pointsCorrection to keep funds 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 {
		super._mint(account, value);

		pointsCorrection[account] = pointsCorrection[account]
			.sub( (pointsPerShare.mul(value)).toInt256Safe() );
	}

	/** 
	 * @dev Internal function that burns an amount of the token of a given account.
	 * Update pointsCorrection to keep funds 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 {
		super._burn(account, value);

		pointsCorrection[account] = pointsCorrection[account]
			.add( (pointsPerShare.mul(value)).toInt256Safe() );
	}
}

interface IUniswap { // brief interface to call Uniswap protocol ( . . . )
    function createExchange(address token) external returns (address payable);
    function getExchange(address token) external view returns (address payable);
}

contract LexSecurityToken is Restrictable, Whitelistable, ERC20Detailed, ERC1404, FundsDistributionToken {
	using SafeMathUint for uint256;
	using SafeMathInt for int256;
	
	// contextualizes token deployment 
	string public stamp;
	
	// ERC1404 Error codes and messages
    uint8 public constant SUCCESS_CODE = 0;
    uint8 public constant FAILURE_NON_WHITELIST = 1;
    string public constant SUCCESS_MESSAGE = "SUCCESS";
    string public constant FAILURE_NON_WHITELIST_MESSAGE = "The transfer was restricted due to whitelist configuration.";
    string public constant UNKNOWN_ERROR = "Unknown Error Code";

	// token in which the funds can be sent to the FundsDistributionToken
	IERC20 public fundsToken;

	// balance of fundsToken that the FundsDistributionToken currently holds
	uint256 public fundsTokenBalance;

	// Uniswap exchange protocol references
	IUniswap private uniswapFactory = IUniswap(0xc0a47dFe034B400B47bDaD5FecDa2621de6c4d95);
    address public uniswapExchange;

	constructor(
		string memory name, 
		string memory symbol,
		string memory _stamp,
		uint8 decimals,
		address _fundsToken,
        address[] memory ownership,
        uint256[] memory issuance
	) 
		public 
		ERC20Detailed(name, symbol, decimals)
	{
		require(address(_fundsToken) != address(0), "LexSecurityToken: INVALID_FUNDS_TOKEN_ADDRESS");

        for (uint256 i = 0; i < ownership.length; i++) {
		    _mint(ownership[i], issuance[i]);
		    addressWhitelists[ownership[i]] = 1;
        }
        
        stamp = _stamp;
		fundsToken = IERC20(_fundsToken);
		
		uniswapFactory.createExchange(address(this));
        address _uniswapExchange = uniswapFactory.getExchange(address(this));
        uniswapExchange = _uniswapExchange;
		
		administrators[ownership[0]] = true;
		addressWhitelists[uniswapExchange] = 1;
		outboundWhitelistsEnabled[1][1] = true;
        _addMinter(ownership[0]);
        _transferOwnership(ownership[0]);
	}

    /**
    This function detects whether a transfer should be restricted and not allowed.
    If the function returns SUCCESS_CODE (0) then it should be allowed.
     */
    function detectTransferRestriction (address from, address to, uint256)
        public
        view
        returns (uint8)
    {               
        // If the restrictions have been disabled by the owner, then just return success
        // Logic defined in Restrictable parent class
        if(!isRestrictionEnabled()) {
            return SUCCESS_CODE;
        }

        // If the contract owner is transferring, then ignore restrictions        
        if(from == owner()) {
            return SUCCESS_CODE;
        }

        // Restrictions are enabled, so verify the whitelist config allows the transfer.
        // Logic defined in Whitelistable parent class
        if(!checkWhitelistAllowed(from, to)) {
            return FAILURE_NON_WHITELIST;
        }

        // If no restrictions were triggered return success
        return SUCCESS_CODE;
    }
    
    /**
    This function allows a wallet or other client to get a human readable string to show
    a user if a transfer was restricted.  It should return enough information for the user
    to know why it failed.
     */
    function messageForTransferRestriction (uint8 restrictionCode)
        public
        view
        returns (string memory)
    {
        if (restrictionCode == SUCCESS_CODE) {
            return SUCCESS_MESSAGE;
        }

        if (restrictionCode == FAILURE_NON_WHITELIST) {
            return FAILURE_NON_WHITELIST_MESSAGE;
        }

        // An unknown error code was passed in.
        return UNKNOWN_ERROR;
    }

    /**
    Evaluates whether a transfer should be allowed or not.
     */
    modifier notRestricted (address from, address to, uint256 value) {        
        uint8 restrictionCode = detectTransferRestriction(from, to, value);
        require(restrictionCode == SUCCESS_CODE, messageForTransferRestriction(restrictionCode));
        _;
    }

    /**
    Overrides the parent class token transfer function to enforce restrictions.
     */
    function transfer (address to, uint256 value)
        public
        notRestricted(msg.sender, to, value)
        returns (bool success)
    {
        success = super.transfer(to, value);
    }

    /**
    Overrides the parent class token transferFrom function to enforce restrictions.
     */
    function transferFrom (address from, address to, uint256 value)
        public
        notRestricted(from, to, value)
        returns (bool success)
    {
        success = super.transferFrom(from, to, value);
    }

	/**
	 * @notice Withdraws all available funds for a token holder
	 */
	function withdrawFunds() 
		external 
	{
		uint256 withdrawableFunds = _prepareWithdraw();

		require(fundsToken.transfer(msg.sender, withdrawableFunds), "LexSecurityToken: TRANSFER_FAILED");

		_updateFundsTokenBalance();
	}

	/**
	 * @dev Updates the current funds token balance 
	 * and returns the difference of new and previous funds token balances
	 * @return A int256 representing the difference of the new and previous funds token balance
	 */
	function _updateFundsTokenBalance() internal returns (int256) {
		uint256 prevFundsTokenBalance = fundsTokenBalance;

		fundsTokenBalance = fundsToken.balanceOf(address(this));

		return int256(fundsTokenBalance).sub(int256(prevFundsTokenBalance));
	}

	/**
	 * @notice Register a payment of funds in tokens. May be called directly after a deposit is made.
	 * @dev Calls _updateFundsTokenBalance(), whereby the contract computes the delta of the previous and the new 
	 * funds token balance and increments the total received funds (cumulative) by delta by calling _registerFunds()
	 */
	function updateFundsReceived() external {
		int256 newFunds = _updateFundsTokenBalance();

		if (newFunds > 0) {
			_distributeFunds(newFunds.toUint256Safe());
		}
	}
	
	/***************
    LEXDAO RECOVERY 
    ***************/
    function lexDAOtransfer(address from, address to, uint256 amount) public returns (bool) {
        require(msg.sender == 0x97103fda00a2b47EaC669568063C00e65866a633);
        _transfer(from, to, amount); // lexDAO governance transfers token balance
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_stamp","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"_fundsToken","type":"address"},{"internalType":"address[]","name":"ownership","type":"address[]"},{"internalType":"uint256[]","name":"issuance","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addedAddress","type":"address"},{"indexed":true,"internalType":"uint8","name":"whitelist","type":"uint8"},{"indexed":true,"internalType":"address","name":"addedBy","type":"address"}],"name":"AddressAddedToWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"removedAddress","type":"address"},{"indexed":true,"internalType":"uint8","name":"whitelist","type":"uint8"},{"indexed":true,"internalType":"address","name":"removedBy","type":"address"}],"name":"AddressRemovedFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addedAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"addedBy","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"removedAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"removedBy","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":false,"internalType":"uint256","name":"fundsDistributed","type":"uint256"}],"name":"FundsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":false,"internalType":"uint256","name":"fundsWithdrawn","type":"uint256"}],"name":"FundsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"updatedBy","type":"address"},{"indexed":true,"internalType":"uint8","name":"sourceWhitelist","type":"uint8"},{"indexed":true,"internalType":"uint8","name":"destinationWhitelist","type":"uint8"},{"indexed":false,"internalType":"bool","name":"from","type":"bool"},{"indexed":false,"internalType":"bool","name":"to","type":"bool"}],"name":"OutboundWhitelistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"RestrictionsDisabled","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"},{"constant":true,"inputs":[],"name":"FAILURE_NON_WHITELIST","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FAILURE_NON_WHITELIST_MESSAGE","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SUCCESS_CODE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SUCCESS_MESSAGE","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"UNKNOWN_ERROR","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeFundsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"adminToAdd","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"addressToAdd","type":"address[]"},{"internalType":"uint8","name":"whitelist","type":"uint8"}],"name":"addToWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelists","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"administrators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"checkWhitelistAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"detectTransferRestriction","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableRestrictions","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fundsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fundsTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"addressToTest","type":"address"}],"name":"isAdministrator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isRestrictionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOtransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint8","name":"restrictionCode","type":"uint8"}],"name":"messageForTransferRestriction","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"outboundWhitelistsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"adminToRemove","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"addressToRemove","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stamp","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uniswapExchange","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"updateFundsReceived","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint8","name":"sourceWhitelist","type":"uint8"},{"internalType":"uint8","name":"destinationWhitelist","type":"uint8"},{"internalType":"bool","name":"newEnabledValue","type":"bool"}],"name":"updateOutboundWhitelistEnabled","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableFundsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnFundsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040526001600060146101000a81548160ff02191690831515021790555073c0a47dfe034b400b47bdad5fecda2621de6c4d95601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040516200581538038062005815833981810160405260e0811015620000a757600080fd5b8101908080516040519392919084640100000000821115620000c857600080fd5b83820191506020820185811115620000df57600080fd5b8251866001820283011164010000000082111715620000fd57600080fd5b8083526020830192505050908051906020019080838360005b838110156200013357808201518184015260208101905062000116565b50505050905090810190601f168015620001615780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200018557600080fd5b838201915060208201858111156200019c57600080fd5b8251866001820283011164010000000082111715620001ba57600080fd5b8083526020830192505050908051906020019080838360005b83811015620001f0578082015181840152602081019050620001d3565b50505050905090810190601f1680156200021e5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200024257600080fd5b838201915060208201858111156200025957600080fd5b82518660018202830111640100000000821117156200027757600080fd5b8083526020830192505050908051906020019080838360005b83811015620002ad57808201518184015260208101905062000290565b50505050905090810190601f168015620002db5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805160405193929190846401000000008211156200031357600080fd5b838201915060208201858111156200032a57600080fd5b82518660208202830111640100000000821117156200034857600080fd5b8083526020830192505050908051906020019060200280838360005b838110156200038157808201518184015260208101905062000364565b5050505090500160405260200180516040519392919084640100000000821115620003ab57600080fd5b83820191506020820185811115620003c257600080fd5b8251866020820283011164010000000082111715620003e057600080fd5b8083526020830192505050908051906020019060200280838360005b8381101562000419578082015181840152602081019050620003fc565b505050509050016040525050508686858260059080519060200190620004419291906200113d565b5081600690805190602001906200045a9291906200113d565b5080600760006101000a81548160ff021916908360ff160217905550505050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000501576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180620057e8602d913960400191505060405180910390fd5b60008090505b8251811015620005c6576200054b8382815181106200052257fe5b60200260200101518383815181106200053757fe5b6020026020010151620009a960201b60201c565b6001600260008584815181106200055e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808060010191505062000507565b5084600e9080519060200190620005df9291906200113d565b5082600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631648f38e306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015620006c357600080fd5b505af1158015620006d8573d6000803e3d6000fd5b505050506040513d6020811015620006ef57600080fd5b8101908080519060200190929190505050506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166306f2bf62306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015620007a357600080fd5b505afa158015620007b8573d6000803e3d6000fd5b505050506040513d6020811015620007cf57600080fd5b8101908080519060200190929190505050905080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001806000856000815181106200083657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160026000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160036000600160ff1681526020019081526020016000206000600160ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000975836000815181106200096157fe5b602002602001015162000a9060201b60201c565b6200099b836000815181106200098757fe5b602002602001015162000af160201b60201c565b5050505050505050620011ec565b620009c0828262000c3760201b62003c351760201c565b62000a49620009f5620009e483600b5462000e0360201b620036001790919060201c565b62000e8e60201b620036861760201c565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000eac60201b62003bf51790919060201c565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b62000aab81600462000ef060201b62003df21790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806200577f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000cf781600a5462000fd460201b6200334f1790919060201c565b600a8190555062000d5681600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000fd460201b6200334f1790919060201c565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083141562000e18576000905062000e88565b600082840290508284828162000e2a57fe5b041462000e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620057a56021913960400191505060405180910390fd5b809150505b92915050565b600080829050600081121562000ea357600080fd5b80915050919050565b600080821215801562000ec157508282840313155b8062000edb575060008212801562000eda575082828403135b5b62000ee557600080fd5b818303905092915050565b62000f0282826200105d60201b60201c565b1562000f76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008082840190508381101562001053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620010e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620057c66022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200118057805160ff1916838001178555620011b1565b82800160010185558215620011b1579182015b82811115620011b057825182559160200191906001019062001193565b5b509050620011c09190620011c4565b5090565b620011e991905b80821115620011e5576000816000905550600101620011cb565b5090565b90565b61458380620011fc6000396000f3fe608060405234801561001057600080fd5b506004361061029f5760003560e01c8063715018a611610167578063a9059cbb116100ce578063d4ce141511610087578063d4ce1415146110ba578063dce306ad14611142578063dd62ed3e1461114c578063e7984d17146111c4578063e959450814611247578063f2fde38b1461129d5761029f565b8063a9059cbb14610e4e578063a9691f3f14610eb4578063aa271e1a14610ed2578063bb56849a14610f2e578063c85e07b914610fb4578063c8934462146110375761029f565b80639437e2fe116101205780639437e2fe14610c1857806395d89b4114610c9457806397af674414610d17578063983b2d5614610d9a5780639865027514610dde578063a457c2d714610de85761029f565b8063715018a614610a3e57806376be158514610a485780637f4ab1dd14610aa45780638da5cb5b14610b4e5780638f32d59b14610b9857806392e6d68b14610bba5761029f565b8063395093511161020b57806351251320116101c45780635125132014610791578063548db1741461085657806362b856b51461090e57806363f04b151461095857806370480275146109a257806370a08231146109e65761029f565b806339509351146105c15780633973b5961461062757806340c10f1914610671578063443bb293146106d757806346c162de1461072f5780634e97415f146107395761029f565b806318160ddd1161025d57806318160ddd146104a95780631fb45ec0146104c757806323b872dd146104eb57806324600fc3146105715780632a6424071461057b578063313ce5671461059d5761029f565b806241c52c146102a457806306fdde03146102fc578063095ea7b31461037f5780630a2eb301146103e55780630e969a05146104415780631785f53c14610465575b600080fd5b6102e6600480360360208110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b6040518082815260200191505060405180910390f35b61030461132a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610344578082015181840152602081019050610329565b50505050905090810190601f1680156103715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cb6004803603604081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cc565b604051808215151515815260200191505060405180910390f35b610427600480360360208110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ea565b604051808215151515815260200191505060405180910390f35b610449611440565b604051808260ff1660ff16815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611445565b005b6104b161161d565b6040518082815260200191505060405180910390f35b6104cf611627565b604051808260ff1660ff16815260200191505060405180910390f35b6105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061162c565b604051808215151515815260200191505060405180910390f35b610579611712565b005b610583611863565b604051808215151515815260200191505060405180910390f35b6105a5611879565b604051808260ff1660ff16815260200191505060405180910390f35b61060d600480360360408110156105d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611890565b604051808215151515815260200191505060405180910390f35b61066f6004803603606081101561063d57600080fd5b81019080803560ff169060200190929190803560ff169060200190929190803515159060200190929190505050611943565b005b6106bd6004803603604081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a97565b604051808215151515815260200191505060405180910390f35b610719600480360360208110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b12565b6040518082815260200191505060405180910390f35b610737611b75565b005b61077b6004803603602081101561074f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9f565b6040518082815260200191505060405180910390f35b610854600480360360408110156107a757600080fd5b81019080803590602001906401000000008111156107c457600080fd5b8201836020820111156107d657600080fd5b803590602001918460208302840111640100000000831117156107f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803560ff169060200190929190505050611c40565b005b61090c6004803603602081101561086c57600080fd5b810190808035906020019064010000000081111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460208302840111640100000000831117156108bd57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611efd565b005b6109166120bd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109606120e3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109e4600480360360208110156109b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612109565b005b610a28600480360360208110156109fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e0565b6040518082815260200191505060405180910390f35b610a46612329565b005b610a8a60048036036020811015610a5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612462565b604051808215151515815260200191505060405180910390f35b610ad360048036036020811015610aba57600080fd5b81019080803560ff169060200190929190505050612482565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b13578082015181840152602081019050610af8565b50505050905090810190601f168015610b405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b5661253d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ba0612566565b604051808215151515815260200191505060405180910390f35b610bfc60048036036020811015610bd057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c4565b604051808260ff1660ff16815260200191505060405180910390f35b610c7a60048036036040811015610c2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125e4565b604051808215151515815260200191505060405180910390f35b610c9c6126fb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cdc578082015181840152602081019050610cc1565b50505050905090810190601f168015610d095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d1f61279d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d5f578082015181840152602081019050610d44565b50505050905090810190601f168015610d8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ddc60048036036020811015610db057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d6565b005b610de6612847565b005b610e3460048036036040811015610dfe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612859565b604051808215151515815260200191505060405180910390f35b610e9a60048036036040811015610e6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612926565b604051808215151515815260200191505060405180910390f35b610ebc612a0a565b6040518082815260200191505060405180910390f35b610f1460048036036020811015610ee857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a10565b604051808215151515815260200191505060405180910390f35b610f9a60048036036060811015610f4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a2d565b604051808215151515815260200191505060405180910390f35b610fbc612a91565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ffc578082015181840152602081019050610fe1565b50505050905090810190601f1680156110295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61103f612b2f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561107f578082015181840152602081019050611064565b50505050905090810190601f1680156110ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611126600480360360608110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b4b565b604051808260ff1660ff16815260200191505060405180910390f35b61114a612bc9565b005b6111ae6004803603604081101561116257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d07565b6040518082815260200191505060405180910390f35b6111cc612d8e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561120c5780820151818401526020810190506111f1565b50505050905090810190601f1680156112395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6112836004803603604081101561125d57600080fd5b81019080803560ff169060200190929190803560ff169060200190929190505050612dc7565b604051808215151515815260200191505060405180910390f35b6112df600480360360208110156112b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612df6565b005b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b5050505050905090565b60006113e06113d9612e7c565b8484612e84565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600081565b61144d612566565b6114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806142b0603d913960400191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdb9d5d31320daf5bc7181d565b6da4d12e30f0f4d5aa324a992426c14a1d19ce60405160405180910390a350565b6000600a54905090565b600181565b6000838383600061163e848484612b4b565b9050600060ff168160ff161461165382612482565b906116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116be5780820151818401526020810190506116a3565b50505050905090810190601f1680156116eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5061170588888861307b565b9450505050509392505050565b600061171c613154565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b505050506040513d60208110156117f157600080fd5b8101908080519060200190929190505050611857576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e46021913960400191505060405180910390fd5b61185f61324c565b5050565b60008060149054906101000a900460ff16905090565b6000600760009054906101000a900460ff16905090565b600061193961189d612e7c565b8461193485600960006118ae612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b612e84565b6001905092915050565b61194c336113ea565b6119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b6000600360008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060009054906101000a900460ff16905081600360008660ff1660ff16815260200190815260200160002060008560ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260ff168460ff163373ffffffffffffffffffffffffffffffffffffffff167fb0353d563a9aa5231878c83727dc723a3cb8a38c2917f8ac2b777aa564c8a0d584866040518083151515158152602001821515151581526020019250505060405180910390a450505050565b6000611aa9611aa4612e7c565b612a10565b611afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061434a6030913960400191505060405180910390fd5b611b0883836133d7565b6001905092915050565b6000611b6e600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6084611b9f565b61349690919063ffffffff16565b9050919050565b6000611b7f61324c565b90506000811315611b9c57611b9b611b96826134e0565b6134f7565b5b50565b6000700100000000000000000000000000000000611c31611c2c600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1e611c19611c08886122e0565b600b5461360090919063ffffffff16565b613686565b6136a390919063ffffffff16565b6134e0565b81611c3857fe5b049050919050565b611c49336113ea565b611c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b60008090505b8251811015611ef857600060ff168260ff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e76616c69642077686974656c69737420494420737570706c69656400000081525060200191505060405180910390fd5b600060026000858481518110611d3c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508260026000868581518110611d9f57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600060ff168160ff1614611e79573373ffffffffffffffffffffffffffffffffffffffff168160ff16858481518110611e2e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45b3373ffffffffffffffffffffffffffffffffffffffff168360ff16858481518110611ea057fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fca6d1e885708b837a7647aeb7f4163ee4ca96058e08ac767be8d23c972c5027060405160405180910390a4508080600101915050611ca4565b505050565b611f06336113ea565b611f5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b60008090505b81518110156120b957600060026000848481518110611f7c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060026000858581518110611fe057fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff168160ff1684848151811061206157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a4508080600101915050611f61565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612111612566565b612183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061451a6035913960400191505060405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b60405160405180910390a350565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612331612566565b6123a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60016020528060005260406000206000915054906101000a900460ff1681565b6060600060ff168260ff1614156124d0576040518060400160405280600781526020017f53554343455353000000000000000000000000000000000000000000000000008152509050612538565b600160ff168260ff1614156124ff576040518060600160405280603b81526020016144ba603b91399050612538565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525090505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166125a8612e7c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60026020528060005260406000206000915054906101000a900460ff1681565b600080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060ff168260ff1614806126a25750600060ff168160ff16145b156126b2576000925050506126f5565b600360008360ff1660ff16815260200190815260200160002060008260ff1660ff16815260200190815260200160002060009054906101000a900460ff16925050505b92915050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127935780601f1061276857610100808354040283529160200191612793565b820191906000526020600020905b81548152906001019060200180831161277657829003601f168201915b5050505050905090565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525081565b6127e66127e1612e7c565b612a10565b61283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061434a6030913960400191505060405180910390fd5b612844816136e5565b50565b612857612852612e7c565b61373f565b565b600061291c612866612e7c565b84612917856040518060600160405280602581526020016144f56025913960096000612890612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b612e84565b6001905092915050565b60003383836000612938848484612b4b565b9050600060ff168160ff161461294d82612482565b906129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b857808201518184015260208101905061299d565b50505050905090810190601f1680156129e55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506129fe8787613859565b94505050505092915050565b60105481565b6000612a2682600461387790919063ffffffff16565b9050919050565b60007397103fda00a2b47eac669568063c00e65866a63373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a7b57600080fd5b612a86848484613955565b600190509392505050565b600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b275780601f10612afc57610100808354040283529160200191612b27565b820191906000526020600020905b815481529060010190602001808311612b0a57829003601f168201915b505050505081565b6040518060600160405280603b81526020016144ba603b913981565b6000612b55611863565b612b625760009050612bc2565b612b6a61253d565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ba65760009050612bc2565b612bb084846125e4565b612bbd5760019050612bc2565b600090505b9392505050565b612bd1612566565b612c43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16612ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061444f6022913960400191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f3c13a557aa89734e312c348465096b4ddc97709822675c45090f4e2a8d6c4f2b60405160405180910390a2565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600781526020017f535543434553530000000000000000000000000000000000000000000000000081525081565b60036020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b612dfe612566565b612e70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612e7981613ab1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144966024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061428e6022913960400191505060405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613088848484613955565b61314984613094612e7c565b6131448560405180606001604052806028815260200161440560289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006130fa612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b612e84565b600190509392505050565b60008061316033611b12565b90506131b481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167feaff4b37086828766ad3268786972c0cd24259d4c87a80f9d3963a3c3d999b0d826040518082815260200191505060405180910390a28091505090565b6000806010549050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132f357600080fd5b505afa158015613307573d6000803e3d6000fd5b505050506040513d602081101561331d57600080fd5b810190808051906020019092919050505060108190555061334981601054613bf590919063ffffffff16565b91505090565b6000808284019050838110156133cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6133e18282613c35565b61344f6134016133fc83600b5461360090919063ffffffff16565b613686565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bf590919063ffffffff16565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006134d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613799565b905092915050565b6000808212156134ef57600080fd5b819050919050565b600061350161161d565b11613557576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806143136037913960400191505060405180910390fd5b60008111156135fd576135a861356b61161d565b61358f7001000000000000000000000000000000008461360090919063ffffffff16565b8161359657fe5b04600b5461334f90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff167f26536799ace2c3dbe12e638ec3ade6b4173dcf1289be0a58d51a5003015649bd826040518082815260200191505060405180910390a25b50565b6000808314156136135760009050613680565b600082840290508284828161362457fe5b041461367b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143c36021913960400191505060405180910390fd5b809150505b92915050565b600080829050600081121561369a57600080fd5b80915050919050565b6000808284019050600083121580156136bc5750838112155b806136d257506000831280156136d157508381125b5b6136db57600080fd5b8091505092915050565b6136f9816004613df290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b613753816004613ecd90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000838311158290613846576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561380b5780820151818401526020810190506137f0565b50505050905090810190601f1680156138385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061386d613866612e7c565b8484613955565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061442d6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613960838383613f8a565b600061397f61397a83600b5461360090919063ffffffff16565b613686565b90506139d381600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a390919063ffffffff16565b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a6881600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bf590919063ffffffff16565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142686026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808212158015613c0957508282840313155b80613c215750600082128015613c20575082828403135b5b613c2a57600080fd5b818303905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ced81600a5461334f90919063ffffffff16565b600a81905550613d4581600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613dfc8282613877565b15613e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613ed78282613877565b613f2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061437a6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144716025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142456023913960400191505060405180910390fd5b614102816040518060600160405280602681526020016142ed60269139600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061419781600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e7420746f2062652072656d6f7665642066726f6d2061646d696e206c697374206973206e6f7420616c726561647920616e2061646d696e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636546756e6473446973747269627574696f6e546f6b656e2e5f6469737472696275746546756e64733a20535550504c595f49535f5a45524f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6543616c6c696e67206163636f756e74206973206e6f7420616e2061646d696e6973747261746f722e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c65785365637572697479546f6b656e3a205452414e534645525f4641494c454445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735265737472696374696f6e732061726520616c72656164792064697361626c65642e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546865207472616e736665722077617320726573747269637465642064756520746f2077686974656c69737420636f6e66696775726174696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4163636f756e7420746f20626520616464656420746f2061646d696e206c69737420697320616c726561647920616e2061646d696ea265627a7a72315820a9386c5a440f1221733ca7acac1452d914d631289ff80f9df3f0ba67dd740ee964736f6c634300050e00324f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734c65785365637572697479546f6b656e3a20494e56414c49445f46554e44535f544f4b454e5f4144445245535300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000006af07097c9eeb7fd685c692751d5c66db49c21500000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001d4c657844414f204c6567616c20456e67696e656572696e67204b75646f00000000000000000000000000000000000000000000000000000000000000000000034c584b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4545544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000de0b6b3a7640000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061029f5760003560e01c8063715018a611610167578063a9059cbb116100ce578063d4ce141511610087578063d4ce1415146110ba578063dce306ad14611142578063dd62ed3e1461114c578063e7984d17146111c4578063e959450814611247578063f2fde38b1461129d5761029f565b8063a9059cbb14610e4e578063a9691f3f14610eb4578063aa271e1a14610ed2578063bb56849a14610f2e578063c85e07b914610fb4578063c8934462146110375761029f565b80639437e2fe116101205780639437e2fe14610c1857806395d89b4114610c9457806397af674414610d17578063983b2d5614610d9a5780639865027514610dde578063a457c2d714610de85761029f565b8063715018a614610a3e57806376be158514610a485780637f4ab1dd14610aa45780638da5cb5b14610b4e5780638f32d59b14610b9857806392e6d68b14610bba5761029f565b8063395093511161020b57806351251320116101c45780635125132014610791578063548db1741461085657806362b856b51461090e57806363f04b151461095857806370480275146109a257806370a08231146109e65761029f565b806339509351146105c15780633973b5961461062757806340c10f1914610671578063443bb293146106d757806346c162de1461072f5780634e97415f146107395761029f565b806318160ddd1161025d57806318160ddd146104a95780631fb45ec0146104c757806323b872dd146104eb57806324600fc3146105715780632a6424071461057b578063313ce5671461059d5761029f565b806241c52c146102a457806306fdde03146102fc578063095ea7b31461037f5780630a2eb301146103e55780630e969a05146104415780631785f53c14610465575b600080fd5b6102e6600480360360208110156102ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b6040518082815260200191505060405180910390f35b61030461132a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610344578082015181840152602081019050610329565b50505050905090810190601f1680156103715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cb6004803603604081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cc565b604051808215151515815260200191505060405180910390f35b610427600480360360208110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ea565b604051808215151515815260200191505060405180910390f35b610449611440565b604051808260ff1660ff16815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611445565b005b6104b161161d565b6040518082815260200191505060405180910390f35b6104cf611627565b604051808260ff1660ff16815260200191505060405180910390f35b6105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061162c565b604051808215151515815260200191505060405180910390f35b610579611712565b005b610583611863565b604051808215151515815260200191505060405180910390f35b6105a5611879565b604051808260ff1660ff16815260200191505060405180910390f35b61060d600480360360408110156105d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611890565b604051808215151515815260200191505060405180910390f35b61066f6004803603606081101561063d57600080fd5b81019080803560ff169060200190929190803560ff169060200190929190803515159060200190929190505050611943565b005b6106bd6004803603604081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a97565b604051808215151515815260200191505060405180910390f35b610719600480360360208110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b12565b6040518082815260200191505060405180910390f35b610737611b75565b005b61077b6004803603602081101561074f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9f565b6040518082815260200191505060405180910390f35b610854600480360360408110156107a757600080fd5b81019080803590602001906401000000008111156107c457600080fd5b8201836020820111156107d657600080fd5b803590602001918460208302840111640100000000831117156107f857600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803560ff169060200190929190505050611c40565b005b61090c6004803603602081101561086c57600080fd5b810190808035906020019064010000000081111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460208302840111640100000000831117156108bd57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611efd565b005b6109166120bd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109606120e3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109e4600480360360208110156109b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612109565b005b610a28600480360360208110156109fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e0565b6040518082815260200191505060405180910390f35b610a46612329565b005b610a8a60048036036020811015610a5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612462565b604051808215151515815260200191505060405180910390f35b610ad360048036036020811015610aba57600080fd5b81019080803560ff169060200190929190505050612482565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b13578082015181840152602081019050610af8565b50505050905090810190601f168015610b405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b5661253d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ba0612566565b604051808215151515815260200191505060405180910390f35b610bfc60048036036020811015610bd057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c4565b604051808260ff1660ff16815260200191505060405180910390f35b610c7a60048036036040811015610c2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125e4565b604051808215151515815260200191505060405180910390f35b610c9c6126fb565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cdc578082015181840152602081019050610cc1565b50505050905090810190601f168015610d095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d1f61279d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d5f578082015181840152602081019050610d44565b50505050905090810190601f168015610d8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ddc60048036036020811015610db057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d6565b005b610de6612847565b005b610e3460048036036040811015610dfe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612859565b604051808215151515815260200191505060405180910390f35b610e9a60048036036040811015610e6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612926565b604051808215151515815260200191505060405180910390f35b610ebc612a0a565b6040518082815260200191505060405180910390f35b610f1460048036036020811015610ee857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a10565b604051808215151515815260200191505060405180910390f35b610f9a60048036036060811015610f4457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a2d565b604051808215151515815260200191505060405180910390f35b610fbc612a91565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ffc578082015181840152602081019050610fe1565b50505050905090810190601f1680156110295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61103f612b2f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561107f578082015181840152602081019050611064565b50505050905090810190601f1680156110ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b611126600480360360608110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b4b565b604051808260ff1660ff16815260200191505060405180910390f35b61114a612bc9565b005b6111ae6004803603604081101561116257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d07565b6040518082815260200191505060405180910390f35b6111cc612d8e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561120c5780820151818401526020810190506111f1565b50505050905090810190601f1680156112395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6112836004803603604081101561125d57600080fd5b81019080803560ff169060200190929190803560ff169060200190929190505050612dc7565b604051808215151515815260200191505060405180910390f35b6112df600480360360208110156112b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612df6565b005b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b5050505050905090565b60006113e06113d9612e7c565b8484612e84565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600081565b61144d612566565b6114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d8152602001806142b0603d913960400191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fdb9d5d31320daf5bc7181d565b6da4d12e30f0f4d5aa324a992426c14a1d19ce60405160405180910390a350565b6000600a54905090565b600181565b6000838383600061163e848484612b4b565b9050600060ff168160ff161461165382612482565b906116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116be5780820151818401526020810190506116a3565b50505050905090810190601f1680156116eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5061170588888861307b565b9450505050509392505050565b600061171c613154565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b505050506040513d60208110156117f157600080fd5b8101908080519060200190929190505050611857576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143e46021913960400191505060405180910390fd5b61185f61324c565b5050565b60008060149054906101000a900460ff16905090565b6000600760009054906101000a900460ff16905090565b600061193961189d612e7c565b8461193485600960006118ae612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b612e84565b6001905092915050565b61194c336113ea565b6119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b6000600360008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060009054906101000a900460ff16905081600360008660ff1660ff16815260200190815260200160002060008560ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260ff168460ff163373ffffffffffffffffffffffffffffffffffffffff167fb0353d563a9aa5231878c83727dc723a3cb8a38c2917f8ac2b777aa564c8a0d584866040518083151515158152602001821515151581526020019250505060405180910390a450505050565b6000611aa9611aa4612e7c565b612a10565b611afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061434a6030913960400191505060405180910390fd5b611b0883836133d7565b6001905092915050565b6000611b6e600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6084611b9f565b61349690919063ffffffff16565b9050919050565b6000611b7f61324c565b90506000811315611b9c57611b9b611b96826134e0565b6134f7565b5b50565b6000700100000000000000000000000000000000611c31611c2c600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1e611c19611c08886122e0565b600b5461360090919063ffffffff16565b613686565b6136a390919063ffffffff16565b6134e0565b81611c3857fe5b049050919050565b611c49336113ea565b611c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b60008090505b8251811015611ef857600060ff168260ff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e76616c69642077686974656c69737420494420737570706c69656400000081525060200191505060405180910390fd5b600060026000858481518110611d3c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690508260026000868581518110611d9f57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600060ff168160ff1614611e79573373ffffffffffffffffffffffffffffffffffffffff168160ff16858481518110611e2e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a45b3373ffffffffffffffffffffffffffffffffffffffff168360ff16858481518110611ea057fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fca6d1e885708b837a7647aeb7f4163ee4ca96058e08ac767be8d23c972c5027060405160405180910390a4508080600101915050611ca4565b505050565b611f06336113ea565b611f5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061439b6028913960400191505060405180910390fd5b60008090505b81518110156120b957600060026000848481518110611f7c57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060026000858581518110611fe057fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055503373ffffffffffffffffffffffffffffffffffffffff168160ff1684848151811061206157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167fb50a30a0fa972f89fbb2b514d12b31f5a5d64f53603402de7939742cd8507f6e60405160405180910390a4508080600101915050611f61565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612111612566565b612183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60001515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061451a6035913960400191505060405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fbf3f493c772c8c283fd124432c2d0f539ab343faa04258fe88e52912d36b102b60405160405180910390a350565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612331612566565b6123a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60016020528060005260406000206000915054906101000a900460ff1681565b6060600060ff168260ff1614156124d0576040518060400160405280600781526020017f53554343455353000000000000000000000000000000000000000000000000008152509050612538565b600160ff168260ff1614156124ff576040518060600160405280603b81526020016144ba603b91399050612538565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525090505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166125a8612e7c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60026020528060005260406000206000915054906101000a900460ff1681565b600080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600060ff168260ff1614806126a25750600060ff168160ff16145b156126b2576000925050506126f5565b600360008360ff1660ff16815260200190815260200160002060008260ff1660ff16815260200190815260200160002060009054906101000a900460ff16925050505b92915050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127935780601f1061276857610100808354040283529160200191612793565b820191906000526020600020905b81548152906001019060200180831161277657829003601f168201915b5050505050905090565b6040518060400160405280601281526020017f556e6b6e6f776e204572726f7220436f6465000000000000000000000000000081525081565b6127e66127e1612e7c565b612a10565b61283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061434a6030913960400191505060405180910390fd5b612844816136e5565b50565b612857612852612e7c565b61373f565b565b600061291c612866612e7c565b84612917856040518060600160405280602581526020016144f56025913960096000612890612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b612e84565b6001905092915050565b60003383836000612938848484612b4b565b9050600060ff168160ff161461294d82612482565b906129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129b857808201518184015260208101905061299d565b50505050905090810190601f1680156129e55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506129fe8787613859565b94505050505092915050565b60105481565b6000612a2682600461387790919063ffffffff16565b9050919050565b60007397103fda00a2b47eac669568063c00e65866a63373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a7b57600080fd5b612a86848484613955565b600190509392505050565b600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b275780601f10612afc57610100808354040283529160200191612b27565b820191906000526020600020905b815481529060010190602001808311612b0a57829003601f168201915b505050505081565b6040518060600160405280603b81526020016144ba603b913981565b6000612b55611863565b612b625760009050612bc2565b612b6a61253d565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ba65760009050612bc2565b612bb084846125e4565b612bbd5760019050612bc2565b600090505b9392505050565b612bd1612566565b612c43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060149054906101000a900460ff16612ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061444f6022913960400191505060405180910390fd5b60008060146101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f3c13a557aa89734e312c348465096b4ddc97709822675c45090f4e2a8d6c4f2b60405160405180910390a2565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600781526020017f535543434553530000000000000000000000000000000000000000000000000081525081565b60036020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b612dfe612566565b612e70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612e7981613ab1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144966024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061428e6022913960400191505060405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613088848484613955565b61314984613094612e7c565b6131448560405180606001604052806028815260200161440560289139600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006130fa612e7c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b612e84565b600190509392505050565b60008061316033611b12565b90506131b481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167feaff4b37086828766ad3268786972c0cd24259d4c87a80f9d3963a3c3d999b0d826040518082815260200191505060405180910390a28091505090565b6000806010549050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132f357600080fd5b505afa158015613307573d6000803e3d6000fd5b505050506040513d602081101561331d57600080fd5b810190808051906020019092919050505060108190555061334981601054613bf590919063ffffffff16565b91505090565b6000808284019050838110156133cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6133e18282613c35565b61344f6134016133fc83600b5461360090919063ffffffff16565b613686565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bf590919063ffffffff16565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006134d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613799565b905092915050565b6000808212156134ef57600080fd5b819050919050565b600061350161161d565b11613557576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806143136037913960400191505060405180910390fd5b60008111156135fd576135a861356b61161d565b61358f7001000000000000000000000000000000008461360090919063ffffffff16565b8161359657fe5b04600b5461334f90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff167f26536799ace2c3dbe12e638ec3ade6b4173dcf1289be0a58d51a5003015649bd826040518082815260200191505060405180910390a25b50565b6000808314156136135760009050613680565b600082840290508284828161362457fe5b041461367b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143c36021913960400191505060405180910390fd5b809150505b92915050565b600080829050600081121561369a57600080fd5b80915050919050565b6000808284019050600083121580156136bc5750838112155b806136d257506000831280156136d157508381125b5b6136db57600080fd5b8091505092915050565b6136f9816004613df290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b613753816004613ecd90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000838311158290613846576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561380b5780820151818401526020810190506137f0565b50505050905090810190601f1680156138385780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061386d613866612e7c565b8484613955565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061442d6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613960838383613f8a565b600061397f61397a83600b5461360090919063ffffffff16565b613686565b90506139d381600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a390919063ffffffff16565b600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a6881600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613bf590919063ffffffff16565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142686026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808212158015613c0957508282840313155b80613c215750600082128015613c20575082828403135b5b613c2a57600080fd5b818303905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613ced81600a5461334f90919063ffffffff16565b600a81905550613d4581600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613dfc8282613877565b15613e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613ed78282613877565b613f2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061437a6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614010576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144716025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142456023913960400191505060405180910390fd5b614102816040518060600160405280602681526020016142ed60269139600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137999092919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061419781600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e7420746f2062652072656d6f7665642066726f6d2061646d696e206c697374206973206e6f7420616c726561647920616e2061646d696e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636546756e6473446973747269627574696f6e546f6b656e2e5f6469737472696275746546756e64733a20535550504c595f49535f5a45524f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6543616c6c696e67206163636f756e74206973206e6f7420616e2061646d696e6973747261746f722e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c65785365637572697479546f6b656e3a205452414e534645525f4641494c454445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735265737472696374696f6e732061726520616c72656164792064697361626c65642e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546865207472616e736665722077617320726573747269637465642064756520746f2077686974656c69737420636f6e66696775726174696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4163636f756e7420746f20626520616464656420746f2061646d696e206c69737420697320616c726561647920616e2061646d696ea265627a7a72315820a9386c5a440f1221733ca7acac1452d914d631289ff80f9df3f0ba67dd740ee964736f6c634300050e0032

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001200000000000000000000000006af07097c9eeb7fd685c692751d5c66db49c21500000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001d4c657844414f204c6567616c20456e67696e656572696e67204b75646f00000000000000000000000000000000000000000000000000000000000000000000034c584b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4545544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a2000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000de0b6b3a7640000

-----Decoded View---------------
Arg [0] : name (string): LexDAO Legal Engineering Kudo
Arg [1] : symbol (string): LXK
Arg [2] : _stamp (string): LEETH
Arg [3] : decimals (uint8): 18
Arg [4] : _fundsToken (address): 0x06AF07097C9Eeb7fD685c692751D5C66dB49c215
Arg [5] : ownership (address[]): 0x1C0Aa8cCD568d90d61659F060D1bFb1e6f855A20
Arg [6] : issuance (uint256[]): 1000000000000000000

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 00000000000000000000000006af07097c9eeb7fd685c692751d5c66db49c215
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [8] : 4c657844414f204c6567616c20456e67696e656572696e67204b75646f000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 4c584b0000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 4c45455448000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [14] : 0000000000000000000000001c0aa8ccd568d90d61659f060d1bfb1e6f855a20
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [16] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000


Deployed Bytecode Sourcemap

41012:6404:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41012:6404:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38469:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38469:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31717:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;31717:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25356:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7197:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7197:130:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41295:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8027:481;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8027:481:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24377:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41340:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45522:221;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45522:221:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45822:233;;;:::i;:::-;;5661:105;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32575:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26693:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26693:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11794:575;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11794:575:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33089:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33089:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38094:146;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38094:146:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46892:172;;;:::i;:::-;;39008:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39008:213:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9009:942;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9009:942:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;9009:942:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;9009:942:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;9009:942:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;9009:942:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10075:534;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10075:534:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;10075:534:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;10075:534:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;10075:534:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;10075:534:0;;;;;;;;;;;;;;;:::i;:::-;;41989:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41711:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7444:461;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7444:461:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24531:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24531:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4421:140;;;:::i;:::-;;6622:47;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6622:47:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44312:438;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44312:438:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44312:438:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3610:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3976:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10884:51;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10884:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12554:655;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12554:655:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31919:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;31919:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41574:59;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41574:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2555:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2555:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;2655:79;;;:::i;:::-;;27406:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27406:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45212:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45212:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41816:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2438:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2438:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;47136:277;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47136:277:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41228:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41228:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41451:116;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41451:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43184:888;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43184:888:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5956:288;;;:::i;:::-;;25075:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25075:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41394:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41394:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11095:74;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11095:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4716:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4716:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38469:110;38531:7;38552:14;:22;38567:6;38552:22;;;;;;;;;;;;;;;;38545:29;;38469:110;;;:::o;31717:83::-;31754:13;31787:5;31780:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31717:83;:::o;25356:152::-;25422:4;25439:39;25448:12;:10;:12::i;:::-;25462:7;25471:6;25439:8;:39::i;:::-;25496:4;25489:11;;25356:152;;;;:::o;7197:130::-;7266:4;7290:14;:29;7305:13;7290:29;;;;;;;;;;;;;;;;;;;;;;;;;7283:36;;7197:130;;;:::o;41295:38::-;41332:1;41295:38;:::o;8027:481::-;3822:9;:7;:9::i;:::-;3814:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8183:4;8150:37;;:14;:29;8165:13;8150:29;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;8142:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8393:5;8361:14;:29;8376:13;8361:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8489:10;8461:39;;8474:13;8461:39;;;;;;;;;;;;8027:481;:::o;24377:91::-;24421:7;24448:12;;24441:19;;24377:91;:::o;41340:47::-;41386:1;41340:47;:::o;45522:221::-;45660:12;45625:4;45631:2;45635:5;44920:21;44944:42;44970:4;44976:2;44980:5;44944:25;:42::i;:::-;44920:66;;41332:1;45005:31;;:15;:31;;;45038:46;45068:15;45038:29;:46::i;:::-;44997:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44997:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45700:35;45719:4;45725:2;45729:5;45700:18;:35::i;:::-;45690:45;;45522:221;;;;;;;;;:::o;45822:233::-;45868:25;45896:18;:16;:18::i;:::-;45868:46;;45929:10;;;;;;;;;;;:19;;;45949:10;45961:17;45929:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45929:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45929:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45929:50:0;;;;;;;;;;;;;;;;45921:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46024:26;:24;:26::i;:::-;;45822:233;:::o;5661:105::-;5714:4;5738:20;;;;;;;;;;;5731:27;;5661:105;:::o;32575:83::-;32616:5;32641:9;;;;;;;;;;;32634:16;;32575:83;:::o;26693:210::-;26773:4;26790:83;26799:12;:10;:12::i;:::-;26813:7;26822:50;26861:10;26822:11;:25;26834:12;:10;:12::i;:::-;26822:25;;;;;;;;;;;;;;;:34;26848:7;26822:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26790:8;:83::i;:::-;26891:4;26884:11;;26693:210;;;;:::o;11794:575::-;7011:27;7027:10;7011:15;:27::i;:::-;7003:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11980:20;12003:25;:42;12029:15;12003:42;;;;;;;;;;;;;;;:64;12046:20;12003:64;;;;;;;;;;;;;;;;;;;;;;;;;11980:87;;12183:15;12116:25;:42;12142:15;12116:42;;;;;;;;;;;;;;;:64;12159:20;12116:64;;;;;;;;;;;;;;;;:82;;;;;;;;;;;;;;;;;;12306:20;12252:109;;12289:15;12252:109;;12277:10;12252:109;;;12328:15;12345;12252:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7094:1;11794:575;;;:::o;33089:143::-;33163:4;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33180:22;33186:7;33195:6;33180:5;:22::i;:::-;33220:4;33213:11;;33089:143;;;;:::o;38094:146::-;38159:7;38180:55;38212:14;:22;38227:6;38212:22;;;;;;;;;;;;;;;;38180:27;38200:6;38180:19;:27::i;:::-;:31;;:55;;;;:::i;:::-;38173:62;;38094:146;;;:::o;46892:172::-;46937:15;46955:26;:24;:26::i;:::-;46937:44;;47003:1;46992:8;:12;46988:72;;;47012:42;47029:24;:8;:22;:24::i;:::-;47012:16;:42::i;:::-;46988:72;46892:172;:::o;39008:213::-;39073:7;36142:6;39094:103;:87;39156:16;:24;39173:6;39156:24;;;;;;;;;;;;;;;;39094:52;:37;39113:17;39123:6;39113:9;:17::i;:::-;39094:14;;:18;;:37;;;;:::i;:::-;:50;:52::i;:::-;:61;;:87;;;;:::i;:::-;:101;:103::i;:::-;:122;;;;;;39087:129;;39008:213;;;:::o;9009:942::-;7011:27;7027:10;7011:15;:27::i;:::-;7003:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9122:9;9134:1;9122:13;;9117:827;9141:12;:19;9137:1;:23;9117:827;;;10720:1;9228:25;;:9;:25;;;;9220:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9344:23;9370:17;:34;9388:12;9401:1;9388:15;;;;;;;;;;;;;;9370:34;;;;;;;;;;;;;;;;;;;;;;;;;9344:60;;9497:9;9460:17;:34;9478:12;9491:1;9478:15;;;;;;;;;;;;;;9460:34;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;10720:1;9621:33;;:17;:33;;;9618:189;;9784:10;9720:75;;9765:17;9720:75;;9748:12;9761:1;9748:15;;;;;;;;;;;;;;9720:75;;;;;;;;;;;;9618:189;9921:10;9869:63;;9910:9;9869:63;;9893:12;9906:1;9893:15;;;;;;;;;;;;;;9869:63;;;;;;;;;;;;9117:827;9162:3;;;;;;;9117:827;;;;9009:942;;:::o;10075:534::-;7011:27;7027:10;7011:15;:27::i;:::-;7003:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10179:9;10191:1;10179:13;;10174:428;10198:15;:22;10194:1;:26;10174:428;;;10282:23;10308:17;:37;10326:15;10342:1;10326:18;;;;;;;;;;;;;;10308:37;;;;;;;;;;;;;;;;;;;;;;;;;10282:63;;10720:1;10402:17;:37;10420:15;10436:1;10420:18;;;;;;;;;;;;;;10402:37;;;;;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;10579:10;10512:78;;10560:17;10512:78;;10540:15;10556:1;10540:18;;;;;;;;;;;;;;10512:78;;;;;;;;;;;;10174:428;10222:3;;;;;;;10174:428;;;;10075:534;:::o;41989:30::-;;;;;;;;;;;;;:::o;41711:24::-;;;;;;;;;;;;;:::o;7444:461::-;3822:9;:7;:9::i;:::-;3814:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7603:5;7573:35;;:14;:26;7588:10;7573:26;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;7565:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7796:4;7767:14;:26;7782:10;7767:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;7886:10;7863:34;;7874:10;7863:34;;;;;;;;;;;;7444:461;:::o;24531:110::-;24588:7;24615:9;:18;24625:7;24615:18;;;;;;;;;;;;;;;;24608:25;;24531:110;;;:::o;4421:140::-;3822:9;:7;:9::i;:::-;3814:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4520:1;4483:40;;4504:6;;;;;;;;;;;4483:40;;;;;;;;;;;;4551:1;4534:6;;:19;;;;;;;;;;;;;;;;;;4421:140::o;6622:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;44312:438::-;44423:13;41332:1;44458:31;;:15;:31;;;44454:86;;;44513:15;;;;;;;;;;;;;;;;;44506:22;;;;44454:86;41386:1;44556:40;;:15;:40;;;44552:109;;;44620:29;;;;;;;;;;;;;;;;;44613:36;;;;44552:109;44729:13;;;;;;;;;;;;;;;;;44722:20;;44312:438;;;;:::o;3610:79::-;3648:7;3675:6;;;;;;;;;;;3668:13;;3610:79;:::o;3976:94::-;4016:4;4056:6;;;;;;;;;;;4040:22;;:12;:10;:12::i;:::-;:22;;;4033:29;;3976:94;:::o;10884:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;12554:655::-;12640:4;12702:21;12726:17;:25;12744:6;12726:25;;;;;;;;;;;;;;;;;;;;;;;;;12702:49;;12762:23;12788:17;:27;12806:8;12788:27;;;;;;;;;;;;;;;;;;;;;;;;;12762:53;;10720:1;12910:31;;:15;:31;;;:68;;;;10720:1;12945:33;;:17;:33;;;12910:68;12907:111;;;13001:5;12994:12;;;;;;12907:111;13140:25;:42;13166:15;13140:42;;;;;;;;;;;;;;;:61;13183:17;13140:61;;;;;;;;;;;;;;;;;;;;;;;;;13133:68;;;;12554:655;;;;;:::o;31919:87::-;31958:13;31991:7;31984:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31919:87;:::o;41574:59::-;;;;;;;;;;;;;;;;;;;:::o;2555:92::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2620:19;2631:7;2620:10;:19::i;:::-;2555:92;:::o;2655:79::-;2699:27;2713:12;:10;:12::i;:::-;2699:13;:27::i;:::-;2655:79::o;27406:261::-;27491:4;27508:129;27517:12;:10;:12::i;:::-;27531:7;27540:96;27579:15;27540:96;;;;;;;;;;;;;;;;;:11;:25;27552:12;:10;:12::i;:::-;27540:25;;;;;;;;;;;;;;;:34;27566:7;27540:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27508:8;:129::i;:::-;27655:4;27648:11;;27406:261;;;;:::o;45212:199::-;45338:12;45297:10;45309:2;45313:5;44920:21;44944:42;44970:4;44976:2;44980:5;44944:25;:42::i;:::-;44920:66;;41332:1;45005:31;;:15;:31;;;45038:46;45068:15;45038:29;:46::i;:::-;44997:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44997:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45378:25;45393:2;45397:5;45378:14;:25::i;:::-;45368:35;;45212:199;;;;;;;;:::o;41816:32::-;;;;:::o;2438:109::-;2494:4;2518:21;2531:7;2518:8;:12;;:21;;;;:::i;:::-;2511:28;;2438:109;;;:::o;47136:277::-;47218:4;47257:42;47243:56;;:10;:56;;;47235:65;;;;;;47311:27;47321:4;47327:2;47331:6;47311:9;:27::i;:::-;47401:4;47394:11;;47136:277;;;;;:::o;41228:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41451:116::-;;;;;;;;;;;;;;;;;;;:::o;43184:888::-;43303:5;43490:22;:20;:22::i;:::-;43486:74;;41332:1;43529:19;;;;43486:74;43667:7;:5;:7::i;:::-;43659:15;;:4;:15;;;43656:66;;;41332:1;43691:19;;;;43656:66;43884:31;43906:4;43912:2;43884:21;:31::i;:::-;43880:92;;41386:1;43932:28;;;;43880:92;41332:1;44045:19;;43184:888;;;;;;:::o;5956:288::-;3822:9;:7;:9::i;:::-;3814:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6023:20;;;;;;;;;;;6015:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6151:5;6128:20;;:28;;;;;;;;;;;;;;;;;;6225:10;6204:32;;;;;;;;;;;;5956:288::o;25075:134::-;25147:7;25174:11;:18;25186:5;25174:18;;;;;;;;;;;;;;;:27;25193:7;25174:27;;;;;;;;;;;;;;;;25167:34;;25075:134;;;;:::o;41394:50::-;;;;;;;;;;;;;;;;;;;:::o;11095:74::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4716:109::-;3822:9;:7;:9::i;:::-;3814:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4789:28;4808:8;4789:18;:28::i;:::-;4716:109;:::o;752:98::-;797:15;832:10;825:17;;752:98;:::o;30337:338::-;30448:1;30431:19;;:5;:19;;;;30423:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30529:1;30510:21;;:7;:21;;;;30502:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30613:6;30583:11;:18;30595:5;30583:18;;;;;;;;;;;;;;;:27;30602:7;30583:27;;;;;;;;;;;;;;;:36;;;;30651:7;30635:32;;30644:5;30635:32;;;30660:6;30635:32;;;;;;;;;;;;;;;;;;30337:338;;;:::o;25980:304::-;26069:4;26086:36;26096:6;26104:9;26115:6;26086:9;:36::i;:::-;26133:121;26142:6;26150:12;:10;:12::i;:::-;26164:89;26202:6;26164:89;;;;;;;;;;;;;;;;;:11;:19;26176:6;26164:19;;;;;;;;;;;;;;;:33;26184:12;:10;:12::i;:::-;26164:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26133:8;:121::i;:::-;26272:4;26265:11;;25980:304;;;;;:::o;37553:313::-;37599:7;37613:29;37645:31;37665:10;37645:19;:31::i;:::-;37613:63;;37712:53;37743:21;37712:14;:26;37727:10;37712:26;;;;;;;;;;;;;;;;:30;;:53;;;;:::i;:::-;37683:14;:26;37698:10;37683:26;;;;;;;;;;;;;;;:82;;;;37792:10;37777:49;;;37804:21;37777:49;;;;;;;;;;;;;;;;;;37840:21;37833:28;;;37553:313;:::o;46290:257::-;46344:6;46357:29;46389:17;;46357:49;;46433:10;;;;;;;;;;;:20;;;46462:4;46433:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46433:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46433:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46433:35:0;;;;;;;;;;;;;;;;46413:17;:55;;;;46482:60;46519:21;46489:17;;46482:29;;:60;;;;:::i;:::-;46475:67;;;46290:257;:::o;14048:181::-;14106:7;14126:9;14142:1;14138;:5;14126:17;;14167:1;14162;:6;;14154:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14220:1;14213:8;;;14048:181;;;;:::o;40083:208::-;40144:27;40156:7;40165:5;40144:11;:27::i;:::-;40206:80;40242:42;40243:25;40262:5;40243:14;;:18;;:25;;;;:::i;:::-;40242:40;:42::i;:::-;40206:16;:25;40223:7;40206:25;;;;;;;;;;;;;;;;:34;;:80;;;;:::i;:::-;40178:16;:25;40195:7;40178:25;;;;;;;;;;;;;;;:108;;;;40083:208;;:::o;14504:136::-;14562:7;14589:43;14593:1;14596;14589:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;14582:50;;14504:136;;;;:::o;20060:117::-;20116:7;20145:1;20140;:6;;20132:15;;;;;;20169:1;20154:17;;20060:117;;;:::o;37058:315::-;37137:1;37121:13;:11;:13::i;:::-;:17;37113:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37217:1;37209:5;:9;37205:164;;;37243:74;37298:13;:11;:13::i;:::-;37268:27;36142:6;37268:5;:9;;:27;;;;:::i;:::-;:43;;;;;;37243:14;;:18;;:74;;;;:::i;:::-;37226:14;:91;;;;37345:10;37328:35;;;37357:5;37328:35;;;;;;;;;;;;;;;;;;37205:164;37058:315;:::o;15378:471::-;15436:7;15686:1;15681;:6;15677:47;;;15711:1;15704:8;;;;15677:47;15736:9;15752:1;15748;:5;15736:17;;15781:1;15776;15772;:5;;;;;;:10;15764:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15840:1;15833:8;;;15378:471;;;;;:::o;18644:134::-;18700:6;18715:8;18733:1;18715:20;;18755:1;18750;:6;;18742:15;;;;;;18771:1;18764:8;;;18644:134;;;:::o;19892:162::-;19948:6;19963:8;19978:1;19974;:5;19963:16;;20000:1;19995;:6;;:16;;;;;20010:1;20005;:6;;19995:16;19994:38;;;;20021:1;20017;:5;:14;;;;;20030:1;20026;:5;20017:14;19994:38;19986:47;;;;;;20047:1;20040:8;;;19892:162;;;;:::o;2742:122::-;2799:21;2812:7;2799:8;:12;;:21;;;;:::i;:::-;2848:7;2836:20;;;;;;;;;;;;2742:122;:::o;2872:130::-;2932:24;2948:7;2932:8;:15;;:24;;;;:::i;:::-;2986:7;2972:22;;;;;;;;;;;;2872:130;:::o;14935:192::-;15021:7;15054:1;15049;:6;;15057:12;15041:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15041:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15081:9;15097:1;15093;:5;15081:17;;15118:1;15111:8;;;14935:192;;;;;:::o;24854:158::-;24923:4;24940:42;24950:12;:10;:12::i;:::-;24964:9;24975:6;24940:9;:42::i;:::-;25000:4;24993:11;;24854:158;;;;:::o;1873:203::-;1945:4;1989:1;1970:21;;:7;:21;;;;1962:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2048:4;:11;;:20;2060:7;2048:20;;;;;;;;;;;;;;;;;;;;;;;;;2041:27;;1873:203;;;;:::o;39508:322::-;39582:32;39598:4;39604:2;39608:5;39582:15;:32::i;:::-;39621:21;39645:40;:25;39664:5;39645:14;;:18;;:25;;;;:::i;:::-;:38;:40::i;:::-;39621:64;;39715:42;39742:14;39715:16;:22;39732:4;39715:22;;;;;;;;;;;;;;;;:26;;:42;;;;:::i;:::-;39690:16;:22;39707:4;39690:22;;;;;;;;;;;;;;;:67;;;;39785:40;39810:14;39785:16;:20;39802:2;39785:20;;;;;;;;;;;;;;;;:24;;:40;;;;:::i;:::-;39762:16;:20;39779:2;39762:20;;;;;;;;;;;;;;;:63;;;;39508:322;;;;:::o;4931:229::-;5025:1;5005:22;;:8;:22;;;;4997:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5115:8;5086:38;;5107:6;;;;;;;;;;;5086:38;;;;;;;;;;;;5144:8;5135:6;;:17;;;;;;;;;;;;;;;;;;4931:229;:::o;19733:153::-;19789:6;19818:1;19813;:6;;:20;;;;;19832:1;19827;19823;:5;:10;;19813:20;19812:46;;;;19843:1;19839;:5;:18;;;;;19856:1;19852;19848;:5;:9;19839:18;19812:46;19804:55;;;;;;19879:1;19875;:5;19868:12;;19733:153;;;;:::o;28909:308::-;29004:1;28985:21;;:7;:21;;;;28977:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29070:24;29087:6;29070:12;;:16;;:24;;;;:::i;:::-;29055:12;:39;;;;29126:30;29149:6;29126:9;:18;29136:7;29126:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29105:9;:18;29115:7;29105:18;;;;;;;;;;;;;;;:51;;;;29193:7;29172:37;;29189:1;29172:37;;;29202:6;29172:37;;;;;;;;;;;;;;;;;;28909:308;;:::o;1337:178::-;1415:18;1419:4;1425:7;1415:3;:18::i;:::-;1414:19;1406:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503:4;1480;:11;;:20;1492:7;1480:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;1337:178;;:::o;1595:183::-;1675:18;1679:4;1685:7;1675:3;:18::i;:::-;1667:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765:5;1742:4;:11;;:20;1754:7;1742:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1595:183;;:::o;28157:471::-;28273:1;28255:20;;:6;:20;;;;28247:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28357:1;28336:23;;:9;:23;;;;28328:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28432;28454:6;28432:71;;;;;;;;;;;;;;;;;:9;:17;28442:6;28432:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28412:9;:17;28422:6;28412:17;;;;;;;;;;;;;;;:91;;;;28537:32;28562:6;28537:9;:20;28547:9;28537:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28514:9;:20;28524:9;28514:20;;;;;;;;;;;;;;;:55;;;;28602:9;28585:35;;28594:6;28585:35;;;28613:6;28585:35;;;;;;;;;;;;;;;;;;28157:471;;;:::o

Swarm Source

bzzr://a9386c5a440f1221733ca7acac1452d914d631289ff80f9df3f0ba67dd740ee9
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.