ETH Price: $2,992.76 (+0.66%)
Gas: 8 Gwei

Token

Keep3rV1 (KP3R)
 

Overview

Max Total Supply

508,552.646680606836737487 KP3R

Holders

8,415 (0.00%)

Total Transfers

-

Market

Price

$76.93 @ 0.025705 ETH (-1.23%)

Onchain Market Cap

$39,122,955.11

Circulating Supply Market Cap

$39,097,507.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Keep3r Network is a decentralized keeper network for projects that need external devops and for external teams to find keeper jobs.

Market

Volume (24H):$6,802,695.00
Market Capitalization:$39,097,507.00
Circulating Supply:508,553.00 KP3R
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Keep3rV1

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @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(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "add: +");

        return c;
    }

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

        return c;
    }

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

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

        uint c = a * b;
        require(c / a == b, "mul: *");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // 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;
        }

        uint c = a * b;
        require(c / a == b, errorMessage);

        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(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "div: /");
    }

    /**
     * @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(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint 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(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "mod: %");
    }

    /**
     * @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(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

/**
 * @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 Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call{value:amount}("");
        require(success, "Address: reverted");
    }
}

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

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

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

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: !contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: !succeed");
        }
    }
}

library Keep3rV1Library {
    function getReserve(address pair, address reserve) external view returns (uint) {
        (uint _r0, uint _r1,) = IUniswapV2Pair(pair).getReserves();
        if (IUniswapV2Pair(pair).token0() == reserve) {
            return _r0;
        } else if (IUniswapV2Pair(pair).token1() == reserve) {
            return _r1;
        } else {
            return 0;
        }
    }
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IGovernance {
    function proposeJob(address job) external;
}

interface IKeep3rV1Helper {
    function getQuoteLimit(uint gasUsed) external view returns (uint);
}

contract Keep3rV1 is ReentrancyGuard {
    using SafeMath for uint;
    using SafeERC20 for IERC20;

    /// @notice Keep3r Helper to set max prices for the ecosystem
    IKeep3rV1Helper public KPRH;

    /// @notice EIP-20 token name for this token
    string public constant name = "Keep3rV1";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "KP3R";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // Initial 0

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

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

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

    mapping (address => mapping (address => uint)) internal allowances;
    mapping (address => uint) internal balances;

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

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

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint value,uint nonce,uint deadline)");


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

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

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

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

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "delegateBySig: sig");
        require(nonce == nonces[signatory]++, "delegateBySig: nonce");
        require(now <= expiry, "delegateBySig: expired");
        _delegate(signatory, delegatee);
    }

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

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

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

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

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

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

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint delegatorBalance = votes[delegator].add(bonds[delegator][address(this)]);
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint srcRepNew = srcRepOld.sub(amount, "_moveVotes: underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

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

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

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

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

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint amount);

    /// @notice Submit a job
    event SubmitJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Apply credit to a job
    event ApplyCredit(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Remove credit for a job
    event RemoveJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Added a Job
    event JobAdded(address indexed job, uint block, address governance);

    /// @notice Removed a job
    event JobRemoved(address indexed job, uint block, address governance);

    /// @notice Worked a job
    event KeeperWorked(address indexed credit, address indexed job, address indexed keeper, uint block, uint amount);

    /// @notice Keeper bonding
    event KeeperBonding(address indexed keeper, uint block, uint active, uint bond);

    /// @notice Keeper bonded
    event KeeperBonded(address indexed keeper, uint block, uint activated, uint bond);

    /// @notice Keeper unbonding
    event KeeperUnbonding(address indexed keeper, uint block, uint deactive, uint bond);

    /// @notice Keeper unbound
    event KeeperUnbound(address indexed keeper, uint block, uint deactivated, uint bond);

    /// @notice Keeper slashed
    event KeeperSlashed(address indexed keeper, address indexed slasher, uint block, uint slash);

    /// @notice Keeper disputed
    event KeeperDispute(address indexed keeper, uint block);

    /// @notice Keeper resolved
    event KeeperResolved(address indexed keeper, uint block);

    event AddCredit(address indexed credit, address indexed job, address indexed creditor, uint block, uint amount);

    /// @notice 1 day to bond to become a keeper
    uint constant public BOND = 3 days;
    /// @notice 14 days to unbond to remove funds from being a keeper
    uint constant public UNBOND = 14 days;
    /// @notice 3 days till liquidity can be bound
    uint constant public LIQUIDITYBOND = 3 days;

    /// @notice direct liquidity fee 0.3%
    uint constant public FEE = 30;
    uint constant public BASE = 10000;

    /// @notice address used for ETH transfers
    address constant public ETH = address(0xE);

    /// @notice tracks all current bondings (time)
    mapping(address => mapping(address => uint)) public bondings;
    /// @notice tracks all current unbondings (time)
    mapping(address => mapping(address => uint)) public unbondings;
    /// @notice allows for partial unbonding
    mapping(address => mapping(address => uint)) public partialUnbonding;
    /// @notice tracks all current pending bonds (amount)
    mapping(address => mapping(address => uint)) public pendingbonds;
    /// @notice tracks how much a keeper has bonded
    mapping(address => mapping(address => uint)) public bonds;
    /// @notice tracks underlying votes (that don't have bond)
    mapping(address => uint) public votes;

    /// @notice total bonded (totalSupply for bonds)
    uint public totalBonded = 0;
    /// @notice tracks when a keeper was first registered
    mapping(address => uint) public firstSeen;

    /// @notice tracks if a keeper has a pending dispute
    mapping(address => bool) public disputes;

    /// @notice tracks last job performed for a keeper
    mapping(address => uint) public lastJob;
    /// @notice tracks the total job executions for a keeper
    mapping(address => uint) public workCompleted;
    /// @notice list of all jobs registered for the keeper system
    mapping(address => bool) public jobs;
    /// @notice the current credit available for a job
    mapping(address => mapping(address => uint)) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => mapping(address => mapping(address => uint))) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => mapping(address => mapping(address => uint))) public liquidityUnbonding;
    /// @notice liquidity unbonding amounts
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmountsUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => mapping(address => mapping(address => uint))) public liquidityApplied;
    /// @notice liquidity amount to apply
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmount;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;
    /// @notice blacklist of keepers not allowed to participate
    mapping(address => bool) public blacklist;

    /// @notice traversable array of keepers to make external management easier
    address[] public keeperList;
    /// @notice traversable array of jobs to make external management easier
    address[] public jobList;

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;

    /// @notice the liquidity token supplied by users paying for jobs
    mapping(address => bool) public liquidityAccepted;

    address[] public liquidityPairs;

    uint internal _gasUsed;

    constructor(address _kph) public {
        // Set governance for this token
        governance = msg.sender;
        DOMAINSEPARATOR = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), _getChainId(), address(this)));
        KPRH = IKeep3rV1Helper(_kph);
    }

    /**
     * @notice Add ETH credit to a job to be paid out for work
     * @param job the job being credited
     */
    function addCreditETH(address job) external payable {
        require(jobs[job], "addCreditETH: !job");
        uint _fee = msg.value.mul(FEE).div(BASE);
        credits[job][ETH] = credits[job][ETH].add(msg.value.sub(_fee));
        payable(governance).transfer(_fee);

        emit AddCredit(ETH, job, msg.sender, block.number, msg.value);
    }

    /**
     * @notice Add credit to a job to be paid out for work
     * @param credit the credit being assigned to the job
     * @param job the job being credited
     * @param amount the amount of credit being added to the job
     */
    function addCredit(address credit, address job, uint amount) external nonReentrant {
        require(jobs[job], "addCreditETH: !job");
        uint _before = IERC20(credit).balanceOf(address(this));
        IERC20(credit).safeTransferFrom(msg.sender, address(this), amount);
        uint _received = IERC20(credit).balanceOf(address(this)).sub(_before);
        uint _fee = _received.mul(FEE).div(BASE);
        credits[job][credit] = credits[job][credit].add(_received.sub(_fee));
        IERC20(credit).safeTransfer(governance, _fee);

        emit AddCredit(credit, job, msg.sender, block.number, _received);
    }

    /**
     * @notice Add non transferable votes for governance
     * @param voter to add the votes to
     * @param amount of votes to add
     */
    function addVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        _activate(voter, address(this));
        votes[voter] = votes[voter].add(amount);
        totalBonded = totalBonded.add(amount);
        _moveDelegates(address(0), delegates[voter], amount);
    }

    /**
     * @notice Remove non transferable votes for governance
     * @param voter to subtract the votes
     * @param amount of votes to remove
     */
    function removeVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        votes[voter] = votes[voter].sub(amount);
        totalBonded = totalBonded.sub(amount);
        _moveDelegates(delegates[voter], address(0), amount);
    }

    /**
     * @notice Add credit to a job to be paid out for work
     * @param job the job being credited
     * @param amount the amount of credit being added to the job
     */
    function addKPRCredit(address job, uint amount) external {
        require(msg.sender == governance, "addKPRCredit: !gov");
        require(jobs[job], "addKPRCredit: !job");
        credits[job][address(this)] = credits[job][address(this)].add(amount);
        _mint(address(this), amount);
        emit AddCredit(address(this), job, msg.sender, block.number, amount);
    }

    /**
     * @notice Approve a liquidity pair for being accepted in future
     * @param liquidity the liquidity no longer accepted
     */
    function approveLiquidity(address liquidity) external {
        require(msg.sender == governance, "approveLiquidity: !gov");
        require(!liquidityAccepted[liquidity], "approveLiquidity: !pair");
        liquidityAccepted[liquidity] = true;
        liquidityPairs.push(liquidity);
    }

    /**
     * @notice Revoke a liquidity pair from being accepted in future
     * @param liquidity the liquidity no longer accepted
     */
    function revokeLiquidity(address liquidity) external {
        require(msg.sender == governance, "revokeLiquidity: !gov");
        liquidityAccepted[liquidity] = false;
    }

    /**
     * @notice Displays all accepted liquidity pairs
     */
    function pairs() external view returns (address[] memory) {
        return liquidityPairs;
    }

    /**
     * @notice Allows liquidity providers to submit jobs
     * @param liquidity the liquidity being added
     * @param job the job to assign credit to
     * @param amount the amount of liquidity tokens to use
     */
    function addLiquidityToJob(address liquidity, address job, uint amount) external nonReentrant {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        IERC20(liquidity).safeTransferFrom(msg.sender, address(this), amount);
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].add(amount);

        liquidityApplied[msg.sender][liquidity][job] = now.add(LIQUIDITYBOND);
        liquidityAmount[msg.sender][liquidity][job] = liquidityAmount[msg.sender][liquidity][job].add(amount);

        if (!jobs[job] && jobProposalDelay[job] < now) {
            IGovernance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, liquidity, msg.sender, block.number, amount);
    }

    /**
     * @notice Applies the credit provided in addLiquidityToJob to the job
     * @param provider the liquidity provider
     * @param liquidity the pair being added as liquidity
     * @param job the job that is receiving the credit
     */
    function applyCreditToJob(address provider, address liquidity, address job) external {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        require(liquidityApplied[provider][liquidity][job] != 0, "credit: no bond");
        require(liquidityApplied[provider][liquidity][job] < now, "credit: bonding");
        uint _liquidity = Keep3rV1Library.getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(liquidityAmount[provider][liquidity][job]).div(IERC20(liquidity).totalSupply());
        _mint(address(this), _credit);
        credits[job][address(this)] = credits[job][address(this)].add(_credit);
        liquidityAmount[provider][liquidity][job] = 0;

        emit ApplyCredit(job, liquidity, provider, block.number, _credit);
    }

    /**
     * @notice Unbond liquidity for a job
     * @param liquidity the pair being unbound
     * @param job the job being unbound from
     * @param amount the amount of liquidity being removed
     */
    function unbondLiquidityFromJob(address liquidity, address job, uint amount) external {
        require(liquidityAmount[msg.sender][liquidity][job] == 0, "credit: pending credit");
        liquidityUnbonding[msg.sender][liquidity][job] = now.add(UNBOND);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = liquidityAmountsUnbonding[msg.sender][liquidity][job].add(amount);
        require(liquidityAmountsUnbonding[msg.sender][liquidity][job] <= liquidityProvided[msg.sender][liquidity][job], "unbondLiquidityFromJob: insufficient funds");

        uint _liquidity = Keep3rV1Library.getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(amount).div(IERC20(liquidity).totalSupply());
        if (_credit > credits[job][address(this)]) {
            _burn(address(this), credits[job][address(this)]);
            credits[job][address(this)] = 0;
        } else {
            _burn(address(this), _credit);
            credits[job][address(this)] = credits[job][address(this)].sub(_credit);
        }

        emit UnbondJob(job, liquidity, msg.sender, block.number, amount);
    }

    /**
     * @notice Allows liquidity providers to remove liquidity
     * @param liquidity the pair being unbound
     * @param job the job being unbound from
     */
    function removeLiquidityFromJob(address liquidity, address job) external {
        require(liquidityUnbonding[msg.sender][liquidity][job] != 0, "removeJob: unbond");
        require(liquidityUnbonding[msg.sender][liquidity][job] < now, "removeJob: unbonding");
        uint _amount = liquidityAmountsUnbonding[msg.sender][liquidity][job];
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].sub(_amount);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = 0;
        IERC20(liquidity).safeTransfer(msg.sender, _amount);

        emit RemoveJob(job, liquidity, msg.sender, block.number, _amount);
    }

    /**
     * @notice Allows governance to mint new tokens to treasury
     * @param amount the amount of tokens to mint to treasury
     */
    function mint(uint amount) external {
        require(msg.sender == governance, "mint: !gov");
        _mint(governance, amount);
    }

    /**
     * @notice burn owned tokens
     * @param amount the amount of tokens to burn
     */
    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }

    function _mint(address dst, uint amount) internal {
        // mint the amount
        totalSupply = totalSupply.add(amount);
        // transfer the amount to the recipient
        balances[dst] = balances[dst].add(amount);
        emit Transfer(address(0), dst, amount);
    }

    function _burn(address dst, uint amount) internal {
        require(dst != address(0), "_burn: zero address");
        balances[dst] = balances[dst].sub(amount, "_burn: exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     */
    function worked(address keeper) external {
        workReceipt(keeper, KPRH.getQuoteLimit(_gasUsed.sub(gasleft())));
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function workReceipt(address keeper, uint amount) public {
        require(jobs[msg.sender], "workReceipt: !job");
        require(amount <= KPRH.getQuoteLimit(_gasUsed.sub(gasleft())), "workReceipt: max limit");
        credits[msg.sender][address(this)] = credits[msg.sender][address(this)].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        _reward(keeper, amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(address(this), msg.sender, keeper, block.number, amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param credit the asset being awarded to the keeper
     * @param keeper address of the keeper that performed the work
     * @param amount the reward that should be allocated
     */
    function receipt(address credit, address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][credit] = credits[msg.sender][credit].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        IERC20(credit).safeTransfer(keeper, amount);
        emit KeeperWorked(credit, msg.sender, keeper, block.number, amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performed work
     * @param keeper address of the keeper that performed the work
     * @param amount the amount of ETH sent to the keeper
     */
    function receiptETH(address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][ETH] = credits[msg.sender][ETH].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        payable(keeper).transfer(amount);
        emit KeeperWorked(ETH, msg.sender, keeper, block.number, amount);
    }

    function _reward(address _from, uint _amount) internal {
        bonds[_from][address(this)] = bonds[_from][address(this)].add(_amount);
        totalBonded = totalBonded.add(_amount);
        _moveDelegates(address(0), delegates[_from], _amount);
        emit Transfer(msg.sender, _from, _amount);
    }

    function _bond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].add(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.add(_amount);
            _moveDelegates(address(0), delegates[_from], _amount);
        }
    }

    function _unbond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].sub(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.sub(_amount);
            _moveDelegates(delegates[_from], address(0), _amount);
        }

    }

    /**
     * @notice Allows governance to add new job systems
     * @param job address of the contract for which work should be performed
     */
    function addJob(address job) external {
        require(msg.sender == governance, "addJob: !gov");
        require(!jobs[job], "addJob: job known");
        jobs[job] = true;
        jobList.push(job);
        emit JobAdded(job, block.number, msg.sender);
    }

    /**
     * @notice Full listing of all jobs ever added
     * @return array blob
     */
    function getJobs() external view returns (address[] memory) {
        return jobList;
    }

    /**
     * @notice Allows governance to remove a job from the systems
     * @param job address of the contract for which work should be performed
     */
    function removeJob(address job) external {
        require(msg.sender == governance, "removeJob: !gov");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    /**
     * @notice Allows governance to change the Keep3rHelper for max spend
     * @param _kprh new helper address to set
     */
    function setKeep3rHelper(IKeep3rV1Helper _kprh) external {
        require(msg.sender == governance, "setKeep3rHelper: !gov");
        KPRH = _kprh;
    }

    /**
     * @notice Allows governance to change governance (for future upgradability)
     * @param _governance new governance address to set
     */
    function setGovernance(address _governance) external {
        require(msg.sender == governance, "setGovernance: !gov");
        pendingGovernance = _governance;
    }

    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "acceptGovernance: !pendingGov");
        governance = pendingGovernance;
    }

    /**
     * @notice confirms if the current keeper is registered, can be used for general (non critical) functions
     * @param keeper the keeper being investigated
     * @return true/false if the address is a keeper
     */
    function isKeeper(address keeper) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper];
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @param keeper the keeper being investigated
     * @param minBond the minimum requirement for the asset provided in bond
     * @param earned the total funds earned in the keepers lifetime
     * @param age the age of the keeper in the system
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isMinKeeper(address keeper, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][address(this)].add(votes[keeper]) >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @param keeper the keeper being investigated
     * @param bond the bound asset being evaluated
     * @param minBond the minimum requirement for the asset provided in bond
     * @param earned the total funds earned in the keepers lifetime
     * @param age the age of the keeper in the system
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isBondedKeeper(address keeper, address bond, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][bond] >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

    /**
     * @notice begin the bonding process for a new keeper
     * @param bonding the asset being bound
     * @param amount the amount of bonding asset being bound
     */
    function bond(address bonding, uint amount) external nonReentrant {
        require(!blacklist[msg.sender], "bond: blacklisted");
        bondings[msg.sender][bonding] = now.add(BOND);
        if (bonding == address(this)) {
            _transferTokens(msg.sender, address(this), amount);
        } else {
            uint _before = IERC20(bonding).balanceOf(address(this));
            IERC20(bonding).safeTransferFrom(msg.sender, address(this), amount);
            amount = IERC20(bonding).balanceOf(address(this)).sub(_before);
        }
        pendingbonds[msg.sender][bonding] = pendingbonds[msg.sender][bonding].add(amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender][bonding], amount);
    }

    /**
     * @notice get full list of keepers in the system
     */
    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

    /**
     * @notice allows a keeper to activate/register themselves after bonding
     * @param bonding the asset being activated as bond collateral
     */
    function activate(address bonding) external {
        require(!blacklist[msg.sender], "activate: blacklisted");
        require(bondings[msg.sender][bonding] != 0 && bondings[msg.sender][bonding] < now, "activate: bonding");
        _activate(msg.sender, bonding);
    }
    
    function _activate(address keeper, address bonding) internal {
        if (firstSeen[keeper] == 0) {
          firstSeen[keeper] = now;
          keeperList.push(keeper);
          lastJob[keeper] = now;
        }
        keepers[keeper] = true;
        _bond(bonding, keeper, pendingbonds[keeper][bonding]);
        pendingbonds[keeper][bonding] = 0;
        emit KeeperBonded(keeper, block.number, block.timestamp, bonds[keeper][bonding]);
    }

    /**
     * @notice begin the unbonding process to stop being a keeper
     * @param bonding the asset being unbound
     * @param amount allows for partial unbonding
     */
    function unbond(address bonding, uint amount) external {
        unbondings[msg.sender][bonding] = now.add(UNBOND);
        _unbond(bonding, msg.sender, amount);
        partialUnbonding[msg.sender][bonding] = partialUnbonding[msg.sender][bonding].add(amount);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender][bonding], amount);
    }

    /**
     * @notice withdraw funds after unbonding has finished
     * @param bonding the asset to withdraw from the bonding pool
     */
    function withdraw(address bonding) external nonReentrant {
        require(unbondings[msg.sender][bonding] != 0 && unbondings[msg.sender][bonding] < now, "withdraw: unbonding");
        require(!disputes[msg.sender], "withdraw: disputes");

        if (bonding == address(this)) {
            _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender][bonding]);
        } else {
            IERC20(bonding).safeTransfer(msg.sender, partialUnbonding[msg.sender][bonding]);
        }
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender][bonding]);
        partialUnbonding[msg.sender][bonding] = 0;
    }

    /**
     * @notice allows governance to create a dispute for a given keeper
     * @param keeper the address in dispute
     */
    function dispute(address keeper) external {
        require(msg.sender == governance, "dispute: !gov");
        disputes[keeper] = true;
        emit KeeperDispute(keeper, block.number);
    }

    /**
     * @notice allows governance to slash a keeper based on a dispute
     * @param bonded the asset being slashed
     * @param keeper the address being slashed
     * @param amount the amount being slashed
     */
    function slash(address bonded, address keeper, uint amount) public nonReentrant {
        require(msg.sender == governance, "slash: !gov");
        if (bonded == address(this)) {
            _transferTokens(address(this), governance, amount);
        } else {
            IERC20(bonded).safeTransfer(governance, amount);
        }
        _unbond(bonded, keeper, amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }

    /**
     * @notice blacklists a keeper from participating in the network
     * @param keeper the address being slashed
     */
    function revoke(address keeper) external {
        require(msg.sender == governance, "slash: !gov");
        keepers[keeper] = false;
        blacklist[keeper] = true;
        slash(address(this), keeper, bonds[keeper][address(this)]);
    }

    /**
     * @notice allows governance to resolve a dispute on a keeper
     * @param keeper the address cleared
     */
    function resolve(address keeper) external {
        require(msg.sender == governance, "resolve: !gov");
        disputes[keeper] = false;
        emit KeeperResolved(keeper, block.number);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint amount) public returns (bool) {
        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param amount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint amount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "permit: signature");
        require(signatory == owner, "permit: unauthorized");
        require(now <= deadline, "permit: expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) public returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint amount) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint(-1)) {
            uint newAllowance = spenderAllowance.sub(amount, "transferFrom: exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        require(src != address(0), "_transferTokens: zero address");
        require(dst != address(0), "_transferTokens: zero address");

        balances[src] = balances[src].sub(amount, "_transferTokens: exceeds balance");
        balances[dst] = balances[dst].add(amount, "_transferTokens: overflows");
        emit Transfer(src, dst, amount);
    }

    function _getChainId() internal pure returns (uint) {
        uint chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_kph","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"creditor","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddCredit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"ApplyCredit","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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"activated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"active","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"address","name":"slasher","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"slash","type":"uint256"}],"name":"KeeperSlashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactivated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"RemoveJob","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"SubmitJob","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"UnbondJob","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAINSEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KPRH","outputs":[{"internalType":"contract IKeep3rV1Helper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITYBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addCreditETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addKPRCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidityToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"applyCreditToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"approveLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"dispute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disputes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSeen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getJobs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getKeepers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"bond","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isBondedKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"jobList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobProposalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"keeperList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastJob","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityAccepted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmountsUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"partialUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"pendingbonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiptETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"revokeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IKeep3rV1Helper","name":"_kprh","type":"address"}],"name":"setKeep3rHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonded","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"votes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"workCompleted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"worked","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006002556000600f553480156200001b57600080fd5b506040516200612238038062006122833981810160405260208110156200004157600080fd5b50516001600055602080546001600160a01b031916331781556040805180820190915260088152674b6565703372563160c01b9101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357f1796d870c6a8217c2b22ab5358db21ed0a7e81d8846f9b0f0adb4215fe0427df620000c362000129565b604080516020808201959095528082019390935260608301919091523060808084019190915281518084038201815260a0909301909152815191909201209052600180546001600160a01b0319166001600160a01b03929092169190911790556200012d565b4690565b608051615fd06200015260003980611c2b528061425052806146ea5250615fd06000f3fe6080604052600436106104f75760003560e01c8063782d6fe11161028c578063c57981b51161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a01461166f578063f75f9f7b14611684578063f9d46cf2146116b7578063f9f92be414611706578063fede700814611739578063ffb0a4a01461177e576104f7565b8063e74f823914611546578063e7a324dc14611589578063eb421f3b1461159e578063ec342ad0146115d1578063ec4515dd146115e6578063f1127ed814611610576104f7565b8063d8bff5a51161011e578063d8bff5a5146113ec578063dd62ed3e1461141f578063de63298d1461145a578063deac354114611493578063def70844146114ce578063e326ac4314611513576104f7565b8063c57981b5146112d4578063ce6a0880146112e9578063d454019d14611322578063d505accf14611355578063d8ae6faf146113b3576104f7565b8063a515366a116101fe578063b4b5ea57116101b7578063b4b5ea57146111a2578063b600702a146111d5578063bb49096d14611208578063c1c1d21814610784578063c3cda5201461124d578063c5198abc146112a1576104f7565b8063a515366a1461107c578063a5d059ca146110b5578063a9059cbb146110ee578063ab033ea914611127578063b0103b1a1461115a578063b105e39f1461118d576104f7565b806388b4ac831161025057806388b4ac8314610f415780638d9acd2e14610f8457806395d89b4114610fc75780639af7728414610fdc578063a0712d6814611017578063a39744b514611041576104f7565b8063782d6fe114610e485780637ecebe0014610e815780638071198914610eb45780638322fff214610ee757806383baa69314610efc576104f7565b80634395d8ba116103c9578063603c68601161033b5780636dab5dcf116102f45780636dab5dcf14610d0a5780636fcfff4514610d3057806370a0823114610d7c57806372da828a14610daf57806374a8f10314610de25780637724ff6814610e15576104f7565b8063603c686014610b8e578063637cd7f014610bc957806364bb43ee14610c0457806367da318414610c3757806368581ebd14610c725780636ba42aaa14610cd7576104f7565b806355ea6c471161038d57806355ea6c4714610a98578063587cde1e14610acb5780635aa6e67514610afe5780635c19a95c14610b135780635feeb79414610b46578063603b4d1414610b79576104f7565b80634395d8ba1461098f57806344d96e95146109d45780634b3fde21146109e957806351cff8d914610a2257806352a4de2914610a55576104f7565b80631df0de131161046d57806330adf81f1161042657806330adf81f14610884578063313ce5671461089957806337feca84146108c45780633bbd64bc146108ff5780633d1f0bb91461093257806342966c6814610965576104f7565b80631df0de13146107845780631ff5f3da1461079957806320606b70146107de5780632119a62a146107f3578063238efcbc1461082c57806323b872dd14610841576104f7565b80631778e29c116104bf5780631778e29c1461067357806318160ddd1461069a5780631992d206146106af5780631b44555e146106f45780631b7a1fb2146107275780631c5a9d9c14610751576104f7565b806306fdde03146104fc578063095ea7b31461058657806309aff02b146105d35780630c33c522146106045780631101eb411461062e575b600080fd5b34801561050857600080fd5b50610511611793565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561054b578181015183820152602001610533565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059257600080fd5b506105bf600480360360408110156105a957600080fd5b506001600160a01b0381351690602001356117b7565b604080519115158252519081900360200190f35b3480156105df57600080fd5b506105e861181e565b604080516001600160a01b039092168252519081900360200190f35b34801561061057600080fd5b506105e86004803603602081101561062757600080fd5b503561182d565b34801561063a57600080fd5b506106716004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135611854565b005b34801561067f57600080fd5b50610688611c29565b60408051918252519081900360200190f35b3480156106a657600080fd5b50610688611c4d565b3480156106bb57600080fd5b50610688600480360360608110156106d257600080fd5b506001600160a01b038135811691602081013582169160409091013516611c53565b34801561070057600080fd5b506106886004803603602081101561071757600080fd5b50356001600160a01b0316611c76565b34801561073357600080fd5b506105e86004803603602081101561074a57600080fd5b5035611c88565b34801561075d57600080fd5b506106716004803603602081101561077457600080fd5b50356001600160a01b0316611c95565b34801561079057600080fd5b50610688611d98565b3480156107a557600080fd5b506105bf600480360360808110156107bc57600080fd5b506001600160a01b038135169060208101359060408101359060600135611d9f565b3480156107ea57600080fd5b50610688611e61565b3480156107ff57600080fd5b506106716004803603604081101561081657600080fd5b506001600160a01b038135169060200135611e85565b34801561083857600080fd5b50610671611fe4565b34801561084d57600080fd5b506105bf6004803603606081101561086457600080fd5b506001600160a01b03813581169160208101359091169060400135612067565b34801561089057600080fd5b50610688612149565b3480156108a557600080fd5b506108ae61216d565b6040805160ff9092168252519081900360200190f35b3480156108d057600080fd5b50610688600480360360408110156108e757600080fd5b506001600160a01b0381358116916020013516612172565b34801561090b57600080fd5b506105bf6004803603602081101561092257600080fd5b50356001600160a01b031661218f565b34801561093e57600080fd5b506105bf6004803603602081101561095557600080fd5b50356001600160a01b03166121a4565b34801561097157600080fd5b506106716004803603602081101561098857600080fd5b50356121b9565b34801561099b57600080fd5b50610671600480360360608110156109b257600080fd5b506001600160a01b0381358116916020810135821691604090910135166121c3565b3480156109e057600080fd5b5061068861251b565b3480156109f557600080fd5b5061067160048036036040811015610a0c57600080fd5b506001600160a01b038135169060200135612521565b348015610a2e57600080fd5b5061067160048036036020811015610a4557600080fd5b50356001600160a01b031661275c565b348015610a6157600080fd5b5061067160048036036060811015610a7857600080fd5b506001600160a01b038135811691602081013590911690604001356129a0565b348015610aa457600080fd5b5061067160048036036020811015610abb57600080fd5b50356001600160a01b0316612c9d565b348015610ad757600080fd5b506105e860048036036020811015610aee57600080fd5b50356001600160a01b0316612d44565b348015610b0a57600080fd5b506105e8612d5f565b348015610b1f57600080fd5b5061067160048036036020811015610b3657600080fd5b50356001600160a01b0316612d6e565b348015610b5257600080fd5b5061067160048036036020811015610b6957600080fd5b50356001600160a01b0316612d78565b348015610b8557600080fd5b50610688612e01565b348015610b9a57600080fd5b5061067160048036036040811015610bb157600080fd5b506001600160a01b0381358116916020013516612e08565b348015610bd557600080fd5b5061068860048036036040811015610bec57600080fd5b506001600160a01b038135811691602001351661300f565b348015610c1057600080fd5b5061067160048036036020811015610c2757600080fd5b50356001600160a01b031661302c565b348015610c4357600080fd5b5061068860048036036040811015610c5a57600080fd5b506001600160a01b03813581169160200135166130a4565b348015610c7e57600080fd5b50610c876130c1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610cc3578181015183820152602001610cab565b505050509050019250505060405180910390f35b348015610ce357600080fd5b506105bf60048036036020811015610cfa57600080fd5b50356001600160a01b0316613123565b61067160048036036020811015610d2057600080fd5b50356001600160a01b0316613148565b348015610d3c57600080fd5b50610d6360048036036020811015610d5357600080fd5b50356001600160a01b031661329e565b6040805163ffffffff9092168252519081900360200190f35b348015610d8857600080fd5b5061068860048036036020811015610d9f57600080fd5b50356001600160a01b03166132b6565b348015610dbb57600080fd5b5061067160048036036020811015610dd257600080fd5b50356001600160a01b03166132d1565b348015610dee57600080fd5b5061067160048036036020811015610e0557600080fd5b50356001600160a01b031661334a565b348015610e2157600080fd5b5061068860048036036020811015610e3857600080fd5b50356001600160a01b03166133eb565b348015610e5457600080fd5b5061068860048036036040811015610e6b57600080fd5b506001600160a01b0381351690602001356133fd565b348015610e8d57600080fd5b5061068860048036036020811015610ea457600080fd5b50356001600160a01b031661360c565b348015610ec057600080fd5b5061067160048036036020811015610ed757600080fd5b50356001600160a01b031661361e565b348015610ef357600080fd5b506105e86136d0565b348015610f0857600080fd5b5061068860048036036060811015610f1f57600080fd5b506001600160a01b0381358116916020810135821691604090910135166136d5565b348015610f4d57600080fd5b5061067160048036036060811015610f6457600080fd5b506001600160a01b038135811691602081013590911690604001356136f8565b348015610f9057600080fd5b5061067160048036036060811015610fa757600080fd5b506001600160a01b038135811691602081013590911690604001356139ae565b348015610fd357600080fd5b50610511613afa565b348015610fe857600080fd5b5061068860048036036040811015610fff57600080fd5b506001600160a01b0381358116916020013516613b1a565b34801561102357600080fd5b506106716004803603602081101561103a57600080fd5b5035613b37565b34801561104d57600080fd5b506106886004803603604081101561106457600080fd5b506001600160a01b0381358116916020013516613b99565b34801561108857600080fd5b506106716004803603604081101561109f57600080fd5b506001600160a01b038135169060200135613bb6565b3480156110c157600080fd5b50610671600480360360408110156110d857600080fd5b506001600160a01b038135169060200135613e3f565b3480156110fa57600080fd5b506105bf6004803603604081101561111157600080fd5b506001600160a01b038135169060200135613f2d565b34801561113357600080fd5b506106716004803603602081101561114a57600080fd5b50356001600160a01b0316613f43565b34801561116657600080fd5b506105bf6004803603602081101561117d57600080fd5b50356001600160a01b0316613fba565b34801561119957600080fd5b50610c87613fcf565b3480156111ae57600080fd5b50610688600480360360208110156111c557600080fd5b50356001600160a01b031661402f565b3480156111e157600080fd5b50610671600480360360208110156111f857600080fd5b50356001600160a01b0316614093565b34801561121457600080fd5b506106886004803603606081101561122b57600080fd5b506001600160a01b0381358116916020810135821691604090910135166141bf565b34801561125957600080fd5b50610671600480360360c081101561127057600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356141e2565b3480156112ad57600080fd5b50610671600480360360208110156112c457600080fd5b50356001600160a01b0316614420565b3480156112e057600080fd5b50610688614576565b3480156112f557600080fd5b506106716004803603604081101561130c57600080fd5b506001600160a01b03813516906020013561457b565b34801561132e57600080fd5b506106886004803603602081101561134557600080fd5b50356001600160a01b0316614641565b34801561136157600080fd5b50610671600480360360e081101561137857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614653565b3480156113bf57600080fd5b50610671600480360360408110156113d657600080fd5b506001600160a01b0381351690602001356148f7565b3480156113f857600080fd5b506106886004803603602081101561140f57600080fd5b50356001600160a01b0316614a5b565b34801561142b57600080fd5b506106886004803603604081101561144257600080fd5b506001600160a01b0381358116916020013516614a6d565b34801561146657600080fd5b506106716004803603604081101561147d57600080fd5b506001600160a01b038135169060200135614a98565b34801561149f57600080fd5b50610688600480360360408110156114b657600080fd5b506001600160a01b0381358116916020013516614b63565b3480156114da57600080fd5b50610688600480360360608110156114f157600080fd5b506001600160a01b038135811691602081013582169160409091013516614b80565b34801561151f57600080fd5b506106886004803603602081101561153657600080fd5b50356001600160a01b0316614ba3565b34801561155257600080fd5b506106716004803603606081101561156957600080fd5b506001600160a01b03813581169160208101359091169060400135614bb5565b34801561159557600080fd5b50610688614d06565b3480156115aa57600080fd5b506105bf600480360360208110156115c157600080fd5b50356001600160a01b0316614d2a565b3480156115dd57600080fd5b50610688614d3f565b3480156115f257600080fd5b506105e86004803603602081101561160957600080fd5b5035614d45565b34801561161c57600080fd5b5061164f6004803603604081101561163357600080fd5b5080356001600160a01b0316906020013563ffffffff16614d52565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561167b57600080fd5b506105e8614d7f565b34801561169057600080fd5b50610671600480360360208110156116a757600080fd5b50356001600160a01b0316614d8e565b3480156116c357600080fd5b506105bf600480360360a08110156116da57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614e38565b34801561171257600080fd5b506105bf6004803603602081101561172957600080fd5b50356001600160a01b0316614ee9565b34801561174557600080fd5b506106886004803603606081101561175c57600080fd5b506001600160a01b038135811691602081013582169160409091013516614efe565b34801561178a57600080fd5b50610c87614f21565b604051806040016040528060088152602001674b6565703372563160c01b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f818154811061183a57fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152902054156118cf576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118dc4262127500614f81565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546119399082614f81565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119cb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f2a602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b0385166004820152306024820152905160009173fc38b6eba9d47cbfc8c7b4ffffd142b78996b6f19163cbc3ab5391604480820192602092909190829003018186803b158015611a2f57600080fd5b505af4158015611a43573d6000803e3d6000fd5b505050506040513d6020811015611a5957600080fd5b5051604080516318160ddd60e01b81529051919250600091611ae2916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6020811015611ad057600080fd5b5051611adc8486614fc4565b9061501c565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611b68576001600160a01b038416600090815260156020908152604080832030808552925290912054611b3f9190615047565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611bc5565b611b723082615047565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ba09082615148565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b6023818154811061183a57fe5b336000908152601d602052604090205460ff1615611cf2576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611d4657503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611d8b576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611d953382615173565b50565b6203f48081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611e0457506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611e019190614f81565b10155b8015611e2857506001600160a01b0385166000908152601360205260409020548311155b8015611e5857506001600160a01b0385166000908152601060205260409020548290611e55904290615148565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611ed9576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611f349183906152c1565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611f94573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314612043576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600660209081526040808320338085529252822054919290919082148015906120a157506000198114155b156121325760006120cd85604051806060016040528060278152602001615f74602791398491906152c1565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61213d868686615358565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b611d953382615047565b6001600160a01b03821660009081526022602052604090205460ff1661222b576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a60209081526040808320868516845282528083209385168352929052205461229e576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220544211612313576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b0384166004820152306024820152905160009173fc38b6eba9d47cbfc8c7b4ffffd142b78996b6f19163cbc3ab5391604480820192602092909190829003018186803b15801561237757600080fd5b505af415801561238b573d6000803e3d6000fd5b505050506040513d60208110156123a157600080fd5b5051604080516318160ddd60e01b81529051919250600091612455916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611adc908590614fc4565b90506124613082615515565b6001600160a01b038316600090815260156020908152604080832030845290915290205461248f9082614f81565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612579576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316125975a60245490615148565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125cb57600080fd5b505afa1580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b5051811115612644576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461269e9183906152c1565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556126da828261558e565b6001600160a01b0382166000908152601360205260409020546126fd9082614f81565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b600260005414156127a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906127fa5750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b612841576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff161561289b576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b0381163014156128e057336000818152600b602090815260408083206001600160a01b03861684529091529020546128db913091615358565b61290f565b336000818152600b602090815260408083206001600160a01b03861680855292529091205461290f9290615647565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b600260005414156129e6576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff16612a52576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b612a676001600160a01b03841633308461569e565b3360009081526016602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612aa19082614f81565b3360009081526016602090815260408083206001600160a01b0388811685529083528184209087168452909152902055612ade426203f480614f81565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b825280832093835292815282822093825292909252902054612b3b9082614f81565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612b9b57506001600160a01b03821660009081526019602052604090205442115b15612c36576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612bee57600080fd5b505af1158015612c02573d6000803e3d6000fd5b50505050612c1c6212750042614f8190919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612cec576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611d9533826156fe565b600154611d959082906001600160a01b031663525ea631612d9c5a60245490615148565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612dd057600080fd5b505afa158015612de4573d6000803e3d6000fd5b505050506040513d6020811015612dfa57600080fd5b5051612521565b6212750081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612e7d576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612ef7576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612f509082615148565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612fad919083615647565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613083576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f80548060200260200160405190810160405280929190818152602001828054801561311957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130fb575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff166131aa576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b60006131bd612710611adc34601e614fc4565b90506131f76131cc3483615148565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614f81565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f1935050505015801561324f573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b03163314613328576040805162461bcd60e51b815260206004820152601560248201527439b2ba25b2b2b819b92432b63832b91d1010b3b7bb60591b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6020546001600160a01b03163314613397576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611d9591908390614bb5565b60196020526000908152604090205481565b6000438210613444576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff1680613472576000915050611818565b6001600160a01b038416600090815260046020908152604080832063ffffffff6000198601811685529252909120541683106134e1576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611818565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff1683101561351c576000915050611818565b600060001982015b8163ffffffff168163ffffffff1611156135d557600282820363ffffffff1604810361354e615ef2565b506001600160a01b038716600090815260046020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156135b0576020015194506118189350505050565b805163ffffffff168711156135c7578193506135ce565b6001820392505b5050613524565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b0316331461366f576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b6002600054141561373e576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff166137a4576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156137f357600080fd5b505afa158015613807573d6000803e3d6000fd5b505050506040513d602081101561381d57600080fd5b505190506138366001600160a01b03851633308561569e565b60006138bb82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561388957600080fd5b505afa15801561389d573d6000803e3d6000fd5b505050506040513d60208110156138b357600080fd5b505190615148565b905060006138d0612710611adc84601e614fc4565b905061390b6138df8383615148565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614f81565b6001600160a01b0380871660009081526015602090815260408083208b8516808552908352922093909355915461394492911683615647565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613a02576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b03881682529091529190912054613a659183906152c1565b3360009081526015602090815260408083206001600160a01b0388811680865291845282852095909555938616835260129091529020429055613aa9908383615647565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b6040518060400160405280600481526020016325a819a960e11b81525081565b600a60209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613b83576040805162461bcd60e51b815260206004820152600a60248201526936b4b73a1d1010b3b7bb60b11b604482015290519081900360640190fd5b602054611d95906001600160a01b031682615515565b600d60209081526000928352604080842090915290825290205481565b60026000541415613bfc576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613c59576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613c66426203f480614f81565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613ca557613ca0333083615358565b613d8c565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613cf457600080fd5b505afa158015613d08573d6000803e3d6000fd5b505050506040513d6020811015613d1e57600080fd5b50519050613d376001600160a01b03841633308561569e565b613d8881846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561388957600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613dba9082614f81565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613e4c4262127500614f81565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613e7f908390836157ad565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613ead9082614f81565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613f3a338484615358565b50600192915050565b6020546001600160a01b03163314613f98576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff168061405a57600061408c565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b031633146140eb576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff1615614159576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa1580156142f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614352576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b038116600090815260086020526040902080546001810190915588146143bd576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b8642111561440b576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b614415818a6156fe565b505050505050505050565b6020546001600160a01b0316331461446e576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff16156144d0576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b601e81565b6020546001600160a01b031633146145cb576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e60205260409020546145ee9082615148565b6001600160a01b0383166000908152600e6020526040902055600f546146149082615148565b600f556001600160a01b0380831660009081526003602052604081205461463d92169083615842565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa15801561478e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166147ea576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b031614614847576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b8642111561488e576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b0316331461494b576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff166149ad576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546149db9082614f81565b6001600160a01b038316600090815260156020908152604080832030808552925290912091909155614a0d9082615515565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b03163314614ae8576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614af28230615173565b6001600160a01b0382166000908152600e6020526040902054614b159082614f81565b6001600160a01b0383166000908152600e6020526040902055600f54614b3b9082614f81565b600f556001600160a01b0380831660009081526003602052604081205461463d921683615842565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614bfb576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614c4d576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614c7b57602054614c769030906001600160a01b031683615358565b614c95565b602054614c95906001600160a01b03858116911683615647565b614ca08383836157ad565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e818154811061183a57fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614ddd576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614e8b57506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614eaf57506001600160a01b0386166000908152601360205260409020548311155b8015614edf57506001600160a01b0386166000908152601060205260409020548290614edc904290615148565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b60008282018381101561408c576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b600082614fd357506000611818565b82820282848281614fe057fe5b041461408c576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b600061408c8383604051806040016040528060068152602001656469763a202f60d01b8152506159c0565b6001600160a01b038216615098576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150ec9183906152c1565b6001600160a01b0383166000908152600760205260409020556002546151129082615148565b6002556040805182815290516000916001600160a01b03851691600080516020615f548339815191529181900360200190a35050565b600061408c8383604051806040016040528060068152602001657375623a202d60d01b8152506152c1565b6001600160a01b0382166000908152601060205260409020546151f8576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c82528083209385168352929052205461523d9082908490615a25565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153505760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156153155781810151838201526020016152fd565b50505050905090810190601f1680156153425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166153b3576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b03821661540e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b0386166000908152600790915291909120546154659183906152c1565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154cb918390615abd565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f5483398151915292918290030190a3505050565b6002546155229082614f81565b6002556001600160a01b0382166000908152600760205260409020546155489082614f81565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f548339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155bc9082614f81565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155ed9082614f81565b600f556001600160a01b03808316600090815260036020526040812054615615921683615842565b6040805182815290516001600160a01b038416913391600080516020615f548339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052615699908490615b1b565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156f8908590615b1b565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e90925282205493169290916157459190614f81565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156f8828483615842565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157dd9082615148565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561569957600f5461581d9082615148565b600f556001600160a01b03808316600090815260036020526040812054615699921690835b816001600160a01b0316836001600160a01b0316141580156158645750600081115b15615699576001600160a01b0383161561592f576001600160a01b03831660009081526005602052604081205463ffffffff1690816158a45760006158d6565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b9050600061591d84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152c19092919063ffffffff16565b905061592b86848484615cd6565b5050505b6001600160a01b03821615615699576001600160a01b03821660009081526005602052604081205463ffffffff16908161596a57600061599c565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159aa8285614f81565b90506159b885848484615cd6565b505050505050565b60008183615a0f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b506000838581615a1b57fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a559082614f81565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561569957600f54615a959082614f81565b600f556001600160a01b03808316600090815260036020526040812054615699921683615842565b60008383018285821015615b125760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b50949350505050565b615b2d826001600160a01b0316615e58565b615b75576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bb35780518252601f199092019160209182019101615b94565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c15576040519150601f19603f3d011682016040523d82523d6000602084013e615c1a565b606091505b509150915081615c71576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156f857808060200190516020811015615c8d57600080fd5b50516156f8576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d17436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e94565b905060008463ffffffff16118015615d6057506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615d9d576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e0e565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e8c57508115155b949350505050565b6000816401000000008410615eea5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a264697066735822122099d32823e8a2a23b2a85c8bbc6d1879b0ee2d2054f895919dac4f543a1390dc364736f6c634300060c0033000000000000000000000000b41772890c8b1564c5015a12c0dc6f18b0af955e

Deployed Bytecode

0x6080604052600436106104f75760003560e01c8063782d6fe11161028c578063c57981b51161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a01461166f578063f75f9f7b14611684578063f9d46cf2146116b7578063f9f92be414611706578063fede700814611739578063ffb0a4a01461177e576104f7565b8063e74f823914611546578063e7a324dc14611589578063eb421f3b1461159e578063ec342ad0146115d1578063ec4515dd146115e6578063f1127ed814611610576104f7565b8063d8bff5a51161011e578063d8bff5a5146113ec578063dd62ed3e1461141f578063de63298d1461145a578063deac354114611493578063def70844146114ce578063e326ac4314611513576104f7565b8063c57981b5146112d4578063ce6a0880146112e9578063d454019d14611322578063d505accf14611355578063d8ae6faf146113b3576104f7565b8063a515366a116101fe578063b4b5ea57116101b7578063b4b5ea57146111a2578063b600702a146111d5578063bb49096d14611208578063c1c1d21814610784578063c3cda5201461124d578063c5198abc146112a1576104f7565b8063a515366a1461107c578063a5d059ca146110b5578063a9059cbb146110ee578063ab033ea914611127578063b0103b1a1461115a578063b105e39f1461118d576104f7565b806388b4ac831161025057806388b4ac8314610f415780638d9acd2e14610f8457806395d89b4114610fc75780639af7728414610fdc578063a0712d6814611017578063a39744b514611041576104f7565b8063782d6fe114610e485780637ecebe0014610e815780638071198914610eb45780638322fff214610ee757806383baa69314610efc576104f7565b80634395d8ba116103c9578063603c68601161033b5780636dab5dcf116102f45780636dab5dcf14610d0a5780636fcfff4514610d3057806370a0823114610d7c57806372da828a14610daf57806374a8f10314610de25780637724ff6814610e15576104f7565b8063603c686014610b8e578063637cd7f014610bc957806364bb43ee14610c0457806367da318414610c3757806368581ebd14610c725780636ba42aaa14610cd7576104f7565b806355ea6c471161038d57806355ea6c4714610a98578063587cde1e14610acb5780635aa6e67514610afe5780635c19a95c14610b135780635feeb79414610b46578063603b4d1414610b79576104f7565b80634395d8ba1461098f57806344d96e95146109d45780634b3fde21146109e957806351cff8d914610a2257806352a4de2914610a55576104f7565b80631df0de131161046d57806330adf81f1161042657806330adf81f14610884578063313ce5671461089957806337feca84146108c45780633bbd64bc146108ff5780633d1f0bb91461093257806342966c6814610965576104f7565b80631df0de13146107845780631ff5f3da1461079957806320606b70146107de5780632119a62a146107f3578063238efcbc1461082c57806323b872dd14610841576104f7565b80631778e29c116104bf5780631778e29c1461067357806318160ddd1461069a5780631992d206146106af5780631b44555e146106f45780631b7a1fb2146107275780631c5a9d9c14610751576104f7565b806306fdde03146104fc578063095ea7b31461058657806309aff02b146105d35780630c33c522146106045780631101eb411461062e575b600080fd5b34801561050857600080fd5b50610511611793565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561054b578181015183820152602001610533565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059257600080fd5b506105bf600480360360408110156105a957600080fd5b506001600160a01b0381351690602001356117b7565b604080519115158252519081900360200190f35b3480156105df57600080fd5b506105e861181e565b604080516001600160a01b039092168252519081900360200190f35b34801561061057600080fd5b506105e86004803603602081101561062757600080fd5b503561182d565b34801561063a57600080fd5b506106716004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135611854565b005b34801561067f57600080fd5b50610688611c29565b60408051918252519081900360200190f35b3480156106a657600080fd5b50610688611c4d565b3480156106bb57600080fd5b50610688600480360360608110156106d257600080fd5b506001600160a01b038135811691602081013582169160409091013516611c53565b34801561070057600080fd5b506106886004803603602081101561071757600080fd5b50356001600160a01b0316611c76565b34801561073357600080fd5b506105e86004803603602081101561074a57600080fd5b5035611c88565b34801561075d57600080fd5b506106716004803603602081101561077457600080fd5b50356001600160a01b0316611c95565b34801561079057600080fd5b50610688611d98565b3480156107a557600080fd5b506105bf600480360360808110156107bc57600080fd5b506001600160a01b038135169060208101359060408101359060600135611d9f565b3480156107ea57600080fd5b50610688611e61565b3480156107ff57600080fd5b506106716004803603604081101561081657600080fd5b506001600160a01b038135169060200135611e85565b34801561083857600080fd5b50610671611fe4565b34801561084d57600080fd5b506105bf6004803603606081101561086457600080fd5b506001600160a01b03813581169160208101359091169060400135612067565b34801561089057600080fd5b50610688612149565b3480156108a557600080fd5b506108ae61216d565b6040805160ff9092168252519081900360200190f35b3480156108d057600080fd5b50610688600480360360408110156108e757600080fd5b506001600160a01b0381358116916020013516612172565b34801561090b57600080fd5b506105bf6004803603602081101561092257600080fd5b50356001600160a01b031661218f565b34801561093e57600080fd5b506105bf6004803603602081101561095557600080fd5b50356001600160a01b03166121a4565b34801561097157600080fd5b506106716004803603602081101561098857600080fd5b50356121b9565b34801561099b57600080fd5b50610671600480360360608110156109b257600080fd5b506001600160a01b0381358116916020810135821691604090910135166121c3565b3480156109e057600080fd5b5061068861251b565b3480156109f557600080fd5b5061067160048036036040811015610a0c57600080fd5b506001600160a01b038135169060200135612521565b348015610a2e57600080fd5b5061067160048036036020811015610a4557600080fd5b50356001600160a01b031661275c565b348015610a6157600080fd5b5061067160048036036060811015610a7857600080fd5b506001600160a01b038135811691602081013590911690604001356129a0565b348015610aa457600080fd5b5061067160048036036020811015610abb57600080fd5b50356001600160a01b0316612c9d565b348015610ad757600080fd5b506105e860048036036020811015610aee57600080fd5b50356001600160a01b0316612d44565b348015610b0a57600080fd5b506105e8612d5f565b348015610b1f57600080fd5b5061067160048036036020811015610b3657600080fd5b50356001600160a01b0316612d6e565b348015610b5257600080fd5b5061067160048036036020811015610b6957600080fd5b50356001600160a01b0316612d78565b348015610b8557600080fd5b50610688612e01565b348015610b9a57600080fd5b5061067160048036036040811015610bb157600080fd5b506001600160a01b0381358116916020013516612e08565b348015610bd557600080fd5b5061068860048036036040811015610bec57600080fd5b506001600160a01b038135811691602001351661300f565b348015610c1057600080fd5b5061067160048036036020811015610c2757600080fd5b50356001600160a01b031661302c565b348015610c4357600080fd5b5061068860048036036040811015610c5a57600080fd5b506001600160a01b03813581169160200135166130a4565b348015610c7e57600080fd5b50610c876130c1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610cc3578181015183820152602001610cab565b505050509050019250505060405180910390f35b348015610ce357600080fd5b506105bf60048036036020811015610cfa57600080fd5b50356001600160a01b0316613123565b61067160048036036020811015610d2057600080fd5b50356001600160a01b0316613148565b348015610d3c57600080fd5b50610d6360048036036020811015610d5357600080fd5b50356001600160a01b031661329e565b6040805163ffffffff9092168252519081900360200190f35b348015610d8857600080fd5b5061068860048036036020811015610d9f57600080fd5b50356001600160a01b03166132b6565b348015610dbb57600080fd5b5061067160048036036020811015610dd257600080fd5b50356001600160a01b03166132d1565b348015610dee57600080fd5b5061067160048036036020811015610e0557600080fd5b50356001600160a01b031661334a565b348015610e2157600080fd5b5061068860048036036020811015610e3857600080fd5b50356001600160a01b03166133eb565b348015610e5457600080fd5b5061068860048036036040811015610e6b57600080fd5b506001600160a01b0381351690602001356133fd565b348015610e8d57600080fd5b5061068860048036036020811015610ea457600080fd5b50356001600160a01b031661360c565b348015610ec057600080fd5b5061067160048036036020811015610ed757600080fd5b50356001600160a01b031661361e565b348015610ef357600080fd5b506105e86136d0565b348015610f0857600080fd5b5061068860048036036060811015610f1f57600080fd5b506001600160a01b0381358116916020810135821691604090910135166136d5565b348015610f4d57600080fd5b5061067160048036036060811015610f6457600080fd5b506001600160a01b038135811691602081013590911690604001356136f8565b348015610f9057600080fd5b5061067160048036036060811015610fa757600080fd5b506001600160a01b038135811691602081013590911690604001356139ae565b348015610fd357600080fd5b50610511613afa565b348015610fe857600080fd5b5061068860048036036040811015610fff57600080fd5b506001600160a01b0381358116916020013516613b1a565b34801561102357600080fd5b506106716004803603602081101561103a57600080fd5b5035613b37565b34801561104d57600080fd5b506106886004803603604081101561106457600080fd5b506001600160a01b0381358116916020013516613b99565b34801561108857600080fd5b506106716004803603604081101561109f57600080fd5b506001600160a01b038135169060200135613bb6565b3480156110c157600080fd5b50610671600480360360408110156110d857600080fd5b506001600160a01b038135169060200135613e3f565b3480156110fa57600080fd5b506105bf6004803603604081101561111157600080fd5b506001600160a01b038135169060200135613f2d565b34801561113357600080fd5b506106716004803603602081101561114a57600080fd5b50356001600160a01b0316613f43565b34801561116657600080fd5b506105bf6004803603602081101561117d57600080fd5b50356001600160a01b0316613fba565b34801561119957600080fd5b50610c87613fcf565b3480156111ae57600080fd5b50610688600480360360208110156111c557600080fd5b50356001600160a01b031661402f565b3480156111e157600080fd5b50610671600480360360208110156111f857600080fd5b50356001600160a01b0316614093565b34801561121457600080fd5b506106886004803603606081101561122b57600080fd5b506001600160a01b0381358116916020810135821691604090910135166141bf565b34801561125957600080fd5b50610671600480360360c081101561127057600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356141e2565b3480156112ad57600080fd5b50610671600480360360208110156112c457600080fd5b50356001600160a01b0316614420565b3480156112e057600080fd5b50610688614576565b3480156112f557600080fd5b506106716004803603604081101561130c57600080fd5b506001600160a01b03813516906020013561457b565b34801561132e57600080fd5b506106886004803603602081101561134557600080fd5b50356001600160a01b0316614641565b34801561136157600080fd5b50610671600480360360e081101561137857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614653565b3480156113bf57600080fd5b50610671600480360360408110156113d657600080fd5b506001600160a01b0381351690602001356148f7565b3480156113f857600080fd5b506106886004803603602081101561140f57600080fd5b50356001600160a01b0316614a5b565b34801561142b57600080fd5b506106886004803603604081101561144257600080fd5b506001600160a01b0381358116916020013516614a6d565b34801561146657600080fd5b506106716004803603604081101561147d57600080fd5b506001600160a01b038135169060200135614a98565b34801561149f57600080fd5b50610688600480360360408110156114b657600080fd5b506001600160a01b0381358116916020013516614b63565b3480156114da57600080fd5b50610688600480360360608110156114f157600080fd5b506001600160a01b038135811691602081013582169160409091013516614b80565b34801561151f57600080fd5b506106886004803603602081101561153657600080fd5b50356001600160a01b0316614ba3565b34801561155257600080fd5b506106716004803603606081101561156957600080fd5b506001600160a01b03813581169160208101359091169060400135614bb5565b34801561159557600080fd5b50610688614d06565b3480156115aa57600080fd5b506105bf600480360360208110156115c157600080fd5b50356001600160a01b0316614d2a565b3480156115dd57600080fd5b50610688614d3f565b3480156115f257600080fd5b506105e86004803603602081101561160957600080fd5b5035614d45565b34801561161c57600080fd5b5061164f6004803603604081101561163357600080fd5b5080356001600160a01b0316906020013563ffffffff16614d52565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561167b57600080fd5b506105e8614d7f565b34801561169057600080fd5b50610671600480360360208110156116a757600080fd5b50356001600160a01b0316614d8e565b3480156116c357600080fd5b506105bf600480360360a08110156116da57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614e38565b34801561171257600080fd5b506105bf6004803603602081101561172957600080fd5b50356001600160a01b0316614ee9565b34801561174557600080fd5b506106886004803603606081101561175c57600080fd5b506001600160a01b038135811691602081013582169160409091013516614efe565b34801561178a57600080fd5b50610c87614f21565b604051806040016040528060088152602001674b6565703372563160c01b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f818154811061183a57fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152902054156118cf576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118dc4262127500614f81565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546119399082614f81565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119cb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f2a602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b0385166004820152306024820152905160009173fc38b6eba9d47cbfc8c7b4ffffd142b78996b6f19163cbc3ab5391604480820192602092909190829003018186803b158015611a2f57600080fd5b505af4158015611a43573d6000803e3d6000fd5b505050506040513d6020811015611a5957600080fd5b5051604080516318160ddd60e01b81529051919250600091611ae2916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6020811015611ad057600080fd5b5051611adc8486614fc4565b9061501c565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611b68576001600160a01b038416600090815260156020908152604080832030808552925290912054611b3f9190615047565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611bc5565b611b723082615047565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ba09082615148565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f3f09340a05c058f2c010f370fb26b5435ea30e00055ae9ccf78864c7f9bd7b6d81565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b6023818154811061183a57fe5b336000908152601d602052604090205460ff1615611cf2576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611d4657503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611d8b576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611d953382615173565b50565b6203f48081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611e0457506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611e019190614f81565b10155b8015611e2857506001600160a01b0385166000908152601360205260409020548311155b8015611e5857506001600160a01b0385166000908152601060205260409020548290611e55904290615148565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611ed9576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611f349183906152c1565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611f94573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314612043576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600660209081526040808320338085529252822054919290919082148015906120a157506000198114155b156121325760006120cd85604051806060016040528060278152602001615f74602791398491906152c1565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61213d868686615358565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b611d953382615047565b6001600160a01b03821660009081526022602052604090205460ff1661222b576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a60209081526040808320868516845282528083209385168352929052205461229e576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220544211612313576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b0384166004820152306024820152905160009173fc38b6eba9d47cbfc8c7b4ffffd142b78996b6f19163cbc3ab5391604480820192602092909190829003018186803b15801561237757600080fd5b505af415801561238b573d6000803e3d6000fd5b505050506040513d60208110156123a157600080fd5b5051604080516318160ddd60e01b81529051919250600091612455916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611adc908590614fc4565b90506124613082615515565b6001600160a01b038316600090815260156020908152604080832030845290915290205461248f9082614f81565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612579576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316125975a60245490615148565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125cb57600080fd5b505afa1580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b5051811115612644576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461269e9183906152c1565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556126da828261558e565b6001600160a01b0382166000908152601360205260409020546126fd9082614f81565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b600260005414156127a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906127fa5750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b612841576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff161561289b576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b0381163014156128e057336000818152600b602090815260408083206001600160a01b03861684529091529020546128db913091615358565b61290f565b336000818152600b602090815260408083206001600160a01b03861680855292529091205461290f9290615647565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b600260005414156129e6576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff16612a52576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b612a676001600160a01b03841633308461569e565b3360009081526016602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612aa19082614f81565b3360009081526016602090815260408083206001600160a01b0388811685529083528184209087168452909152902055612ade426203f480614f81565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b825280832093835292815282822093825292909252902054612b3b9082614f81565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612b9b57506001600160a01b03821660009081526019602052604090205442115b15612c36576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612bee57600080fd5b505af1158015612c02573d6000803e3d6000fd5b50505050612c1c6212750042614f8190919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612cec576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611d9533826156fe565b600154611d959082906001600160a01b031663525ea631612d9c5a60245490615148565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612dd057600080fd5b505afa158015612de4573d6000803e3d6000fd5b505050506040513d6020811015612dfa57600080fd5b5051612521565b6212750081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612e7d576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612ef7576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612f509082615148565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612fad919083615647565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613083576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f80548060200260200160405190810160405280929190818152602001828054801561311957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130fb575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff166131aa576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b60006131bd612710611adc34601e614fc4565b90506131f76131cc3483615148565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614f81565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f1935050505015801561324f573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b03163314613328576040805162461bcd60e51b815260206004820152601560248201527439b2ba25b2b2b819b92432b63832b91d1010b3b7bb60591b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6020546001600160a01b03163314613397576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611d9591908390614bb5565b60196020526000908152604090205481565b6000438210613444576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff1680613472576000915050611818565b6001600160a01b038416600090815260046020908152604080832063ffffffff6000198601811685529252909120541683106134e1576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611818565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff1683101561351c576000915050611818565b600060001982015b8163ffffffff168163ffffffff1611156135d557600282820363ffffffff1604810361354e615ef2565b506001600160a01b038716600090815260046020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156135b0576020015194506118189350505050565b805163ffffffff168711156135c7578193506135ce565b6001820392505b5050613524565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b0316331461366f576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b6002600054141561373e576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff166137a4576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156137f357600080fd5b505afa158015613807573d6000803e3d6000fd5b505050506040513d602081101561381d57600080fd5b505190506138366001600160a01b03851633308561569e565b60006138bb82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561388957600080fd5b505afa15801561389d573d6000803e3d6000fd5b505050506040513d60208110156138b357600080fd5b505190615148565b905060006138d0612710611adc84601e614fc4565b905061390b6138df8383615148565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614f81565b6001600160a01b0380871660009081526015602090815260408083208b8516808552908352922093909355915461394492911683615647565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613a02576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b03881682529091529190912054613a659183906152c1565b3360009081526015602090815260408083206001600160a01b0388811680865291845282852095909555938616835260129091529020429055613aa9908383615647565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b6040518060400160405280600481526020016325a819a960e11b81525081565b600a60209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613b83576040805162461bcd60e51b815260206004820152600a60248201526936b4b73a1d1010b3b7bb60b11b604482015290519081900360640190fd5b602054611d95906001600160a01b031682615515565b600d60209081526000928352604080842090915290825290205481565b60026000541415613bfc576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613c59576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613c66426203f480614f81565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613ca557613ca0333083615358565b613d8c565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613cf457600080fd5b505afa158015613d08573d6000803e3d6000fd5b505050506040513d6020811015613d1e57600080fd5b50519050613d376001600160a01b03841633308561569e565b613d8881846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561388957600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613dba9082614f81565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613e4c4262127500614f81565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613e7f908390836157ad565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613ead9082614f81565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613f3a338484615358565b50600192915050565b6020546001600160a01b03163314613f98576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff168061405a57600061408c565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b031633146140eb576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff1615614159576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f3f09340a05c058f2c010f370fb26b5435ea30e00055ae9ccf78864c7f9bd7b6d60c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa1580156142f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614352576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b038116600090815260086020526040902080546001810190915588146143bd576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b8642111561440b576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b614415818a6156fe565b505050505050505050565b6020546001600160a01b0316331461446e576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff16156144d0576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b601e81565b6020546001600160a01b031633146145cb576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e60205260409020546145ee9082615148565b6001600160a01b0383166000908152600e6020526040902055600f546146149082615148565b600f556001600160a01b0380831660009081526003602052604081205461463d92169083615842565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f3f09340a05c058f2c010f370fb26b5435ea30e00055ae9ccf78864c7f9bd7b6d61010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa15801561478e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166147ea576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b031614614847576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b8642111561488e576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b0316331461494b576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff166149ad576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546149db9082614f81565b6001600160a01b038316600090815260156020908152604080832030808552925290912091909155614a0d9082615515565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b03163314614ae8576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614af28230615173565b6001600160a01b0382166000908152600e6020526040902054614b159082614f81565b6001600160a01b0383166000908152600e6020526040902055600f54614b3b9082614f81565b600f556001600160a01b0380831660009081526003602052604081205461463d921683615842565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614bfb576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f0a833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614c4d576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614c7b57602054614c769030906001600160a01b031683615358565b614c95565b602054614c95906001600160a01b03858116911683615647565b614ca08383836157ad565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e818154811061183a57fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614ddd576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614e8b57506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614eaf57506001600160a01b0386166000908152601360205260409020548311155b8015614edf57506001600160a01b0386166000908152601060205260409020548290614edc904290615148565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b60008282018381101561408c576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b600082614fd357506000611818565b82820282848281614fe057fe5b041461408c576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b600061408c8383604051806040016040528060068152602001656469763a202f60d01b8152506159c0565b6001600160a01b038216615098576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150ec9183906152c1565b6001600160a01b0383166000908152600760205260409020556002546151129082615148565b6002556040805182815290516000916001600160a01b03851691600080516020615f548339815191529181900360200190a35050565b600061408c8383604051806040016040528060068152602001657375623a202d60d01b8152506152c1565b6001600160a01b0382166000908152601060205260409020546151f8576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c82528083209385168352929052205461523d9082908490615a25565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153505760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156153155781810151838201526020016152fd565b50505050905090810190601f1680156153425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166153b3576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b03821661540e576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b0386166000908152600790915291909120546154659183906152c1565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154cb918390615abd565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f5483398151915292918290030190a3505050565b6002546155229082614f81565b6002556001600160a01b0382166000908152600760205260409020546155489082614f81565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f548339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155bc9082614f81565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155ed9082614f81565b600f556001600160a01b03808316600090815260036020526040812054615615921683615842565b6040805182815290516001600160a01b038416913391600080516020615f548339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052615699908490615b1b565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156f8908590615b1b565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e90925282205493169290916157459190614f81565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156f8828483615842565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157dd9082615148565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561569957600f5461581d9082615148565b600f556001600160a01b03808316600090815260036020526040812054615699921690835b816001600160a01b0316836001600160a01b0316141580156158645750600081115b15615699576001600160a01b0383161561592f576001600160a01b03831660009081526005602052604081205463ffffffff1690816158a45760006158d6565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b9050600061591d84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152c19092919063ffffffff16565b905061592b86848484615cd6565b5050505b6001600160a01b03821615615699576001600160a01b03821660009081526005602052604081205463ffffffff16908161596a57600061599c565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159aa8285614f81565b90506159b885848484615cd6565b505050505050565b60008183615a0f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b506000838581615a1b57fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a559082614f81565b6001600160a01b038084166000908152600d602090815260408083209388168084529390915290209190915530141561569957600f54615a959082614f81565b600f556001600160a01b03808316600090815260036020526040812054615699921683615842565b60008383018285821015615b125760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b50949350505050565b615b2d826001600160a01b0316615e58565b615b75576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bb35780518252601f199092019160209182019101615b94565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c15576040519150601f19603f3d011682016040523d82523d6000602084013e615c1a565b606091505b509150915081615c71576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156f857808060200190516020811015615c8d57600080fd5b50516156f8576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d17436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e94565b905060008463ffffffff16118015615d6057506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615d9d576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e0e565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e8c57508115155b949350505050565b6000816401000000008410615eea5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156153155781810151838201526020016152fd565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a264697066735822122099d32823e8a2a23b2a85c8bbc6d1879b0ee2d2054f895919dac4f543a1390dc364736f6c634300060c0033

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

000000000000000000000000b41772890c8b1564c5015a12c0dc6f18b0af955e

-----Decoded View---------------
Arg [0] : _kph (address): 0xb41772890c8B1564c5015A12c0dC6f18B0aF955e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b41772890c8b1564c5015a12c0dc6f18b0af955e


Libraries Used


Deployed Bytecode Sourcemap

21383:40200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21645:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58031:205;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58031:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21559:27;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21559:27:0;;;;;;;;;;;;;;34625:24;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34625:24:0;;:::i;41470:1130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41470:1130:0;;;;;;;;;;;;;;;;;:::i;:::-;;22687:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21946:27;;;;;;;;;;;;;:::i;34130:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34130:87:0;;;;;;;;;;;;;;;;;;;:::i;33137:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33137:45:0;-1:-1:-1;;;;;33137:45:0;;:::i;34924:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34924:31:0;;:::i;53196:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53196:274:0;-1:-1:-1;;;;;53196:274:0;;:::i;31677:43::-;;;;;;;;;;;;;:::i;50673:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50673:355:0;;;;;;;;;;;;;;;;;;:::i;22561:119::-;;;;;;;;;;;;;:::i;46535:376::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46535:376:0;;;;;;;;:::i;49645:170::-;;;;;;;;;;;;;:::i;60425:553::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60425:553:0;;;;;;;;;;;;;;;;;:::i;23022:128::-;;;;;;;;;;;;;:::i;21847:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32001:60;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32001:60:0;;;;;;;;;;:::i;34271:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34271:39:0;-1:-1:-1;;;;;34271:39:0;;:::i;33256:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33256:36:0;-1:-1:-1;;;;;33256:36:0;;:::i;43859:80::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43859:80:0;;:::i;40449:798::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40449:798:0;;;;;;;;;;;;;;;;;;;:::i;32723:27::-;;;;;;;;;;;;;:::i;45048:567::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45048:567:0;;;;;;;;:::i;54651:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54651:673:0;-1:-1:-1;;;;;54651:673:0;;:::i;39363:822::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39363:822:0;;;;;;;;;;;;;;;;;:::i;56918:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56918:198:0;-1:-1:-1;;;;;56918:198:0;;:::i;22047:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22047:45:0;-1:-1:-1;;;;;22047:45:0;;:::i;34722:25::-;;;;;;;;;;;;;:::i;23959:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23959:95:0;-1:-1:-1;;;;;23959:95:0;;:::i;44699:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44699:124:0;-1:-1:-1;;;;;44699:124:0;;:::i;31581:37::-;;;;;;;;;;;;;:::i;42783:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42783:673:0;;;;;;;;;;:::i;33355:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33355:59:0;;;;;;;;;;:::i;38766:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38766:177:0;-1:-1:-1;;;;;38766:177:0;;:::i;32237:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32237:68:0;;;;;;;;;;:::i;48421:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50058:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50058:130:0;-1:-1:-1;;;;;50058:130:0;;:::i;35404:354::-;;;;;;;;;;;;;;;;-1:-1:-1;35404:354:0;-1:-1:-1;;;;;35404:354:0;;:::i;22314:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22314:49:0;-1:-1:-1;;;;;22314:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;59602:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59602:108:0;-1:-1:-1;;;;;59602:108:0;;:::i;49030:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49030:157:0;-1:-1:-1;;;;;49030:157:0;;:::i;56537:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56537:246:0;-1:-1:-1;;;;;56537:246:0;;:::i;33899:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33899:48:0;-1:-1:-1;;;;;33899:48:0;;:::i;25944:1191::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25944:1191:0;;;;;;;;:::i;23233:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23233:39:0;-1:-1:-1;;;;;23233:39:0;;:::i;48685:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48685:197:0;-1:-1:-1;;;;;48685:197:0;;:::i;31898:42::-;;;;;;;;;;;;;:::i;33759:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33759:97:0;;;;;;;;;;;;;;;;;;;:::i;36011:627::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36011:627:0;;;;;;;;;;;;;;;;;:::i;45900:409::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45900:409:0;;;;;;;;;;;;;;;;;:::i;21746:38::-;;;;;;;;;;;;;:::i;32122:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32122:62:0;;;;;;;;;;:::i;43610:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43610:138:0;;:::i;32495:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32495:57:0;;;;;;;;;;:::i;52101:743::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52101:743:0;;;;;;;;:::i;54130:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54130:368:0;;;;;;;;:::i;59971:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59971:147:0;;;;;;;;:::i;49352:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49352:170:0;-1:-1:-1;;;;;49352:170:0;;:::i;32924:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32924:40:0;-1:-1:-1;;;;;32924:40:0;;:::i;52925:99::-;;;;;;;;;;;;;:::i;25293:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25293:220:0;-1:-1:-1;;;;;25293:220:0;;:::i;38317:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38317:295:0;-1:-1:-1;;;;;38317:295:0;;:::i;33617:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33617:90:0;;;;;;;;;;;;;;;;;;;:::i;24488:604::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24488:604:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;48049:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48049:267:0;-1:-1:-1;;;;;48049:267:0;;:::i;31772:29::-;;;;;;;;;;;;;:::i;37300:289::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37300:289:0;;;;;;;;:::i;33029:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33029:39:0;-1:-1:-1;;;;;33029:39:0;;:::i;58723:676::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58723:676:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;37783:380::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37783:380:0;;;;;;;;:::i;32623:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32623:37:0;-1:-1:-1;;;;;32623:37:0;;:::i;57420:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57420:136:0;;;;;;;;;;:::i;36801:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36801:328:0;;;;;;;;:::i;32371:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32371:64:0;;;;;;;;;;:::i;33479:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33479:89:0;;;;;;;;;;;;;;;;;;;:::i;32816:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32816:41:0;-1:-1:-1;;;;;32816:41:0;;:::i;55902:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55902:491:0;;;;;;;;;;;;;;;;;:::i;22821:111::-;;;;;;;;;;;;;:::i;34866:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34866:49:0;-1:-1:-1;;;;;34866:49:0;;:::i;31808:33::-;;;;;;;;;;;;;:::i;34513:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34513:27:0;;:::i;22175:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22175:70:0;;-1:-1:-1;;;;;22175:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;34754:32;;;;;;;;;;;;;:::i;55468:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55468:196:0;-1:-1:-1;;;;;55468:196:0;;:::i;51565:344::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51565:344:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34382:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34382:41:0;-1:-1:-1;;;;;34382:41:0;;:::i;33992:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33992:88:0;;;;;;;;;;;;;;;;;;;:::i;39023:98::-;;;;;;;;;;;;;:::i;21645:40::-;;;;;;;;;;;;;;-1:-1:-1;;;21645:40:0;;;;:::o;58031:205::-;58122:10;58094:4;58111:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;58111:31:0;;;;;;;;;;;:40;;;58169:37;;;;;;;58094:4;;58111:31;;58122:10;;58169:37;;;;;;;;-1:-1:-1;58224:4:0;58031:205;;;;;:::o;21559:27::-;;;-1:-1:-1;;;;;21559:27:0;;:::o;34625:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34625:24:0;;-1:-1:-1;34625:24:0;:::o;41470:1130::-;41591:10;41575:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;41575:38:0;;;;;;;;;;;:43;;;;;;;;;;;:48;41567:83;;;;;-1:-1:-1;;;41567:83:0;;;;;;;;;;;;-1:-1:-1;;;41567:83:0;;;;;;;;;;;;;;;41710:15;:3;31611:7;41710;:15::i;:::-;41680:10;41661:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;41661:41:0;;;;;;;;;;;;:46;;;;;;;;;;;;:64;;;;41792:37;;;:25;:37;;;;;:48;;;;;;;;;:53;;;;;;;;;;:65;;41850:6;41792:57;:65::i;:::-;41762:10;41736:37;;;;:25;:37;;;;;;;;-1:-1:-1;;;;;41736:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;:121;;;41933:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;;41876:53;;;-1:-1:-1;41876:102:0;41868:157;;;;-1:-1:-1;;;41868:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42056:52;;;-1:-1:-1;;;42056:52:0;;-1:-1:-1;;;;;42056:52:0;;;;;;42102:4;42056:52;;;;;;42038:15;;42056;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42056:52:0;42161:31;;;-1:-1:-1;;;42161:31:0;;;;42056:52;;-1:-1:-1;42119:12:0;;42134:59;;-1:-1:-1;;;;;42161:29:0;;;;;:31;;;;;42056:52;;42161:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42161:31:0;42134:22;:10;42149:6;42134:14;:22::i;:::-;:26;;:59::i;:::-;-1:-1:-1;;;;;42218:12:0;;;;;;:7;:12;;;;;;;;42239:4;42218:27;;;;;;;;42119:74;;-1:-1:-1;42208:37:0;;42204:312;;;-1:-1:-1;;;;;42283:12:0;;;;;;:7;:12;;;;;;;;42276:4;42283:27;;;;;;;;;42262:49;;42276:4;42262:5;:49::i;:::-;-1:-1:-1;;;;;42326:12:0;;42356:1;42326:12;;;:7;:12;;;;;;;;42347:4;42326:27;;;;;;;:31;42204:312;;;42390:29;42404:4;42411:7;42390:5;:29::i;:::-;-1:-1:-1;;;;;42464:12:0;;;;;;:7;:12;;;;;;;;42485:4;42464:27;;;;;;;;:40;;42496:7;42464:31;:40::i;:::-;-1:-1:-1;;;;;42434:12:0;;;;;;:7;:12;;;;;;;;42455:4;42434:27;;;;;;;:70;42204:312;42559:10;-1:-1:-1;;;;;42533:59:0;42548:9;-1:-1:-1;;;;;42533:59:0;42543:3;-1:-1:-1;;;;;42533:59:0;;42571:12;42585:6;42533:59;;;;;;;;;;;;;;;;;;;;;;;;41470:1130;;;;;:::o;22687:40::-;;;:::o;21946:27::-;;;;:::o;34130:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33137:45::-;;;;;;;;;;;;;:::o;34924:31::-;;;;;;;;;;53196:274;53270:10;53260:21;;;;:9;:21;;;;;;;;53259:22;53251:56;;;;;-1:-1:-1;;;53251:56:0;;;;;;;;;;;;-1:-1:-1;;;53251:56:0;;;;;;;;;;;;;;;53335:10;53326:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;53326:29:0;;;;;;;;;;:34;;;;:73;;-1:-1:-1;53373:10:0;53364:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;53364:29:0;;;;;;;;;;53396:3;-1:-1:-1;53326:73:0;53318:103;;;;;-1:-1:-1;;;53318:103:0;;;;;;;;;;;;-1:-1:-1;;;53318:103:0;;;;;;;;;;;;;;;53432:30;53442:10;53454:7;53432:9;:30::i;:::-;53196:274;:::o;31677:43::-;31714:6;31677:43;:::o;50673:355::-;50765:4;50793:9;50782:8;:20;-1:-1:-1;;;;;50820:15:0;;;;;;:7;:15;;;;;;;;:94;;;;-1:-1:-1;;;;;;50889:13:0;;;;;;:5;:13;;;;;;;;;50856:5;:13;;;;;50878:4;50856:28;;;;;;;;;50907:7;;50856:47;;:28;:32;:47::i;:::-;:58;;50820:94;:146;;;;-1:-1:-1;;;;;;50935:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;50935:31:0;50820:146;:200;;;;-1:-1:-1;;;;;;50995:17:0;;;;;;:9;:17;;;;;;51017:3;;50987:26;;:3;;:7;:26::i;:::-;:33;;50820:200;50813:207;50673:355;-1:-1:-1;;;;;50673:355:0:o;22561:119::-;22603:77;22561:119;:::o;46535:376::-;46617:10;46612:16;;;;:4;:16;;;;;;;;46604:42;;;;;-1:-1:-1;;;46604:42:0;;;;;;;;;;;;-1:-1:-1;;;46604:42:0;;;;;;;;;;;;;;;46684:69;;;;;;;;;;;;;;;;;;;;46692:10;-1:-1:-1;46684:19:0;;;:7;:19;;;;;31936:3;46684:24;;;;;;;;;;:69;;46713:6;;46684:28;:69::i;:::-;46665:10;46657:19;;;;:7;:19;;;;;;;;31936:3;46657:24;;;;;;;:96;;;;-1:-1:-1;;;;;46764:15:0;;;;;:7;:15;;;;;;46782:3;46764:21;;46796:32;;;;;;;46821:6;;46796:32;;46657:19;46796:32;46821:6;46764:15;46796:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46844:59:0;;;46882:12;46844:59;;;;;;;;;;-1:-1:-1;;;;;46844:59:0;;;46862:10;;31936:3;;46844:59;;;;;;;;;;;46535:376;;:::o;49645:170::-;49715:17;;-1:-1:-1;;;;;49715:17:0;49701:10;:31;49693:73;;;;;-1:-1:-1;;;49693:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49790:17;;49777:10;:30;;-1:-1:-1;;;;;;49777:30:0;-1:-1:-1;;;;;49790:17:0;;;49777:30;;;;;;49645:170::o;60425:553::-;-1:-1:-1;;;;;60584:15:0;;60504:4;60584:15;;;:10;:15;;;;;;;;60539:10;60584:24;;;;;;;;60504:4;;60539:10;;60584:24;60625:14;;;;;:46;;;-1:-1:-1;;60643:16:0;:28;;60625:46;60621:282;;;60688:17;60708:71;60729:6;60708:71;;;;;;;;;;;;;;;;;:16;;:71;:20;:71::i;:::-;-1:-1:-1;;;;;60794:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;60855:36;;;;;;;60688:91;;-1:-1:-1;60794:24:0;;:15;;60855:36;;;;;;;;;60621:282;;60915:33;60931:3;60936;60941:6;60915:15;:33::i;:::-;-1:-1:-1;60966:4:0;;60425:553;-1:-1:-1;;;;;60425:553:0:o;23022:128::-;23064:86;23022:128;:::o;21847:35::-;21880:2;21847:35;:::o;32001:60::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;34271:39::-;;;;;;;;;;;;;;;:::o;33256:36::-;;;;;;;;;;;;;;;:::o;43859:80::-;43906:25;43912:10;43924:6;43906:5;:25::i;40449:798::-;-1:-1:-1;;;;;40553:28:0;;;;;;:17;:28;;;;;;;;40545:65;;;;;-1:-1:-1;;;40545:65:0;;;;;;;;;;;;-1:-1:-1;;;40545:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40629:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;40621:75;;;;;-1:-1:-1;;;40621:75:0;;;;;;;;;;;;-1:-1:-1;;;40621:75:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40715:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;40760:3;-1:-1:-1;40707:76:0;;;;;-1:-1:-1;;;40707:76:0;;;;;;;;;;;;-1:-1:-1;;;40707:76:0;;;;;;;;;;;;;;;40812:52;;;-1:-1:-1;;;40812:52:0;;-1:-1:-1;;;;;40812:52:0;;;;;;40858:4;40812:52;;;;;;40794:15;;40812;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40812:52:0;40952:31;;;-1:-1:-1;;;40952:31:0;;;;40812:52;;-1:-1:-1;40875:12:0;;40890:94;;-1:-1:-1;;;;;40952:29:0;;;;;:31;;;;;40812:52;;40952:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40952:31:0;-1:-1:-1;;;;;40905:25:0;;;;;;;:15;40952:31;40905:25;;;;;;;:36;;;;;;;;;;:41;;;;;;;;;;40890:57;;:10;;:14;:57::i;:94::-;40875:109;;40995:29;41009:4;41016:7;40995:5;:29::i;:::-;-1:-1:-1;;;;;41065:12:0;;;;;;:7;:12;;;;;;;;41086:4;41065:27;;;;;;;;:40;;41097:7;41065:31;:40::i;:::-;-1:-1:-1;;;;;41035:12:0;;;;;;;:7;:12;;;;;;;;41056:4;41035:27;;;;;;;:70;;;;41116:25;;;;;;:15;:25;;;;;:36;;;;;;;;;;;;:41;;;;;;;;:45;;;;41179:60;;41217:12;41179:60;;;;;;;;;;41116:25;;41179:60;;;;;;;;;40449:798;;;;;:::o;32723:27::-;;;;:::o;45048:567::-;45129:10;45124:16;;;;:4;:16;;;;;;;;45116:46;;;;;-1:-1:-1;;;45116:46:0;;;;;;;;;;;;-1:-1:-1;;;45116:46:0;;;;;;;;;;;;;;;45191:4;;-1:-1:-1;;;;;45191:4:0;:18;45210:23;45223:9;45210:8;;;:12;:23::i;:::-;45191:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45191:43:0;45181:53;;;45173:88;;;;;-1:-1:-1;;;45173:88:0;;;;;;;;;;;;-1:-1:-1;;;45173:88:0;;;;;;;;;;;;;;;45309:79;;;;;;;;;;;;;;;;;;;;45317:10;-1:-1:-1;45309:19:0;;;:7;:19;;;;;45337:4;45309:34;;;;;;;;;;:79;;45348:6;;45309:38;:79::i;:::-;45280:10;45272:19;;;;:7;:19;;;;;;;;45300:4;45272:34;;;;;;;:116;;;;-1:-1:-1;;;;;45399:15:0;;;;:7;:15;;;45417:3;45399:21;;45431:23;45407:6;45447;45431:7;:23::i;:::-;-1:-1:-1;;;;;45489:21:0;;;;;;:13;:21;;;;;;:33;;45515:6;45489:25;:33::i;:::-;-1:-1:-1;;;;;45465:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;45538:69;;45586:12;45538:69;;;;;;;;;;45465:21;;45566:10;;45559:4;;45538:69;;;;;;;;45048:567;;:::o;54651:673::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;54738:10:::1;54727:22:::0;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;54727:31:0;::::1;::::0;;;;;;;;:36;;::::1;::::0;:77:::1;;-1:-1:-1::0;54778:10:0::1;54767:22;::::0;;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;54767:31:0;::::1;::::0;;;;;;;;54801:3:::1;-1:-1:-1::0;54727:77:0::1;54719:109;;;::::0;;-1:-1:-1;;;54719:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54719:109:0;;;;;;;;;;;;;::::1;;54857:10;54848:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;54847:21;54839:52;;;::::0;;-1:-1:-1;;;54839:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54839:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54908:24:0;::::1;54927:4;54908:24;54904:250;;;54980:10;54992:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;54992:37:0;::::1;::::0;;;;;;;;54949:81:::1;::::0;54973:4:::1;::::0;54949:15:::1;:81::i;:::-;54904:250;;;55092:10;55104:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;55104:37:0;::::1;::::0;;;;;;;;;55063:79:::1;::::0;55092:10;55063:28:::1;:79::i;:::-;55183:10;55226:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;55226:37:0;::::1;::::0;;;;;;;;;55169:95;;55195:12:::1;55169:95:::0;;55209:15:::1;55169:95:::0;;::::1;::::0;;;;;;;;;;::::1;::::0;;;;;;;::::1;55292:10;55315:1;55275:28:::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;55275:37:0;;;::::1;::::0;;;;;;;;:41;;;8012:1;8974:22;;54651:673::o;39363:822::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;-1:-1:-1;;;;;39476:28:0;::::1;::::0;;:17:::1;:28;::::0;;;;;::::1;;39468:65;;;::::0;;-1:-1:-1;;;39468:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39468:65:0;;;;;;;;;;;;;::::1;;39544:69;-1:-1:-1::0;;;;;39544:34:0;::::1;39579:10;39599:4;39606:6:::0;39544:34:::1;:69::i;:::-;39690:10;39672:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;39672:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;;:57:::1;::::0;39722:6;39672:49:::1;:57::i;:::-;39642:10;39624:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;39624:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;:105;39789:22:::1;:3;31714:6;39789:7;:22::i;:::-;39759:10;39742:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;39742:39:0;;::::1;::::0;;;;;;;;;:44;;::::1;::::0;;;;;;;;;:69;;;;39868:27;;;:15:::1;:27:::0;;;;;:38;;;;;;;;;:43;;;;;;;;;;:55:::1;::::0;39916:6;39868:47:::1;:55::i;:::-;39838:10;39822:27;::::0;;;:15:::1;:27;::::0;;;;;;;-1:-1:-1;;;;;39822:38:0;;::::1;::::0;;;;;;;;:43;;::::1;::::0;;;;;;;:101;;;;39941:4:::1;:9:::0;;;;::::1;;39940:10;:41:::0;::::1;;;-1:-1:-1::0;;;;;;39954:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;;39978:3:::1;-1:-1:-1::0;39940:41:0::1;39936:167;;;40010:10;::::0;39998:39:::1;::::0;;-1:-1:-1;;;39998:39:0;;-1:-1:-1;;;;;39998:39:0;;::::1;;::::0;::::1;::::0;;;40010:10;;;::::1;::::0;39998:34:::1;::::0;:39;;;;;40010:10:::1;::::0;39998:39;;;;;;;40010:10;;39998:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40076:15;31611:7;40076:3;:7;;:15;;;;:::i;:::-;-1:-1:-1::0;;;;;40052:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:39;39936:167:::1;40144:10;-1:-1:-1::0;;;;;40118:59:0::1;40133:9;-1:-1:-1::0;;;;;40118:59:0::1;40128:3;-1:-1:-1::0;;;;;40118:59:0::1;;40156:12;40170:6;40118:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;39363:822:0:o;56918:198::-;56993:10;;-1:-1:-1;;;;;56993:10:0;56979;:24;56971:50;;;;;-1:-1:-1;;;56971:50:0;;;;;;;;;;;;-1:-1:-1;;;56971:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57032:16:0;;57051:5;57032:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;57032:24:0;;;57072:36;;57095:12;57072:36;;;;;;;;;;;;;;56918:198;:::o;22047:45::-;;;;;;;;;;;;-1:-1:-1;;;;;22047:45:0;;:::o;34722:25::-;;;-1:-1:-1;;;;;34722:25:0;;:::o;23959:95::-;24014:32;24024:10;24036:9;24014;:32::i;44699:124::-;44771:4;;44751:64;;44763:6;;-1:-1:-1;;;;;44771:4:0;:18;44790:23;44803:9;44790:8;;;:12;:23::i;:::-;44771:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44771:43:0;44751:11;:64::i;31581:37::-;31611:7;31581:37;:::o;42783:673::-;42894:10;42875:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;42875:41:0;;;;;;;;;;;:46;;;;;;;;;;;42867:81;;;;;-1:-1:-1;;;42867:81:0;;;;;;;;;;;;-1:-1:-1;;;42867:81:0;;;;;;;;;;;;;;;42986:10;42967:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;42967:41:0;;;;;;;;;;;:46;;;;;;;;;;;43016:3;-1:-1:-1;42959:85:0;;;;;-1:-1:-1;;;42959:85:0;;;;;;;;;;;;-1:-1:-1;;;42959:85:0;;;;;;;;;;;;;;;43096:10;43055:12;43070:37;;;:25;:37;;;;;;;;-1:-1:-1;;;;;43070:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;;43182:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;:58;;43070:53;43182:49;:58::i;:::-;43152:10;43134:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;43134:40:0;;;;;;;;;;;;:45;;;;;;;;;;;;:106;;;;43251:37;;;:25;:37;;;;;:48;;;;;;;;:53;;;;;;;;;:57;43319:51;;43134:40;43362:7;43319:30;:51::i;:::-;43414:10;-1:-1:-1;;;;;43388:60:0;43403:9;-1:-1:-1;;;;;43388:60:0;43398:3;-1:-1:-1;;;;;43388:60:0;;43426:12;43440:7;43388:60;;;;;;;;;;;;;;;;;;;;;;;;42783:673;;;:::o;33355:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;38766:177::-;38852:10;;-1:-1:-1;;;;;38852:10:0;38838;:24;38830:58;;;;;-1:-1:-1;;;38830:58:0;;;;;;;;;;;;-1:-1:-1;;;38830:58:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38899:28:0;38930:5;38899:28;;;:17;:28;;;;;:36;;-1:-1:-1;;38899:36:0;;;38766:177::o;32237:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;48421:93::-;48463:16;48499:7;48492:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48492:14:0;;;;;;;;;;;;;;;;;;;;;;;48421:93;:::o;50058:130::-;50110:4;50138:9;50127:8;:20;-1:-1:-1;;;;;;50165:15:0;;;;;:7;:15;;;;;;;;;50058:130::o;35404:354::-;-1:-1:-1;;;;;35475:9:0;;;;;;:4;:9;;;;;;;;35467:40;;;;;-1:-1:-1;;;35467:40:0;;;;;;;;;;;;-1:-1:-1;;;35467:40:0;;;;;;;;;;;;;;;35518:9;35530:28;31836:5;35530:18;:9;31799:2;35530:13;:18::i;:28::-;35518:40;-1:-1:-1;35589:42:0;35611:19;:9;35518:40;35611:13;:19::i;:::-;-1:-1:-1;;;;;35589:12:0;;;;;;:7;:12;;;;;;;;31936:3;35589:17;;;;;;;;;:21;:42::i;:::-;-1:-1:-1;;;;;35569:12:0;;;;;;;:7;:12;;;;;;;;31936:3;35569:17;;;;;;;:62;;;;35650:10;35642:34;;35650:10;;;;;35642:34;;;;;35671:4;;35642:34;;35569:12;35642:34;35671:4;35650:10;35642:34;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35694:56:0;;;35726:12;35694:56;;35740:9;35694:56;;;;;;35714:10;;-1:-1:-1;;;;;35694:56:0;;;31936:3;;35694:56;;;;;;;;;;;35404:354;;:::o;22314:49::-;;;;;;;;;;;;;;;:::o;59602:108::-;-1:-1:-1;;;;;59685:17:0;59661:4;59685:17;;;:8;:17;;;;;;;59602:108::o;49030:157::-;49120:10;;-1:-1:-1;;;;;49120:10:0;49106;:24;49098:58;;;;;-1:-1:-1;;;49098:58:0;;;;;;;;;;;;-1:-1:-1;;;49098:58:0;;;;;;;;;;;;;;;49167:4;:12;;-1:-1:-1;;;;;;49167:12:0;-1:-1:-1;;;;;49167:12:0;;;;;;;;;;49030:157::o;56537:246::-;56611:10;;-1:-1:-1;;;;;56611:10:0;56597;:24;56589:48;;;;;-1:-1:-1;;;56589:48:0;;;;;;;;;;;;-1:-1:-1;;;56589:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56648:15:0;;56666:5;56648:15;;;:7;:15;;;;;;;;:23;;-1:-1:-1;;56648:23:0;;;;;;56682:9;:17;;;;;:24;;;;;56648:23;56682:24;;;56746:5;:13;;;;;56731:4;56746:28;;;;;;;;;56717:58;;56731:4;56656:6;;56717:5;:58::i;33899:48::-;;;;;;;;;;;;;:::o;25944:1191::-;26023:4;26062:12;26048:11;:26;26040:53;;;;;-1:-1:-1;;;26040:53:0;;;;;;;;;;;;-1:-1:-1;;;26040:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26128:23:0;;26106:19;26128:23;;;:14;:23;;;;;;;;26166:17;26162:58;;26207:1;26200:8;;;;;26162:58;-1:-1:-1;;;;;26280:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;26301:16:0;;26280:38;;;;;;;;;:48;;:63;-1:-1:-1;26276:147:0;;-1:-1:-1;;;;;26367:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26388:16:0;;;;26367:38;;;;;;;;26403:1;26367:44;;;-1:-1:-1;26360:51:0;;26276:147;-1:-1:-1;;;;;26484:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;26480:88:0;;;26555:1;26548:8;;;;;26480:88;26580:12;-1:-1:-1;;26622:16:0;;26649:428;26664:5;26656:13;;:5;:13;;;26649:428;;;26728:1;26711:13;;;26710:19;;;26702:27;;26771:20;;:::i;:::-;-1:-1:-1;;;;;;26794:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;26771:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26841:27;;26837:229;;;26896:8;;;;-1:-1:-1;26889:15:0;;-1:-1:-1;;;;26889:15:0;26837:229;26930:12;;:26;;;-1:-1:-1;26926:140:0;;;26985:6;26977:14;;26926:140;;;27049:1;27040:6;:10;27032:18;;26926:140;26649:428;;;;;-1:-1:-1;;;;;;27094:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;25944:1191:0;;;;:::o;23233:39::-;;;;;;;;;;;;;:::o;48685:197::-;48759:10;;-1:-1:-1;;;;;48759:10:0;48745;:24;48737:52;;;;;-1:-1:-1;;;48737:52:0;;;;;;;;;;;;-1:-1:-1;;;48737:52:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48800:9:0;;48812:5;48800:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;48800:17:0;;;48833:41;;48849:12;48833:41;;48863:10;48833:41;;;;;;;;;;;;;;;;;;;;48685:197;:::o;31898:42::-;31936:3;31898:42;:::o;33759:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36011:627::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;-1:-1:-1;;;;;36113:9:0;::::1;::::0;;:4:::1;:9;::::0;;;;;::::1;;36105:40;;;::::0;;-1:-1:-1;;;36105:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36105:40:0;;;;;;;;;;;;;::::1;;36156:12;36178:6;-1:-1:-1::0;;;;;36171:24:0::1;;36204:4;36171:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;36171:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36171:39:0;;-1:-1:-1;36221:66:0::1;-1:-1:-1::0;;;;;36221:31:0;::::1;36253:10;36273:4;36280:6:::0;36221:31:::1;:66::i;:::-;36298:14;36315:52;36359:7;36322:6;-1:-1:-1::0;;;;;36315:24:0::1;;36348:4;36315:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;36315:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36315:39:0;;:43:::1;:52::i;:::-;36298:69:::0;-1:-1:-1;36378:9:0::1;36390:28;31836:5;36390:18;36298:69:::0;31799:2:::1;36390:13;:18::i;:28::-;36378:40:::0;-1:-1:-1;36452:45:0::1;36477:19;:9:::0;36378:40;36477:13:::1;:19::i;:::-;-1:-1:-1::0;;;;;36452:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:24:::1;:45::i;:::-;-1:-1:-1::0;;;;;36429:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:68;;;;36536:10;;36508:45:::1;::::0;36429:20;36536:10:::1;36548:4:::0;36508:27:::1;:45::i;:::-;36594:10;-1:-1:-1::0;;;;;36571:59:0::1;36589:3;-1:-1:-1::0;;;;;36571:59:0::1;36581:6;-1:-1:-1::0;;;;;36571:59:0::1;;36606:12;36620:9;36571:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;;;;36011:627:0:o;45900:409::-;45995:10;45990:16;;;;:4;:16;;;;;;;;45982:42;;;;;-1:-1:-1;;;45982:42:0;;;;;;;;;;;;-1:-1:-1;;;45982:42:0;;;;;;;;;;;;;;;46065:72;;;;;;;;;;;;;;;;;;;;46073:10;-1:-1:-1;46065:19:0;;;:7;:19;;;;;-1:-1:-1;;;;;46065:27:0;;;;;;;;;;;;:72;;46097:6;;46065:31;:72::i;:::-;46043:10;46035:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;46035:27:0;;;;;;;;;;;;:102;;;;46148:15;;;;;:7;:15;;;;;46166:3;46148:21;;46180:43;;46156:6;46216;46180:27;:43::i;:::-;46239:62;;;46280:12;46239:62;;;;;;;;;;-1:-1:-1;;;;;46239:62:0;;;;46260:10;;46239:62;;;;;;;;;;;;;;45900:409;;;:::o;21746:38::-;;;;;;;;;;;;;;-1:-1:-1;;;21746:38:0;;;;:::o;32122:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;43610:138::-;43679:10;;-1:-1:-1;;;;;43679:10:0;43665;:24;43657:47;;;;;-1:-1:-1;;;43657:47:0;;;;;;;;;;;;-1:-1:-1;;;43657:47:0;;;;;;;;;;;;;;;43721:10;;43715:25;;-1:-1:-1;;;;;43721:10:0;43733:6;43715:5;:25::i;32495:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;52101:743::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;52197:10:::1;52187:21:::0;;:9:::1;:21;::::0;;;;;::::1;;52186:22;52178:52;;;::::0;;-1:-1:-1;;;52178:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52178:52:0;;;;;;;;;;;;;::::1;;52273:13;:3;31497:6;52273:7;:13::i;:::-;52250:10;52241:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;52241:29:0;::::1;::::0;;;;;;;;:45;;;;52320:4:::1;52301:24;52297:354;;;52342:50;52358:10;52378:4;52385:6;52342:15;:50::i;:::-;52297:354;;;52425:12;52447:7;-1:-1:-1::0;;;;;52440:25:0::1;;52474:4;52440:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;52440:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;52440:40:0;;-1:-1:-1;52495:67:0::1;-1:-1:-1::0;;;;;52495:32:0;::::1;52528:10;52548:4;52555:6:::0;52495:32:::1;:67::i;:::-;52586:53;52631:7;52593;-1:-1:-1::0;;;;;52586:25:0::1;;52620:4;52586:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;52586:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;:53;52577:62;;52297:354;;52710:10;52697:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;52697:33:0;::::1;::::0;;;;;;;;:45:::1;::::0;52735:6;52697:37:::1;:45::i;:::-;52674:10;52661:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;52661:33:0;::::1;::::0;;;;;;;;;:81;;;;52798:20;;;:8:::1;:20:::0;;;;;:29;;;;;;;;;;;52758:78;;52784:12:::1;52758:78:::0;;;;::::1;::::0;;;;;;;;;52674:10;;52758:78:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;;8012:1:0;8974:7;:22;52101:743::o;54130:368::-;54230:15;:3;31611:7;54230;:15::i;:::-;54207:10;54196:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;54196:31:0;;;;;;;;;:49;;;;54256:36;;54219:7;;54285:6;54256:7;:36::i;:::-;54360:10;54343:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;54343:37:0;;;;;;;;;;:49;;54385:6;54343:41;:49::i;:::-;54320:10;54303:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;54303:37:0;;;;;;;;;;;:89;;;;54450:22;;;:10;:22;;;;;:31;;;;;;;;;;;54408:82;;54436:12;54408:82;;;;;;;;;;;;;;54320:10;;54408:82;;;;;;;;;;54130:368;;:::o;59971:147::-;60031:4;60048:40;60064:10;60076:3;60081:6;60048:15;:40::i;:::-;-1:-1:-1;60106:4:0;59971:147;;;;:::o;49352:170::-;49438:10;;-1:-1:-1;;;;;49438:10:0;49424;:24;49416:56;;;;;-1:-1:-1;;;49416:56:0;;;;;;;;;;;;-1:-1:-1;;;49416:56:0;;;;;;;;;;;;;;;49483:17;:31;;-1:-1:-1;;;;;;49483:31:0;-1:-1:-1;;;;;49483:31:0;;;;;;;;;;49352:170::o;32924:40::-;;;;;;;;;;;;;;;:::o;52925:99::-;52970:16;53006:10;52999:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52999:17:0;;;;;;;;;;;;;;;;;;;;;;52925:99;:::o;25293:220::-;-1:-1:-1;;;;;25397:23:0;;25358:4;25397:23;;;:14;:23;;;;;;;;25438:16;:67;;25504:1;25438:67;;;-1:-1:-1;;;;;25457:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;25478:16:0;;25457:38;;;;;;;;25493:1;25457:44;;25438:67;25431:74;25293:220;-1:-1:-1;;;25293:220:0:o;38317:295::-;38404:10;;-1:-1:-1;;;;;38404:10:0;38390;:24;38382:59;;;;;-1:-1:-1;;;38382:59:0;;;;;;;;;;;;-1:-1:-1;;;38382:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38461:28:0;;;;;;:17;:28;;;;;;;;38460:29;38452:65;;;;;-1:-1:-1;;;38452:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38528:28:0;;;;;:17;:28;;;;;:35;;-1:-1:-1;;38528:35:0;38559:4;38528:35;;;;;;38574:14;:30;;;;;;;;;;;;;;-1:-1:-1;;;;;;38574:30:0;;;;;;38317:295::o;33617:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24488:604::-;24635:57;;;22867:65;24635:57;;;;;;;;-1:-1:-1;;;;;24635:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24625:68;;;;;;-1:-1:-1;;;24731:57:0;;;;24760:15;24731:57;;;;;;;;;;;;;;;;;;;;;;;;;;;24721:68;;;;;;;;;24604:18;24820:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24625:68;;24721;24604:18;;24820:26;;;;;;;-1:-1:-1;;24820:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24820:26:0;;-1:-1:-1;;24820:26:0;;;-1:-1:-1;;;;;;;24865:23:0;;24857:54;;;;;-1:-1:-1;;;24857:54:0;;;;;;;;;;;;-1:-1:-1;;;24857:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24939:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;24930:28;;24922:61;;;;;-1:-1:-1;;;24922:61:0;;;;;;;;;;;;-1:-1:-1;;;24922:61:0;;;;;;;;;;;;;;;25009:6;25002:3;:13;;24994:48;;;;;-1:-1:-1;;;24994:48:0;;;;;;;;;;;;-1:-1:-1;;;24994:48:0;;;;;;;;;;;;;;;25053:31;25063:9;25074;25053;:31::i;:::-;24488:604;;;;;;;;;:::o;48049:267::-;48120:10;;-1:-1:-1;;;;;48120:10:0;48106;:24;48098:49;;;;;-1:-1:-1;;;48098:49:0;;;;;;;;;;;;-1:-1:-1;;;48098:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48167:9:0;;;;;;:4;:9;;;;;;;;48166:10;48158:40;;;;;-1:-1:-1;;;48158:40:0;;;;;;;;;;;;-1:-1:-1;;;48158:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48209:9:0;;;;;;:4;:9;;;;;;;;:16;;-1:-1:-1;;48209:16:0;48221:4;48209:16;;;;;;48236:7;:17;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48236:17:0;;;;;48269:39;;48283:12;48269:39;;48297:10;48269:39;;;;;;;;;;;;;;;;;;;;48049:267;:::o;31772:29::-;31799:2;31772:29;:::o;37300:289::-;37391:10;;-1:-1:-1;;;;;37391:10:0;37377;:24;37369:51;;;;;-1:-1:-1;;;37369:51:0;;;;;;;;;;;;-1:-1:-1;;;37369:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37446:12:0;;;;;;:5;:12;;;;;;:24;;37463:6;37446:16;:24::i;:::-;-1:-1:-1;;;;;37431:12:0;;;;;;:5;:12;;;;;:39;37495:11;;:23;;37511:6;37495:15;:23::i;:::-;37481:11;:37;-1:-1:-1;;;;;37544:16:0;;;;;;;:9;:16;;;;;;37529:52;;37544:16;;37574:6;37529:14;:52::i;:::-;37300:289;;:::o;33029:39::-;;;;;;;;;;;;;:::o;58723:676::-;-1:-1:-1;;;;;58933:13:0;;;58850:18;58933:13;;;:6;:13;;;;;;;;:15;;;;;;;;;58881:78;;23064:86;58881:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58871:89;;;;;;-1:-1:-1;;;58998:57:0;;;;59027:15;58998:57;;;;;;;;;;;;;;;;;;;;;;;;;;;58988:68;;;;;;;;;59087:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58871:89;;58988:68;;58933:15;;59087:26;;;;;58933:13;;-1:-1:-1;;59087:26:0;;;;;;;;;;58933:15;59087:26;;;;;;;;;;;;;;;-1:-1:-1;;59087:26:0;;-1:-1:-1;;59087:26:0;;;-1:-1:-1;;;;;;;59132:23:0;;59124:53;;;;;-1:-1:-1;;;59124:53:0;;;;;;;;;;;;-1:-1:-1;;;59124:53:0;;;;;;;;;;;;;;;59209:5;-1:-1:-1;;;;;59196:18:0;:9;-1:-1:-1;;;;;59196:18:0;;59188:51;;;;;-1:-1:-1;;;59188:51:0;;;;;;;;;;;;-1:-1:-1;;;59188:51:0;;;;;;;;;;;;;;;59265:8;59258:3;:15;;59250:43;;;;;-1:-1:-1;;;59250:43:0;;;;;;;;;;;;-1:-1:-1;;;59250:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;59306:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;59359:32;;;;;;;;;;;;;;;;;58723:676;;;;;;;;;;:::o;37783:380::-;37873:10;;-1:-1:-1;;;;;37873:10:0;37859;:24;37851:55;;;;;-1:-1:-1;;;37851:55:0;;;;;;;;;;;;-1:-1:-1;;;37851:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37925:9:0;;;;;;:4;:9;;;;;;;;37917:40;;;;;-1:-1:-1;;;37917:40:0;;;;;;;;;;;;-1:-1:-1;;;37917:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37998:12:0;;;;;;:7;:12;;;;;;;;38019:4;37998:27;;;;;;;;:39;;38030:6;37998:31;:39::i;:::-;-1:-1:-1;;;;;37968:12:0;;;;;;:7;:12;;;;;;;;37989:4;37968:27;;;;;;;;:69;;;;38048:28;;38069:6;38048:5;:28::i;:::-;38092:63;;;38134:12;38092:63;;;;;;;;;;38122:10;;-1:-1:-1;;;;;38092:63:0;;;38110:4;;38092:63;;;;;;;;;;;37783:380;;:::o;32623:37::-;;;;;;;;;;;;;:::o;57420:136::-;-1:-1:-1;;;;;57520:19:0;;;57496:4;57520:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;57420:136::o;36801:328::-;36889:10;;-1:-1:-1;;;;;36889:10:0;36875;:24;36867:51;;;;;-1:-1:-1;;;36867:51:0;;;;;;;;;;;;-1:-1:-1;;;36867:51:0;;;;;;;;;;;;;;;36929:31;36939:5;36954:4;36929:9;:31::i;:::-;-1:-1:-1;;;;;36986:12:0;;;;;;:5;:12;;;;;;:24;;37003:6;36986:16;:24::i;:::-;-1:-1:-1;;;;;36971:12:0;;;;;;:5;:12;;;;;:39;37035:11;;:23;;37051:6;37035:15;:23::i;:::-;37021:11;:37;-1:-1:-1;;;;;37096:16:0;;;37092:1;37096:16;;;:9;:16;;;;;;37069:52;;37096:16;37114:6;37069:14;:52::i;32371:64::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;33479:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32816:41::-;;;;;;;;;;;;;:::o;55902:491::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;56015:10:::1;::::0;-1:-1:-1;;;;;56015:10:0::1;56001;:24;55993:48;;;::::0;;-1:-1:-1;;;55993:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55993:48:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;56056:23:0;::::1;56074:4;56056:23;56052:186;;;56127:10;::::0;56096:50:::1;::::0;56120:4:::1;::::0;-1:-1:-1;;;;;56127:10:0::1;56139:6:::0;56096:15:::1;:50::i;:::-;56052:186;;;56207:10;::::0;56179:47:::1;::::0;-1:-1:-1;;;;;56179:27:0;;::::1;::::0;56207:10:::1;56219:6:::0;56179:27:::1;:47::i;:::-;56248:31;56256:6;56264;56272;56248:7;:31::i;:::-;-1:-1:-1::0;;;;;56290:16:0;::::1;56309:5;56290:16:::0;;;:8:::1;:16;::::0;;;;;;;;:24;;-1:-1:-1;;56290:24:0::1;::::0;;56330:55;;56364:12:::1;56330:55:::0;;;;::::1;::::0;;;;;56352:10:::1;::::0;56290:16;56330:55:::1;::::0;;;;;;::::1;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;55902:491:0:o;22821:111::-;22867:65;22821:111;:::o;34866:49::-;;;;;;;;;;;;;;;:::o;31808:33::-;31836:5;31808:33;:::o;34513:27::-;;;;;;;;;;22175:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34754:32::-;;;-1:-1:-1;;;;;34754:32:0;;:::o;55468:196::-;55543:10;;-1:-1:-1;;;;;55543:10:0;55529;:24;55521:50;;;;;-1:-1:-1;;;55521:50:0;;;;;;;;;;;;-1:-1:-1;;;55521:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;55582:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;55582:23:0;55601:4;55582:23;;;55621:35;;55643:12;55621:35;;;;;;;;;;;;;;55468:196;:::o;51565:344::-;51674:4;51702:9;51691:8;:20;-1:-1:-1;;;;;51729:15:0;;;;;;:7;:15;;;;;;;;:66;;;;-1:-1:-1;;;;;;51765:13:0;;;;;;;:5;:13;;;;;;;;:19;;;;;;;;;;:30;-1:-1:-1;51765:30:0;51729:66;:118;;;;-1:-1:-1;;;;;;51816:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;51816:31:0;51729:118;:172;;;;-1:-1:-1;;;;;;51876:17:0;;;;;;:9;:17;;;;;;51898:3;;51868:26;;:3;;:7;:26::i;:::-;:33;;51729:172;51722:179;51565:344;-1:-1:-1;;;;;;51565:344:0:o;34382:41::-;;;;;;;;;;;;;;;:::o;33992:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39023:98::-;39063:16;39099:14;39092:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39092:21:0;;;;;;;;;;;;;;;;;;;;;;39023:98;:::o;1019:148::-;1071:4;1097:5;;;1121:6;;;;1113:25;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;;;2682:432;2734:4;2976:6;2972:47;;-1:-1:-1;3006:1:0;2999:8;;2972:47;3040:5;;;3044:1;3040;:5;:1;3064:5;;;;;:10;3056:29;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;;;4289:103;4341:4;4365:19;4369:1;4372;4365:19;;;;;;;;;;;;;-1:-1:-1;;;4365:19:0;;;:3;:19::i;44239:293::-;-1:-1:-1;;;;;44308:17:0;;44300:49;;;;;-1:-1:-1;;;44300:49:0;;;;;;;;;;;;-1:-1:-1;;;44300:49:0;;;;;;;;;;;;;;;44376:51;;;;;;;;;;;-1:-1:-1;;;44376:51:0;;;;;;;;-1:-1:-1;;;;;44376:13:0;;-1:-1:-1;44376:13:0;;;:8;:13;;;;;;;;:51;;44394:6;;44376:17;:51::i;:::-;-1:-1:-1;;;;;44360:13:0;;;;;;:8;:13;;;;;:67;44452:11;;:23;;44468:6;44452:15;:23::i;:::-;44438:11;:37;44491:33;;;;;;;;44513:1;;-1:-1:-1;;;;;44491:33:0;;;-1:-1:-1;;;;;;;;;;;44491:33:0;;;;;;;;44239:293;;:::o;1867:103::-;1919:4;1943:19;1947:1;1950;1943:19;;;;;;;;;;;;;-1:-1:-1;;;1943:19:0;;;:3;:19::i;53482:457::-;-1:-1:-1;;;;;53558:17:0;;;;;;:9;:17;;;;;;53554:146;;-1:-1:-1;;;;;53595:17:0;;;;;;:9;:17;;;;;;;;53615:3;53595:23;;;;53631:10;:23;;;;;;;;;;;;-1:-1:-1;;;;;;53631:23:0;;;;;;;53667:7;:15;;;;;:21;53554:146;-1:-1:-1;;;;;53710:15:0;;;;;;;:7;:15;;;;;;;;:22;;-1:-1:-1;;53710:22:0;53728:4;53710:22;;;53766:12;:20;;;;;:29;;;;;;;;;;53743:53;;53749:7;;53718:6;;53743:5;:53::i;:::-;-1:-1:-1;;;;;53807:20:0;;;53839:1;53807:20;;;:12;:20;;;;;;;;:29;;;;;;;;;;;;:33;;;53908:13;;;:5;:13;;;;;:22;;;;;;;;;;;53856:75;;53877:12;53856:75;;53891:15;53856:75;;;;;;;;;;;;;53807:20;;53856:75;;;;;;;;;;53482:457;;:::o;2259:180::-;2339:4;2372:12;2364:6;;;;2356:29;;;;-1:-1:-1;;;2356:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2405:5:0;;;2259:180::o;60986:435::-;-1:-1:-1;;;;;61078:17:0;;61070:59;;;;;-1:-1:-1;;;61070:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61148:17:0;;61140:59;;;;;-1:-1:-1;;;61140:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61228:61;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61228:13:0;;-1:-1:-1;61228:13:0;;;:8;:13;;;;;;;;:61;;61246:6;;61228:17;:61::i;:::-;-1:-1:-1;;;;;61212:13:0;;;;;;;:8;:13;;;;;;;;:77;;;;61316:55;;;;;;;;;;;;;;;:13;;;;;;;;;;;:55;;61334:6;;61316:17;:55::i;:::-;-1:-1:-1;;;;;61300:13:0;;;;;;;:8;:13;;;;;;;;;:71;;;;61387:26;;;;;;;61300:13;;61387:26;;;;-1:-1:-1;;;;;;;;;;;61387:26:0;;;;;;;;60986:435;;;:::o;43947:284::-;44050:11;;:23;;44066:6;44050:15;:23::i;:::-;44036:11;:37;-1:-1:-1;;;;;44149:13:0;;;;;;:8;:13;;;;;;:25;;44167:6;44149:17;:25::i;:::-;-1:-1:-1;;;;;44133:13:0;;;;;;:8;:13;;;;;;;;:41;;;;44190:33;;;;;;;44133:13;;;;-1:-1:-1;;;;;;;;;;;44190:33:0;;;;;;;;;43947:284;;:::o;46919:309::-;-1:-1:-1;;;;;47015:12:0;;;;;;:5;:12;;;;;;;;47036:4;47015:27;;;;;;;;:40;;47047:7;47015:31;:40::i;:::-;-1:-1:-1;;;;;46985:12:0;;;;;;:5;:12;;;;;;;;47006:4;46985:27;;;;;;;:70;47080:11;;:24;;47096:7;47080:15;:24::i;:::-;47066:11;:38;-1:-1:-1;;;;;47142:16:0;;;47138:1;47142:16;;;:9;:16;;;;;;47115:53;;47142:16;47160:7;47115:14;:53::i;:::-;47184:36;;;;;;;;-1:-1:-1;;;;;47184:36:0;;;47193:10;;-1:-1:-1;;;;;;;;;;;47184:36:0;;;;;;;;46919:309;;:::o;15232:176::-;15341:58;;;-1:-1:-1;;;;;15341:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15341:58:0;-1:-1:-1;;;15341:58:0;;;15315:85;;15334:5;;15315:18;:85::i;:::-;15232:176;;;:::o;15416:204::-;15543:68;;;-1:-1:-1;;;;;15543:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15543:68:0;-1:-1:-1;;;15543:68:0;;;15517:95;;15536:5;;15517:18;:95::i;:::-;15416:204;;;;:::o;27143:407::-;-1:-1:-1;;;;;27246:20:0;;;27220:23;27246:20;;;:9;:20;;;;;;;;;27322:5;:16;;;;;27347:4;27322:31;;;;;;;;27301:16;;;:5;:16;;;;;;27246:20;;;27220:23;;27301:53;;:16;:20;:53::i;:::-;-1:-1:-1;;;;;27365:20:0;;;;;;;:9;:20;;;;;;:32;;-1:-1:-1;;;;;;27365:32:0;;;;;;;;;;27415:54;;27277:77;;-1:-1:-1;27365:32:0;27415:54;;;;;;27365:20;27415:54;27482:60;27497:15;27514:9;27525:16;27482:14;:60::i;47564:324::-;-1:-1:-1;;;;;47671:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;47697:7;47671:25;:34::i;:::-;-1:-1:-1;;;;;47647:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;47739:4;47720:24;47716:163;;;47775:11;;:24;;47791:7;47775:15;:24::i;:::-;47761:11;:38;-1:-1:-1;;;;;47829:16:0;;;;;;;:9;:16;;;;;;47814:53;;47829:16;;47859:7;27558:862;27661:6;-1:-1:-1;;;;;27651:16:0;:6;-1:-1:-1;;;;;27651:16:0;;;:30;;;;;27680:1;27671:6;:10;27651:30;27647:766;;;-1:-1:-1;;;;;27702:20:0;;;27698:357;;-1:-1:-1;;;;;27762:22:0;;27743:16;27762:22;;;:14;:22;;;;;;;;;27820:13;:60;;27879:1;27820:60;;;-1:-1:-1;;;;;27836:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;27856:13:0;;27836:34;;;;;;;;27868:1;27836:40;;27820:60;27803:77;;27899:14;27916:47;27930:6;27916:47;;;;;;;;;;;;;-1:-1:-1;;;27916:47:0;;;:9;:13;;:47;;;;;:::i;:::-;27899:64;;27982:57;27999:6;28007:9;28018;28029;27982:16;:57::i;:::-;27698:357;;;;-1:-1:-1;;;;;28075:20:0;;;28071:331;;-1:-1:-1;;;;;28135:22:0;;28116:16;28135:22;;;:14;:22;;;;;;;;;28193:13;:60;;28252:1;28193:60;;;-1:-1:-1;;;;;28209:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;28229:13:0;;28209:34;;;;;;;;28241:1;28209:40;;28193:60;28176:77;-1:-1:-1;28272:14:0;28289:21;28176:77;28303:6;28289:13;:21::i;:::-;28272:38;;28329:57;28346:6;28354:9;28365;28376;28329:16;:57::i;:::-;28071:331;;;27558:862;;;:::o;4880:333::-;4960:4;5059:12;5052:5;5044:28;;;;-1:-1:-1;;;5044:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5083:6;5096:1;5092;:5;;;;;;;4880:333;-1:-1:-1;;;;;4880:333:0:o;47236:320::-;-1:-1:-1;;;;;47341:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;47367:7;47341:25;:34::i;:::-;-1:-1:-1;;;;;47317:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;47409:4;47390:24;47386:163;;;47445:11;;:24;;47461:7;47445:15;:24::i;:::-;47431:11;:38;-1:-1:-1;;;;;47511:16:0;;;47507:1;47511:16;;;:9;:16;;;;;;47484:53;;47511:16;47529:7;47484:14;:53::i;1418:180::-;1498:4;1524:5;;;1556:12;1548:6;;;;1540:29;;;;-1:-1:-1;;;1540:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1589:1:0;1418:180;-1:-1:-1;;;;1418:180:0:o;17244:1080::-;17848:27;17856:5;-1:-1:-1;;;;;17848:25:0;;:27::i;:::-;17840:60;;;;;-1:-1:-1;;;17840:60:0;;;;;;;;;;;;-1:-1:-1;;;17840:60:0;;;;;;;;;;;;;;;17974:12;17988:23;18023:5;-1:-1:-1;;;;;18015:19:0;18035:4;18015:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18015:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17973:67;;;;18059:7;18051:52;;;;;-1:-1:-1;;;18051:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18120:17;;:21;18116:201;;18262:10;18251:30;;;;;;;;;;;;;;;-1:-1:-1;18251:30:0;18243:62;;;;;-1:-1:-1;;;18243:62:0;;;;;;;;;;;;-1:-1:-1;;;18243:62:0;;;;;;;;;;;;;;28428:598;28542:18;28563:49;28570:12;28563:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;28542:70;;28642:1;28627:12;:16;;;:85;;;;-1:-1:-1;;;;;;28647:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;28670:16:0;;28647:40;;;;;;;;;:50;:65;;;:50;;:65;28627:85;28623:329;;;-1:-1:-1;;;;;28727:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;28750:16:0;;28727:40;;;;;;;;28765:1;28727:46;:57;;;28623:329;;;28852:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28813:22:0;;-1:-1:-1;28813:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;28813:72:0;;;;;;;;;;;;;28898:25;;;:14;:25;;;;;;:44;;28926:16;;;28898:44;;;;;;;;;;28623:329;28967:51;;;;;;;;;;;;;;-1:-1:-1;;;;;28967:51:0;;;;;;;;;;;28428:598;;;;;:::o;12405:619::-;12465:4;12933:20;;12776:66;12973:23;;;;;;:42;;-1:-1:-1;13000:15:0;;;12973:42;12965:51;12405:619;-1:-1:-1;;;;12405:619:0:o;29034:161::-;29109:6;29147:12;29140:5;29136:9;;29128:32;;;;-1:-1:-1;;;29128:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29185:1:0;;29034:161;-1:-1:-1;;29034:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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