ETH Price: $3,108.08 (+1.16%)
Gas: 8 Gwei

Token

Keep3r (KPR)
 

Overview

Max Total Supply

10,400 KPR

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1.163922791275194646 KPR

Value
$0.00
0x26bdde6506bd32bd7b5cc5c73cd252807ff18568
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Keep3r

Compiler Version
v0.6.6+commit.6c089d02

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-20
*/

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

// 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, "SafeMath: addition overflow");

        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, "Uniloan::SafeMath: subtraction underflow");
    }

    /**
     * @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, "SafeMath: multiplication overflow");

        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, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(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, "SafeMath: modulo by zero");
    }

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

interface Governance {
    function proposeJob(address job) external returns (uint);
}

interface WETH9 {
    function deposit() external payable;
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
}

interface Uniswap {
    function factory() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
}

interface UniswapPair {
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function balanceOf(address account) external view returns (uint);
    function approve(address spender, uint amount) external returns (bool);
    function totalSupply() external view returns (uint);
}

interface Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract Keep3r {
    using SafeMath for uint;

    /// @notice WETH address to liquidity into UNI
    WETH9 public constant WETH = WETH9(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);

    /// @notice UniswapV2Router address
    Uniswap public constant UNI = Uniswap(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

    /// @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)");

    /// @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 {
        return _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 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        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: invalid signature");
        require(nonce == nonces[signatory]++, "::delegateBySig: invalid nonce");
        require(now <= expiry, "::delegateBySig: signature expired");
        return _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: not yet determined");

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

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

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

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

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint delegatorBalance = bonds[delegator];
        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: vote amount 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: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          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 provider, uint block, uint credit);

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

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, 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 job, address indexed keeper, uint block);

    /// @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);

    /// @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 7 days maximum downtime before being slashed
    uint constant public DOWNTIME = 7 days;

    /// @notice 5% of funds slashed for downtime
    uint constant public DOWNTIMESLASH = 500;
    uint constant public BASE = 10000;

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

    /// @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 amount of job executions for a keeper
    mapping(address => uint) public work;
    /// @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 => uint) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => uint) public liquidityProviders;
    /// @notice tracks the relationship between a liquidityProvider and their job
    mapping(address => address) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => uint) public liquidityUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => uint) public liquidityApplied;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;

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

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

    /// @notice the liquidity token supplied by users paying for jobs
    UniswapPair public liquidity;

    constructor() public {
        // Set governance for this token
        governance = msg.sender;
        _mint(msg.sender, 10000e18);
    }

    function setup() public payable {
        require(address(liquidity) == address(0x0), "Keep3r::setup: keep3r already setup");
        WETH.deposit.value(msg.value)();
        WETH.approve(address(UNI), msg.value);
        _mint(address(this), 400e18);
        allowances[address(this)][address(UNI)] = balances[address(this)];

        // Setup liquidity pool with initial liquidity 1 ETH : 400 KPR
        UNI.addLiquidity(address(this), address(WETH), balances[address(this)], WETH.balanceOf(address(this)), 0, 0, msg.sender, now.add(1800));
        liquidity = UniswapPair(Factory(UNI.factory()).getPair(address(this), address(WETH)));
    }

    /**
     * @notice Allows liquidity providers to submit jobs
     * @param amount the amount of tokens to mint to treasury
     * @param job the job to assign credit to
     * @param amount the amount of liquidity tokens to use
     */
    function addLiquidityToJob(address job, uint amount) external {
        require(liquidityProvided[msg.sender]==address(0x0), "Keep3r::submitJob: liquidity already provided, please remove first");
        liquidity.transferFrom(msg.sender, address(this), amount);
        liquidityProviders[msg.sender] = amount;
        liquidityProvided[msg.sender] = job;
        liquidityApplied[msg.sender] = now.add(1 days);
        if (!jobs[job] && jobProposalDelay[job] < now) {
            Governance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, msg.sender, block.number, amount);
    }

    /**
     * @notice Applies the credit provided in addLiquidityToJob to the job
     * @param provider the liquidity provider
     */
    function applyCreditToJob(address provider) external {
        require(liquidityApplied[provider] != 0, "Keep3r::credit: submitJob first");
        require(liquidityApplied[provider] < now, "Keep3r::credit: still bonding");
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(liquidityProviders[provider]).div(liquidity.totalSupply());
        credits[liquidityProvided[msg.sender]] = credits[liquidityProvided[msg.sender]].add(_credit);
    }

    /**
     * @notice Unbond liquidity for a pending keeper job
     */
    function unbondLiquidityFromJob() external {
        liquidityUnbonding[msg.sender] = now.add(UNBOND);

        emit UnbondJob(liquidityProvided[msg.sender], msg.sender, block.number, liquidityProviders[msg.sender]);
    }

    /**
     * @notice Allows liquidity providers to remove liquidity
     */
    function removeLiquidityFromJob() external {
        require(liquidityUnbonding[msg.sender] != 0, "Keep3r::removeJob: unbond first");
        require(liquidityUnbonding[msg.sender] < now, "Keep3r::removeJob: still unbonding");
        uint _provided = liquidityProviders[msg.sender];
        uint _liquidity = balances[address(liquidity)];
        uint _credit = _liquidity.mul(_provided).div(liquidity.totalSupply());
        address _job = liquidityProvided[msg.sender];
        if (_credit > credits[_job]) {
            credits[_job] = 0;
        } else {
            credits[_job].sub(_credit);
        }
        liquidity.transfer(msg.sender, _provided);
        liquidityProviders[msg.sender] = 0;
        liquidityProvided[msg.sender] = address(0x0);

        emit RemoveJob(_job, msg.sender, block.number, _provided);
    }

    /**
     * @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, "Keep3r::mint: governance only");
        _mint(governance, amount);
    }

    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: burn from the zero address");
        balances[dst] = balances[dst].sub(amount, "::_burn: burn amount exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    /**
     * @notice Implemented by jobs to show that a keeper performend 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) external {
        require(jobs[msg.sender], "Keep3r::workReceipt: only jobs can approve work");
        lastJob[keeper] = now;
        credits[msg.sender] = credits[msg.sender].sub(amount, "Keep3r::workReceipt: insuffient funds to pay keeper");
        bonds[keeper] = bonds[keeper].add(amount);
        _moveDelegates(address(0), delegates[keeper], amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(msg.sender, keeper, block.number);
    }

    /**
     * @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, "Keep3r::addJob: only governance can add jobs");
        jobs[job] = true;
        emit JobAdded(job, block.number, msg.sender);
    }

    /**
     * @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, "Keep3r::removeJob: only governance can remove jobs");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    /**
     * @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, "Keep3r::setGovernance: only governance can set");
        pendingGovernance = _governance;
    }
    
    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "Keep3r::acceptGovernance: only pendingGovernance can accept");
        governance = pendingGovernance;
    }

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

    /**
     * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions
     * @return true/false if the address is a keeper and has more than the bond
     */
    function isMinKeeper(address keeper, uint minBond, uint completed, uint age) external view returns (bool) {
        return keepers[keeper]
                && bonds[keeper] >= minBond
                && workCompleted[keeper] > completed
                && now.sub(firstSeen[keeper]) > age;
    }

    /**
     * @notice begin the bonding process for a new keeper
     */
    function bond(uint amount) external {
        require(pendingbonds[msg.sender] == 0, "Keep3r::bond: current pending bond");
        bondings[msg.sender] = now.add(BOND);
        pendingbonds[msg.sender] = amount;
        _transferTokens(msg.sender, address(this), amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender], amount);
    }

    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

    /**
     * @notice allows a keeper to activate/register themselves after bonding
     */
    function activate() external {
        require(bondings[msg.sender] != 0, "Keep3r::activate: bond first");
        require(bondings[msg.sender] < now, "Keep3r::activate: still bonding");
        if (!keepers[msg.sender]) {
          firstSeen[msg.sender] = now;
        }
        keepers[msg.sender] = true;
        totalBonded = totalBonded.add(pendingbonds[msg.sender]);
        bonds[msg.sender] = bonds[msg.sender].add(pendingbonds[msg.sender]);
        pendingbonds[msg.sender] = 0;
        if (lastJob[msg.sender] == 0) {
            lastJob[msg.sender] = now;
            keeperList.push(msg.sender);
        }
        emit KeeperBonded(msg.sender, block.number, block.timestamp, bonds[msg.sender]);
    }
    
    /**
     * @notice allows a keeper to deactivate (sub system to avoid down slashing)
     */
    function deactivate() external {
        keepers[msg.sender] = false;
    }

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

    /**
     * @notice withdraw funds after unbonding has finished
     */
    function withdraw() external {
        require(unbondings[msg.sender] != 0, "Keep3r::withdraw: unbond first");
        require(unbondings[msg.sender] < now, "Keep3r::withdraw: still unbonding");
        require(!disputes[msg.sender], "Keep3r::withdraw: pending disputes");

        _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender]);
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender]);
        partialUnbonding[msg.sender] = 0;
    }

    /**
     * @notice slash a keeper for downtime
     * @param keeper the address being slashed
     */
    function down(address keeper) external {
        require(keepers[keeper], "Keep3r::down: keeper not registered");
        require(lastJob[keeper].add(DOWNTIME) < now, "Keep3r::down: keeper safe");
        uint _slash = bonds[keeper].mul(DOWNTIMESLASH).div(BASE);
        bonds[keeper] = bonds[keeper].sub(_slash);
        _transferTokens(address(this), msg.sender, _slash);
        lastJob[keeper] = now;
        emit KeeperSlashed(keeper, msg.sender, block.number, _slash);
    }

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

    /**
     * @notice allows governance to slash a keeper based on a dispute
     * @param keeper the address being slashed
     * @param amount the amount being slashed
     */
    function slash(address keeper, uint amount) external {
        require(msg.sender == governance, "Keep3r::slash: only governance can resolve");
        _transferTokens(address(this), governance, amount);
        bonds[keeper] = bonds[keeper].sub(amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }

    /**
     * @notice allows governance to resolve a dispute on a keeper
     * @param keeper the address cleared
     */
    function resolve(address keeper) external {
        require(msg.sender == governance, "Keep3r::resolve: only governance can resolve");
        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 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        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: invalid signature");
        require(signatory == owner, "::permit: unauthorized");
        require(now <= deadline, "::permit: signature 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: transfer amount 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: cannot transfer from the zero address");
        require(dst != address(0), "::_transferTokens: cannot transfer to the zero address");

        balances[src] = balances[src].sub(amount, "::_transferTokens: transfer amount exceeds balance");
        balances[dst] = balances[dst].add(amount, "::_transferTokens: transfer amount 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"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":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","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":"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":"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":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIMESLASH","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":"UNI","outputs":[{"internalType":"contract Uniswap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"contract WETH9","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","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":"addLiquidityToJob","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"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivate","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"keeper","type":"address"}],"name":"down","outputs":[],"stateMutability":"nonpayable","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":"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"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"completed","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"liquidity","outputs":[{"internalType":"contract UniswapPair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityProviders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"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"}],"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":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setup","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"work","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

6080604052600080556000600c553480156200001a57600080fd5b50601b80546001600160a01b031916339081179091556200004f9069021e19e0c9bab24000006001600160e01b036200005516565b6200015f565b6200007181600054620000fd60201b62003b9d1790919060201c565b60009081556001600160a01b038316815260056020908152604090912054620000a591839062003b9d620000fd821b17901c565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000158576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b614943806200016f6000396000f3fe60806040526004361061043c5760003560e01c80637724ff6811610234578063ba0bba401161012e578063e7a324dc116100b6578063f1896b541161007a578063f1896b5414611109578063f39c38a01461113c578063f75f9f7b14611151578063fe10d77414611184578063fe5ff468146111b75761043c565b8063e7a324dc14611023578063ec342ad014611038578063ec4515dd1461104d578063ef43e28114611077578063f1127ed8146110aa5761043c565b8063d454019d116100fd578063d454019d14610ef1578063d505accf14610f24578063dbd9426714610f82578063dd62ed3e14610fb5578063e326ac4314610ff05761043c565b8063ba0bba4014610e4d578063c1c1d21814610e55578063c3cda52014610e6a578063c5198abc14610ebe5761043c565b8063a0712d68116101bc578063aec758c011610180578063aec758c014610d16578063b0103b1a14610d4f578063b105e39f14610d82578063b24ae47714610de7578063b4b5ea5714610e1a5761043c565b8063a0712d6814610c38578063a9059cbb14610c62578063ab033ea914610c9b578063abbb247f14610cce578063ad5c464814610d015761043c565b806393f6c2ad1161020357806393f6c2ad14610b9c578063950a2ca214610bcf57806395d89b4114610be4578063985348bf14610bf95780639940686e14610c0e5761043c565b80637724ff6814610aca578063782d6fe114610afd5780637ecebe0014610b365780638071198914610b695761043c565b80633d1f0bb91161034557806359e9e255116102cd57806365119f721161029157806365119f72146109b25780636ba42aaa146109e55780636fcfff4514610a1857806370a0823114610a6457806375d2762914610a975761043c565b806359e9e2551461092b5780635aa6e675146109405780635bff0cd1146109555780635c19a95c1461096a578063603b4d141461099d5761043c565b80634b3fde21116103145780634b3fde211461086257806351b42b001461089b578063541bcb76146108b057806355ea6c47146108c5578063587cde1e146108f85761043c565b80633d1f0bb9146107bd57806342966c68146107f057806344d96e951461081a5780634a5c8de81461082f5761043c565b8063238efcbc116103c857806330adf81f1161039757806330adf81f14610702578063313ce5671461071757806336df7ea5146107425780633bbd64bc146107755780633ccfd60b146107a85761043c565b8063238efcbc1461064d57806323b872dd1461066257806327de9e32146106a5578063284cc0a9146106cf5761043c565b806318160ddd1161040f57806318160ddd146105685780631a6865021461058f5780631b44555e146105c05780631ff5f3da146105f357806320606b70146106385761043c565b806302fb4d851461044157806306fdde031461047c578063095ea7b3146105065780630f15f4c014610553575b600080fd5b34801561044d57600080fd5b5061047a6004803603604081101561046457600080fd5b506001600160a01b0381351690602001356111ea565b005b34801561048857600080fd5b506104916112de565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104cb5781810151838201526020016104b3565b50505050905090810190601f1680156104f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561051257600080fd5b5061053f6004803603604081101561052957600080fd5b506001600160a01b038135169060200135611300565b604080519115158252519081900360200190f35b34801561055f57600080fd5b5061047a611367565b34801561057457600080fd5b5061057d611589565b60408051918252519081900360200190f35b34801561059b57600080fd5b506105a461158f565b604080516001600160a01b039092168252519081900360200190f35b3480156105cc57600080fd5b5061057d600480360360208110156105e357600080fd5b50356001600160a01b031661159e565b3480156105ff57600080fd5b5061053f6004803603608081101561061657600080fd5b506001600160a01b0381351690602081013590604081013590606001356115b0565b34801561064457600080fd5b5061057d611651565b34801561065957600080fd5b5061047a61166d565b34801561066e57600080fd5b5061053f6004803603606081101561068557600080fd5b506001600160a01b038135811691602081013590911690604001356116da565b3480156106b157600080fd5b5061047a600480360360208110156106c857600080fd5b50356117c2565b3480156106db57600080fd5b5061047a600480360360208110156106f257600080fd5b50356001600160a01b03166118cb565b34801561070e57600080fd5b5061057d611a8c565b34801561072357600080fd5b5061072c611aa7565b6040805160ff9092168252519081900360200190f35b34801561074e57600080fd5b5061057d6004803603602081101561076557600080fd5b50356001600160a01b0316611aac565b34801561078157600080fd5b5061053f6004803603602081101561079857600080fd5b50356001600160a01b0316611abe565b3480156107b457600080fd5b5061047a611ad3565b3480156107c957600080fd5b5061053f600480360360208110156107e057600080fd5b50356001600160a01b0316611c4e565b3480156107fc57600080fd5b5061047a6004803603602081101561081357600080fd5b5035611c63565b34801561082657600080fd5b5061057d611c70565b34801561083b57600080fd5b5061057d6004803603602081101561085257600080fd5b50356001600160a01b0316611c76565b34801561086e57600080fd5b5061047a6004803603604081101561088557600080fd5b506001600160a01b038135169060200135611c88565b3480156108a757600080fd5b5061047a611e28565b3480156108bc57600080fd5b506105a4611e41565b3480156108d157600080fd5b5061047a600480360360208110156108e857600080fd5b50356001600160a01b0316611e59565b34801561090457600080fd5b506105a46004803603602081101561091b57600080fd5b50356001600160a01b0316611efa565b34801561093757600080fd5b5061047a611f15565b34801561094c57600080fd5b506105a46121d1565b34801561096157600080fd5b5061047a6121e0565b34801561097657600080fd5b5061047a6004803603602081101561098d57600080fd5b50356001600160a01b0316612260565b3480156109a957600080fd5b5061057d61226a565b3480156109be57600080fd5b506105a4600480360360208110156109d557600080fd5b50356001600160a01b0316612271565b3480156109f157600080fd5b5061053f60048036036020811015610a0857600080fd5b50356001600160a01b031661228c565b348015610a2457600080fd5b50610a4b60048036036020811015610a3b57600080fd5b50356001600160a01b03166122aa565b6040805163ffffffff9092168252519081900360200190f35b348015610a7057600080fd5b5061057d60048036036020811015610a8757600080fd5b50356001600160a01b03166122c2565b348015610aa357600080fd5b5061047a60048036036020811015610aba57600080fd5b50356001600160a01b03166122dd565b348015610ad657600080fd5b5061057d60048036036020811015610aed57600080fd5b50356001600160a01b03166124c2565b348015610b0957600080fd5b5061057d60048036036040811015610b2057600080fd5b506001600160a01b0381351690602001356124d4565b348015610b4257600080fd5b5061057d60048036036020811015610b5957600080fd5b50356001600160a01b03166126dc565b348015610b7557600080fd5b5061047a60048036036020811015610b8c57600080fd5b50356001600160a01b03166126ee565b348015610ba857600080fd5b5061057d60048036036020811015610bbf57600080fd5b50356001600160a01b0316612798565b348015610bdb57600080fd5b5061057d6127aa565b348015610bf057600080fd5b506104916127b0565b348015610c0557600080fd5b5061057d6127cf565b348015610c1a57600080fd5b5061047a60048036036020811015610c3157600080fd5b50356127d6565b348015610c4457600080fd5b5061047a60048036036020811015610c5b57600080fd5b50356128b3565b348015610c6e57600080fd5b5061053f60048036036040811015610c8557600080fd5b506001600160a01b038135169060200135612928565b348015610ca757600080fd5b5061047a60048036036020811015610cbe57600080fd5b50356001600160a01b031661293e565b348015610cda57600080fd5b5061057d60048036036020811015610cf157600080fd5b50356001600160a01b03166129a9565b348015610d0d57600080fd5b506105a46129bb565b348015610d2257600080fd5b5061047a60048036036040811015610d3957600080fd5b506001600160a01b0381351690602001356129d3565b348015610d5b57600080fd5b5061053f60048036036020811015610d7257600080fd5b50356001600160a01b0316612c39565b348015610d8e57600080fd5b50610d97612c4e565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610dd3578181015183820152602001610dbb565b505050509050019250505060405180910390f35b348015610df357600080fd5b5061057d60048036036020811015610e0a57600080fd5b50356001600160a01b0316612cb0565b348015610e2657600080fd5b5061057d60048036036020811015610e3d57600080fd5b50356001600160a01b0316612cc2565b61047a612d26565b348015610e6157600080fd5b5061057d61314d565b348015610e7657600080fd5b5061047a600480360360c0811015610e8d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135613154565b348015610eca57600080fd5b5061047a60048036036020811015610ee157600080fd5b50356001600160a01b0316613410565b348015610efd57600080fd5b5061057d60048036036020811015610f1457600080fd5b50356001600160a01b03166134bd565b348015610f3057600080fd5b5061047a600480360360e0811015610f4757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356134cf565b348015610f8e57600080fd5b5061057d60048036036020811015610fa557600080fd5b50356001600160a01b031661381f565b348015610fc157600080fd5b5061057d60048036036040811015610fd857600080fd5b506001600160a01b0381358116916020013516613831565b348015610ffc57600080fd5b5061057d6004803603602081101561101357600080fd5b50356001600160a01b031661385c565b34801561102f57600080fd5b5061057d61386e565b34801561104457600080fd5b5061057d613889565b34801561105957600080fd5b506105a46004803603602081101561107057600080fd5b503561388f565b34801561108357600080fd5b5061057d6004803603602081101561109a57600080fd5b50356001600160a01b03166138b6565b3480156110b657600080fd5b506110e9600480360360408110156110cd57600080fd5b5080356001600160a01b0316906020013563ffffffff166138c8565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561111557600080fd5b5061057d6004803603602081101561112c57600080fd5b50356001600160a01b03166138f5565b34801561114857600080fd5b506105a4613907565b34801561115d57600080fd5b5061057d6004803603602081101561117457600080fd5b50356001600160a01b0316613916565b34801561119057600080fd5b5061057d600480360360208110156111a757600080fd5b50356001600160a01b03166139bf565b3480156111c357600080fd5b5061057d600480360360208110156111da57600080fd5b50356001600160a01b03166139d1565b601b546001600160a01b031633146112335760405162461bcd60e51b815260040180806020018281038252602a81526020018061484f602a913960400191505060405180910390fd5b601b5461124b9030906001600160a01b0316836139e3565b6001600160a01b0382166000908152600b6020526040902054611274908263ffffffff613b7816565b6001600160a01b0383166000818152600b6020908152604080832094909455600e815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b336000908152600760205260409020546113c8576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b33600090815260076020526040902054421161142b576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526019602052604090205460ff1661145557336000908152600d602052604090204290555b336000908152601960209081526040808320805460ff19166001179055600a909152902054600c5461148c9163ffffffff613b9d16565b600c55336000908152600a6020908152604080832054600b909252909120546114ba9163ffffffff613b9d16565b336000908152600b6020908152604080832093909355600a8152828220829055600f9052205461153657336000818152600f60205260408120429055601a805460018101825591527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b03191690911790555b336000818152600b602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601d546001600160a01b031681565b60116020526000908152604090205481565b6001600160a01b03841660009081526019602052604081205460ff1680156115f057506001600160a01b0385166000908152600b60205260409020548411155b801561161357506001600160a01b03851660009081526011602052604090205483105b801561164857506001600160a01b0385166000908152600d6020526040902054829061164690429063ffffffff613b7816565b115b95945050505050565b6040518080614642604091396040019050604051809103902081565b601c546001600160a01b031633146116b65760405162461bcd60e51b815260040180806020018281038252603b8152602001806143be603b913960400191505060405180910390fd5b601c54601b80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526004602090815260408083203380855292528220549192909190821480159061171457506000198114155b156117ab5760006117468560405180606001604052806039815260200161447d6039913984919063ffffffff613bf716565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6117b68686866139e3565b50600195945050505050565b6117d5426212750063ffffffff613b9d16565b33600090815260086020908152604080832093909355600b90522054611801908263ffffffff613b7816565b336000908152600b602090815260408083209390935560099052205461182d908263ffffffff613b9d16565b33600090815260096020526040902055600c54611850908263ffffffff613b7816565b600c5533600090815260016020526040812054611879916001600160a01b039091169083613c8e565b336000818152600860209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b03811660009081526019602052604090205460ff166119225760405162461bcd60e51b81526004018080602001828103825260238152602001806143796023913960400191505060405180910390fd5b6001600160a01b0381166000908152600f602052604090205442906119509062093a8063ffffffff613b9d16565b106119a2576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600b60205260408120546119e190612710906119d5906101f463ffffffff613df716565b9063ffffffff613e5016565b6001600160a01b0383166000908152600b6020526040902054909150611a0d908263ffffffff613b7816565b6001600160a01b0383166000908152600b6020526040902055611a313033836139e3565b6001600160a01b0382166000818152600f6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b60405180604961452d82396049019050604051809103902081565b601281565b60106020526000908152604090205481565b60196020526000908152604090205460ff1681565b33600090815260086020526040902054611b34576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611b815760405162461bcd60e51b81526004018080602001828103825260218152602001806148ca6021913960400191505060405180910390fd5b336000908152600e602052604090205460ff1615611bd05760405162461bcd60e51b815260040180806020018281038252602281526020018061477e6022913960400191505060405180910390fd5b33600081815260096020526040902054611beb9130916139e3565b3360008181526009602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a233600090815260096020526040812055565b60126020526000908152604090205460ff1681565b611c6d3382613e92565b50565b600c5481565b600a6020526000908152604090205481565b3360009081526012602052604090205460ff16611cd65760405162461bcd60e51b815260040180806020018281038252602f81526020018061489b602f913960400191505060405180910390fd5b42600f6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611d3a8160405180606001604052806033815260200161481c6033913933600090815260136020526040902054919063ffffffff613bf716565b336000908152601360209081526040808320939093556001600160a01b0385168252600b90522054611d72908263ffffffff613b9d16565b6001600160a01b038084166000908152600b60209081526040808320949094556001905291822054611da692911683613c8e565b6001600160a01b038216600090815260116020526040902054611dcf908263ffffffff613b9d16565b6001600160a01b0383166000818152601160209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601960205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601b546001600160a01b03163314611ea25760405162461bcd60e51b815260040180806020018281038252602c8152602001806146d6602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600e6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b33600090815260166020526040902054611f76576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b336000908152601660205260409020544211611fc35760405162461bcd60e51b815260040180806020018281038252602281526020018061439c6022913960400191505060405180910390fd5b33600090815260146020908152604080832054601d546001600160a01b0316808552600584528285205483516318160ddd60e01b81529351929590949093612064936318160ddd92600480840193919291829003018186803b15801561202857600080fd5b505afa15801561203c573d6000803e3d6000fd5b505050506040513d602081101561205257600080fd5b50516119d5848663ffffffff613df716565b336000908152601560209081526040808320546001600160a01b0316808452601390925290912054919250908211156120b5576001600160a01b0381166000908152601360205260408120556120e0565b6001600160a01b0381166000908152601360205260409020546120de908363ffffffff613b7816565b505b601d546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561213457600080fd5b505af1158015612148573d6000803e3d6000fd5b505050506040513d602081101561215e57600080fd5b5050336000818152601460209081526040808320839055601582529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601b546001600160a01b031681565b6121f3426212750063ffffffff613b9d16565b336000818152601660209081526040808320949094556015815283822054601482529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611c6d3382613f8f565b6212750081565b6015602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526019602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6001600160a01b038116600090815260186020526040902054612347576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b03811660009081526018602052604090205442116123b3576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601d546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b81529151909461245e9390926318160ddd9260048083019392829003018186803b15801561240857600080fd5b505afa15801561241c573d6000803e3d6000fd5b505050506040513d602081101561243257600080fd5b50516001600160a01b0385166000908152601460205260409020546119d590859063ffffffff613df716565b336000908152601560209081526040808320546001600160a01b031683526013909152902054909150612497908263ffffffff613b9d16565b336000908152601560209081526040808320546001600160a01b031683526013909152902055505050565b60176020526000908152604090205481565b60004382106125145760405162461bcd60e51b815260040180806020018281038252602381526020018061475b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680612542576000915050611361565b6001600160a01b038416600090815260026020908152604080832063ffffffff6000198601811685529252909120541683106125b1576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050611361565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff168310156125ec576000915050611361565b600060001982015b8163ffffffff168163ffffffff1611156126a557600282820363ffffffff1604810361261e61432f565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612680576020015194506113619350505050565b805163ffffffff168711156126975781935061269e565b6001820392505b50506125f4565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601b546001600160a01b031633146127375760405162461bcd60e51b81526004018080602001828103825260328152602001806146a46032913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60166020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600a6020526040902054156128225760405162461bcd60e51b81526004018080602001828103825260228152602001806146826022913960400191505060405180910390fd5b612835426203f48063ffffffff613b9d16565b33600081815260076020908152604080832094909455600a9052919091208290556128619030836139e3565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601b546001600160a01b03163314612912576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601b54611c6d906001600160a01b03168261400f565b60006129353384846139e3565b50600192915050565b601b546001600160a01b031633146129875760405162461bcd60e51b815260040180806020018281038252602e8152602001806147a0602e913960400191505060405180910390fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601560205260409020546001600160a01b031615612a285760405162461bcd60e51b81526004018080602001828103825260428152602001806146006042913960600191505060405180910390fd5b601d54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050506040513d6020811015612aac57600080fd5b50503360009081526014602090815260408083208490556015909152902080546001600160a01b0319166001600160a01b038416179055612af04262015180613b9d565b336000908152601860209081526040808320939093556001600160a01b038516825260129052205460ff16158015612b3f57506001600160a01b03821660009081526017602052604090205442115b15612bed57601b546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612b9357600080fd5b505af1158015612ba7573d6000803e3d6000fd5b505050506040513d6020811015612bbd57600080fd5b50612bd39050426212750063ffffffff613b9d16565b6001600160a01b0383166000908152601760205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205460ff1681565b6060601a805480602002602001604051908101604052809291908181526020018280548015612ca657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612c88575b5050505050905090565b60186020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff1680612ced576000612d1f565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601d546001600160a01b031615612d6e5760405162461bcd60e51b81526004018080602001828103825260238152602001806148eb6023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015612dbd57600080fd5b505af1158015612dd1573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b158015612e4157600080fd5b505af1158015612e55573d6000803e3d6000fd5b505050506040513d6020811015612e6b57600080fd5b50612e819050306815af1d78b58c40000061400f565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b158015612f1c57600080fd5b505afa158015612f30573d6000803e3d6000fd5b505050506040513d6020811015612f4657600080fd5b505160008033612f5e4261070863ffffffff613b9d16565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b158015612ffb57600080fd5b505af115801561300f573d6000803e3d6000fd5b505050506040513d606081101561302557600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b15801561307257600080fd5b505afa158015613086573d6000803e3d6000fd5b505050506040513d602081101561309c57600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b15801561310057600080fd5b505afa158015613114573d6000803e3d6000fd5b505050506040513d602081101561312a57600080fd5b5051601d80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b6000604051808061464260409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66131b66140a5565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061444960349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa1580156132f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133465760405162461bcd60e51b81526004018080602001828103825260228152602001806148796022913960400191505060405180910390fd5b6001600160a01b038116600090815260066020526040902080546001810190915589146133ba576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b874211156133f95760405162461bcd60e51b81526004018080602001828103825260228152602001806147ce6022913960400191505060405180910390fd5b613403818b613f8f565b505050505b505050505050565b601b546001600160a01b031633146134595760405162461bcd60e51b815260040180806020018281038252602c8152602001806147f0602c913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600f6020526000908152604090205481565b6000604051808061464260409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66135316140a5565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061452d60499139604080519182900360490182206001600160a01b03808e16600081815260066020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa158015613699573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613701576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613760576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b874211156137b5576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60146020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600d6020526000908152604090205481565b60405180603461444982396034019050604051809103902081565b61271081565b601a818154811061389c57fe5b6000918252602090912001546001600160a01b0316905081565b60096020526000908152604090205481565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601c546001600160a01b031681565b601b546000906001600160a01b031633146139625760405162461bcd60e51b815260040180806020018281038252602c815260200180614576602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600e6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b600b6020526000908152604090205481565b60136020526000908152604090205481565b6001600160a01b038316613a285760405162461bcd60e51b81526004018080602001828103825260388152602001806147236038913960400191505060405180910390fd5b6001600160a01b038216613a6d5760405162461bcd60e51b81526004018080602001828103825260368152602001806145ca6036913960400191505060405180910390fd5b613ab081604051806060016040528060328152602001614347603291396001600160a01b038616600090815260056020526040902054919063ffffffff613bf716565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613b1c816040518060600160405280602c81526020016143f9602c91396001600160a01b038516600090815260056020526040902054919063ffffffff6140a916565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612d1f83836040518060600160405280602881526020016145a260289139613bf7565b600082820183811015612d1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115613c865760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c4b578181015183820152602001613c33565b50505050905090810190601f168015613c785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b0316836001600160a01b031614158015613cb05750600081115b15613df2576001600160a01b03831615613d63576001600160a01b03831660009081526003602052604081205463ffffffff169081613cf0576000613d22565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613d51846040518060600160405280602481526020016144b66024913984919063ffffffff613bf716565b9050613d5f86848484614107565b5050505b6001600160a01b03821615613df2576001600160a01b03821660009081526003602052604081205463ffffffff169081613d9e576000613dd0565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613de4828563ffffffff613b9d16565b905061340885848484614107565b505050565b600082613e0657506000611361565b82820282848281613e1357fe5b0414612d1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806147026021913960400191505060405180910390fd5b6000612d1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061426c565b6001600160a01b038216613ed75760405162461bcd60e51b81526004018080602001828103825260238152602001806144da6023913960400191505060405180910390fd5b613f1a81604051806060016040528060248152602001614425602491396001600160a01b038516600090815260056020526040902054919063ffffffff613bf716565b6001600160a01b03831660009081526005602052604081209190915554613f47908263ffffffff613b7816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600b845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4614009828483613c8e565b50505050565b600054614022908263ffffffff613b9d16565b60009081556001600160a01b03831681526005602052604090205461404d908263ffffffff613b9d16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b600083830182858210156140fe5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b50949350505050565b600061412b436040518060600160405280603081526020016144fd603091396142d1565b905060008463ffffffff1611801561417457506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b156141b1576001600160a01b038516600090815260026020908152604080832063ffffffff60001989011684529091529020600101829055614222565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836142bb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b5060008385816142c757fe5b0495945050505050565b60008164010000000084106143275760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a2646970667358221220ae6a79f109d6e66798b3b448dc39373e2304ba79b787b0a6e2ec5a540e05dcbb64736f6c63430006060033

Deployed Bytecode

0x60806040526004361061043c5760003560e01c80637724ff6811610234578063ba0bba401161012e578063e7a324dc116100b6578063f1896b541161007a578063f1896b5414611109578063f39c38a01461113c578063f75f9f7b14611151578063fe10d77414611184578063fe5ff468146111b75761043c565b8063e7a324dc14611023578063ec342ad014611038578063ec4515dd1461104d578063ef43e28114611077578063f1127ed8146110aa5761043c565b8063d454019d116100fd578063d454019d14610ef1578063d505accf14610f24578063dbd9426714610f82578063dd62ed3e14610fb5578063e326ac4314610ff05761043c565b8063ba0bba4014610e4d578063c1c1d21814610e55578063c3cda52014610e6a578063c5198abc14610ebe5761043c565b8063a0712d68116101bc578063aec758c011610180578063aec758c014610d16578063b0103b1a14610d4f578063b105e39f14610d82578063b24ae47714610de7578063b4b5ea5714610e1a5761043c565b8063a0712d6814610c38578063a9059cbb14610c62578063ab033ea914610c9b578063abbb247f14610cce578063ad5c464814610d015761043c565b806393f6c2ad1161020357806393f6c2ad14610b9c578063950a2ca214610bcf57806395d89b4114610be4578063985348bf14610bf95780639940686e14610c0e5761043c565b80637724ff6814610aca578063782d6fe114610afd5780637ecebe0014610b365780638071198914610b695761043c565b80633d1f0bb91161034557806359e9e255116102cd57806365119f721161029157806365119f72146109b25780636ba42aaa146109e55780636fcfff4514610a1857806370a0823114610a6457806375d2762914610a975761043c565b806359e9e2551461092b5780635aa6e675146109405780635bff0cd1146109555780635c19a95c1461096a578063603b4d141461099d5761043c565b80634b3fde21116103145780634b3fde211461086257806351b42b001461089b578063541bcb76146108b057806355ea6c47146108c5578063587cde1e146108f85761043c565b80633d1f0bb9146107bd57806342966c68146107f057806344d96e951461081a5780634a5c8de81461082f5761043c565b8063238efcbc116103c857806330adf81f1161039757806330adf81f14610702578063313ce5671461071757806336df7ea5146107425780633bbd64bc146107755780633ccfd60b146107a85761043c565b8063238efcbc1461064d57806323b872dd1461066257806327de9e32146106a5578063284cc0a9146106cf5761043c565b806318160ddd1161040f57806318160ddd146105685780631a6865021461058f5780631b44555e146105c05780631ff5f3da146105f357806320606b70146106385761043c565b806302fb4d851461044157806306fdde031461047c578063095ea7b3146105065780630f15f4c014610553575b600080fd5b34801561044d57600080fd5b5061047a6004803603604081101561046457600080fd5b506001600160a01b0381351690602001356111ea565b005b34801561048857600080fd5b506104916112de565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104cb5781810151838201526020016104b3565b50505050905090810190601f1680156104f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561051257600080fd5b5061053f6004803603604081101561052957600080fd5b506001600160a01b038135169060200135611300565b604080519115158252519081900360200190f35b34801561055f57600080fd5b5061047a611367565b34801561057457600080fd5b5061057d611589565b60408051918252519081900360200190f35b34801561059b57600080fd5b506105a461158f565b604080516001600160a01b039092168252519081900360200190f35b3480156105cc57600080fd5b5061057d600480360360208110156105e357600080fd5b50356001600160a01b031661159e565b3480156105ff57600080fd5b5061053f6004803603608081101561061657600080fd5b506001600160a01b0381351690602081013590604081013590606001356115b0565b34801561064457600080fd5b5061057d611651565b34801561065957600080fd5b5061047a61166d565b34801561066e57600080fd5b5061053f6004803603606081101561068557600080fd5b506001600160a01b038135811691602081013590911690604001356116da565b3480156106b157600080fd5b5061047a600480360360208110156106c857600080fd5b50356117c2565b3480156106db57600080fd5b5061047a600480360360208110156106f257600080fd5b50356001600160a01b03166118cb565b34801561070e57600080fd5b5061057d611a8c565b34801561072357600080fd5b5061072c611aa7565b6040805160ff9092168252519081900360200190f35b34801561074e57600080fd5b5061057d6004803603602081101561076557600080fd5b50356001600160a01b0316611aac565b34801561078157600080fd5b5061053f6004803603602081101561079857600080fd5b50356001600160a01b0316611abe565b3480156107b457600080fd5b5061047a611ad3565b3480156107c957600080fd5b5061053f600480360360208110156107e057600080fd5b50356001600160a01b0316611c4e565b3480156107fc57600080fd5b5061047a6004803603602081101561081357600080fd5b5035611c63565b34801561082657600080fd5b5061057d611c70565b34801561083b57600080fd5b5061057d6004803603602081101561085257600080fd5b50356001600160a01b0316611c76565b34801561086e57600080fd5b5061047a6004803603604081101561088557600080fd5b506001600160a01b038135169060200135611c88565b3480156108a757600080fd5b5061047a611e28565b3480156108bc57600080fd5b506105a4611e41565b3480156108d157600080fd5b5061047a600480360360208110156108e857600080fd5b50356001600160a01b0316611e59565b34801561090457600080fd5b506105a46004803603602081101561091b57600080fd5b50356001600160a01b0316611efa565b34801561093757600080fd5b5061047a611f15565b34801561094c57600080fd5b506105a46121d1565b34801561096157600080fd5b5061047a6121e0565b34801561097657600080fd5b5061047a6004803603602081101561098d57600080fd5b50356001600160a01b0316612260565b3480156109a957600080fd5b5061057d61226a565b3480156109be57600080fd5b506105a4600480360360208110156109d557600080fd5b50356001600160a01b0316612271565b3480156109f157600080fd5b5061053f60048036036020811015610a0857600080fd5b50356001600160a01b031661228c565b348015610a2457600080fd5b50610a4b60048036036020811015610a3b57600080fd5b50356001600160a01b03166122aa565b6040805163ffffffff9092168252519081900360200190f35b348015610a7057600080fd5b5061057d60048036036020811015610a8757600080fd5b50356001600160a01b03166122c2565b348015610aa357600080fd5b5061047a60048036036020811015610aba57600080fd5b50356001600160a01b03166122dd565b348015610ad657600080fd5b5061057d60048036036020811015610aed57600080fd5b50356001600160a01b03166124c2565b348015610b0957600080fd5b5061057d60048036036040811015610b2057600080fd5b506001600160a01b0381351690602001356124d4565b348015610b4257600080fd5b5061057d60048036036020811015610b5957600080fd5b50356001600160a01b03166126dc565b348015610b7557600080fd5b5061047a60048036036020811015610b8c57600080fd5b50356001600160a01b03166126ee565b348015610ba857600080fd5b5061057d60048036036020811015610bbf57600080fd5b50356001600160a01b0316612798565b348015610bdb57600080fd5b5061057d6127aa565b348015610bf057600080fd5b506104916127b0565b348015610c0557600080fd5b5061057d6127cf565b348015610c1a57600080fd5b5061047a60048036036020811015610c3157600080fd5b50356127d6565b348015610c4457600080fd5b5061047a60048036036020811015610c5b57600080fd5b50356128b3565b348015610c6e57600080fd5b5061053f60048036036040811015610c8557600080fd5b506001600160a01b038135169060200135612928565b348015610ca757600080fd5b5061047a60048036036020811015610cbe57600080fd5b50356001600160a01b031661293e565b348015610cda57600080fd5b5061057d60048036036020811015610cf157600080fd5b50356001600160a01b03166129a9565b348015610d0d57600080fd5b506105a46129bb565b348015610d2257600080fd5b5061047a60048036036040811015610d3957600080fd5b506001600160a01b0381351690602001356129d3565b348015610d5b57600080fd5b5061053f60048036036020811015610d7257600080fd5b50356001600160a01b0316612c39565b348015610d8e57600080fd5b50610d97612c4e565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610dd3578181015183820152602001610dbb565b505050509050019250505060405180910390f35b348015610df357600080fd5b5061057d60048036036020811015610e0a57600080fd5b50356001600160a01b0316612cb0565b348015610e2657600080fd5b5061057d60048036036020811015610e3d57600080fd5b50356001600160a01b0316612cc2565b61047a612d26565b348015610e6157600080fd5b5061057d61314d565b348015610e7657600080fd5b5061047a600480360360c0811015610e8d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135613154565b348015610eca57600080fd5b5061047a60048036036020811015610ee157600080fd5b50356001600160a01b0316613410565b348015610efd57600080fd5b5061057d60048036036020811015610f1457600080fd5b50356001600160a01b03166134bd565b348015610f3057600080fd5b5061047a600480360360e0811015610f4757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356134cf565b348015610f8e57600080fd5b5061057d60048036036020811015610fa557600080fd5b50356001600160a01b031661381f565b348015610fc157600080fd5b5061057d60048036036040811015610fd857600080fd5b506001600160a01b0381358116916020013516613831565b348015610ffc57600080fd5b5061057d6004803603602081101561101357600080fd5b50356001600160a01b031661385c565b34801561102f57600080fd5b5061057d61386e565b34801561104457600080fd5b5061057d613889565b34801561105957600080fd5b506105a46004803603602081101561107057600080fd5b503561388f565b34801561108357600080fd5b5061057d6004803603602081101561109a57600080fd5b50356001600160a01b03166138b6565b3480156110b657600080fd5b506110e9600480360360408110156110cd57600080fd5b5080356001600160a01b0316906020013563ffffffff166138c8565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561111557600080fd5b5061057d6004803603602081101561112c57600080fd5b50356001600160a01b03166138f5565b34801561114857600080fd5b506105a4613907565b34801561115d57600080fd5b5061057d6004803603602081101561117457600080fd5b50356001600160a01b0316613916565b34801561119057600080fd5b5061057d600480360360208110156111a757600080fd5b50356001600160a01b03166139bf565b3480156111c357600080fd5b5061057d600480360360208110156111da57600080fd5b50356001600160a01b03166139d1565b601b546001600160a01b031633146112335760405162461bcd60e51b815260040180806020018281038252602a81526020018061484f602a913960400191505060405180910390fd5b601b5461124b9030906001600160a01b0316836139e3565b6001600160a01b0382166000908152600b6020526040902054611274908263ffffffff613b7816565b6001600160a01b0383166000818152600b6020908152604080832094909455600e815290839020805460ff191690558251438152908101849052825133937ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b6040518060400160405280600681526020016525b2b2b819b960d11b81525081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b336000908152600760205260409020546113c8576040805162461bcd60e51b815260206004820152601c60248201527f4b65657033723a3a61637469766174653a20626f6e6420666972737400000000604482015290519081900360640190fd5b33600090815260076020526040902054421161142b576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a61637469766174653a207374696c6c20626f6e64696e6700604482015290519081900360640190fd5b3360009081526019602052604090205460ff1661145557336000908152600d602052604090204290555b336000908152601960209081526040808320805460ff19166001179055600a909152902054600c5461148c9163ffffffff613b9d16565b600c55336000908152600a6020908152604080832054600b909252909120546114ba9163ffffffff613b9d16565b336000908152600b6020908152604080832093909355600a8152828220829055600f9052205461153657336000818152600f60205260408120429055601a805460018101825591527f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e0180546001600160a01b03191690911790555b336000818152600b602090815260409182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a2565b60005481565b601d546001600160a01b031681565b60116020526000908152604090205481565b6001600160a01b03841660009081526019602052604081205460ff1680156115f057506001600160a01b0385166000908152600b60205260409020548411155b801561161357506001600160a01b03851660009081526011602052604090205483105b801561164857506001600160a01b0385166000908152600d6020526040902054829061164690429063ffffffff613b7816565b115b95945050505050565b6040518080614642604091396040019050604051809103902081565b601c546001600160a01b031633146116b65760405162461bcd60e51b815260040180806020018281038252603b8152602001806143be603b913960400191505060405180910390fd5b601c54601b80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526004602090815260408083203380855292528220549192909190821480159061171457506000198114155b156117ab5760006117468560405180606001604052806039815260200161447d6039913984919063ffffffff613bf716565b6001600160a01b0380891660008181526004602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6117b68686866139e3565b50600195945050505050565b6117d5426212750063ffffffff613b9d16565b33600090815260086020908152604080832093909355600b90522054611801908263ffffffff613b7816565b336000908152600b602090815260408083209390935560099052205461182d908263ffffffff613b9d16565b33600090815260096020526040902055600c54611850908263ffffffff613b7816565b600c5533600090815260016020526040812054611879916001600160a01b039091169083613c8e565b336000818152600860209081526040918290205482514381529182015280820184905290517f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e9181900360600190a250565b6001600160a01b03811660009081526019602052604090205460ff166119225760405162461bcd60e51b81526004018080602001828103825260238152602001806143796023913960400191505060405180910390fd5b6001600160a01b0381166000908152600f602052604090205442906119509062093a8063ffffffff613b9d16565b106119a2576040805162461bcd60e51b815260206004820152601960248201527f4b65657033723a3a646f776e3a206b6565706572207361666500000000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600b60205260408120546119e190612710906119d5906101f463ffffffff613df716565b9063ffffffff613e5016565b6001600160a01b0383166000908152600b6020526040902054909150611a0d908263ffffffff613b7816565b6001600160a01b0383166000908152600b6020526040902055611a313033836139e3565b6001600160a01b0382166000818152600f6020908152604091829020429055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050565b60405180604961452d82396049019050604051809103902081565b601281565b60106020526000908152604090205481565b60196020526000908152604090205460ff1681565b33600090815260086020526040902054611b34576040805162461bcd60e51b815260206004820152601e60248201527f4b65657033723a3a77697468647261773a20756e626f6e642066697273740000604482015290519081900360640190fd5b336000908152600860205260409020544211611b815760405162461bcd60e51b81526004018080602001828103825260218152602001806148ca6021913960400191505060405180910390fd5b336000908152600e602052604090205460ff1615611bd05760405162461bcd60e51b815260040180806020018281038252602281526020018061477e6022913960400191505060405180910390fd5b33600081815260096020526040902054611beb9130916139e3565b3360008181526009602090815260409182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a233600090815260096020526040812055565b60126020526000908152604090205460ff1681565b611c6d3382613e92565b50565b600c5481565b600a6020526000908152604090205481565b3360009081526012602052604090205460ff16611cd65760405162461bcd60e51b815260040180806020018281038252602f81526020018061489b602f913960400191505060405180910390fd5b42600f6000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550611d3a8160405180606001604052806033815260200161481c6033913933600090815260136020526040902054919063ffffffff613bf716565b336000908152601360209081526040808320939093556001600160a01b0385168252600b90522054611d72908263ffffffff613b9d16565b6001600160a01b038084166000908152600b60209081526040808320949094556001905291822054611da692911683613c8e565b6001600160a01b038216600090815260116020526040902054611dcf908263ffffffff613b9d16565b6001600160a01b0383166000818152601160209081526040918290209390935580514381529051919233927f898d34a85997d8833f2692e67bf5575e817ed9469c085f7e2f43a65c540d47269281900390910190a35050565b336000908152601960205260409020805460ff19169055565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b601b546001600160a01b03163314611ea25760405162461bcd60e51b815260040180806020018281038252602c8152602001806146d6602c913960400191505060405180910390fd5b6001600160a01b0381166000818152600e6020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6001602052600090815260409020546001600160a01b031681565b33600090815260166020526040902054611f76576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a72656d6f76654a6f623a20756e626f6e6420666972737400604482015290519081900360640190fd5b336000908152601660205260409020544211611fc35760405162461bcd60e51b815260040180806020018281038252602281526020018061439c6022913960400191505060405180910390fd5b33600090815260146020908152604080832054601d546001600160a01b0316808552600584528285205483516318160ddd60e01b81529351929590949093612064936318160ddd92600480840193919291829003018186803b15801561202857600080fd5b505afa15801561203c573d6000803e3d6000fd5b505050506040513d602081101561205257600080fd5b50516119d5848663ffffffff613df716565b336000908152601560209081526040808320546001600160a01b0316808452601390925290912054919250908211156120b5576001600160a01b0381166000908152601360205260408120556120e0565b6001600160a01b0381166000908152601360205260409020546120de908363ffffffff613b7816565b505b601d546040805163a9059cbb60e01b81523360048201526024810187905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561213457600080fd5b505af1158015612148573d6000803e3d6000fd5b505050506040513d602081101561215e57600080fd5b5050336000818152601460209081526040808320839055601582529182902080546001600160a01b0319169055815143815290810187905281516001600160a01b038516927f0a23f55887f0577cc8e106ed9238b0679e1dab42f858d1a07b84216d7d2d38d5928290030190a350505050565b601b546001600160a01b031681565b6121f3426212750063ffffffff613b9d16565b336000818152601660209081526040808320949094556015815283822054601482529184902054845143815291820152835192936001600160a01b03909216927f91d917fcb74a8bc2e2f731fd59f937ef65391bbe469998d8c144fe6298fd495f929181900390910190a3565b611c6d3382613f8f565b6212750081565b6015602052600090815260409020546001600160a01b031681565b6001600160a01b031660009081526019602052604090205460ff1690565b60036020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526005602052604090205490565b6001600160a01b038116600090815260186020526040902054612347576040805162461bcd60e51b815260206004820152601f60248201527f4b65657033723a3a6372656469743a207375626d69744a6f6220666972737400604482015290519081900360640190fd5b6001600160a01b03811660009081526018602052604090205442116123b3576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6372656469743a207374696c6c20626f6e64696e67000000604482015290519081900360640190fd5b601d546001600160a01b031660008181526005602090815260408083205481516318160ddd60e01b81529151909461245e9390926318160ddd9260048083019392829003018186803b15801561240857600080fd5b505afa15801561241c573d6000803e3d6000fd5b505050506040513d602081101561243257600080fd5b50516001600160a01b0385166000908152601460205260409020546119d590859063ffffffff613df716565b336000908152601560209081526040808320546001600160a01b031683526013909152902054909150612497908263ffffffff613b9d16565b336000908152601560209081526040808320546001600160a01b031683526013909152902055505050565b60176020526000908152604090205481565b60004382106125145760405162461bcd60e51b815260040180806020018281038252602381526020018061475b6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205463ffffffff1680612542576000915050611361565b6001600160a01b038416600090815260026020908152604080832063ffffffff6000198601811685529252909120541683106125b1576001600160a01b03841660009081526002602090815260408083206000199490940163ffffffff16835292905220600101549050611361565b6001600160a01b038416600090815260026020908152604080832083805290915290205463ffffffff168310156125ec576000915050611361565b600060001982015b8163ffffffff168163ffffffff1611156126a557600282820363ffffffff1604810361261e61432f565b506001600160a01b038716600090815260026020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415612680576020015194506113619350505050565b805163ffffffff168711156126975781935061269e565b6001820392505b50506125f4565b506001600160a01b038516600090815260026020908152604080832063ffffffff9094168352929052206001015491505092915050565b60066020526000908152604090205481565b601b546001600160a01b031633146127375760405162461bcd60e51b81526004018080602001828103825260328152602001806146a46032913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b60166020526000908152604090205481565b6101f481565b6040518060400160405280600381526020016225a82960e91b81525081565b62093a8081565b336000908152600a6020526040902054156128225760405162461bcd60e51b81526004018080602001828103825260228152602001806146826022913960400191505060405180910390fd5b612835426203f48063ffffffff613b9d16565b33600081815260076020908152604080832094909455600a9052919091208290556128619030836139e3565b336000818152600760209081526040918290205482514381529182015280820184905290517fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae49181900360600190a250565b601b546001600160a01b03163314612912576040805162461bcd60e51b815260206004820152601d60248201527f4b65657033723a3a6d696e743a20676f7665726e616e6365206f6e6c79000000604482015290519081900360640190fd5b601b54611c6d906001600160a01b03168261400f565b60006129353384846139e3565b50600192915050565b601b546001600160a01b031633146129875760405162461bcd60e51b815260040180806020018281038252602e8152602001806147a0602e913960400191505060405180910390fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60086020526000908152604090205481565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b336000908152601560205260409020546001600160a01b031615612a285760405162461bcd60e51b81526004018080602001828103825260428152602001806146006042913960600191505060405180910390fd5b601d54604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050506040513d6020811015612aac57600080fd5b50503360009081526014602090815260408083208490556015909152902080546001600160a01b0319166001600160a01b038416179055612af04262015180613b9d565b336000908152601860209081526040808320939093556001600160a01b038516825260129052205460ff16158015612b3f57506001600160a01b03821660009081526017602052604090205442115b15612bed57601b546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb9160248083019260209291908290030181600087803b158015612b9357600080fd5b505af1158015612ba7573d6000803e3d6000fd5b505050506040513d6020811015612bbd57600080fd5b50612bd39050426212750063ffffffff613b9d16565b6001600160a01b0383166000908152601760205260409020555b6040805143815260208101839052815133926001600160a01b038616927fae74eca2068752f1164f9ef320d0b01c5a658912e166358797d892e9997039ba929081900390910190a35050565b600e6020526000908152604090205460ff1681565b6060601a805480602002602001604051908101604052809291908181526020018280548015612ca657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612c88575b5050505050905090565b60186020526000908152604090205481565b6001600160a01b03811660009081526003602052604081205463ffffffff1680612ced576000612d1f565b6001600160a01b038316600090815260026020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b601d546001600160a01b031615612d6e5760405162461bcd60e51b81526004018080602001828103825260238152602001806148eb6023913960400191505060405180910390fd5b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015612dbd57600080fd5b505af1158015612dd1573d6000803e3d6000fd5b50506040805163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d6004820152346024820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945063095ea7b39350604480830193506020928290030181600087803b158015612e4157600080fd5b505af1158015612e55573d6000803e3d6000fd5b505050506040513d6020811015612e6b57600080fd5b50612e819050306815af1d78b58c40000061400f565b306000818152600560208181526040808420546004808452828620737a250d5630b4cf539739df2c5dacb4c659f2488d8088529085528387208390559587905293835281516370a0823160e01b81529384018690529051939463e8e3370094909373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29384926370a08231926024808201939291829003018186803b158015612f1c57600080fd5b505afa158015612f30573d6000803e3d6000fd5b505050506040513d6020811015612f4657600080fd5b505160008033612f5e4261070863ffffffff613b9d16565b6040518963ffffffff1660e01b815260040180896001600160a01b03166001600160a01b03168152602001886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b158015612ffb57600080fd5b505af115801561300f573d6000803e3d6000fd5b505050506040513d606081101561302557600080fd5b50506040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a0155916004808301926020929190829003018186803b15801561307257600080fd5b505afa158015613086573d6000803e3d6000fd5b505050506040513d602081101561309c57600080fd5b50516040805163e6a4390560e01b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2602482015290516001600160a01b039092169163e6a4390591604480820192602092909190829003018186803b15801561310057600080fd5b505afa158015613114573d6000803e3d6000fd5b505050506040513d602081101561312a57600080fd5b5051601d80546001600160a01b0319166001600160a01b03909216919091179055565b6203f48081565b6000604051808061464260409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66131b66140a5565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061444960349139604080519182900360340182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa1580156132f4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133465760405162461bcd60e51b81526004018080602001828103825260228152602001806148796022913960400191505060405180910390fd5b6001600160a01b038116600090815260066020526040902080546001810190915589146133ba576040805162461bcd60e51b815260206004820152601e60248201527f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63650000604482015290519081900360640190fd5b874211156133f95760405162461bcd60e51b81526004018080602001828103825260228152602001806147ce6022913960400191505060405180910390fd5b613403818b613f8f565b505050505b505050505050565b601b546001600160a01b031633146134595760405162461bcd60e51b815260040180806020018281038252602c8152602001806147f0602c913960400191505060405180910390fd5b6001600160a01b038116600081815260126020908152604091829020805460ff191660011790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600f6020526000908152604090205481565b6000604051808061464260409139604080519182900381018220828201909152600682526525b2b2b819b960d11b60209092019190915290507fd314376a3d4ce4f7c8f53d5c35caff5f7e61ac34503e000f4a763ea3b154dcf66135316140a5565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b031681526020019450505050506040516020818303038152906040528051906020012090506000604051808061452d60499139604080519182900360490182206001600160a01b03808e16600081815260066020908152858220805460018082019092558289019690965287870193909352928f166060870152608086018e905260a086019390935260c08086018d90528451808703909101815260e08601855280519083012061190160f01b610100870152610102860189905261012280870182905285518088039091018152610142870180875281519185019190912090859052610162870180875281905260ff8d166101828801526101a287018c90526101c287018b90529451909750939550919391926101e280840193601f198301929081900390910190855afa158015613699573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613701576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a20696e76616c6964207369676e61747572650000000000604482015290519081900360640190fd5b8a6001600160a01b0316816001600160a01b031614613760576040805162461bcd60e51b81526020600482015260166024820152750e8e9c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960521b604482015290519081900360640190fd5b874211156137b5576040805162461bcd60e51b815260206004820152601b60248201527f3a3a7065726d69743a207369676e617475726520657870697265640000000000604482015290519081900360640190fd5b6001600160a01b03808c166000818152600460209081526040808320948f16808452948252918290208d905581518d815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35050505050505050505050565b60146020526000908152604090205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600d6020526000908152604090205481565b60405180603461444982396034019050604051809103902081565b61271081565b601a818154811061389c57fe5b6000918252602090912001546001600160a01b0316905081565b60096020526000908152604090205481565b60026020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60076020526000908152604090205481565b601c546001600160a01b031681565b601b546000906001600160a01b031633146139625760405162461bcd60e51b815260040180806020018281038252602c815260200180614576602c913960400191505060405180910390fd5b6001600160a01b0382166000818152600e6020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a2919050565b600b6020526000908152604090205481565b60136020526000908152604090205481565b6001600160a01b038316613a285760405162461bcd60e51b81526004018080602001828103825260388152602001806147236038913960400191505060405180910390fd5b6001600160a01b038216613a6d5760405162461bcd60e51b81526004018080602001828103825260368152602001806145ca6036913960400191505060405180910390fd5b613ab081604051806060016040528060328152602001614347603291396001600160a01b038616600090815260056020526040902054919063ffffffff613bf716565b60056000856001600160a01b03166001600160a01b0316815260200190815260200160002081905550613b1c816040518060600160405280602c81526020016143f9602c91396001600160a01b038516600090815260056020526040902054919063ffffffff6140a916565b6001600160a01b0380841660008181526005602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000612d1f83836040518060600160405280602881526020016145a260289139613bf7565b600082820183811015612d1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115613c865760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613c4b578181015183820152602001613c33565b50505050905090810190601f168015613c785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b0316836001600160a01b031614158015613cb05750600081115b15613df2576001600160a01b03831615613d63576001600160a01b03831660009081526003602052604081205463ffffffff169081613cf0576000613d22565b6001600160a01b038516600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613d51846040518060600160405280602481526020016144b66024913984919063ffffffff613bf716565b9050613d5f86848484614107565b5050505b6001600160a01b03821615613df2576001600160a01b03821660009081526003602052604081205463ffffffff169081613d9e576000613dd0565b6001600160a01b038416600090815260026020908152604080832063ffffffff60001987011684529091529020600101545b90506000613de4828563ffffffff613b9d16565b905061340885848484614107565b505050565b600082613e0657506000611361565b82820282848281613e1357fe5b0414612d1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806147026021913960400191505060405180910390fd5b6000612d1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061426c565b6001600160a01b038216613ed75760405162461bcd60e51b81526004018080602001828103825260238152602001806144da6023913960400191505060405180910390fd5b613f1a81604051806060016040528060248152602001614425602491396001600160a01b038516600090815260056020526040902054919063ffffffff613bf716565b6001600160a01b03831660009081526005602052604081209190915554613f47908263ffffffff613b7816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160a01b0380831660008181526001602081815260408084208054600b845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4614009828483613c8e565b50505050565b600054614022908263ffffffff613b9d16565b60009081556001600160a01b03831681526005602052604090205461404d908263ffffffff613b9d16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b600083830182858210156140fe5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b50949350505050565b600061412b436040518060600160405280603081526020016144fd603091396142d1565b905060008463ffffffff1611801561417457506001600160a01b038516600090815260026020908152604080832063ffffffff6000198901811685529252909120548282169116145b156141b1576001600160a01b038516600090815260026020908152604080832063ffffffff60001989011684529091529020600101829055614222565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600284528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260039092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836142bb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b5060008385816142c757fe5b0495945050505050565b60008164010000000084106143275760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613c4b578181015183820152602001613c33565b509192915050565b60408051808201909152600080825260208201529056fe3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654b65657033723a3a646f776e3a206b6565706572206e6f7420726567697374657265644b65657033723a3a72656d6f76654a6f623a207374696c6c20756e626f6e64696e674b65657033723a3a616363657074476f7665726e616e63653a206f6e6c792070656e64696e67476f7665726e616e63652063616e206163636570743a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77733a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74206e6f6e63652c75696e7420657870697279293a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77733a3a5f6275726e3a206275726e2066726f6d20746865207a65726f20616464726573733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e742076616c75652c75696e74206e6f6e63652c75696e7420646561646c696e65294b65657033723a3a646973707574653a206f6e6c7920676f7665726e616e63652063616e2064697370757465556e696c6f616e3a3a536166654d6174683a207375627472616374696f6e20756e646572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573734b65657033723a3a7375626d69744a6f623a206c697175696469747920616c72656164792070726f76696465642c20706c656173652072656d6f7665206669727374454950373132446f6d61696e28737472696e67206e616d652c75696e7420636861696e49642c6164647265737320766572696679696e67436f6e7472616374294b65657033723a3a626f6e643a2063757272656e742070656e64696e6720626f6e644b65657033723a3a72656d6f76654a6f623a206f6e6c7920676f7665726e616e63652063616e2072656d6f7665206a6f62734b65657033723a3a7265736f6c76653a206f6e6c7920676f7665726e616e63652063616e207265736f6c7665536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f773a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573733a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b65657033723a3a77697468647261773a2070656e64696e672064697370757465734b65657033723a3a736574476f7665726e616e63653a206f6e6c7920676f7665726e616e63652063616e207365743a3a64656c656761746542795369673a207369676e617475726520657870697265644b65657033723a3a6164644a6f623a206f6e6c7920676f7665726e616e63652063616e20616464206a6f62734b65657033723a3a776f726b526563656970743a20696e7375666669656e742066756e647320746f20706179206b65657065724b65657033723a3a736c6173683a206f6e6c7920676f7665726e616e63652063616e207265736f6c76653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b65657033723a3a776f726b526563656970743a206f6e6c79206a6f62732063616e20617070726f766520776f726b4b65657033723a3a77697468647261773a207374696c6c20756e626f6e64696e674b65657033723a3a73657475703a206b656570337220616c7265616479207365747570a2646970667358221220ae6a79f109d6e66798b3b448dc39373e2304ba79b787b0a6e2ec5a540e05dcbb64736f6c63430006060033

Deployed Bytecode Sourcemap

7742:29818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;32102:370:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32102:370:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;32102:370:0;;;;;;;;:::i;:::-;;8117:38;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8117:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8117:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33751:205;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33751:205:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33751:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28816:727;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28816:727:0;;;:::i;8415:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8415:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;20407:28;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20407:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;20407:28:0;;;;;;;;;;;;;;19183:45;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19183:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19183:45:0;-1:-1:-1;;;;;19183:45:0;;:::i;27853:299::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27853:299:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;27853:299:0;;;;;;;;;;;;;;;;;;:::i;9030:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9030:119:0;;;:::i;27127:200::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27127:200:0;;;:::i;36297:571::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36297:571:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;36297:571:0;;;;;;;;;;;;;;;;;:::i;29876:444::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29876:444:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29876:444:0;;:::i;31036:488::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31036:488:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31036:488:0;-1:-1:-1;;;;;31036:488:0;;:::i;9444:128::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9444:128:0;;;:::i;8316:35::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8316:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19078:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19078:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19078:36:0;-1:-1:-1;;;;;19078:36:0;;:::i;20034:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20034:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20034:39:0;-1:-1:-1;;;;;20034:39:0;;:::i;30406:512::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30406:512:0;;;:::i;19302:36::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19302:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19302:36:0;-1:-1:-1;;;;;19302:36:0;;:::i;24374:80::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24374:80:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24374:80:0;;:::i;18660:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18660:27:0;;;:::i;18456:44::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18456:44:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18456:44:0;-1:-1:-1;;;;;18456:44:0;;:::i;25303:551::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25303:551:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25303:551:0;;;;;;;;:::i;29655:77::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29655:77:0;;;:::i;7977:81::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7977:81:0;;;:::i;32607:229::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32607:229:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32607:229:0;-1:-1:-1;;;;;32607:229:0;;:::i;8516:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8516:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8516:45:0;-1:-1:-1;;;;;8516:45:0;;:::i;23206:849::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23206:849:0;;;:::i;20263:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20263:25:0;;;:::i;22891:226::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22891:226:0;;;:::i;10381:102::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10381:102:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10381:102:0;-1:-1:-1;;;;;10381:102:0;;:::i;17802:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17802:37:0;;;:::i;19645:52::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19645:52:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19645:52:0;-1:-1:-1;;;;;19645:52:0;;:::i;27518:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27518:104:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27518:104:0;-1:-1:-1;;;;;27518:104:0;;:::i;8783:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8783:49:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8783:49:0;-1:-1:-1;;;;;8783:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;35474:108;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35474:108:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35474:108:0;-1:-1:-1;;;;;35474:108:0;;:::i;22316:491::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22316:491:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22316:491:0;-1:-1:-1;;;;;22316:491:0;;:::i;19839:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19839:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19839:48:0;-1:-1:-1;;;;;19839:48:0;;:::i;12546:1212::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;12546:1212:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12546:1212:0;;;;;;;;:::i;9655:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9655:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9655:39:0;-1:-1:-1;;;;;9655:39:0;;:::i;26406:232::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26406:232:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26406:232:0;-1:-1:-1;;;;;26406:232:0;;:::i;19746:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19746:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19746:50:0;-1:-1:-1;;;;;19746:50:0;;:::i;18005:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18005:40:0;;;:::i;8216:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8216:37:0;;;:::i;17908:38::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17908:38:0;;;:::i;28237:368::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28237:368:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28237:368:0;;:::i;24209:157::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24209:157:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;24209:157:0;;:::i;35843:147::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35843:147:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;35843:147:0;;;;;;;;:::i;26803:197::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26803:197:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26803:197:0;-1:-1:-1;;;;;26803:197:0;;:::i;18247:42::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18247:42:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18247:42:0;-1:-1:-1;;;;;18247:42:0;;:::i;7849:78::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;7849:78:0;;;:::i;21503:664::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21503:664:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21503:664:0;;;;;;;;:::i;18861:40::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18861:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18861:40:0;-1:-1:-1;;;;;18861:40:0;;:::i;28613:99::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28613:99:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28613:99:0;;;;;;;;;;;;;;;;;19932:48;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19932:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19932:48:0;-1:-1:-1;;;;;19932:48:0;;:::i;11895:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11895:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11895:220:0;-1:-1:-1;;;;;11895:220:0;;:::i;20595:654::-;;;:::i;17690:34::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17690:34:0;;;:::i;10917:777::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10917:777:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;10917:777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26015:220::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26015:220:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26015:220:0;-1:-1:-1;;;;;26015:220:0;;:::i;18966:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18966:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18966:39:0;-1:-1:-1;;;;;18966:39:0;;:::i;34443:828::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34443:828:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;34443:828:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19505:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19505:50:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19505:50:0;-1:-1:-1;;;;;19505:50:0;;:::i;33140:136::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33140:136:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;33140:136:0;;;;;;;;;;:::i;18753:41::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18753:41:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18753:41:0;-1:-1:-1;;;;;18753:41:0;;:::i;9243:111::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9243:111:0;;;:::i;18052:33::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18052:33:0;;;:::i;20163:27::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20163:27:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20163:27:0;;:::i;18342:48::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18342:48:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18342:48:0;-1:-1:-1;;;;;18342:48:0;;:::i;8644:70::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8644:70:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8644:70:0;;-1:-1:-1;;;;;8644:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;18146:40;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18146:40:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18146:40:0;-1:-1:-1;;;;;18146:40:0;;:::i;20295:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20295:32:0;;;:::i;31668:242::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31668:242:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31668:242:0;-1:-1:-1;;;;;31668:242:0;;:::i;18560:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18560:37:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18560:37:0;-1:-1:-1;;;;;18560:37:0;;:::i;19401:39::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19401:39:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19401:39:0;-1:-1:-1;;;;;19401:39:0;;:::i;32102:370::-;32188:10;;-1:-1:-1;;;;;32188:10:0;32174;:24;32166:79;;;;-1:-1:-1;;;32166:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32287:10;;32256:50;;32280:4;;-1:-1:-1;;;;;32287:10:0;32299:6;32256:15;:50::i;:::-;-1:-1:-1;;;;;32333:13:0;;;;;;:5;:13;;;;;;:25;;32351:6;32333:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;32317:13:0;;;;;;:5;:13;;;;;;;;:41;;;;32369:8;:16;;;;;;:24;;-1:-1:-1;;32369:24:0;;;32409:55;;32443:12;32409:55;;;;;;;;;;32431:10;;32409:55;;;;;;;;32102:370;;:::o;8117:38::-;;;;;;;;;;;;;;-1:-1:-1;;;8117:38:0;;;;:::o;33751:205::-;33842:10;33814:4;33831:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;33831:31:0;;;;;;;;;;;:40;;;33889:37;;;;;;;33814:4;;33831:31;;33842:10;;33889:37;;;;;;;;-1:-1:-1;33944:4:0;33751:205;;;;;:::o;28816:727::-;28873:10;28864:20;;;;:8;:20;;;;;;28856:66;;;;;-1:-1:-1;;;28856:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28950:10;28941:20;;;;:8;:20;;;;;;28964:3;-1:-1:-1;28933:70:0;;;;;-1:-1:-1;;;28933:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29027:10;29019:19;;;;:7;:19;;;;;;;;29014:78;;29063:10;29053:21;;;;:9;:21;;;;;29077:3;29053:27;;29014:78;29110:10;29102:19;;;;:7;:19;;;;;;;;:26;;-1:-1:-1;;29102:26:0;29124:4;29102:26;;;29169:12;:24;;;;;;29153:11;;:41;;;:15;:41;:::i;:::-;29139:11;:55;29260:10;29247:24;;;;:12;:24;;;;;;;;;29225:5;:17;;;;;;;:47;;;:21;:47;:::i;:::-;29211:10;29205:17;;;;:5;:17;;;;;;;;:67;;;;29283:12;:24;;;;;:28;;;29326:7;:19;;;;29322:124;;29375:10;29367:19;;;;:7;:19;;;;;29389:3;29367:25;;29407:10;27::-1;;39:1;23:18;;45:23;;29407:27:0;;;;;;-1:-1:-1;;;;;;29407:27:0;;;;;;29322:124;29474:10;29517:17;;;;:5;:17;;;;;;;;;;29461:74;;29486:12;29461:74;;29500:15;29461:74;;;;;;;;;;;;;;;;;;;;;;28816:727::o;8415:27::-;;;;:::o;20407:28::-;;;-1:-1:-1;;;;;20407:28:0;;:::o;19183:45::-;;;;;;;;;;;;;:::o;27853:299::-;-1:-1:-1;;;;;27977:15:0;;27953:4;27977:15;;;:7;:15;;;;;;;;:60;;;;-1:-1:-1;;;;;;28013:13:0;;;;;;:5;:13;;;;;;:24;-1:-1:-1;28013:24:0;27977:60;:114;;;;-1:-1:-1;;;;;;28058:21:0;;;;;;:13;:21;;;;;;:33;-1:-1:-1;27977:114:0;:167;;;;-1:-1:-1;;;;;;28120:17:0;;;;;;:9;:17;;;;;;28141:3;;28112:26;;:3;;:26;:7;:26;:::i;:::-;:32;27977:167;27970:174;27853:299;-1:-1:-1;;;;;27853:299:0:o;9030:119::-;9072:77;;;;;;;;;;;;;;;;;;;9030:119;:::o;27127:200::-;27197:17;;-1:-1:-1;;;;;27197:17:0;27183:10;:31;27175:103;;;;-1:-1:-1;;;27175:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27302:17;;27289:10;:30;;-1:-1:-1;;;;;;27289:30:0;-1:-1:-1;;;;;27302:17:0;;;27289:30;;;;;;27127:200::o;36297:571::-;-1:-1:-1;;;;;36456:15:0;;36376:4;36456:15;;;:10;:15;;;;;;;;36411:10;36456:24;;;;;;;;36376:4;;36411:10;;36456:24;36497:14;;;;;:46;;;-1:-1:-1;;36515:16:0;:28;;36497:46;36493:300;;;36560:17;36580:89;36601:6;36580:89;;;;;;;;;;;;;;;;;:16;;:89;;:20;:89;:::i;:::-;-1:-1:-1;;;;;36684:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;36745:36;;;;;;;36560:109;;-1:-1:-1;36684:24:0;;:15;;36745:36;;;;;;;;;36493:300;;36805:33;36821:3;36826;36831:6;36805:15;:33::i;:::-;-1:-1:-1;36856:4:0;;36297:571;-1:-1:-1;;;;;36297:571:0:o;29876:444::-;29950:15;:3;17832:7;29950:15;:7;:15;:::i;:::-;29936:10;29925:22;;;;:10;:22;;;;;;;;:40;;;;29996:5;:17;;;;:29;;30018:6;29996:29;:21;:29;:::i;:::-;29982:10;29976:17;;;;:5;:17;;;;;;;;:49;;;;30067:16;:28;;;;:40;;30100:6;30067:40;:32;:40;:::i;:::-;30053:10;30036:28;;;;:16;:28;;;;;:71;30132:11;;:23;;30148:6;30132:23;:15;:23;:::i;:::-;30118:11;:37;30191:10;30181:21;;;;:9;:21;;;;;;30166:57;;-1:-1:-1;;;;;30181:21:0;;;;30216:6;30166:14;:57::i;:::-;30255:10;30281:22;;;;:10;:22;;;;;;;;;;30239:73;;30267:12;30239:73;;;;;;;;;;;;;;;;;;;;;;;29876:444;:::o;31036:488::-;-1:-1:-1;;;;;31094:15:0;;;;;;:7;:15;;;;;;;;31086:63;;;;-1:-1:-1;;;31086:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31168:15:0;;;;;;:7;:15;;;;;;31200:3;;31168:29;;17940:6;31168:29;:19;:29;:::i;:::-;:35;31160:73;;;;;-1:-1:-1;;;31160:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31258:13:0;;31244:11;31258:13;;;:5;:13;;;;;;:42;;18080:5;;31258:32;;18042:3;31258:32;:17;:32;:::i;:::-;:36;:42;:36;:42;:::i;:::-;-1:-1:-1;;;;;31327:13:0;;;;;;:5;:13;;;;;;31244:56;;-1:-1:-1;31327:25:0;;31244:56;31327:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;31311:13:0;;;;;;:5;:13;;;;;:41;31363:50;31387:4;31394:10;31406:6;31363:15;:50::i;:::-;-1:-1:-1;;;;;31424:15:0;;;;;;:7;:15;;;;;;;;;31442:3;31424:21;;31461:55;;31495:12;31461:55;;;;;;;;;;31483:10;;31424:15;31461:55;;;;;;;;31036:488;;:::o;9444:128::-;9486:86;;;;;;;;;;;;;;;;;;9444:128;:::o;8316:35::-;8349:2;8316:35;:::o;19078:36::-;;;;;;;;;;;;;:::o;20034:39::-;;;;;;;;;;;;;;;:::o;30406:512::-;30465:10;30454:22;;;;:10;:22;;;;;;30446:70;;;;;-1:-1:-1;;;30446:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30546:10;30535:22;;;;:10;:22;;;;;;30560:3;-1:-1:-1;30527:74:0;;;;-1:-1:-1;;;30527:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30630:10;30621:20;;;;:8;:20;;;;;;;;30620:21;30612:68;;;;-1:-1:-1;;;30612:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30724:10;30736:28;;;;:16;:28;;;;;;30693:72;;30717:4;;30693:15;:72::i;:::-;30795:10;30838:28;;;;:16;:28;;;;;;;;;;30781:86;;30807:12;30781:86;;30821:15;30781:86;;;;;;;;;;;;;;;;;;;;;;30895:10;30909:1;30878:28;;;:16;:28;;;;;:32;30406:512::o;19302:36::-;;;;;;;;;;;;;;;:::o;24374:80::-;24421:25;24427:10;24439:6;24421:5;:25::i;:::-;24374:80;:::o;18660:27::-;;;;:::o;18456:44::-;;;;;;;;;;;;;:::o;25303:551::-;25386:10;25381:16;;;;:4;:16;;;;;;;;25373:76;;;;-1:-1:-1;;;25373:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25478:3;25460:7;:15;25468:6;-1:-1:-1;;;;;25460:15:0;-1:-1:-1;;;;;25460:15:0;;;;;;;;;;;;:21;;;;25514:86;25538:6;25514:86;;;;;;;;;;;;;;;;;25522:10;25514:19;;;;:7;:19;;;;;;;:86;;:23;:86;:::i;:::-;25500:10;25492:19;;;;:7;:19;;;;;;;;:108;;;;-1:-1:-1;;;;;25627:13:0;;;;:5;:13;;;;:25;;25645:6;25627:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;25611:13:0;;;;;;;:5;:13;;;;;;;;:41;;;;25690:9;:17;;;;;;25663:53;;25611:13;25690:17;25709:6;25663:14;:53::i;:::-;-1:-1:-1;;;;;25751:21:0;;;;;;:13;:21;;;;;;:33;;25777:6;25751:33;:25;:33;:::i;:::-;-1:-1:-1;;;;;25727:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;25800:46;;25833:12;25800:46;;;;25727:21;;25813:10;;25800:46;;;;;;;;;;25303:551;;:::o;29655:77::-;29705:10;29719:5;29697:19;;;:7;:19;;;;;:27;;-1:-1:-1;;29697:27:0;;;29655:77::o;7977:81::-;8015:42;7977:81;:::o;32607:229::-;32682:10;;-1:-1:-1;;;;;32682:10:0;32668;:24;32660:81;;;;-1:-1:-1;;;32660:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32752:16:0;;32771:5;32752:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;32752:24:0;;;32792:36;;32815:12;32792:36;;;;;;;;;;;;;;32607:229;:::o;8516:45::-;;;;;;;;;;;;-1:-1:-1;;;;;8516:45:0;;:::o;23206:849::-;23287:10;23268:30;;;;:18;:30;;;;;;23260:79;;;;;-1:-1:-1;;;23260:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23377:10;23358:30;;;;:18;:30;;;;;;23391:3;-1:-1:-1;23350:83:0;;;;-1:-1:-1;;;23350:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23480:10;23444:14;23461:30;;;:18;:30;;;;;;;;;23537:9;;-1:-1:-1;;;;;23537:9:0;23520:28;;;:8;:28;;;;;;23604:23;;-1:-1:-1;;;23604:23:0;;;;23461:30;;23520:28;;23444:14;;23574:54;;23604:21;;:23;;;;;23461:30;;23604:23;;;;;;23537:9;23604:23;;;2:2:-1;;;;27:1;24;17:12;2:2;23604:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23604:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23604:23:0;23574:25;:10;23589:9;23574:25;:14;:25;:::i;:54::-;23672:10;23639:12;23654:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;23654:29:0;23708:13;;;:7;:13;;;;;;;23559:69;;-1:-1:-1;23654:29:0;23698:23;;23694:132;;;-1:-1:-1;;;;;23738:13:0;;23754:1;23738:13;;;:7;:13;;;;;:17;23694:132;;;-1:-1:-1;;;;;23788:13:0;;;;;;:7;:13;;;;;;:26;;23806:7;23788:26;:17;:26;:::i;:::-;;23694:132;23836:9;;:41;;;-1:-1:-1;;;23836:41:0;;23855:10;23836:41;;;;;;;;;;;;-1:-1:-1;;;;;23836:9:0;;;;:18;;:41;;;;;;;;;;;;;;;:9;;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;23836:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23836:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;23907:10:0;23921:1;23888:30;;;:18;23836:41;23888:30;;;;;;;:34;;;23933:17;:29;;;;;;:44;;-1:-1:-1;;;;;;23933:44:0;;;23995:52;;24023:12;23995:52;;;;;;;;;;-1:-1:-1;;;;;23995:52:0;;;;;;;;;;;23206:849;;;;:::o;20263:25::-;;;-1:-1:-1;;;;;20263:25:0;;:::o;22891:226::-;22978:15;:3;17832:7;22978:15;:7;:15;:::i;:::-;22964:10;22945:30;;;;:18;:30;;;;;;;;:48;;;;23021:17;:29;;;;;;23078:18;:30;;;;;;;23011:98;;23064:12;23011:98;;;;;;;;22964:10;;-1:-1:-1;;;;;23021:29:0;;;;23011:98;;;;;;;;;;;22891:226::o;10381:102::-;10443:32;10453:10;10465:9;10443;:32::i;17802:37::-;17832:7;17802:37;:::o;19645:52::-;;;;;;;;;;;;-1:-1:-1;;;;;19645:52:0;;:::o;27518:104::-;-1:-1:-1;;;;;27599:15:0;27575:4;27599:15;;;:7;:15;;;;;;;;;27518:104::o;8783:49::-;;;;;;;;;;;;;;;:::o;35474:108::-;-1:-1:-1;;;;;35557:17:0;35533:4;35557:17;;;:8;:17;;;;;;;35474:108::o;22316:491::-;-1:-1:-1;;;;;22388:26:0;;;;;;:16;:26;;;;;;22380:75;;;;;-1:-1:-1;;;22380:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22474:26:0;;;;;;:16;:26;;;;;;22503:3;-1:-1:-1;22466:74:0;;;;;-1:-1:-1;;;22466:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22586:9;;-1:-1:-1;;;;;22586:9:0;22551:15;22569:28;;;:8;:28;;;;;;;;;22672:23;;-1:-1:-1;;;22672:23:0;;;;22569:28;;22623:73;;22586:9;;22672:21;;:23;;;;;22569:28;22672:23;;;;;22586:9;22672:23;;;2:2:-1;;;;27:1;24;17:12;2:2;22672:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22672:23:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22672:23:0;-1:-1:-1;;;;;22638:28:0;;;;;;:18;22672:23;22638:28;;;;;22623:44;;:10;;:44;:14;:44;:::i;:73::-;22774:10;22748:38;22756:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;22756:29:0;22748:38;;:7;:38;;;;;;22608:88;;-1:-1:-1;22748:51:0;;22608:88;22748:51;:42;:51;:::i;:::-;22733:10;22707:38;22715:29;;;:17;:29;;;;;;;;;-1:-1:-1;;;;;22715:29:0;22707:38;;:7;:38;;;;;:92;-1:-1:-1;;;22316:491:0:o;19839:48::-;;;;;;;;;;;;;:::o;12546:1212::-;12625:4;12664:12;12650:11;:26;12642:74;;;;-1:-1:-1;;;12642:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12751:23:0;;12729:19;12751:23;;;:14;:23;;;;;;;;12789:17;12785:58;;12830:1;12823:8;;;;;12785:58;-1:-1:-1;;;;;12903:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12924:16:0;;12903:38;;;;;;;;;:48;;:63;-1:-1:-1;12899:147:0;;-1:-1:-1;;;;;12990:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;13011:16:0;;;;12990:38;;;;;;;;13026:1;12990:44;;;-1:-1:-1;12983:51:0;;12899:147;-1:-1:-1;;;;;13107:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;13103:88:0;;;13178:1;13171:8;;;;;13103:88;13203:12;-1:-1:-1;;13245:16:0;;13272:428;13287:5;13279:13;;:5;:13;;;13272:428;;;13351:1;13334:13;;;13333:19;;;13325:27;;13394:20;;:::i;:::-;-1:-1:-1;;;;;;13417:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13394:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13464:27;;13460:229;;;13519:8;;;;-1:-1:-1;13512:15:0;;-1:-1:-1;;;;13512:15:0;13460:229;13553:12;;:26;;;-1:-1:-1;13549:140:0;;;13608:6;13600:14;;13549:140;;;13672:1;13663:6;:10;13655:18;;13549:140;13272:428;;;;;-1:-1:-1;;;;;;13717:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;12546:1212:0;;;;:::o;9655:39::-;;;;;;;;;;;;;:::o;26406:232::-;26480:10;;-1:-1:-1;;;;;26480:10:0;26466;:24;26458:87;;;;-1:-1:-1;;;26458:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26556:9:0;;26568:5;26556:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;26556:17:0;;;26589:41;;26605:12;26589:41;;26619:10;26589:41;;;;;;;;;;;;;;;;;;;;26406:232;:::o;19746:50::-;;;;;;;;;;;;;:::o;18005:40::-;18042:3;18005:40;:::o;8216:37::-;;;;;;;;;;;;;;-1:-1:-1;;;8216:37:0;;;;:::o;17908:38::-;17940:6;17908:38;:::o;28237:368::-;28305:10;28292:24;;;;:12;:24;;;;;;:29;28284:76;;;;-1:-1:-1;;;28284:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28394:13;:3;17718:6;28394:13;:7;:13;:::i;:::-;28380:10;28371:20;;;;:8;:20;;;;;;;;:36;;;;28418:12;:24;;;;;;:33;;;28462:50;;28498:4;28445:6;28462:15;:50::i;:::-;28542:10;28568:20;;;;:8;:20;;;;;;;;;;28528:69;;28554:12;28528:69;;;;;;;;;;;;;;;;;;;;;;;28237:368;:::o;24209:157::-;24278:10;;-1:-1:-1;;;;;24278:10:0;24264;:24;24256:66;;;;;-1:-1:-1;;;24256:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24339:10;;24333:25;;-1:-1:-1;;;;;24339:10:0;24351:6;24333:5;:25::i;35843:147::-;35903:4;35920:40;35936:10;35948:3;35953:6;35920:15;:40::i;:::-;-1:-1:-1;35978:4:0;35843:147;;;;:::o;26803:197::-;26889:10;;-1:-1:-1;;;;;26889:10:0;26875;:24;26867:83;;;;-1:-1:-1;;;26867:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26961:17;:31;;-1:-1:-1;;;;;;26961:31:0;-1:-1:-1;;;;;26961:31:0;;;;;;;;;;26803:197::o;18247:42::-;;;;;;;;;;;;;:::o;7849:78::-;7884:42;7849:78;:::o;21503:664::-;21602:10;21623:3;21584:29;;;:17;:29;;;;;;-1:-1:-1;;;;;21584:29:0;:43;21576:122;;;;-1:-1:-1;;;21576:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21709:9;;:57;;;-1:-1:-1;;;21709:57:0;;21732:10;21709:57;;;;21752:4;21709:57;;;;;;;;;;;;-1:-1:-1;;;;;21709:9:0;;;;:22;;:57;;;;;;;;;;;;;;;:9;;:57;;;2:2:-1;;;;27:1;24;17:12;2:2;21709:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21709:57:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;21796:10:0;21777:30;;;;:18;21709:57;21777:30;;;;;;;:39;;;21827:17;:29;;;;;:35;;-1:-1:-1;;;;;;21827:35:0;-1:-1:-1;;;;;21827:35:0;;;;;21904:15;:3;21912:6;21904:7;:15::i;:::-;21890:10;21873:28;;;;:16;:28;;;;;;;;:46;;;;-1:-1:-1;;;;;21935:9:0;;;;:4;:9;;;;;;21934:10;:41;;;;-1:-1:-1;;;;;;21948:21:0;;;;;;:16;:21;;;;;;21972:3;-1:-1:-1;21934:41:0;21930:166;;;22003:10;;21992:38;;;-1:-1:-1;;;21992:38:0;;-1:-1:-1;;;;;21992:38:0;;;;;;;;;22003:10;;;;;21992:33;;:38;;;;;;;;;;;;;;22003:10;;21992:38;;;2:2:-1;;;;27:1;24;17:12;2:2;21992:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21992:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22069:15:0;;-1:-1:-1;22069:3:0;17832:7;22069:15;:7;:15;:::i;:::-;-1:-1:-1;;;;;22045:21:0;;;;;;:16;:21;;;;;:39;21930:166;22111:48;;;22138:12;22111:48;;;;;;;;;;22126:10;;-1:-1:-1;;;;;22111:48:0;;;;;;;;;;;;;;21503:664;;:::o;18861:40::-;;;;;;;;;;;;;;;:::o;28613:99::-;28658:16;28694:10;28687:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28687:17:0;;;;;;;;;;;;;;;;;;;;;;;28613:99;:::o;19932:48::-;;;;;;;;;;;;;:::o;11895:220::-;-1:-1:-1;;;;;11999:23:0;;11960:4;11999:23;;;:14;:23;;;;;;;;12040:16;:67;;12106:1;12040:67;;;-1:-1:-1;;;;;12059:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12080:16:0;;12059:38;;;;;;;;12095:1;12059:44;;12040:67;12033:74;11895:220;-1:-1:-1;;;11895:220:0:o;20595:654::-;20654:9;;-1:-1:-1;;;;;20654:9:0;20646:34;20638:82;;;;-1:-1:-1;;;20638:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7884:42;-1:-1:-1;;;;;20731:12:0;;20750:9;20731:31;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;20731:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;20773:37:0;;;-1:-1:-1;;;20773:37:0;;8015:42;20773:37;;;;20800:9;20773:37;;;;;;7884:42;;-1:-1:-1;20773:12:0;;-1:-1:-1;20773:37:0;;;;;-1:-1:-1;20773:37:0;;;;;;;-1:-1:-1;7884:42:0;20773:37;;;2:2:-1;;;;27:1;24;17:12;2:2;20773:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20773:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20821:28:0;;-1:-1:-1;20835:4:0;20842:6;20821:5;:28::i;:::-;20919:4;20902:23;;;;:8;:23;;;;;;;;;20860:10;:25;;;;;;8015:42;20860:39;;;;;;;;;:65;;;21057:23;;;;;;;21082:29;;-1:-1:-1;;;21082:29:0;;;;;;;;;;8015:42;;21010:16;;20919:4;;7884:42;;;;21082:14;;:29;;;;;20902:23;21082:29;;;;;;7884:42;21082:29;;;2:2:-1;;;;27:1;24;17:12;2:2;21082:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21082:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21082:29:0;21113:1;;21119:10;21131:13;:3;21139:4;21131:13;:7;:13;:::i;:::-;21010:135;;;;;;;;;;;;;-1:-1:-1;;;;;21010:135:0;-1:-1:-1;;;;;21010:135:0;;;;;;-1:-1:-1;;;;;21010:135:0;-1:-1:-1;;;;;21010:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21010:135:0;-1:-1:-1;;;;;21010:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21010:135:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21010:135:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;21010:135:0;21188:13;;-1:-1:-1;;;21188:13:0;;;;8015:42;;21188:11;;:13;;;;;21010:135;;21188:13;;;;;;;8015:42;21188:13;;;2:2:-1;;;;27:1;24;17:12;2:2;21188:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21188:13:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21188:13:0;21180:60;;;-1:-1:-1;;;21180:60:0;;21219:4;21180:60;;;;7884:42;21180:60;;;;;;-1:-1:-1;;;;;21180:30:0;;;;;;:60;;;;;21188:13;;21180:60;;;;;;;;:30;:60;;;2:2:-1;;;;27:1;24;17:12;2:2;21180:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21180:60:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21180:60:0;21156:9;:85;;-1:-1:-1;;;;;;21156:85:0;-1:-1:-1;;;;;21156:85:0;;;;;;;;;20595:654::o;17690:34::-;17718:6;17690:34;:::o;10917:777::-;11033:23;9072:77;;;;;;;;;;;;;;;;;;;11113:4;;;;;;;;;-1:-1:-1;;;11113:4:0;;;;;;;;9072:77;-1:-1:-1;11097:22:0;11121:12;:10;:12::i;:::-;11143:4;11069:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11069:80:0;-1:-1:-1;;;;;11069:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11069:80:0;;;11059:91;;;;;;11033:117;;11161:18;9289:65;;;;;;;;;;;;;;;;;;;11192:57;;;;;;;;-1:-1:-1;;;;;11192:57:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11192:57:0;;;;;11182:68;;;;;;-1:-1:-1;;;11288:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11288:57:0;;;;;;11278:68;;;;;;;;;-1:-1:-1;11377:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11182:68;;-1:-1:-1;11278:68:0;;-1:-1:-1;;;11377:26:0;;;;;;;11192:57;-1:-1:-1;;11377:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;11377:26:0;;-1:-1:-1;;11377:26:0;;;-1:-1:-1;;;;;;;11422:23:0;;11414:70;;;;-1:-1:-1;;;11414:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11512:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11503:28;;11495:71;;;;;-1:-1:-1;;;11495:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11592:6;11585:3;:13;;11577:60;;;;-1:-1:-1;;;11577:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11655:31;11665:9;11676;11655;:31::i;:::-;11648:38;;;;10917:777;;;;;;;:::o;26015:220::-;26086:10;;-1:-1:-1;;;;;26086:10:0;26072;:24;26064:81;;;;-1:-1:-1;;;26064:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26156:9:0;;;;;;:4;:9;;;;;;;;;:16;;-1:-1:-1;;26156:16:0;26168:4;26156:16;;;26188:39;;26202:12;26188:39;;26216:10;26188:39;;;;;;;;;;;;;;;;;;;;26015:220;:::o;18966:39::-;;;;;;;;;;;;;:::o;34443:828::-;34570:23;9072:77;;;;;;;;;;;;;;;;;;;34650:4;;;;;;;;;-1:-1:-1;;;34650:4:0;;;;;;;;9072:77;-1:-1:-1;34634:22:0;34658:12;:10;:12::i;:::-;34680:4;34606:80;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34606:80:0;-1:-1:-1;;;;;34606:80:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;34606:80:0;;;34596:91;;;;;;34570:117;;34698:18;9486:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34781:13:0;;;;;;;:6;:13;;;;;;;:15;;;;;;;;;34729:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34729:78:0;;;;;34719:89;;;;;;-1:-1:-1;;;34846:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34846:57:0;;;;;;34836:68;;;;;;;;;34935:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34719:89;;-1:-1:-1;34836:68:0;;-1:-1:-1;34781:13:0;;:15;;34935:26;;;;;-1:-1:-1;;34935:26:0;;;;;;;;;;;34781:15;34935:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;34935:26:0;;-1:-1:-1;;34935:26:0;;;-1:-1:-1;;;;;;;34980:23:0;;34972:63;;;;;-1:-1:-1;;;34972:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35067:5;-1:-1:-1;;;;;35054:18:0;:9;-1:-1:-1;;;;;35054:18:0;;35046:53;;;;;-1:-1:-1;;;35046:53:0;;;;;;;;;;;;-1:-1:-1;;;35046:53:0;;;;;;;;;;;;;;;35125:8;35118:3;:15;;35110:55;;;;;-1:-1:-1;;;35110:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35178:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;35231:32;;;;;;;;;;;;;;;;;34443:828;;;;;;;;;;;:::o;19505:50::-;;;;;;;;;;;;;:::o;33140:136::-;-1:-1:-1;;;;;33240:19:0;;;33216:4;33240:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;33140:136::o;18753:41::-;;;;;;;;;;;;;:::o;9243:111::-;9289:65;;;;;;;;;;;;;;;;;;9243:111;:::o;18052:33::-;18080:5;18052:33;:::o;20163:27::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20163:27:0;;-1:-1:-1;20163:27:0;:::o;18342:48::-;;;;;;;;;;;;;:::o;8644:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18146:40::-;;;;;;;;;;;;;:::o;20295:32::-;;;-1:-1:-1;;;;;20295:32:0;;:::o;31668:242::-;31758:10;;31719:4;;-1:-1:-1;;;;;31758:10:0;31744;:24;31736:81;;;;-1:-1:-1;;;31736:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31828:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;31828:23:0;31847:4;31828:23;;;31867:35;;31889:12;31867:35;;;;;;;;;;;;;;31668:242;;;:::o;18560:37::-;;;;;;;;;;;;;:::o;19401:39::-;;;;;;;;;;;;;:::o;36876:523::-;-1:-1:-1;;;;;36968:17:0;;36960:86;;;;-1:-1:-1;;;36960:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37065:17:0;;37057:84;;;;-1:-1:-1;;;37057:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37170:79;37188:6;37170:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37170:13:0;;;;;;:8;:13;;;;;;;:79;;:17;:79;:::i;:::-;37154:8;:13;37163:3;-1:-1:-1;;;;;37154:13:0;-1:-1:-1;;;;;37154:13:0;;;;;;;;;;;;:95;;;;37276:73;37294:6;37276:73;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37276:13:0;;;;;;:8;:13;;;;;;;:73;;:17;:73;:::i;:::-;-1:-1:-1;;;;;37260:13:0;;;;;;;:8;:13;;;;;;;;;:89;;;;37365:26;;;;;;;37260:13;;37365:26;;;;;;;;;;;;;36876:523;;;:::o;1887:137::-;1939:4;1963:53;1967:1;1970;1963:53;;;;;;;;;;;;;;;;;:3;:53::i;1018:169::-;1070:4;1096:5;;;1120:6;;;;1112:46;;;;;-1:-1:-1;;;1112:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2313:180;2393:4;2426:12;2418:6;;;;2410:29;;;;-1:-1:-1;;;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2410:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2459:5:0;;;2313:180::o;14144:876::-;14247:6;-1:-1:-1;;;;;14237:16:0;:6;-1:-1:-1;;;;;14237:16:0;;;:30;;;;;14266:1;14257:6;:10;14237:30;14233:780;;;-1:-1:-1;;;;;14288:20:0;;;14284:371;;-1:-1:-1;;;;;14348:22:0;;14329:16;14348:22;;;:14;:22;;;;;;;;;14406:13;:60;;14465:1;14406:60;;;-1:-1:-1;;;;;14422:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14442:13:0;;14422:34;;;;;;;;14454:1;14422:40;;14406:60;14389:77;;14485:14;14502:61;14516:6;14502:61;;;;;;;;;;;;;;;;;:9;;:61;;:13;:61;:::i;:::-;14485:78;;14582:57;14599:6;14607:9;14618;14629;14582:16;:57::i;:::-;14284:371;;;;-1:-1:-1;;;;;14675:20:0;;;14671:331;;-1:-1:-1;;;;;14735:22:0;;14716:16;14735:22;;;:14;:22;;;;;;;;;14793:13;:60;;14852:1;14793:60;;;-1:-1:-1;;;;;14809:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14829:13:0;;14809:34;;;;;;;;14841:1;14809:40;;14793:60;14776:77;-1:-1:-1;14872:14:0;14889:21;14776:77;14903:6;14889:21;:13;:21;:::i;:::-;14872:38;;14929:57;14946:6;14954:9;14965;14976;14929:16;:57::i;14671:331::-;14144:876;;;:::o;2736:459::-;2788:4;3030:6;3026:47;;-1:-1:-1;3060:1:0;3053:8;;3026:47;3094:5;;;3098:1;3094;:5;:1;3118:5;;;;;:10;3110:56;;;;-1:-1:-1;;;3110:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4370:123;4422:4;4446:39;4450:1;4453;4446:39;;;;;;;;;;;;;;;;;:3;:39::i;24754:323::-;-1:-1:-1;;;;;24823:17:0;;24815:65;;;;-1:-1:-1;;;24815:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24907;24925:6;24907:65;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24907:13:0;;;;;;:8;:13;;;;;;;:65;;:17;:65;:::i;:::-;-1:-1:-1;;;;;24891:13:0;;;;;;:8;:13;;;;;:81;;;;24997:11;:23;;25013:6;24997:23;:15;:23;:::i;:::-;24983:11;:37;;;25036:33;;;;;;;;-1:-1:-1;;;;;25036:33:0;;;;;;;;;;;;;24754:323;;:::o;13766:370::-;-1:-1:-1;;;;;13869:20:0;;;13843:23;13869:20;;;:9;:20;;;;;;;;;;13924:5;:16;;;;;;13951:20;;;;:32;;;-1:-1:-1;;;;;;13951:32:0;;;;;;;14001:54;;13869:20;;;;;13924:16;;13951:32;;13869:20;;;14001:54;;13843:23;14001:54;14068:60;14083:15;14100:9;14111:16;14068:14;:60::i;:::-;13766:370;;;;:::o;24462:284::-;24565:11;;:23;;24581:6;24565:23;:15;:23;:::i;:::-;24551:11;:37;;;-1:-1:-1;;;;;24664:13:0;;;;:8;:13;;;;;;:25;;24682:6;24664:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;24648:13:0;;;;;;:8;:13;;;;;;;;:41;;;;24705:33;;;;;;;24648:13;;;;24705:33;;;;;;;;;;24462:284;;:::o;37407:150::-;37514:9;37407:150;:::o;1438:180::-;1518:4;1544:5;;;1576:12;1568:6;;;;1560:29;;;;-1:-1:-1;;;1560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1560:29:0;-1:-1:-1;1609:1:0;1438:180;-1:-1:-1;;;;1438:180:0:o;15028:621::-;15142:18;15163:72;15170:12;15163:72;;;;;;;;;;;;;;;;;:6;:72::i;:::-;15142:93;;15265:1;15250:12;:16;;;:85;;;;-1:-1:-1;;;;;;15270:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15293:16:0;;15270:40;;;;;;;;;:50;:65;;;:50;;:65;15250:85;15246:329;;;-1:-1:-1;;;;;15350:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;15373:16:0;;15350:40;;;;;;;;15388:1;15350:46;:57;;;15246:329;;;15475:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15436:22:0;;-1:-1:-1;15436:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;15436:72:0;;;;;;;;;;;;;15521:25;;;:14;:25;;;;;;:44;;15549:16;;;15521:44;;;;;;;;;;15246:329;15590:51;;;;;;;;;;;;;;-1:-1:-1;;;;;15590:51:0;;;;;;;;;;;15028:621;;;;;:::o;4981:333::-;5061:4;5160:12;5153:5;5145:28;;;;-1:-1:-1;;;5145:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5145:28:0;;5184:6;5197:1;5193;:5;;;;;;;4981:333;-1:-1:-1;;;;;4981:333:0:o;15657:161::-;15732:6;15770:12;15763:5;15759:9;;15751:32;;;;-1:-1:-1;;;15751:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;15751:32:0;-1:-1:-1;15808:1:0;;15657:161;-1:-1:-1;;15657:161:0:o;7742:29818::-;;;;;;;;;;-1:-1:-1;7742:29818:0;;;;;;;;:::o

Swarm Source

ipfs://ae6a79f109d6e66798b3b448dc39373e2304ba79b787b0a6e2ec5a540e05dcbb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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